:root {
  --of-max-page-width: 1400px;
}

:root {
  --of-font-weight-bold: bold;
  --of-font-weight-regular: normal;
  --of-font-family: "Mulish", sans-serif;
  --of-font-size-xl: 40px;
  --of-font-weight-xl: var(--of-font-weight-bold);
  --of-font-size-l: 32px;
  --of-font-weight-l: var(--of-font-weight-bold);
  --of-font-size-m: 22px;
  --of-font-weight-m: var(--of-font-weight-bold);
  --of-font-size-body: 17px;
  --of-font-weight-body: var(--of-font-weight-regular);
  --of-font-size-s: 14px;
  --of-font-weight-s: var(--of-font-weight-regular);
  --of-font-size-xs: 12px;
  --of-font-weight-xs: var(--of-font-weight-regular);
}

@media screen and (max-width: 599px) {
  :root {
    --of-font-size-xl: 32px;
    --of-font-size-l: 26px;
    --of-font-size-m: 20px;
  }
}

.font-xl {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-xl);
  font-weight: var(--of-font-weight-xl);
  line-height: normal;
}

.font-l {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-l);
  font-weight: var(--of-font-weight-l);
  line-height: normal;
}

.font-m {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-m);
  font-weight: var(--of-font-weight-m);
  line-height: normal;
}

body {
  font-family: var(--of-font-family) !important;
  font-size: var(--of-font-size-body) !important;
  font-weight: var(--of-font-weight-body) !important;
  line-height: normal !important;
}

.font-s {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-s);
  font-weight: var(--of-font-weight-s);
  line-height: normal;
}

.font-xs {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-xs);
  font-weight: var(--of-font-weight-xs);
  line-height: normal;
}

.section-title {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-body);
  font-weight: bold;
  padding-bottom: var(--of-spacing-xs);
  border-bottom: 1px solid var(--of-color-details);
}

h1 {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-l);
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  h1 {
    font-size: var(--of-font-size-xl);
  }
}

h2 {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-m);
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  h2 {
    font-size: var(--of-font-size-l);
  }
}

h3,
section {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-body);
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  h3,
section {
    font-size: var(--of-font-size-m);
  }
}

:root {
  --of-transition-duration: 250ms;
  --of-transition-effect: ease;
}

.initial-loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000000000;
  overflow: hidden;
  opacity: 1;
}

.initial-loader.hide {
  bottom: 100%;
  opacity: 0;
  transition: opacity linear 1s, bottom 0ms linear 1s;
}

.initial-loader img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  animation: pulse 2s infinite;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  70% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(0.95);
    opacity: 1;
  }
}

.variants-wrapper .product__code {
  display: none;
}

of-product-details .product-block__brand of-product-brand .product__brand,
of-addtocart-item .product-block__brand of-product-brand .product__brand,
of-addtocart-variants-item .product-block__brand of-product-brand .product__brand {
  font-size: var(--of-font-size-s) !important;
  font-weight: bold !important;
}

@media screen and (min-width: 900px) {
  of-product-details .product-block__brand of-product-brand .product__brand,
of-addtocart-item .product-block__brand of-product-brand .product__brand,
of-addtocart-variants-item .product-block__brand of-product-brand .product__brand {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-details .product-block__name,
of-addtocart-item .product-block__name,
of-addtocart-variants-item .product-block__name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  -webkit-line-clamp: 1 !important;
}

@media screen and (min-width: 900px) {
  of-product-details .product-block__name,
of-addtocart-item .product-block__name,
of-addtocart-variants-item .product-block__name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-details .product-block__name of-product-name .product-details-name,
of-addtocart-item .product-block__name of-product-name .product-details-name,
of-addtocart-variants-item .product-block__name of-product-name .product-details-name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 900px) {
  of-product-details .product-block__name of-product-name .product-details-name,
of-addtocart-item .product-block__name of-product-name .product-details-name,
of-addtocart-variants-item .product-block__name of-product-name .product-details-name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-details .product-block__code,
of-addtocart-item .product-block__code,
of-addtocart-variants-item .product-block__code {
  font-size: var(--of-font-size-s) !important;
}

@media screen and (min-width: 900px) {
  of-product-details .product-block__code,
of-addtocart-item .product-block__code,
of-addtocart-variants-item .product-block__code {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-details .product-details-block__info__header__brand of-product-brand .product__brand,
of-addtocart-item .product-details-block__info__header__brand of-product-brand .product__brand,
of-addtocart-variants-item .product-details-block__info__header__brand of-product-brand .product__brand {
  font-size: var(--of-font-size-m) !important;
  font-weight: bold !important;
}

@media screen and (min-width: 900px) {
  of-product-details .product-details-block__info__header__brand of-product-brand .product__brand,
of-addtocart-item .product-details-block__info__header__brand of-product-brand .product__brand,
of-addtocart-variants-item .product-details-block__info__header__brand of-product-brand .product__brand {
    font-size: var(--of-font-size-l) !important;
  }
}

of-product-details .product-details-block__info__header__name,
of-addtocart-item .product-details-block__info__header__name,
of-addtocart-variants-item .product-details-block__info__header__name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  -webkit-line-clamp: 1 !important;
}

@media screen and (min-width: 900px) {
  of-product-details .product-details-block__info__header__name,
of-addtocart-item .product-details-block__info__header__name,
of-addtocart-variants-item .product-details-block__info__header__name {
    font-size: var(--of-font-size-body) !important;
  }
}

of-product-details .product-details-block__info__header__name of-product-name .product-details-name,
of-addtocart-item .product-details-block__info__header__name of-product-name .product-details-name,
of-addtocart-variants-item .product-details-block__info__header__name of-product-name .product-details-name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 900px) {
  of-product-details .product-details-block__info__header__name of-product-name .product-details-name,
of-addtocart-item .product-details-block__info__header__name of-product-name .product-details-name,
of-addtocart-variants-item .product-details-block__info__header__name of-product-name .product-details-name {
    font-size: var(--of-font-size-body) !important;
  }
}

of-product-details .product-details-block__info__header__code,
of-addtocart-item .product-details-block__info__header__code,
of-addtocart-variants-item .product-details-block__info__header__code {
  font-size: var(--of-font-size-s) !important;
}

@media screen and (min-width: 900px) {
  of-product-details .product-details-block__info__header__code,
of-addtocart-item .product-details-block__info__header__code,
of-addtocart-variants-item .product-details-block__info__header__code {
    font-size: var(--of-font-size-body) !important;
  }
}

of-product-details .variant__price of-product-price .price-wrapper__compact,
of-addtocart-item .variant__price of-product-price .price-wrapper__compact,
of-addtocart-variants-item .variant__price of-product-price .price-wrapper__compact {
  flex-wrap: wrap;
  grid-row-gap: var(--of-spacing-xxs);
  row-gap: var(--of-spacing-xxs);
}

of-product-details .variant__price of-product-price .price-wrapper__compact__current-unit-price,
of-addtocart-item .variant__price of-product-price .price-wrapper__compact__current-unit-price,
of-addtocart-variants-item .variant__price of-product-price .price-wrapper__compact__current-unit-price {
  order: 3;
  font-size: var(--of-font-size-s) !important;
}

@media screen and (min-width: 900px) {
  of-product-details .variant__price of-product-price .price-wrapper__compact__current-unit-price,
of-addtocart-item .variant__price of-product-price .price-wrapper__compact__current-unit-price,
of-addtocart-variants-item .variant__price of-product-price .price-wrapper__compact__current-unit-price {
    font-size: var(--of-font-size-body) !important;
  }
}

of-product-details .variant__price of-product-price .price-wrapper__compact__um,
of-addtocart-item .variant__price of-product-price .price-wrapper__compact__um,
of-addtocart-variants-item .variant__price of-product-price .price-wrapper__compact__um {
  order: 4;
  font-size: var(--of-font-size-s) !important;
}

@media screen and (min-width: 900px) {
  of-product-details .variant__price of-product-price .price-wrapper__compact__um,
of-addtocart-item .variant__price of-product-price .price-wrapper__compact__um,
of-addtocart-variants-item .variant__price of-product-price .price-wrapper__compact__um {
    font-size: var(--of-font-size-body) !important;
  }
}

of-product-details .variant__price of-product-price .price-wrapper__compact__old-unit-price,
of-addtocart-item .variant__price of-product-price .price-wrapper__compact__old-unit-price,
of-addtocart-variants-item .variant__price of-product-price .price-wrapper__compact__old-unit-price {
  order: 1;
  font-size: var(--of-font-size-s) !important;
}

@media screen and (min-width: 900px) {
  of-product-details .variant__price of-product-price .price-wrapper__compact__old-unit-price,
of-addtocart-item .variant__price of-product-price .price-wrapper__compact__old-unit-price,
of-addtocart-variants-item .variant__price of-product-price .price-wrapper__compact__old-unit-price {
    font-size: var(--of-font-size-body) !important;
  }
}

of-product-details .variant__price of-product-price .price-wrapper__compact__discounts,
of-addtocart-item .variant__price of-product-price .price-wrapper__compact__discounts,
of-addtocart-variants-item .variant__price of-product-price .price-wrapper__compact__discounts {
  order: 2;
  font-size: var(--of-font-size-s) !important;
  padding: 0;
  border-width: 0;
}

@media screen and (min-width: 900px) {
  of-product-details .variant__price of-product-price .price-wrapper__compact__discounts,
of-addtocart-item .variant__price of-product-price .price-wrapper__compact__discounts,
of-addtocart-variants-item .variant__price of-product-price .price-wrapper__compact__discounts {
    font-size: var(--of-font-size-body) !important;
  }
}

of-cart-item .cart-item__name-code__brand of-product-brand .product__brand,
of-cart-item-readonly .cart-item__name-code__brand of-product-brand .product__brand {
  font-size: var(--of-font-size-s) !important;
  font-weight: bold !important;
}

@media screen and (min-width: 900px) {
  of-cart-item .cart-item__name-code__brand of-product-brand .product__brand,
of-cart-item-readonly .cart-item__name-code__brand of-product-brand .product__brand {
    font-size: var(--of-font-size-s) !important;
  }
}

of-cart-item .cart-item__name-code__name,
of-cart-item-readonly .cart-item__name-code__name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  -webkit-line-clamp: 1 !important;
}

@media screen and (min-width: 900px) {
  of-cart-item .cart-item__name-code__name,
of-cart-item-readonly .cart-item__name-code__name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-cart-item .cart-item__name-code__name of-product-name .product-details-name,
of-cart-item-readonly .cart-item__name-code__name of-product-name .product-details-name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 900px) {
  of-cart-item .cart-item__name-code__name of-product-name .product-details-name,
of-cart-item-readonly .cart-item__name-code__name of-product-name .product-details-name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-cart-item .cart-item__name-code__code,
of-cart-item-readonly .cart-item__name-code__code {
  font-size: var(--of-font-size-s) !important;
}

@media screen and (min-width: 900px) {
  of-cart-item .cart-item__name-code__code,
of-cart-item-readonly .cart-item__name-code__code {
    font-size: var(--of-font-size-s) !important;
  }
}

of-checkout-item .checkout-item__name-code__brand of-product-brand .product__brand {
  font-size: var(--of-font-size-s) !important;
  font-weight: bold !important;
}

@media screen and (min-width: 900px) {
  of-checkout-item .checkout-item__name-code__brand of-product-brand .product__brand {
    font-size: var(--of-font-size-s) !important;
  }
}

of-checkout-item .checkout-item__name-code__name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  -webkit-line-clamp: 1 !important;
}

@media screen and (min-width: 900px) {
  of-checkout-item .checkout-item__name-code__name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-checkout-item .checkout-item__name-code__name of-product-name .product-details-name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 900px) {
  of-checkout-item .checkout-item__name-code__name of-product-name .product-details-name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-checkout-item .checkout-item__name-code__code {
  font-size: var(--of-font-size-s) !important;
}

@media screen and (min-width: 900px) {
  of-checkout-item .checkout-item__name-code__code {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__code,
of-product-row .product__code {
  font-size: var(--of-font-size-xs) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__code,
of-product-row .product__code {
    font-size: var(--of-font-size-xs) !important;
  }
}

of-product-grid .product__brand of-product-brand .product__brand,
of-product-row .product__brand of-product-brand .product__brand {
  font-size: var(--of-font-size-s) !important;
  font-weight: bold !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__brand of-product-brand .product__brand,
of-product-row .product__brand of-product-brand .product__brand {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__name,
of-product-row .product__name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  -webkit-line-clamp: 1 !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__name,
of-product-row .product__name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__name of-product-name .product-details-name,
of-product-row .product__name of-product-name .product-details-name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__name of-product-name .product-details-name,
of-product-row .product__name of-product-name .product-details-name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__price of-product-price .price-wrapper__compact,
of-product-row .product__price of-product-price .price-wrapper__compact {
  flex-wrap: wrap;
  grid-row-gap: var(--of-spacing-xxs);
  row-gap: var(--of-spacing-xxs);
}

of-product-grid .product__price of-product-price .price-wrapper__compact__current-unit-price,
of-product-row .product__price of-product-price .price-wrapper__compact__current-unit-price {
  order: 3;
  font-size: var(--of-font-size-xs) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__price of-product-price .price-wrapper__compact__current-unit-price,
of-product-row .product__price of-product-price .price-wrapper__compact__current-unit-price {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__price of-product-price .price-wrapper__compact__um,
of-product-row .product__price of-product-price .price-wrapper__compact__um {
  order: 4;
  font-size: var(--of-font-size-xs) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__price of-product-price .price-wrapper__compact__um,
of-product-row .product__price of-product-price .price-wrapper__compact__um {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__price of-product-price .price-wrapper__compact__old-unit-price,
of-product-row .product__price of-product-price .price-wrapper__compact__old-unit-price {
  order: 1;
  font-size: var(--of-font-size-xs) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__price of-product-price .price-wrapper__compact__old-unit-price,
of-product-row .product__price of-product-price .price-wrapper__compact__old-unit-price {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__price of-product-price .price-wrapper__compact__discounts,
of-product-row .product__price of-product-price .price-wrapper__compact__discounts {
  order: 2;
  font-size: var(--of-font-size-xs) !important;
  padding: 0;
  border-width: 0;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__price of-product-price .price-wrapper__compact__discounts,
of-product-row .product__price of-product-price .price-wrapper__compact__discounts {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__bottom,
of-product-row .product__bottom {
  grid-gap: var(--of-spacing-xs) !important;
  gap: var(--of-spacing-xs) !important;
}

of-product-grid .product__mobile__name-code__brand of-product-brand .product__brand,
of-product-row .product__mobile__name-code__brand of-product-brand .product__brand {
  font-size: var(--of-font-size-s) !important;
  font-weight: bold !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__mobile__name-code__brand of-product-brand .product__brand,
of-product-row .product__mobile__name-code__brand of-product-brand .product__brand {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__mobile__name-code__name,
of-product-row .product__mobile__name-code__name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  -webkit-line-clamp: 1 !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__mobile__name-code__name,
of-product-row .product__mobile__name-code__name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__mobile__name-code__name of-product-name .product-details-name,
of-product-row .product__mobile__name-code__name of-product-name .product-details-name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__mobile__name-code__name of-product-name .product-details-name,
of-product-row .product__mobile__name-code__name of-product-name .product-details-name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__mobile__name-code__code,
of-product-row .product__mobile__name-code__code {
  font-size: var(--of-font-size-xs) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__mobile__name-code__code,
of-product-row .product__mobile__name-code__code {
    font-size: var(--of-font-size-xs) !important;
  }
}

of-product-grid .product__mobile__price of-product-price .price-wrapper__compact,
of-product-row .product__mobile__price of-product-price .price-wrapper__compact {
  flex-wrap: wrap;
  grid-row-gap: var(--of-spacing-xxs);
  row-gap: var(--of-spacing-xxs);
}

of-product-grid .product__mobile__price of-product-price .price-wrapper__compact__current-unit-price,
of-product-row .product__mobile__price of-product-price .price-wrapper__compact__current-unit-price {
  order: 3;
  font-size: var(--of-font-size-xs) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__mobile__price of-product-price .price-wrapper__compact__current-unit-price,
of-product-row .product__mobile__price of-product-price .price-wrapper__compact__current-unit-price {
    font-size: var(--of-font-size-xs) !important;
  }
}

of-product-grid .product__mobile__price of-product-price .price-wrapper__compact__um,
of-product-row .product__mobile__price of-product-price .price-wrapper__compact__um {
  order: 4;
  font-size: var(--of-font-size-xs) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__mobile__price of-product-price .price-wrapper__compact__um,
of-product-row .product__mobile__price of-product-price .price-wrapper__compact__um {
    font-size: var(--of-font-size-xs) !important;
  }
}

of-product-grid .product__mobile__price of-product-price .price-wrapper__compact__old-unit-price,
of-product-row .product__mobile__price of-product-price .price-wrapper__compact__old-unit-price {
  order: 1;
  font-size: var(--of-font-size-xs) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__mobile__price of-product-price .price-wrapper__compact__old-unit-price,
of-product-row .product__mobile__price of-product-price .price-wrapper__compact__old-unit-price {
    font-size: var(--of-font-size-xs) !important;
  }
}

of-product-grid .product__mobile__price of-product-price .price-wrapper__compact__discounts,
of-product-row .product__mobile__price of-product-price .price-wrapper__compact__discounts {
  order: 2;
  font-size: var(--of-font-size-xs) !important;
  padding: 0;
  border-width: 0;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__mobile__price of-product-price .price-wrapper__compact__discounts,
of-product-row .product__mobile__price of-product-price .price-wrapper__compact__discounts {
    font-size: var(--of-font-size-xs) !important;
  }
}

of-product-grid .product__desktop__name-code__brand of-product-brand .product__brand,
of-product-row .product__desktop__name-code__brand of-product-brand .product__brand {
  font-size: var(--of-font-size-s) !important;
  font-weight: bold !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop__name-code__brand of-product-brand .product__brand,
of-product-row .product__desktop__name-code__brand of-product-brand .product__brand {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__desktop__name-code__name,
of-product-row .product__desktop__name-code__name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  -webkit-line-clamp: 1 !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop__name-code__name,
of-product-row .product__desktop__name-code__name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__desktop__name-code__name of-product-name .product-details-name,
of-product-row .product__desktop__name-code__name of-product-name .product-details-name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop__name-code__name of-product-name .product-details-name,
of-product-row .product__desktop__name-code__name of-product-name .product-details-name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__desktop__name-code__code,
of-product-row .product__desktop__name-code__code {
  font-size: var(--of-font-size-s) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop__name-code__code,
of-product-row .product__desktop__name-code__code {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__desktop__price of-product-price .price-wrapper__compact,
of-product-row .product__desktop__price of-product-price .price-wrapper__compact {
  flex-wrap: wrap;
  grid-row-gap: var(--of-spacing-xxs);
  row-gap: var(--of-spacing-xxs);
}

of-product-grid .product__desktop__price of-product-price .price-wrapper__compact__current-unit-price,
of-product-row .product__desktop__price of-product-price .price-wrapper__compact__current-unit-price {
  order: 3;
  font-size: var(--of-font-size-s) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop__price of-product-price .price-wrapper__compact__current-unit-price,
of-product-row .product__desktop__price of-product-price .price-wrapper__compact__current-unit-price {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__desktop__price of-product-price .price-wrapper__compact__um,
of-product-row .product__desktop__price of-product-price .price-wrapper__compact__um {
  order: 4;
  font-size: var(--of-font-size-s) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop__price of-product-price .price-wrapper__compact__um,
of-product-row .product__desktop__price of-product-price .price-wrapper__compact__um {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__desktop__price of-product-price .price-wrapper__compact__old-unit-price,
of-product-row .product__desktop__price of-product-price .price-wrapper__compact__old-unit-price {
  order: 1;
  font-size: var(--of-font-size-s) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop__price of-product-price .price-wrapper__compact__old-unit-price,
of-product-row .product__desktop__price of-product-price .price-wrapper__compact__old-unit-price {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__desktop__price of-product-price .price-wrapper__compact__discounts,
of-product-row .product__desktop__price of-product-price .price-wrapper__compact__discounts {
  order: 2;
  font-size: var(--of-font-size-s) !important;
  padding: 0;
  border-width: 0;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop__price of-product-price .price-wrapper__compact__discounts,
of-product-row .product__desktop__price of-product-price .price-wrapper__compact__discounts {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__desktop-dense__info__brand of-product-brand .product__brand,
of-product-row .product__desktop-dense__info__brand of-product-brand .product__brand {
  font-size: var(--of-font-size-s) !important;
  font-weight: bold !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop-dense__info__brand of-product-brand .product__brand,
of-product-row .product__desktop-dense__info__brand of-product-brand .product__brand {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__desktop-dense__info__name,
of-product-row .product__desktop-dense__info__name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  -webkit-line-clamp: 1 !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop-dense__info__name,
of-product-row .product__desktop-dense__info__name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__desktop-dense__info__name of-product-name .product-details-name,
of-product-row .product__desktop-dense__info__name of-product-name .product-details-name {
  font-size: var(--of-font-size-s) !important;
  font-weight: normal !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop-dense__info__name of-product-name .product-details-name,
of-product-row .product__desktop-dense__info__name of-product-name .product-details-name {
    font-size: var(--of-font-size-s) !important;
  }
}

of-product-grid .product__desktop-dense__code,
of-product-row .product__desktop-dense__code {
  font-size: var(--of-font-size-xs) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop-dense__code,
of-product-row .product__desktop-dense__code {
    font-size: var(--of-font-size-xs) !important;
  }
}

of-product-grid .product__desktop-dense__price of-product-price .price-wrapper__compact,
of-product-row .product__desktop-dense__price of-product-price .price-wrapper__compact {
  flex-wrap: wrap;
  grid-row-gap: var(--of-spacing-xxs);
  row-gap: var(--of-spacing-xxs);
}

of-product-grid .product__desktop-dense__price of-product-price .price-wrapper__compact__current-unit-price,
of-product-row .product__desktop-dense__price of-product-price .price-wrapper__compact__current-unit-price {
  order: 3;
  font-size: var(--of-font-size-xs) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop-dense__price of-product-price .price-wrapper__compact__current-unit-price,
of-product-row .product__desktop-dense__price of-product-price .price-wrapper__compact__current-unit-price {
    font-size: var(--of-font-size-xs) !important;
  }
}

of-product-grid .product__desktop-dense__price of-product-price .price-wrapper__compact__um,
of-product-row .product__desktop-dense__price of-product-price .price-wrapper__compact__um {
  order: 4;
  font-size: var(--of-font-size-xs) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop-dense__price of-product-price .price-wrapper__compact__um,
of-product-row .product__desktop-dense__price of-product-price .price-wrapper__compact__um {
    font-size: var(--of-font-size-xs) !important;
  }
}

of-product-grid .product__desktop-dense__price of-product-price .price-wrapper__compact__old-unit-price,
of-product-row .product__desktop-dense__price of-product-price .price-wrapper__compact__old-unit-price {
  order: 1;
  font-size: var(--of-font-size-xs) !important;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop-dense__price of-product-price .price-wrapper__compact__old-unit-price,
of-product-row .product__desktop-dense__price of-product-price .price-wrapper__compact__old-unit-price {
    font-size: var(--of-font-size-xs) !important;
  }
}

of-product-grid .product__desktop-dense__price of-product-price .price-wrapper__compact__discounts,
of-product-row .product__desktop-dense__price of-product-price .price-wrapper__compact__discounts {
  order: 2;
  font-size: var(--of-font-size-xs) !important;
  padding: 0;
  border-width: 0;
}

@media screen and (min-width: 900px) {
  of-product-grid .product__desktop-dense__price of-product-price .price-wrapper__compact__discounts,
of-product-row .product__desktop-dense__price of-product-price .price-wrapper__compact__discounts {
    font-size: var(--of-font-size-xs) !important;
  }
}
