@import url("./assets/fonts/thmanyah/thmanyah.css");
@import url("https://fonts.googleapis.com/css2?family=Aref+Ruqaa:wght@400;700&family=Cairo:wght@400;500;600;700;800&family=Noto+Kufi+Arabic:wght@500;600;700&family=Playfair+Display:wght@600;700&display=swap");

:root {
    --color-ink: #2f2528;
    --color-muted: #7b6a70;
    --color-primary: #c78396;
    --color-primary-dark: #96556c;
    --color-secondary: #8fa69a;
    --color-gold: #d6b7a8;
    --color-ivory: #fff8f8;
    --color-pearl: #f7e8ec;
    --color-blush: #f1cbd5;
    --color-white: #ffffff;
    --color-border: #ead8df;
    --color-success: #2f7d5a;
    --color-offer: #b86b82;
    --primary-color: var(--color-primary);
    --accent-color: var(--color-gold);
    --soft-pink: var(--color-pearl);
    --background-color: var(--color-ivory);
    --text-color: var(--color-ink);
    --gold-soft: var(--color-gold);
    --shadow-soft: 0 18px 48px rgba(47, 37, 34, 0.08);
    --shadow-card: 0 12px 32px rgba(47, 37, 34, 0.07);
    --radius: 8px;
    --container: min(1180px, calc(100% - 32px));
}

/* v164: product detail, color choices, cart and mobile checkout */
.product-page {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  padding-block: 22px 48px;
}

.product-page .breadcrumb {
  margin: 0 0 14px;
  font-size: 0.82rem;
}

.product-page .product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.product-page .gallery-panel,
.product-page .product-info-panel {
  min-width: 0;
  border: 1px solid #eee4e7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(78, 53, 61, 0.06);
}

.product-page .gallery-panel {
  padding: 12px;
}

.product-main-image-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 7px;
  background: #fbf8f9;
}

.product-page .main-product-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 640px;
  padding: 8px;
  object-fit: contain;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid rgba(79, 58, 64, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #2f282a;
  font-size: 1.4rem;
  transform: translateY(-50%);
  box-shadow: 0 6px 18px rgba(56, 40, 45, 0.1);
}

.product-gallery-arrow.is-prev { inset-inline-start: 10px; }
.product-gallery-arrow.is-next { inset-inline-end: 10px; }

.product-gallery-dots {
  position: absolute;
  inset-inline: 0;
  bottom: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.product-gallery-dots button {
  width: 7px;
  height: 7px;
  min-height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9c0c3;
}

.product-gallery-dots button.is-active {
  width: 18px;
  border-radius: 999px;
  background: var(--color-primary, #b34f70);
}

.product-page .thumbnail-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.product-thumbnail {
  flex: 0 0 66px;
  width: 66px;
  height: 66px;
  min-height: 66px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid #eadfe2;
  border-radius: 7px;
  background: #fff;
}

.product-thumbnail.is-active {
  border-color: var(--color-primary, #b34f70);
  box-shadow: 0 0 0 2px rgba(179, 79, 112, 0.12);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-page .product-info-panel {
  display: grid;
  gap: 11px;
  padding: clamp(18px, 3vw, 30px);
}

.product-detail-brand {
  color: #807176;
  font-size: 0.82rem;
  font-weight: 800;
}

.product-page .product-heading {
  margin: 0;
  color: #171416;
  font-size: clamp(1.18rem, 2.5vw, 1.7rem);
  line-height: 1.65;
  font-weight: 800;
}

.product-page .product-stock-status {
  width: fit-content;
  color: #28764d;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-page .product-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 2px 0;
}

.product-page .product-price-row .price {
  color: #211b1e;
  font-size: 1.45rem;
  font-weight: 900;
}

.product-page .product-price-row .price.is-discounted,
.product-page .offer-price-final strong {
  color: #d72d62;
}

.product-page .product-price-row .old-price,
.product-page .offer-price-line del {
  color: #9a9194;
  text-decoration-thickness: 1px;
}

.product-offer-shipping {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0;
  padding: 8px 11px;
  border: 1px solid #e4dadd;
  border-radius: 7px;
  color: #66575c;
  background: #fffafa;
  font-size: 0.78rem;
}

.product-offer-shipping.is-free {
  border-color: #bfe3cb;
  color: #176739;
  background: #eff9f2;
}

.product-color-selector {
  display: grid;
  gap: 10px;
  padding-block: 12px;
  border-block: 1px solid #eee5e8;
}

.product-option-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-option-heading h2 {
  margin: 0;
  color: #211b1e;
  font-size: 0.98rem;
}

.product-option-heading small {
  color: #9b5b70;
  font-size: 0.72rem;
}

.product-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.product-color-swatch {
  position: relative;
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 4px;
  border: 1px solid #ded5d8;
  border-radius: 8px;
  background: #fff;
}

.product-color-swatch span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: var(--product-color);
}

.product-color-swatch.is-selected {
  border-color: #2d2528;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(45, 37, 40, 0.7);
}

.product-color-swatch.is-selected::after {
  content: "âœ“";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 1px 3px rgba(0,0,0,.8);
}

.product-color-message {
  min-height: 0;
  margin: 0;
  color: #b4234f;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-page .details-grid {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  overflow: hidden;
  border: 1px solid #eee4e7;
  border-radius: 8px;
  background: #fff;
}

.product-accordion-item {
  border-bottom: 1px solid #eee5e8;
}

.product-accordion-item:last-child { border-bottom: 0; }

.product-accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #251e21;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.product-accordion-item summary::-webkit-details-marker { display: none; }

.product-accordion-icon {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .18s ease;
}

.product-accordion-item[open] .product-accordion-icon { transform: rotate(45deg); }

.product-accordion-content {
  padding: 0 18px 16px;
  color: #675b5f;
  line-height: 1.9;
}

.product-accordion-content p { margin: 0; }

.product-related-section[hidden] { display: none !important; }

.product-page #related-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-page #related-products .product-card {
  min-width: 0;
}

.cart-shipping-banner[hidden] { display: none !important; }

.cart-shipping-banner {
  align-items: flex-start;
  background: #9a6676;
}

.cart-shipping-banner p {
  display: grid;
  gap: 2px;
}

.cart-shipping-banner strong,
.cart-shipping-banner small { color: #fff; }

.cart-shipping-banner small { font-size: 0.72rem; opacity: .92; }
.cart-shipping-icon { line-height: 1.4; }

.cart-color-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: #665b5f;
  font-size: 0.78rem;
  font-weight: 700;
}

.cart-color-swatch {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 1px solid #d9d0d3;
  border-radius: 5px;
  background: var(--cart-color);
  box-shadow: inset 0 0 0 2px #fff;
}

#checkout-shipping-summary {
  color: #5f5156;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .product-page .product-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-page .gallery-panel {
    max-width: 680px;
    margin-inline: auto;
  }

  .product-page #related-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .product-page {
    width: 100%;
    padding: 0 0 80px;
  }

  .product-page .breadcrumb { display: none; }

  .product-page .product-layout {
    gap: 0;
  }

  .product-page .gallery-panel,
  .product-page .product-info-panel {
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .product-page .gallery-panel { padding: 0; }

  .product-main-image-stage {
    border-radius: 0;
    background: #fbfafb;
  }

  .product-page .main-product-image {
    max-height: none;
    padding: 0;
  }

  .product-page .thumbnail-row {
    padding: 8px 14px 0;
    margin: 0;
  }

  .product-thumbnail {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    min-height: 54px;
  }

  .product-page .product-info-panel {
    gap: 10px;
    padding: 18px 16px 12px;
    border-top: 1px solid #eee6e8;
  }

  .product-page .product-heading {
    font-size: 1.12rem;
    line-height: 1.7;
  }

  .product-page .product-price-row .price { font-size: 1.3rem; }

  .product-page .product-actions {
    position: sticky;
    bottom: 8px;
    z-index: 24;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px;
    margin: 4px -4px 0;
    border: 1px solid #eadfe2;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(67, 44, 52, 0.14);
    backdrop-filter: blur(12px);
  }

  .product-page .product-actions .buy-btn {
    min-height: 48px;
  }

  .product-page .product-actions .button-secondary {
    min-height: 48px;
    padding-inline: 12px;
  }

  .product-page .details-grid {
    margin: 10px 12px 0;
  }

  .product-page .section {
    margin-top: 18px;
    padding-inline: 12px;
  }

  .product-page .section-header {
    margin-bottom: 10px;
  }

  .product-page .section-header .button-secondary,
  .product-page .section-subtitle { display: none; }

  .product-page #related-products {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(122px, 31vw, 154px);
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    padding: 2px 1px 8px;
  }

  .product-page #related-products::-webkit-scrollbar { display: none; }
  .product-page #related-products .product-card { scroll-snap-align: start; }

  .home-page .cart-color-line { font-size: 0.72rem; }

  .home-page .checkout-form {
    gap: 8px;
  }

  .home-page .checkout-section {
    padding: 12px;
    border-radius: 8px;
  }

  .home-page .checkout-section-heading {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .home-page .checkout-section-heading h3 { font-size: 0.9rem; }
  .home-page .checkout-section-heading p { font-size: 0.7rem; }

  .home-page .checkout-section-fields,
  .home-page .checkout-section-fields.two-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
  }

  .home-page .checkout-form input,
  .home-page .checkout-form select,
  .home-page .country-picker-trigger {
    width: 100%;
    min-width: 0;
    min-height: 44px;
  }

  .home-page .checkout-phone-row {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .home-page .country-picker-menu {
    width: min(340px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
  }

  .home-page .checkout-final-summary {
    padding: 12px;
    border-radius: 8px;
  }

  .home-page .checkout-btn {
    min-height: 50px;
    line-height: normal;
  }
}

@media (max-width: 430px) {
  .product-gallery-arrow {
    width: 34px;
    height: 34px;
    min-height: 34px;
  }

  .product-page .product-info-panel { padding-inline: 14px; }
  .product-color-swatch { width: 38px; height: 38px; min-height: 38px; }

  .home-page .cart-shipping-banner {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

/* Marketing blocks v110 */
.home-page .marketing-block-slot {
    width: min(100% - 32px, var(--home-content-width, 1500px));
    margin-inline: auto;
}

.home-page .marketing-block-slot:empty { display: none; }
.home-page .marketing-block-slot-inline { width: 100%; }

.home-page .store-marketing-block {
    width: 100%;
    margin: 14px 0;
    color: var(--marketing-text, #2b2226);
    background: var(--marketing-bg, #f7dde7);
    border: 1px solid rgba(130, 84, 101, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.home-page .marketing-media,
.home-page .marketing-slider-link,
.home-page .marketing-banner-link,
.home-page .marketing-grid-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

.home-page .marketing-media img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: var(--marketing-bg, #f7dde7);
}

.home-page .marketing-image-fallback {
    width: 100%;
    height: 100%;
    min-height: 150px;
    display: grid;
    place-items: center;
    color: #a55270;
    font-family: "Noto Kufi Arabic", system-ui, sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 800;
    background: #fff1f5;
}

.home-page .marketing-media-overlay {
    position: absolute;
    inset-inline: 18px;
    bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: calc(100% - 36px);
    color: #2b2226;
    pointer-events: none;
}

.home-page .marketing-media-overlay strong {
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.82rem, 1.6vw, 1.15rem);
    line-height: 1.6;
}

.home-page .marketing-media-button {
    padding: 8px 13px;
    border-radius: 6px;
    color: #fff;
    background: #c65d82;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.home-page .marketing-slider {
    position: relative;
    min-height: 180px;
    background: var(--marketing-bg, #f7dde7);
}

.home-page .marketing-slider.is-hero { aspect-ratio: 4.8 / 1; }
.home-page .marketing-slider.is-compact { aspect-ratio: 5.6 / 1; }
.home-page .marketing-slider-static { aspect-ratio: 4.8 / 1; min-height: 180px; }
.home-page .marketing-slider-track,
.home-page .marketing-slider-item { width: 100%; height: 100%; }
.home-page .marketing-slider-item { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.35s ease; }
.home-page .marketing-slider-item.is-active { opacity: 1; visibility: visible; z-index: 1; }

.home-page .marketing-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #4b303a;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(64, 32, 44, 0.16);
    transform: translateY(-50%);
    cursor: pointer;
}

.home-page .marketing-slider-arrow.previous { right: 14px; }
.home-page .marketing-slider-arrow.next { left: 14px; }
.home-page .marketing-slider-dots { position: absolute; z-index: 3; bottom: 10px; left: 50%; display: flex; gap: 6px; transform: translateX(-50%); }
.home-page .marketing-slider-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: rgba(43, 34, 38, 0.35); }
.home-page .marketing-slider-dots button.is-active { background: #c65d82; transform: scale(1.25); }

.home-page .marketing-slider-grid {
    display: grid;
    gap: 12px;
    padding: 0;
    border: 0;
    overflow: visible;
    background: transparent;
}

.home-page .marketing-slider-grid.is-two-columns,
.home-page .marketing-slider-grid.is-grid-2x2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .marketing-slider-grid.is-feature-grid {
    grid-template-columns: 1.45fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.home-page .marketing-slider-grid.is-feature-grid .marketing-grid-link:first-child {
    grid-row: 1 / span 2;
}

.home-page .marketing-slider-grid .marketing-grid-link {
    min-width: 0;
    min-height: 170px;
    aspect-ratio: 3.1 / 1;
    border: 1px solid rgba(130, 84, 101, 0.1);
    border-radius: 8px;
    background: var(--marketing-bg, #f7dde7);
    box-shadow: 0 8px 24px rgba(74, 46, 57, 0.06);
}

.home-page .marketing-slider-grid.is-feature-grid .marketing-grid-link {
    min-height: 120px;
    aspect-ratio: auto;
}

.home-page .marketing-image-banner { aspect-ratio: 5.2 / 1; min-height: 150px; }

.home-page .marketing-banner-grid {
    display: grid;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
}

.home-page .marketing-banner-grid .marketing-grid-link {
    min-height: 170px;
    aspect-ratio: 3.1 / 1;
    border: 1px solid rgba(130, 84, 101, 0.1);
    border-radius: 8px;
    background: var(--marketing-bg, #f7dde7);
}

.home-page .marketing-banner-grid.layout-grid2,
.home-page .marketing-banner-grid.layout-grid4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home-page .marketing-banner-grid.layout-grid3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-page .marketing-banner-grid.layout-stack2 { grid-template-columns: 1fr; }
.home-page .marketing-banner-grid.layout-feature { grid-template-columns: 1.45fr 1fr; }
.home-page .marketing-banner-grid.layout-feature .marketing-grid-link:first-child { grid-row: span 2; }

.home-page .marketing-text-banner,
.home-page .marketing-text-link {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px 20px;
    color: var(--marketing-text, #2b2226);
    text-align: center;
    text-decoration: none;
    line-height: 1.7;
    font-weight: 800;
}

.home-page .marketing-text-link strong { padding: 7px 12px; border-radius: 6px; color: #fff; background: #c65d82; font-size: 0.82rem; }
.home-page .marketing-marquee { overflow: hidden; }
.home-page .marketing-marquee-track {
    width: max-content;
    min-width: 200%;
    display: flex;
    align-items: center;
    animation: marketing-marquee-move var(--marketing-speed, 24s) linear infinite;
}
.home-page .marketing-marquee-link { min-width: max(260px, 25vw); padding: 13px 28px; color: inherit; text-align: center; text-decoration: none; font-weight: 800; }

@keyframes marketing-marquee-move {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 760px) {
    .home-page .marketing-block-slot { width: calc(100% - 20px); }
    .home-page .store-marketing-block { margin: 10px 0; }
    .home-page .marketing-slider.is-hero,
    .home-page .marketing-slider.is-compact,
    .home-page .marketing-slider-static,
    .home-page .marketing-image-banner { aspect-ratio: 2.15 / 1; min-height: 135px; }
    .home-page .marketing-slider-arrow { width: 32px; height: 32px; }
    .home-page .marketing-slider-arrow.previous { right: 8px; }
    .home-page .marketing-slider-arrow.next { left: 8px; }
    .home-page .marketing-media-overlay { inset-inline: 10px; bottom: 10px; max-width: calc(100% - 20px); }
    .home-page .marketing-media-overlay strong { max-width: 68%; padding: 6px 8px; }
    .home-page .marketing-media-button { padding: 6px 9px; font-size: 0.72rem; }
    .home-page .marketing-banner-grid { gap: 8px; }
    .home-page .marketing-slider-grid { gap: 8px; }
    .home-page .marketing-slider-grid .marketing-grid-link { min-height: 105px; aspect-ratio: 1.65 / 1; }
    .home-page .marketing-slider-grid.is-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; }
    .home-page .marketing-slider-grid.is-feature-grid .marketing-grid-link:first-child { grid-column: 1 / -1; grid-row: auto; }
    .home-page .marketing-banner-grid.layout-grid3,
    .home-page .marketing-banner-grid.layout-grid4,
    .home-page .marketing-banner-grid.layout-feature { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-page .marketing-banner-grid.layout-feature .marketing-grid-link:first-child { grid-column: 1 / -1; grid-row: auto; }
    .home-page .marketing-banner-grid .marketing-grid-link { min-height: 105px; aspect-ratio: 1.65 / 1; }
    .home-page .marketing-text-banner,
    .home-page .marketing-text-link { min-height: 54px; padding: 10px 12px; gap: 10px; font-size: 0.86rem; }
}

@media (max-width: 420px) {
    .home-page .marketing-slider-grid.is-two-columns,
    .home-page .marketing-slider-grid.is-feature-grid { grid-template-columns: 1fr; }
    .home-page .marketing-slider-grid.is-feature-grid .marketing-grid-link:first-child { grid-column: auto; }
    .home-page .marketing-slider-grid.is-grid-2x2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-page .marketing-slider-grid .marketing-grid-link { min-height: 92px; }
    .home-page .marketing-banner-grid.layout-grid2,
    .home-page .marketing-banner-grid.layout-grid3,
    .home-page .marketing-banner-grid.layout-grid4,
    .home-page .marketing-banner-grid.layout-feature { grid-template-columns: 1fr; }
    .home-page .marketing-banner-grid.layout-feature .marketing-grid-link:first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .marketing-slider-item { transition: none; }
    .home-page .marketing-marquee-track { animation: none; }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-ivory);
    color: var(--color-ink);
    font-family: "Cairo", Arial, sans-serif;
    line-height: 1.7;
}

body.drawer-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 247, 243, 0.94);
    border-bottom: 1px solid rgba(231, 216, 208, 0.8);
    backdrop-filter: blur(18px);
}

.top-strip {
    background: var(--color-ink);
    color: var(--color-white);
    font-size: 0.84rem;
    text-align: center;
    padding: 7px 16px;
}

.navbar {
    width: var(--container);
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    min-width: 0;
}

.brand-logo-wrap,
.brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
}

.brand-logo-wrap {
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(199, 131, 150, 0.32);
    background: linear-gradient(145deg, #fff, #fff1f5);
    box-shadow: 0 10px 24px rgba(150, 85, 108, 0.12);
    overflow: hidden;
}

.brand-logo-wrap[hidden],
.brand-name[hidden],
.brand-mark[hidden] {
    display: none !important;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.brand-mark {
    border: 1px solid rgba(199, 131, 150, 0.55);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--color-primary-dark);
    font-family: "Aref Ruqaa", "Noto Kufi Arabic", serif;
    font-weight: 700;
    font-size: 1.35rem;
    background: radial-gradient(circle at 30% 25%, #fff 0%, #fff4f7 42%, #f4d9e1 100%);
    box-shadow: 0 10px 24px rgba(150, 85, 108, 0.12);
}

.brand-name {
    display: grid;
    gap: 0;
    min-width: 0;
}

.brand-ar {
    color: var(--color-primary-dark);
    font-family: "Aref Ruqaa", "Noto Kufi Arabic", serif;
    font-size: 1.48rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.brand-en {
    color: var(--color-muted);
    font-family: "Playfair Display", serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 3vw, 28px);
}

.nav-links a {
    color: var(--color-muted);
    font-weight: 700;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--color-primary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box {
    position: relative;
    width: 46px;
    min-width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(126, 75, 63, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(126, 75, 63, 0.08);
    overflow: hidden;
    transition: width 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.search-box:focus-within,
.search-box.has-query {
    width: min(240px, 30vw);
    border-color: rgba(126, 75, 63, 0.42);
    box-shadow: 0 12px 28px rgba(126, 75, 63, 0.14);
}

.search-icon {
    position: absolute;
    inset-inline-start: 13px;
    width: 18px;
    height: 18px;
    color: var(--color-primary-dark);
    pointer-events: none;
    z-index: 1;
}

.search-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.search-field {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 40px 0 14px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--color-ink);
    font-weight: 700;
    outline: none;
    opacity: 0;
    transition: opacity 0.16s ease;
}

.search-box:focus-within .search-field,
.search-box.has-query .search-field {
    opacity: 1;
}

.search-field::placeholder {
    color: var(--color-muted);
}

.icon-button,
.cart-trigger,
.close-button,
.quantity-button {
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-ink);
    min-height: 42px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    font-weight: 800;
}

.cart-trigger {
    background: var(--color-ink);
    color: var(--color-white);
    border-color: var(--color-ink);
}

.button,
.button-secondary,
.buy-btn,
.checkout-btn {
    border: 0;
    border-radius: var(--radius);
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 800;
}

.button,
.buy-btn,
.checkout-btn {
    background: var(--color-primary);
    color: var(--color-white);
}

.button:hover,
.buy-btn:hover,
.checkout-btn:hover {
    background: var(--color-primary-dark);
}

.button-secondary {
    background: var(--color-white);
    color: var(--color-ink);
    border: 1px solid var(--color-border);
}

.hero {
    min-height: min(720px, calc(100vh - 108px));
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 247, 243, 0.96) 0%, rgba(251, 247, 243, 0.82) 46%, rgba(251, 247, 243, 0.24) 100%),
        url("images/products/hero.png") center / cover;
}

.hero-inner {
    width: var(--container);
    margin: 0 auto;
    padding: 68px 0;
}

.eyebrow {
    color: var(--color-primary-dark);
    font-weight: 800;
    margin: 0 0 12px;
}

.hero h1,
.page-title,
.section-title,
.product-heading {
    font-family: "Noto Kufi Arabic", sans-serif;
    letter-spacing: 0;
}

.hero h1 {
    margin: 0;
    max-width: 660px;
    font-size: clamp(3.2rem, 9vw, 6.8rem);
    line-height: 1.05;
}

.hero-copy {
    max-width: 590px;
    color: var(--color-muted);
    font-size: 1.08rem;
    margin: 22px 0 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    gap: 14px;
    max-width: 590px;
    margin-top: 42px;
}

.metric {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(231, 216, 208, 0.86);
    border-radius: var(--radius);
    padding: 14px;
}

.metric strong {
    display: block;
    font-size: 1.2rem;
}

.metric span {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.benefits {
    width: var(--container);
    margin: -34px auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.benefit {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-card);
}

.benefit small {
    color: var(--color-primary-dark);
    font-weight: 800;
}

.benefit p {
    margin: 4px 0 0;
    color: var(--color-muted);
}

.section {
    width: var(--container);
    margin: 0 auto;
    padding: 72px 0 0;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-title {
    margin: 0;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.section-subtitle {
    margin: 8px 0 0;
    color: var(--color-muted);
}

.category-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.category-card,
.offer-banner {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 210px;
    position: relative;
    color: var(--color-white);
    background: var(--color-ink);
}

.category-card {
    border: 0;
    width: 100%;
    text-align: inherit;
    cursor: pointer;
}

.category-card.is-active {
    outline: 3px solid rgba(185, 134, 118, 0.75);
    outline-offset: 3px;
}

.category-card img,
.offer-banner img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    opacity: 0.72;
}

.category-card::after,
.offer-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(47, 37, 34, 0.78), rgba(47, 37, 34, 0.08));
}

.category-content,
.offer-content {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: inherit;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.category-content h3,
.offer-content h2 {
    margin: 0 0 8px;
}

.category-content p,
.offer-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.product-media {
    position: relative;
    display: block;
    background: var(--color-pearl);
    overflow: hidden;
}

.product-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.product-card:hover .product-image {
    transform: scale(1.04);
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-white);
    color: var(--color-offer);
    border: 1px solid rgba(185, 106, 60, 0.28);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 800;
}

.product-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.product-category,
.rating {
    color: var(--color-primary-dark);
    font-size: 0.88rem;
    font-weight: 800;
}

.product-title {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.45;
}

.product-title a {
    text-decoration: none;
}

.product-desc {
    color: var(--color-muted);
    margin: 0;
    min-height: 62px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.price {
    color: var(--color-ink);
    font-size: 1.28rem;
    font-weight: 800;
}

.old-price {
    color: #9c908c;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-inline-start: 6px;
}

.details-link {
    color: var(--color-primary-dark);
    font-weight: 800;
    text-decoration: none;
}

.offer-banner {
    min-height: 300px;
}

.offer-content {
    max-width: 560px;
}

.offer-content h2 {
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: clamp(1.7rem, 5vw, 3rem);
}

.offers-section {
    padding-top: 26px;
}

.offers-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 18px;
    align-items: stretch;
}

.offer-card,
.offer-empty {
    background: var(--color-white);
    border: 1px solid rgba(59, 49, 46, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1fr);
    min-height: 260px;
}

.offer-media {
    position: relative;
    background: var(--color-pearl);
    overflow: hidden;
    min-height: 240px;
}

.offer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-offer), var(--color-primary-dark));
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 900;
    font-size: 0.82rem;
    box-shadow: 0 12px 28px rgba(79, 43, 36, 0.18);
}

.offer-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--offer-card-text, var(--color-ink));
}

.offer-card-body h3 { margin: 0; font-size: 1.35rem; line-height: 1.45; }
.offer-card-body p { margin: 0; color: var(--color-muted); line-height: 1.8; }
.offer-price-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.offer-price-row strong { font-size: 1.45rem; color: var(--color-offer); }
.offer-price-row span { text-decoration: line-through; color: #9c908c; font-weight: 700; }
.offer-price-row em,
.offer-countdown { font-style: normal; border-radius: 999px; background: rgba(185, 106, 60, 0.1); color: var(--color-offer); padding: 6px 10px; font-weight: 900; font-size: 0.82rem; }
.offer-price-stack { display: grid; gap: 8px; padding: 12px; border: 1px solid rgba(185, 134, 118, 0.18); border-radius: 12px; background: rgba(255, 250, 247, 0.78); }
.offer-price-line, .offer-price-final { display: flex; align-items: center; justify-content: space-between; gap: 10px; line-height: 1.5; }
.offer-price-line span, .offer-price-final span { color: var(--color-muted); font-size: 0.86rem; font-weight: 800; }
.offer-price-line del { color: #9c908c; font-weight: 900; }
.offer-price-line strong { color: var(--color-ink); font-size: 1rem; }
.offer-price-line em { font-style: normal; border-radius: 999px; background: rgba(185, 106, 60, 0.1); color: var(--color-offer); padding: 5px 9px; font-weight: 900; font-size: 0.8rem; white-space: nowrap; }
.offer-price-final { padding-top: 8px; border-top: 1px solid rgba(185, 134, 118, 0.18); }
.offer-price-final strong { color: var(--color-offer); font-size: 1.5rem; }
.offer-saving { width: fit-content; border-radius: 999px; background: rgba(47, 191, 113, 0.12); color: #1f8c55; padding: 6px 10px; font-weight: 900; font-size: 0.82rem; }

.product-detail-offer-price {
    width: 100%;
    max-width: 520px;
}
.offer-countdown { width: fit-content; background: rgba(185, 134, 118, 0.12); color: var(--color-primary-dark); }
.offer-empty { grid-column: 1 / -1; grid-template-columns: 1fr; min-height: 140px; padding: 24px; align-items: center; justify-items: start; gap: 12px; color: var(--color-muted); }

.site-footer {
    margin-top: 78px;
    background: var(--color-ink);
    color: var(--color-white);
}

.footer-inner {
    width: var(--container);
    margin: 0 auto;
    padding: 38px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.footer-links,
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer-links a,
.social-links a {
    color: inherit;
    text-decoration: none;
    font-weight: 800;
}

.site-page {
    width: var(--container);
    margin: 0 auto;
    padding: 54px 0 20px;
}

.page-hero {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.page-hero h1 {
    margin: 0;
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.page-hero p {
    max-width: 760px;
    color: var(--color-muted);
    line-height: 1.9;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 18px;
    align-items: start;
}

.content-panel {
    background: var(--color-white);
    border: 1px solid rgba(59, 49, 46, 0.08);
    border-radius: var(--radius-sm);
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.content-panel h2,
.content-panel h3 {
    margin-top: 0;
    font-family: "Noto Kufi Arabic", sans-serif;
}

.managed-content {
    line-height: 2;
}

.managed-content p {
    margin: 0 0 16px;
    color: var(--color-muted);
}

.info-list {
    display: grid;
    gap: 12px;
}

.info-list p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.8;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form .field.full,
.contact-form button,
.contact-form .notice {
    grid-column: 1 / -1;
}

.contact-form textarea {
    min-height: 150px;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(47, 37, 34, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: min(440px, 100%);
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    background: var(--color-white);
    border-right: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.drawer-open .cart-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.drawer-open .cart-drawer {
    transform: translateX(0);
}

.cart-header,
.cart-footer {
    padding: 20px;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
    flex: 0 0 auto;
}

.cart-footer {
    border-top: 1px solid var(--color-border);
    overflow-y: auto;
    flex: 1 1 0;
    min-height: 0;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.cart-header h2 {
    margin: 0;
    font-family: "Noto Kufi Arabic", sans-serif;
}

.close-button {
    width: 42px;
    padding: 0;
}

.cart-body {
    padding: 18px 20px;
    overflow: auto;
    flex: 0 0 auto;
    max-height: min(34dvh, 260px);
    min-height: 96px;
    overscroll-behavior: contain;
}

.cart-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-ivory);
}

.cart-item span {
    color: var(--color-muted);
}

.cart-quantity {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.cart-quantity button,
.cart-quantity input {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    min-height: 36px;
    background: var(--color-white);
    color: var(--color-ink);
}

.cart-quantity button {
    min-width: 38px;
    padding: 0 10px;
    font-weight: 800;
}

.cart-quantity input {
    width: 70px;
    text-align: center;
    padding: 6px;
}

.remove-cart-item {
    color: #9b3f3d !important;
    background: #fff1f0 !important;
}

.clear-cart-button {
    width: 100%;
    margin: 10px 0;
}

.empty {
    color: var(--color-muted);
    margin: 8px 0 0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.checkout-form {
    display: grid;
    gap: 11px;
    padding-bottom: 14px;
}

.checkout-phone-field {
    grid-column: 1 / -1;
}

.checkout-phone-row {
    display: grid;
    grid-template-columns: minmax(84px, 104px) minmax(0, 1fr);
    gap: 9px;
    align-items: center;
}

.checkout-phone-row .checkout-dial-code {
    direction: ltr;
    text-align: center;
    font-weight: 800;
    min-width: 0;
}

.checkout-contact-note {
    margin: 0;
    padding: 8px 11px;
    border-inline-start: 3px solid var(--color-primary);
    background: #fff8fa;
    color: var(--color-muted);
    border-radius: 8px;
    font-size: 0.78rem;
    line-height: 1.55;
}

.customer-language-switch {
    position: fixed;
    inset-block-start: 16px;
    inset-inline-end: 16px;
    z-index: 30;
    width: auto;
    min-width: 88px;
    min-height: 38px;
    padding: 7px 12px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-ink);
    box-shadow: 0 8px 24px rgba(84, 57, 49, 0.1);
    font-weight: 800;
    cursor: pointer;
}

html[dir="ltr"] .navbar,
html[dir="ltr"] .section-header,
html[dir="ltr"] .product-meta,
html[dir="ltr"] .total-row,
html[dir="ltr"] .footer-inner {
    direction: ltr;
}

html[dir="ltr"] input,
html[dir="ltr"] textarea,
html[dir="ltr"] select {
    text-align: left;
}

@media (max-width: 520px) {
    .checkout-phone-row {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 7px;
    }

    .customer-language-switch {
        inset-block-start: 10px;
        inset-inline-end: 10px;
        min-width: 80px;
    }
}

.checkout-legal-note {
    margin: 4px 0 0;
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.checkout-legal-note a {
    color: var(--color-primary-dark);
    font-weight: 800;
}

.field {
    display: grid;
    gap: 6px;
}

.field label {
    color: var(--color-muted);
    font-weight: 700;
    font-size: 0.92rem;
}

input,
select {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 12px 13px;
    background: var(--color-white);
    color: var(--color-ink);
}

input:focus,
select:focus {
    outline: 2px solid rgba(185, 134, 118, 0.22);
    border-color: var(--color-primary);
}

.notice {
    margin: 12px 0 0;
    color: var(--color-success);
    font-weight: 800;
    min-height: 28px;
}

.store-maintenance-banner {
    position: fixed;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    z-index: 120;
    width: min(520px, calc(100% - 36px));
    margin: 0;
    padding: 24px 22px;
    border: 1px solid rgba(199, 131, 150, 0.32);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 244, 247, 0.98), rgba(255, 250, 246, 0.98));
    color: var(--color-primary-dark);
    font-weight: 900;
    text-align: center;
    font-size: clamp(1rem, 2.8vw, 1.25rem);
    line-height: 1.9;
    box-shadow: 0 24px 70px rgba(47, 37, 40, 0.2);
}

.store-maintenance-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.store-maintenance-brand img {
    display: block;
    width: min(118px, 38vw);
    max-height: 86px;
    object-fit: contain;
}

.store-maintenance-logo-fallback {
    font-family: "Aref Ruqaa", "Cairo", serif;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1;
}

.store-maintenance-banner p {
    margin: 0;
}

body.store-closed {
    overflow: hidden;
}

body.store-closed::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(47, 37, 40, 0.45);
    backdrop-filter: blur(3px);
    pointer-events: auto;
}

body.store-closed .site-header,
body.store-closed main,
body.store-closed .site-footer {
    filter: blur(2.5px);
    opacity: 0.42;
    pointer-events: none;
    user-select: none;
}

body.store-closed .cart-overlay,
body.store-closed .cart-drawer {
    pointer-events: none;
    opacity: 0;
}

.admin-maintenance-preview {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 130;
    padding: 10px 16px;
    background: #2f2528;
    color: #fff8f8;
    text-align: center;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(47, 37, 40, 0.22);
}

body.store-admin-preview {
    padding-top: 46px;
}

.store-maintenance-note,
.payment-unavailable-note {
    padding: 11px 13px;
    border-radius: var(--radius);
    line-height: 1.75;
}

.store-maintenance-note {
    border: 1px solid rgba(150, 85, 108, 0.25);
    background: #fff3f6;
    color: var(--color-primary-dark);
}

.payment-unavailable-note {
    border: 1px solid rgba(214, 183, 168, 0.45);
    background: #fffaf4;
    color: #7d5c48;
}

.order-success-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(47, 125, 90, 0.18);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(241, 255, 248, 0.96), rgba(255, 250, 246, 0.96));
    color: var(--color-ink);
}

.order-success-title {
    color: var(--color-success);
    font-weight: 900;
    font-size: 1.02rem;
}

.order-success-number {
    display: inline-flex;
    width: fit-content;
    direction: ltr;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--color-white);
    border: 1px solid rgba(47, 125, 90, 0.22);
    color: var(--color-success);
    font-size: clamp(1.25rem, 5vw, 1.8rem);
    font-weight: 900;
    letter-spacing: 0;
}

.order-success-text {
    color: var(--color-muted);
    font-weight: 800;
    line-height: 1.7;
}

.order-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.guest-orders-panel {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: clamp(20px, 4vw, 30px);
    display: grid;
    gap: 18px;
}

.guest-orders-header h2 {
    margin: 0 0 6px;
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.8rem);
}

.guest-orders-header p {
    margin: 0;
    color: var(--color-muted);
    font-weight: 700;
}

.guest-orders-list {
    display: grid;
    gap: 12px;
}

.guest-order-card {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr)) auto;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-ivory);
}

.guest-order-card span {
    display: block;
    color: var(--color-muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.guest-order-card strong {
    display: block;
    color: var(--color-ink);
    overflow-wrap: anywhere;
}

.cancellation-review-panel {
    margin: 16px 0 18px;
    padding: 16px;
    border: 1px solid rgba(199, 131, 150, 0.22);
    border-radius: var(--radius);
    background: #fff7f9;
}

.cancellation-requests-list {
    display: grid;
    gap: 12px;
}

.cancellation-request-card {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
}

.cancellation-request-card small,
.cancellation-request-card span {
    display: block;
    color: var(--color-muted);
    font-weight: 800;
}

.cancellation-request-card p {
    margin: 0;
    color: var(--color-ink);
    font-weight: 800;
}

.cancellation-request-card textarea {
    min-height: 74px;
    resize: vertical;
}

@media (max-width: 780px) {
    .guest-order-card {
        grid-template-columns: 1fr;
    }
}

.product-page {
    width: var(--container);
    margin: 0 auto;
    padding: 42px 0 0;
}

.breadcrumb {
    color: var(--color-muted);
    font-weight: 700;
    margin-bottom: 18px;
}

.breadcrumb a {
    color: var(--color-primary-dark);
    text-decoration: none;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 34px;
    align-items: start;
}

.gallery-panel,
.product-info-panel,
.info-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.gallery-panel {
    padding: 16px;
}

.main-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.thumbnail-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.thumbnail-row img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.product-info-panel {
    padding: clamp(20px, 4vw, 32px);
}

.product-heading {
    margin: 8px 0 12px;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
}

.product-description {
    color: var(--color-muted);
    margin: 0 0 22px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.product-price-row .price {
    font-size: 1.8rem;
}

.quantity-control {
    display: inline-grid;
    grid-template-columns: 42px 60px 42px;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 18px;
}

.quantity-button {
    border: 0;
    border-radius: 0;
    min-height: 42px;
    padding: 0;
}

.quantity-value {
    text-align: center;
    font-weight: 800;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.trust-list {
    display: grid;
    gap: 9px;
    margin-top: 22px;
    color: var(--color-muted);
}

.product-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin: 0 0 10px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(184, 118, 68, 0.1);
    color: #9b6a2f;
    font-weight: 800;
    line-height: 1.4;
}

.product-rating-summary span {
    color: #d6a23d;
}

.product-rating-summary small,
.product-rating-summary.is-empty {
    color: var(--color-muted);
    font-weight: 700;
}

.customer-rating-panel,
.product-return-policy-box {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
    padding: 14px;
    border: 1px solid rgba(185, 134, 118, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(255, 250, 247, 0.72);
}

.customer-rating-panel p,
.product-return-policy-box p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.8;
}

.rating-star-row {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
}

.rating-star {
    width: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(185, 134, 118, 0.26);
    background: var(--color-white);
    color: #c7b6ad;
    font-size: 1.25rem;
    line-height: 1;
}

.rating-star.is-selected {
    color: #d6a23d;
    background: rgba(214, 162, 61, 0.12);
    border-color: rgba(214, 162, 61, 0.42);
}

.product-rating-submit {
    width: fit-content;
}

.rating-message {
    min-height: 1.5em;
    margin: 0;
    color: var(--color-muted);
    font-weight: 700;
}

.rating-message[data-type="success"] {
    color: #1f8c55;
}

.rating-message[data-type="error"] {
    color: #b34242;
}

.details-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.info-card {
    padding: 18px;
}

.info-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.info-card p {
    color: var(--color-muted);
    margin: 0;
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .hero {
        min-height: auto;
        background:
            linear-gradient(0deg, rgba(251, 247, 243, 0.98), rgba(251, 247, 243, 0.82)),
            url("images/products/hero.png") center / cover;
    }

    .benefits,
    .category-row,
    .products-container,
    .product-layout,
    .details-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .section-header,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .content-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .offers-grid,
    .offer-card {
        grid-template-columns: 1fr;
    }

    .offer-media {
        min-height: 220px;
    }
    .top-strip {
        font-size: 0.78rem;
    }

    .navbar {
        min-height: 68px;
        gap: 12px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-ar {
        font-size: 1.08rem;
    }

    .brand-en {
        font-size: 0.62rem;
    }

    .hero-inner {
        padding: 54px 0 70px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .benefits {
        margin-top: -48px;
    }

    .section {
        padding-top: 54px;
    }

    .cart-trigger {
        padding: 0 11px;
        min-width: 54px;
    }

    .search-box {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    .search-box:focus-within,
    .search-box.has-query {
        width: min(210px, 58vw);
    }

    .cart-label {
        display: none;
    }

    .cart-drawer {
        display: flex;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .cart-header {
        position: sticky;
        top: 0;
        z-index: 1;
        background: var(--color-white);
    }

    .cart-body,
    .cart-footer {
        min-height: 0;
    }

    .cart-body {
        overflow: auto;
        max-height: min(30dvh, 220px);
    }

    .cart-footer {
        flex: 1 1 auto;
        overflow-y: auto;
        max-height: none;
    }

    .cart-footer {
        padding-bottom: max(28px, env(safe-area-inset-bottom));
    }
}
/* Homepage compact storefront layout */
.hero {
    min-height: clamp(360px, 48vh, 500px);
}

.hero-inner {
    padding: 42px 0 46px;
}

.hero h1 {
    font-size: clamp(2.35rem, 6vw, 4.35rem);
}

.hero-copy {
    max-width: 540px;
    font-size: 0.98rem;
    margin: 12px 0 18px;
}

.hero-metrics {
    gap: 10px;
    max-width: 560px;
    margin-top: 22px;
}

.metric {
    padding: 10px;
}

.metric strong {
    font-size: 1rem;
}

.metric span {
    font-size: 0.82rem;
}

.benefits {
    margin: 26px auto 0;
}

.benefit {
    padding: 14px;
}

.section {
    padding-top: 44px;
}

.offers-section {
    padding-top: 24px;
}

.section-header {
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(1.35rem, 3vw, 2.05rem);
}

.products-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}

.product-image {
    aspect-ratio: 1 / 1;
}

.badge {
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 0.7rem;
}

.product-body {
    padding: 12px;
    gap: 8px;
}

.product-category,
.rating {
    font-size: 0.76rem;
}

.product-title {
    font-size: 0.96rem;
    line-height: 1.35;
}

.product-desc {
    min-height: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    gap: 8px;
    flex-wrap: wrap;
}

.price {
    font-size: 1rem;
}

.old-price {
    font-size: 0.78rem;
    margin-inline-start: 4px;
}

.product-card .buy-btn {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
    width: 100%;
}

@media (min-width: 1280px) {
    .products-container {
        grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 34px 0 42px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .benefits {
        margin-top: 20px;
    }
}

@media (max-width: 520px) {
    .products-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .product-body {
        padding: 10px;
    }

    .product-card .buy-btn {
        min-height: 36px;
        font-size: 0.78rem;
    }
}

@media (max-width: 340px) {
    .products-container {
        grid-template-columns: 1fr;
    }
}
/* Offers first polish */
main > .offers-section:first-child {
    padding-top: 18px;
}

.offers-section .section-header {
    align-items: center;
}

.offers-section .button-secondary,
.hero-actions .button,
.hero-actions .button-secondary {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    box-shadow: none;
}

.hero-actions .button {
    background: linear-gradient(135deg, #c78396, #b66f86);
    color: #fff;
}

.offers-section .button-secondary,
.hero-actions .button-secondary {
    background: #fff7f9;
    color: var(--color-primary-dark);
    border-color: #ead8df;
}

.offers-section .button-secondary:hover,
.hero-actions .button-secondary:hover {
    background: #f7e8ec;
    color: var(--color-primary-dark);
}

.hero {
    min-height: clamp(300px, 38vh, 430px);
}

.hero-inner {
    padding: 34px 0 38px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.hero-copy {
    margin: 10px 0 14px;
}

@media (max-width: 760px) {
    main > .offers-section:first-child {
        padding-top: 14px;
    }

    .hero-inner {
        padding: 28px 0 34px;
    }
}
/* Compact offers product-style grid */
.offers-grid {
    grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
    gap: 12px;
    align-items: start;
}

.offer-card {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    min-height: 0;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(79, 43, 36, 0.08);
}

.offer-media {
    min-height: 0;
    aspect-ratio: 1 / 1;
}

.offer-badge {
    top: 8px;
    inset-inline-start: 8px;
    max-width: calc(100% - 16px);
    padding: 4px 8px;
    font-size: 0.66rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 8px 18px rgba(79, 43, 36, 0.16);
}

.offer-card-body {
    padding: 10px;
    gap: 7px;
}

.offer-card-body .product-category {
    font-size: 0.72rem;
}

.offer-card-body h3 {
    font-size: 0.92rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-card-body p {
    font-size: 0.74rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-price-stack {
    gap: 5px;
    padding: 8px;
    border-radius: 10px;
}

.offer-price-line,
.offer-price-final {
    gap: 5px;
    line-height: 1.35;
}

.offer-price-line span,
.offer-price-final span {
    font-size: 0.68rem;
}

.offer-price-line del,
.offer-price-line strong {
    font-size: 0.78rem;
}

.offer-price-line em {
    padding: 3px 6px;
    font-size: 0.66rem;
}

.offer-price-final {
    padding-top: 6px;
}

.offer-price-final strong {
    font-size: 0.98rem;
}

.offer-saving,
.offer-countdown {
    padding: 4px 7px;
    font-size: 0.66rem;
    line-height: 1.35;
}

.offer-card .buy-btn {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.76rem;
    width: 100%;
}

.offers-grid .offer-banner.offer-loading {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 14px;
    background: var(--color-white);
    color: var(--color-ink);
    box-shadow: 0 12px 28px rgba(79, 43, 36, 0.08);
}

.offers-grid .offer-banner.offer-loading::after {
    display: none;
}

.offers-grid .offer-banner.offer-loading img {
    position: relative;
    inset: auto;
    height: 120px;
    opacity: 1;
}

.offers-grid .offer-banner.offer-loading .offer-content {
    min-height: 0;
    height: auto;
    padding: 12px;
    color: var(--color-ink);
}

.offers-grid .offer-banner.offer-loading .offer-content h2 {
    font-size: 0.95rem;
}

.offers-grid .offer-banner.offer-loading .offer-content p {
    color: var(--color-muted);
    font-size: 0.78rem;
}

@media (min-width: 1280px) {
    .offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
    }
}

@media (max-width: 760px) {
    .offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .offer-card-body {
        padding: 9px;
    }
}

@media (max-width: 340px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
}
/* End compact offers product-style grid */
/* Refined hero and offers header */
main > .offers-section:first-child {
    padding-top: 12px;
}

.offers-section .section-header {
    margin-bottom: 12px;
}

.offers-section .eyebrow,
.hero-eyebrow {
    color: #b86f86;
    font-size: 0.82rem;
    margin-bottom: 5px;
}

.offers-section .section-title {
    font-family: "Aref Ruqaa", "Noto Kufi Arabic", serif;
    color: #8f4f66;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.2;
}

.offers-section .section-subtitle {
    max-width: 560px;
    font-size: 0.9rem;
    color: #8b737a;
}

.hero {
    min-height: clamp(210px, 28vh, 320px);
    background:
        linear-gradient(90deg, rgba(255, 247, 249, 0.98) 0%, rgba(253, 236, 241, 0.86) 48%, rgba(255, 247, 249, 0.35) 100%),
        url("images/products/hero.png") center / cover;
}

.hero-inner {
    padding: 20px 0 24px;
}

.hero h1 {
    max-width: 520px;
    font-family: "Aref Ruqaa", "Noto Kufi Arabic", serif;
    font-size: clamp(3rem, 6.5vw, 5rem);
    line-height: 0.95;
    color: #8f4f66;
    text-shadow: 0 10px 28px rgba(143, 79, 102, 0.14);
}

.hero-brand-word {
    display: inline-block;
    color: #8f4f66;
}

.hero-copy {
    max-width: 520px;
    margin: 8px 0 12px;
    color: #6f5962;
    font-size: 0.95rem;
    line-height: 1.75;
}

.hero-copy strong {
    color: #9b5870;
    font-weight: 900;
}

.hero-actions {
    gap: 8px;
}

.hero-actions .button,
.hero-actions .button-secondary {
    min-height: 31px;
    padding: 0 11px;
    font-size: 0.78rem;
}

.hero-metrics {
    margin-top: 12px;
    gap: 8px;
    max-width: 500px;
}

.metric {
    padding: 9px;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(199, 131, 150, 0.16);
}

.metric strong {
    color: #9b5870;
    font-size: 0.82rem;
}

.metric span {
    font-size: 0.72rem;
    line-height: 1.45;
}

@media (max-width: 760px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 18px 0 22px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-copy {
        font-size: 0.88rem;
    }

    .hero-metrics {
        display: none;
    }
}
/* End refined hero and offers header */
/* Header sections dropdown */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown summary {
    list-style: none;
    cursor: pointer;
    color: var(--color-muted);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    transition: color 0.18s ease, background 0.18s ease;
}

.nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown summary::after {
    content: "";
    width: 7px;
    height: 7px;
    border-inline-end: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: 0.72;
}

.nav-dropdown[open] summary,
.nav-dropdown summary:hover {
    color: var(--color-primary-dark);
    background: #fff7f9;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-start: 0;
    z-index: 80;
    min-width: 210px;
    max-height: min(360px, 72vh);
    overflow-y: auto;
    padding: 8px;
    border: 1px solid rgba(199, 131, 150, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(79, 43, 36, 0.14);
}

.nav-dropdown-menu a {
    display: block;
    padding: 9px 11px;
    border-radius: 12px;
    color: var(--color-ink);
    font-size: 0.9rem;
    line-height: 1.35;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: #fff0f4;
    color: var(--color-primary-dark);
}
/* End header sections dropdown */
/* Product size display */
.product-size-chip,
.cart-size-line {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border-radius: 999px;
    padding: 4px 8px;
    background: rgba(199, 131, 150, 0.11);
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.product-card .product-size-chip,
.offer-card .product-size-chip {
    margin: 0 0 2px;
}

.cart-size-line {
    margin-top: 5px;
    background: rgba(47, 191, 113, 0.11);
    color: #1f7a4d;
}

.admin-size-chip {
    margin-top: 5px;
    margin-bottom: 2px;
}

.product-detail-size {
    margin: 2px 0 4px;
}

.product-size-section-title {
    border: 1px solid rgba(199, 131, 150, 0.16);
    border-radius: 12px;
    background: #fff7f9;
    padding: 12px 14px;
}

.product-size-section-title strong {
    display: block;
    color: #96556c;
    font-weight: 900;
    margin-bottom: 3px;
}

.product-size-section-title small {
    display: block;
    color: #7a6870;
    font-weight: 700;
    line-height: 1.6;
}
/* End product size display */
/* Marketing product badges */
.marketing-badge {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    max-width: min(72%, 150px);
    border-radius: 999px;
    padding: 5px 9px;
    background: var(--marketing-badge-color, #35B779);
    color: #fff;
    box-shadow: 0 10px 24px rgba(31, 122, 77, 0.22);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-media .badge { inset-inline-start: 10px; inset-inline-end: auto; top: 10px; z-index: 2; }
.marketing-badge-preview,
.product-marketing-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border-radius: 999px;
    padding: 5px 10px;
    background: var(--marketing-badge-color, #35B779);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.35;
    box-shadow: 0 8px 18px rgba(31, 122, 77, 0.16);
}
.marketing-badge-preview.is-disabled { background: #d8d8d8 !important; color: #6b6b6b; box-shadow: none; }
.product-marketing-chip { margin: 5px 0 4px; }
.product-detail-marketing-badge { position: static; width: fit-content; max-width: 100%; margin: 2px 0 4px; }
.product-badge-section-title { border: 1px solid rgba(53, 183, 121, 0.18); border-radius: 12px; background: rgba(47, 191, 113, 0.08); padding: 12px 14px; }
.product-badge-section-title strong { display: block; color: #1f7a4d; font-weight: 900; margin-bottom: 3px; }
.product-badge-section-title small { display: block; color: #64756c; font-weight: 700; line-height: 1.6; }
.checkbox-field label { display: inline-flex; align-items: center; gap: 8px; }
.badge-bulk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; align-items: end; }
.badge-bulk-actions { align-items: center; flex-wrap: wrap; }
.badge-selected-counter { color: #64756c; font-weight: 800; }
@media (max-width: 560px) { .marketing-badge { top: 8px; inset-inline-end: 8px; max-width: 68%; padding: 4px 7px; font-size: 0.66rem; } }
/* End marketing product badges */
/* Support pages and cart polish v58 */
.content-grid { align-items: start; }
.content-panel.info-list { background: linear-gradient(180deg, #fffaf7 0%, #fff 100%); }
.content-panel { overflow-wrap: break-word; }
.contact-form input,
.contact-form select,
.contact-form textarea { border-radius: 10px; }
.contact-form textarea { min-height: 190px; line-height: 1.85; }
.cart-drawer { width: min(520px, 100%); background: linear-gradient(180deg, #fffdfb 0%, #ffffff 44%); }
.cart-header { padding: 18px 20px; background: #fff8f6; }
.cart-header h2 { font-size: 1.25rem; color: var(--color-ink); }
.cart-body { max-height: min(32dvh, 250px); padding: 16px 18px; background: #fffdfb; }
.cart-footer { padding: 18px; background: #fff; }
.cart-item { grid-template-columns: minmax(0, 1fr); border-radius: 14px; background: #fff; box-shadow: 0 10px 26px rgba(98, 72, 61, 0.08); }
.cart-item strong { color: var(--color-ink); line-height: 1.5; }
.cart-quantity { align-items: stretch; }
.cart-quantity button,
.cart-quantity input { border-radius: 999px; }
.cart-quantity input { width: 76px; font-weight: 800; }
.remove-cart-item { padding-inline: 16px !important; }
.total-row { position: sticky; top: 0; z-index: 1; align-items: center; padding: 12px 14px; border: 1px solid var(--color-border); border-radius: 14px; background: #fff8f6; }
.checkout-form { gap: 12px; }
.checkout-form .field { gap: 7px; }
.checkout-form input,
.checkout-form select,
.checkout-form textarea { min-height: 44px; border-radius: 12px; }
.checkout-btn { border-radius: 999px; }
@media (max-width: 640px) {
    .cart-drawer { width: 100%; }
    .cart-body { max-height: 28dvh; }
    .cart-footer { padding: 14px; }
    .checkout-form { gap: 10px; }
}

/* Home merchandising and phone checkout */
.home-slider {
    position: relative;
    width: min(1480px, calc(100% - 32px));
    min-height: clamp(260px, 38vw, 520px);
    margin: 20px auto 28px;
    overflow: hidden;
    border: 1px solid #f0dce4;
    border-radius: 8px;
    background: #fff8fa;
}
.home-slider[hidden] { display: none; }
.home-slider-track, .home-slide { position: absolute; inset: 0; }
.home-slide { opacity: 0; pointer-events: none; transition: opacity .45s ease; }
.home-slide.is-active { opacity: 1; pointer-events: auto; }
.home-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-slide.image-error { background: #f7dde7; }
.home-slide.image-error img { display: none; }
.home-slide-overlay { position: absolute; inset: auto 0 0; padding: clamp(20px, 5vw, 64px); color: #fff; background: rgba(43,34,38,.58); }
.home-slide-overlay h2 { margin: 0 0 8px; font-size: clamp(1.55rem, 3vw, 3rem); }
.home-slide-overlay p { max-width: 680px; margin: 0 0 16px; line-height: 1.8; }
.home-slider-arrow { position: absolute; z-index: 3; top: 50%; translate: 0 -50%; width: 44px; height: 44px; border: 1px solid #f0dce4; border-radius: 50%; background: rgba(255,255,255,.92); color: #d86c8f; font-size: 1.8rem; cursor: pointer; }
.home-slider-arrow.prev { right: 16px; }
.home-slider-arrow.next { left: 16px; }
.home-slider-dots { position: absolute; z-index: 3; bottom: 13px; left: 50%; translate: -50% 0; display: flex; gap: 7px; }
.home-slider-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.58); }
.home-slider-dots button.is-active { width: 24px; border-radius: 999px; background: #fff; }
.products-container { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; min-width: 0; }
.badge-product-section { min-width: 0; }
.badge-row-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.badge-row-heading h3 { margin: 0; color: #2b2226; font-size: 1.35rem; }
.badge-row-heading span { color: #8d6a78; font-size: .86rem; }
.product-horizontal-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(155px, 180px); gap: 12px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline proximity; padding: 2px 2px 12px; }
.product-horizontal-row .product-card { scroll-snap-align: start; min-width: 0; border-radius: 8px; }
.product-horizontal-row .product-media { aspect-ratio: 1 / 1; min-height: 0; }
.product-horizontal-row .product-body { padding: 11px; gap: 7px; }
.product-horizontal-row .product-title { font-size: .94rem; line-height: 1.55; min-height: 2.9em; }
.product-horizontal-row .product-desc { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: .78rem; }
.product-horizontal-row .buy-btn { min-height: 36px; padding: 7px 9px; font-size: .82rem; }
.compact-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 14px; }
.home-text-banner { min-height: 110px; display: grid; place-items: center; padding: 24px; border: 1px solid #f0dce4; border-radius: 8px; background: var(--banner-bg, #f7dde7); color: var(--banner-text, #2b2226); text-align: center; overflow: hidden; }
.home-text-banner span { font-size: clamp(1.2rem, 2.5vw, 2.1rem); font-weight: 900; line-height: 1.6; }
.marketing-badge { color: var(--marketing-badge-text-color, #fff); }
.phone-help { display: block; color: #7d6670; line-height: 1.6; margin-top: 6px; }
.checkout-phone-row input { min-width: 0; }
.checkout-phone-row .checkout-dial-code[readonly] { background: #fff8fa; color: #7b4d5e; font-weight: 900; cursor: default; }
.back-to-top { position: fixed; z-index: 70; left: 18px; bottom: 18px; width: 44px; height: 44px; border: 1px solid #f0dce4; border-radius: 50%; background: #fff; color: #d86c8f; box-shadow: 0 10px 26px rgba(98,72,61,.14); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
@media (max-width: 720px) {
    .home-slider { width: calc(100% - 20px); min-height: 250px; margin-top: 10px; }
    .home-slide-overlay { padding: 18px 18px 38px; }
    .home-slide-overlay p { font-size: .88rem; }
    .home-slider-arrow { width: 38px; height: 38px; }
    .product-horizontal-row { grid-auto-columns: minmax(142px, 46vw); gap: 10px; }
    .compact-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .checkout-phone-row { grid-template-columns: 92px minmax(0,1fr); }
}
@media (max-width: 360px) {
    .compact-products-grid { grid-template-columns: 1fr; }
}
/* Rawnq - طھطµط؛ظٹط± ط³ظ„ط§ظٹط¯ط± ط§ظ„طµظپط­ط© ط§ظ„ط±ط¦ظٹط³ظٹط© ظپظ‚ط· */
.hero-slider,
.home-slider,
.main-slider,
.store-slider,
.slider-section,
.slider-container {
  max-width: 1180px !important;
  margin: 18px auto !important;
  padding: 0 14px !important;
  overflow: hidden !important;
}

.hero-slider img,
.home-slider img,
.main-slider img,
.store-slider img,
.slider-section img,
.slider-container img {
  width: 100% !important;
  height: auto !important;
  max-height: 360px !important;
  object-fit: contain !important;
  border-radius: 22px !important;
  display: block !important;
  margin: 0 auto !important;
  background: #fff3f8 !important;
}

.hero-slide,
.home-slide,
.main-slide,
.store-slide,
.slider-slide,
.slide {
  max-height: 380px !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: #fff3f8 !important;
}

@media (max-width: 768px) {
  .hero-slider,
  .home-slider,
  .main-slider,
  .store-slider,
  .slider-section,
  .slider-container {
    max-width: 100% !important;
    margin: 12px auto !important;
    padding: 0 10px !important;
  }

  .hero-slider img,
  .home-slider img,
  .main-slider img,
  .store-slider img,
  .slider-section img,
  .slider-container img {
    max-height: 210px !important;
    object-fit: contain !important;
    border-radius: 16px !important;
  }

  .hero-slide,
  .home-slide,
  .main-slide,
  .store-slide,
  .slider-slide,
  .slide {
    max-height: 230px !important;
    border-radius: 16px !important;
  }
}/* Rawnq - ط¥طµظ„ط§ط­ ط¹ط±ط¶ ط³ظ„ط§ظٹط¯ط± ط§ظ„ظˆط§ط¬ظ‡ط© ظƒطµظˆط±ط© ظپظ‚ط· */
.hero-slide,
.home-slide,
.main-slide,
.store-slide,
.slider-slide {
  height: 260px !important;
  max-height: 260px !important;
  min-height: 0 !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #fff3f8 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}

/* Rawnq cart and checkout: mobile-first presentation v103 */
.cart-drawer {
  z-index: 150;
  width: min(680px, 100vw);
  max-width: 100vw;
  direction: rtl;
  background: #fff;
  border-right-color: #eadfe2;
  box-shadow: 14px 0 48px rgba(62, 45, 49, 0.18);
  overflow: clip;
}

.cart-overlay {
  z-index: 145;
}

.cart-drawer [hidden] {
  display: none !important;
}

.cart-header {
  min-height: 72px;
  padding: 14px 24px;
  background: #fff;
}

.cart-header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-header-brand > div {
  display: grid;
  gap: 2px;
}

.cart-header-brand strong {
  color: #9e4f68;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 1.18rem;
}

.cart-header-brand span:not(.cart-brand-mark) {
  color: #72666a;
  font-size: 0.78rem;
}

.cart-brand-mark,
.cart-summary-logo {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #e7d7dc;
  border-radius: 50%;
  background: #fff8fa;
  color: #a34f69;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-weight: 900;
}

.cart-header .close-button {
  width: 40px;
  height: 40px;
  min-height: 40px;
  border: 1px solid #eadfe2;
  border-radius: 50%;
  background: #fff;
  color: #4d4548;
  font-size: 1.25rem;
}

.cart-shipping-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  background: #8a9d90;
  color: #fff;
}

.cart-shipping-banner p {
  flex: 1;
  margin: 0;
  text-align: center;
  line-height: 1.55;
}

.cart-shipping-banner button {
  width: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
}

.cart-order-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid #eee6e8;
}

.cart-summary-copy {
  display: grid;
  gap: 5px;
}

.cart-summary-copy > span:first-child {
  color: #40383b;
  font-size: 1.05rem;
  font-weight: 800;
}

.cart-summary-copy strong {
  color: #2f292b;
  font-size: 1.55rem;
  line-height: 1.35;
}

.cart-summary-copy small {
  color: #2cae6f;
  font-size: 0.9rem;
  font-weight: 800;
}

.cart-summary-thumbnails {
  display: flex;
  direction: ltr;
  min-width: 0;
}

.cart-summary-thumbnails img,
.cart-summary-thumbnails > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-inline-start: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #f8f2f4;
  object-fit: contain;
  color: #a34f69;
  font-weight: 900;
}

.cart-summary-logo {
  width: 64px;
  height: 64px;
  color: #3d3638;
  background: #f7f8f8;
}

.cart-details-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 48px;
  padding: 9px 18px;
  border: 0;
  border-bottom: 1px solid #eee6e8;
  border-radius: 0;
  background: #fbfafb;
  color: #564c50;
  font-weight: 800;
}

.cart-details-toggle[aria-expanded="false"] span:last-child {
  transform: rotate(180deg);
}

.cart-body {
  min-height: 0;
  max-height: 270px;
  padding: 14px 24px;
  background: #fff;
}

.cart-list {
  gap: 10px;
}

.cart-item {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #ede4e6;
  border-radius: 8px;
  background: #fff;
}

.cart-item-media {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #faf5f7;
  overflow: hidden;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-media span {
  color: #a34f69;
  font-weight: 900;
}

.cart-item-content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cart-item-name {
  overflow-wrap: anywhere;
  line-height: 1.55;
}

.cart-item-unit-price,
.cart-size-line {
  display: block;
  color: #786d71;
  font-size: 0.78rem;
}

.cart-item-total {
  white-space: nowrap;
  color: #42383c;
}

.cart-quantity {
  margin-top: 5px;
  gap: 5px;
}

.cart-quantity button,
.cart-quantity input {
  min-height: 32px;
}

.cart-quantity button {
  min-width: 32px;
  padding: 0 8px;
}

.cart-quantity input {
  width: 50px;
  padding: 4px;
}

.cart-quantity .remove-cart-item {
  margin-inline-start: 4px;
  border-color: #f1d9dc;
  background: #fff7f8 !important;
}

.cart-footer {
  padding: 0 24px max(24px, env(safe-area-inset-bottom));
  border-top: 1px solid #eee6e8;
  background: #fff;
}

.clear-cart-button {
  width: auto;
  margin: 14px 0 4px;
  padding: 8px 12px;
  border-color: #ead9de;
  color: #9a4a62;
  font-size: 0.8rem;
}

.checkout-form {
  gap: 0;
  padding: 0;
}

.checkout-section {
  padding: 22px 0;
  border-bottom: 1px solid #e8e1e3;
}

.checkout-section-heading {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.checkout-section-heading h3,
.checkout-section-heading p {
  margin: 0;
}

.checkout-section-heading h3 {
  color: #3f373a;
  font-size: 1.05rem;
}

.checkout-section-heading p {
  margin-top: 3px;
  color: #877b7f;
  font-size: 0.78rem;
  line-height: 1.55;
}

.checkout-section-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #eadde1;
  border-radius: 50%;
  background: #fff8fa;
  color: #b45f78;
  font-size: 1rem;
}

.checkout-edit-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: auto;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid #ded4d7;
  border-radius: 50%;
  background: #fff;
  color: #6f6267;
}

.checkout-edit-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.checkout-section-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-section-fields.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-section-fields .full-width {
  grid-column: 1 / -1;
}

.checkout-form input,
.checkout-form select {
  min-height: 48px;
  border: 1px solid #ddd3d6;
  border-radius: 8px;
  background: #fff;
}

.checkout-form input:focus,
.checkout-form select:focus {
  outline: 2px solid rgba(183, 92, 119, 0.16);
  border-color: #b75c77;
}

.checkout-phone-row {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 0;
  direction: ltr;
}

.checkout-phone-country {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 48px;
  padding: 0 9px;
  border: 1px solid #ddd3d6;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: #faf8f9;
}

.checkout-phone-row > #customer-phone {
  border-radius: 0 8px 8px 0;
  direction: ltr;
  text-align: left;
}

.checkout-phone-country .checkout-dial-code {
  width: 62px;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.required-mark,
.field-error {
  color: #c94e5a;
}

.field-error,
.phone-help {
  line-height: 1.55;
}

.checkout-shipping-company .checkout-section-heading,
.checkout-payment-section .checkout-section-heading {
  margin-bottom: 0;
}

.checkout-payment-section .field {
  margin-top: 15px;
}

.payment-preview-message {
  margin: 9px 0 0;
  padding: 10px 12px;
  border: 1px solid #eddae0;
  border-radius: 8px;
  background: #fff8fa;
  color: #8e4a60;
  line-height: 1.65;
}

.checkout-contact-note,
.payment-unavailable-note,
.checkout-legal-note {
  margin: 14px 0 0;
}

.checkout-btn {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border: 1px solid #171315;
  border-radius: 8px;
  background: #171315;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.checkout-btn:hover,
.checkout-btn:focus-visible {
  background: #3f3035;
}

@media (max-width: 680px) {
  .cart-drawer {
    width: 100vw;
  }

  .cart-header {
    min-height: 62px;
    padding: 10px 16px;
  }

  .cart-shipping-banner {
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .cart-order-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 18px 16px;
  }

  .cart-summary-copy strong {
    font-size: 1.3rem;
  }

  .cart-summary-logo {
    width: 54px;
    height: 54px;
    font-size: 0.85rem;
  }

  .cart-summary-thumbnails {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .cart-body,
  .cart-footer {
    padding-inline: 16px;
  }

  .cart-body {
    max-height: 245px;
  }

  .cart-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 9px;
    padding: 10px;
  }

  .cart-item-media {
    width: 48px;
    height: 48px;
  }

  .cart-item-total {
    grid-column: 2;
    justify-self: start;
  }

  .checkout-section {
    padding: 20px 0;
  }

  .checkout-section-heading {
    grid-template-columns: 34px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .checkout-section-icon {
    width: 34px;
    height: 34px;
  }

  .checkout-section-heading h3 {
    font-size: 0.98rem;
  }

  .checkout-section-fields,
  .checkout-section-fields.two-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-section-fields .full-width {
    grid-column: auto;
  }

  .checkout-phone-row {
    grid-template-columns: 104px minmax(0, 1fr);
  }
}

/* v167: storefront-controlled promo, free-shipping message, trust bar, and main hero ratio. */
.home-page .top-strip[hidden],
.home-page .cart-shipping-banner[hidden],
.home-page .benefits[hidden],
.trust-feature-modal[hidden] {
  display: none !important;
}

.home-page .benefits {
  display: block;
  width: min(var(--container), calc(100% - 32px));
  margin: 20px auto 10px;
  padding: 9px;
  border: 1px solid #eee8ea;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.home-page .benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 6px;
}

.home-page .benefits-list .benefit {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  margin: 0;
  padding: 6px 8px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  font: inherit;
  text-align: start;
}

.home-page .benefits-list button.benefit {
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.home-page .benefits-list button.benefit:hover,
.home-page .benefits-list button.benefit:focus-visible {
  background: #fff5f8;
}

.trust-feature-modal {
  position: fixed;
  z-index: 1400;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.trust-feature-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(32, 24, 28, 0.48);
}

.trust-feature-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(440px, 100%);
  padding: 26px 24px 24px;
  border: 1px solid #eadde2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(35, 24, 29, 0.2);
  color: #241d20;
  text-align: center;
}

.trust-feature-modal-close {
  position: absolute;
  inset: 10px 10px auto auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #eadde2;
  border-radius: 50%;
  background: #fff;
  color: #5f4d54;
  font-size: 1.2rem;
}

.trust-feature-modal-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #fff1f5;
  color: #a83258;
  font-size: 1.1rem;
  font-weight: 800;
}

.trust-feature-modal-card h2 { margin: 0 0 8px; font-size: 1.15rem; }
.trust-feature-modal-card p { margin: 0; color: #62595d; font-size: .9rem; line-height: 1.9; }

@media (max-width: 768px) {
  .home-page .benefits {
    width: calc(100% - 24px);
    margin-block: 14px 8px;
    padding: 7px;
    overflow: hidden;
  }

  .home-page .benefits-list {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .home-page .benefits-list::-webkit-scrollbar { display: none; }

  .home-page .benefits-list .benefit {
    flex: 0 0 104px;
    display: grid;
    justify-items: center;
    gap: 3px;
    min-height: 58px;
    padding: 5px 3px;
    text-align: center;
  }

  .home-page .benefits-list .benefit p { text-align: center; }
  .home-page .benefits-list .benefit strong { font-size: .6rem; }
  .home-page .benefits-list .benefit small { display: block; font-size: .52rem; }
  .trust-feature-modal-card { padding: 24px 18px 20px; }
}

/* v166: independent slider and banner presentation controlled by marketingBlocks. */
body.home-page .store-marketing-block {
  box-sizing: border-box !important;
  width: min(calc(100% - 32px), var(--marketing-max-width, 1040px)) !important;
  max-width: var(--marketing-max-width, 1040px) !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin-block: var(--marketing-margin-top, 12px) var(--marketing-margin-bottom, 12px) !important;
  margin-inline: auto !important;
  padding: var(--marketing-padding, 0) !important;
  border: 0 !important;
  border-radius: var(--marketing-radius, 14px) !important;
  background: var(--marketing-bg, transparent) !important;
  box-shadow: none !important;
  color: var(--marketing-text, #2b2226);
  overflow: hidden !important;
  isolation: isolate;
}

body.home-page .store-marketing-block.marketing-container-wide,
body.home-page .store-marketing-block.is-marketing-full-width {
  width: min(100%, var(--marketing-max-width, 1040px)) !important;
}

body.home-page .store-marketing-block.marketing-container-fullBleed,
body.home-page .store-marketing-block.is-marketing-full-bleed {
  width: 100dvw !important;
  max-width: 100dvw !important;
  margin-inline: calc(50% - 50dvw) !important;
}

body.home-page .store-marketing-block.marketing-container-seamless {
  width: min(100%, var(--marketing-max-width, 1040px)) !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.home-page .store-marketing-block.has-marketing-shadow {
  box-shadow: 0 12px 32px rgba(68, 41, 50, 0.12) !important;
}

body.home-page .store-marketing-block[data-marketing-layout="fullWidthSingle"].uses-aspect-ratio,
body.home-page .store-marketing-block[data-marketing-layout="fullWidthCarousel"].uses-aspect-ratio {
  height: auto !important;
  max-height: none !important;
  aspect-ratio: var(--marketing-aspect-ratio, 1600 / 330) !important;
}

body.home-page .store-marketing-block[data-marketing-layout="fullWidthSingle"].has-custom-heights,
body.home-page .store-marketing-block[data-marketing-layout="fullWidthCarousel"].has-custom-heights {
  height: var(--marketing-height-desktop, auto) !important;
  max-height: none !important;
  aspect-ratio: auto !important;
}

body.home-page .store-marketing-block .marketing-slider-track,
body.home-page .store-marketing-block .marketing-slider-item,
body.home-page .store-marketing-block .marketing-slider-link,
body.home-page .store-marketing-block .marketing-banner-link,
body.home-page .store-marketing-block .marketing-grid-link,
body.home-page .store-marketing-block .marketing-media,
body.home-page .store-marketing-block .responsive-marketing-picture {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.home-page .store-marketing-block[data-marketing-layout="fullWidthSingle"] .marketing-slider-link,
body.home-page .store-marketing-block[data-marketing-layout="fullWidthSingle"] .marketing-media,
body.home-page .store-marketing-block[data-marketing-layout="fullWidthSingle"] .responsive-marketing-picture,
body.home-page .store-marketing-block[data-marketing-layout="fullWidthCarousel"] .marketing-slider-track,
body.home-page .store-marketing-block[data-marketing-layout="fullWidthCarousel"] .marketing-slider-item,
body.home-page .store-marketing-block[data-marketing-layout="fullWidthCarousel"] .marketing-slider-link,
body.home-page .store-marketing-block[data-marketing-layout="fullWidthCarousel"] .marketing-media,
body.home-page .store-marketing-block[data-marketing-layout="fullWidthCarousel"] .responsive-marketing-picture {
  height: 100% !important;
}

body.home-page .store-marketing-block .responsive-marketing-picture > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-position: var(--marketing-object-position, center) !important;
  background: transparent !important;
}

body.home-page .store-marketing-block .responsive-marketing-picture.media-fit-contain > img,
body.home-page .store-marketing-block.uses-aspect-ratio .responsive-marketing-picture.media-fit-smart > img {
  object-fit: contain !important;
}

body.home-page .store-marketing-block .responsive-marketing-picture.media-fit-cover > img,
body.home-page .store-marketing-block.has-custom-heights .responsive-marketing-picture.media-fit-smart > img {
  object-fit: cover !important;
}

body.home-page .store-marketing-block .responsive-marketing-picture.media-fit-fill > img {
  object-fit: fill !important;
}

body.home-page .store-marketing-block .responsive-marketing-picture.media-pos-center > img { object-position: center center !important; }
body.home-page .store-marketing-block .responsive-marketing-picture.media-pos-right > img,
body.home-page .store-marketing-block .responsive-marketing-picture.media-pos-center-right > img { object-position: right center !important; }
body.home-page .store-marketing-block .responsive-marketing-picture.media-pos-left > img,
body.home-page .store-marketing-block .responsive-marketing-picture.media-pos-center-left > img { object-position: left center !important; }
body.home-page .store-marketing-block .responsive-marketing-picture.media-pos-top > img { object-position: center top !important; }
body.home-page .store-marketing-block .responsive-marketing-picture.media-pos-bottom > img { object-position: center bottom !important; }

body.home-page .store-marketing-block.marketing-slider-grid,
body.home-page .store-marketing-block.marketing-banner-grid {
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  display: grid !important;
  gap: 12px !important;
  align-items: stretch !important;
}

body.home-page .store-marketing-block.marketing-slider-grid.is-two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.home-page .store-marketing-block.marketing-slider-grid.is-grid-2x2,
body.home-page .store-marketing-block.marketing-banner-grid.layout-grid4 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.home-page .store-marketing-block.marketing-slider-grid.is-feature-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
}

body.home-page .store-marketing-block.marketing-slider-grid.is-feature-grid > :first-child {
  grid-row: 1 / 3;
}

body.home-page .store-marketing-block.marketing-slider-grid .marketing-grid-link,
body.home-page .store-marketing-block.marketing-banner-grid .marketing-grid-link,
body.home-page .store-marketing-block.marketing-slider-grid .marketing-media,
body.home-page .store-marketing-block.marketing-banner-grid .marketing-media,
body.home-page .store-marketing-block.marketing-slider-grid .responsive-marketing-picture,
body.home-page .store-marketing-block.marketing-banner-grid .responsive-marketing-picture {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: var(--marketing-aspect-ratio, 1600 / 520) !important;
  border-radius: min(var(--marketing-radius, 14px), 18px) !important;
  overflow: hidden !important;
}

body.home-page .store-marketing-block.marketing-slider-grid.has-custom-heights,
body.home-page .store-marketing-block.marketing-banner-grid.has-custom-heights {
  height: var(--marketing-height-desktop, auto) !important;
  grid-auto-rows: minmax(0, 1fr);
}

body.home-page .store-marketing-block.marketing-slider-grid.has-custom-heights .marketing-grid-link,
body.home-page .store-marketing-block.marketing-banner-grid.has-custom-heights .marketing-grid-link,
body.home-page .store-marketing-block.marketing-slider-grid.has-custom-heights .marketing-media,
body.home-page .store-marketing-block.marketing-banner-grid.has-custom-heights .marketing-media,
body.home-page .store-marketing-block.marketing-slider-grid.has-custom-heights .responsive-marketing-picture,
body.home-page .store-marketing-block.marketing-banner-grid.has-custom-heights .responsive-marketing-picture {
  height: 100% !important;
  aspect-ratio: auto !important;
}

body.home-page .store-marketing-block .marketing-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: clamp(14px, 4vw, 42px);
  color: var(--overlay-text-color, #fff);
  text-align: center;
  pointer-events: none;
}

body.home-page .store-marketing-block .marketing-media-overlay strong {
  max-width: 68%;
  font-size: clamp(1.05rem, 3vw, 2.25rem);
  line-height: 1.3;
}

body.home-page .store-marketing-block .marketing-media-overlay > span:not(.marketing-media-button) {
  max-width: 68%;
  font-size: clamp(0.78rem, 1.5vw, 1.05rem);
}

body.home-page .store-marketing-block .marketing-media-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 16px;
  border-radius: 6px;
  background: var(--overlay-button-color, #b33c64);
  color: #fff;
  font-size: 0.86rem;
}

body.home-page .store-marketing-block .marketing-media-overlay.text-position-top-right,
body.home-page .store-marketing-block .marketing-media-overlay.text-position-top-left { justify-content: flex-start; }
body.home-page .store-marketing-block .marketing-media-overlay.text-position-bottom-right,
body.home-page .store-marketing-block .marketing-media-overlay.text-position-bottom-left { justify-content: flex-end; }
body.home-page .store-marketing-block .marketing-media-overlay.text-position-top-right,
body.home-page .store-marketing-block .marketing-media-overlay.text-position-bottom-right { align-items: flex-start; text-align: right; }
body.home-page .store-marketing-block .marketing-media-overlay.text-position-top-left,
body.home-page .store-marketing-block .marketing-media-overlay.text-position-bottom-left { align-items: flex-end; text-align: left; }

@media (min-width: 1025px) {
  body.home-page .store-marketing-block.hide-marketing-desktop { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .home-page .marketing-layout-block.hide-marketing-tablet { display: none; }

  body.home-page .store-marketing-block.hide-marketing-tablet { display: none !important; }

  body.home-page .store-marketing-block.has-custom-heights {
    height: var(--marketing-height-tablet, auto) !important;
  }

  body.home-page .store-marketing-block[data-marketing-layout="fullWidthSingle"].has-custom-heights,
  body.home-page .store-marketing-block[data-marketing-layout="fullWidthCarousel"].has-custom-heights,
  body.home-page .store-marketing-block.marketing-slider-grid.has-custom-heights,
  body.home-page .store-marketing-block.marketing-banner-grid.has-custom-heights {
    height: var(--marketing-height-tablet, auto) !important;
  }
}

@media (max-width: 767px) {
  .home-page .marketing-layout-block.hide-marketing-mobile { display: none; }

  body.home-page .store-marketing-block.hide-marketing-mobile { display: none !important; }

  body.home-page .store-marketing-block {
    width: min(calc(100% - 24px), var(--marketing-max-width, 1040px)) !important;
    max-width: calc(100% - 24px) !important;
  }

  body.home-page .store-marketing-block.marketing-container-wide,
  body.home-page .store-marketing-block.is-marketing-full-width,
  body.home-page .store-marketing-block.marketing-container-seamless {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
  }

  body.home-page .store-marketing-block.marketing-container-fullBleed,
  body.home-page .store-marketing-block.is-marketing-full-bleed {
    width: 100dvw !important;
    max-width: 100dvw !important;
    margin-inline: calc(50% - 50dvw) !important;
  }

  body.home-page .store-marketing-block.has-custom-heights {
    height: var(--marketing-height-mobile, auto) !important;
  }

  body.home-page .store-marketing-block[data-marketing-layout="fullWidthSingle"].has-custom-heights,
  body.home-page .store-marketing-block[data-marketing-layout="fullWidthCarousel"].has-custom-heights,
  body.home-page .store-marketing-block.marketing-slider-grid.has-custom-heights,
  body.home-page .store-marketing-block.marketing-banner-grid.has-custom-heights {
    height: var(--marketing-height-mobile, auto) !important;
  }

  body.home-page .store-marketing-block.marketing-slider-grid,
  body.home-page .store-marketing-block.marketing-banner-grid {
    gap: 10px !important;
  }

  body.home-page .store-marketing-block.marketing-mobile-stack {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto !important;
    height: auto !important;
  }

  body.home-page .store-marketing-block.marketing-mobile-stack > :first-child {
    grid-row: auto !important;
  }

  body.home-page .store-marketing-block.marketing-mobile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    height: auto !important;
  }

  body.home-page .store-marketing-block.marketing-mobile-horizontalScroll {
    display: flex !important;
    align-items: stretch !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.home-page .store-marketing-block.marketing-mobile-horizontalScroll::-webkit-scrollbar { display: none; }

  body.home-page .store-marketing-block.marketing-mobile-horizontalScroll > * {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }

  body.home-page .store-marketing-block .marketing-media-overlay {
    gap: 5px;
    padding: 12px;
  }

  body.home-page .store-marketing-block .marketing-media-overlay strong,
  body.home-page .store-marketing-block .marketing-media-overlay > span:not(.marketing-media-button) {
    max-width: 82%;
  }
}

@media (min-width: 1025px) {
  .home-page .marketing-layout-block.hide-marketing-desktop { display: none; }
}

/* Compact cart and independent address/phone country pickers v112 */
.home-page .cart-drawer {
  width: min(540px, 100vw);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  background: #fff;
}

.home-page .cart-header {
  position: static;
  min-height: 58px;
  padding: 9px 16px;
  border-bottom: 1px solid #eee5e8;
  background: #fff;
}

.home-page .cart-header-brand {
  gap: 9px;
}

.home-page .cart-brand-mark {
  width: 36px;
  height: 36px;
  font-size: 0.82rem;
}

.home-page .cart-header-brand strong {
  font-size: 0.98rem;
}

.home-page .cart-header-brand span:not(.cart-brand-mark) {
  font-size: 0.7rem;
}

.home-page .cart-header .close-button {
  width: 36px;
  height: 36px;
  min-height: 36px;
}

.home-page .cart-order-summary {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  padding: 14px 16px;
}

.home-page .cart-summary-copy {
  gap: 2px;
}

.home-page .cart-summary-copy > span:first-child {
  font-size: 0.82rem;
}

.home-page .cart-summary-copy strong {
  font-size: 1.2rem;
}

.home-page .cart-summary-copy small {
  font-size: 0.72rem;
}

.home-page .cart-summary-thumbnails img,
.home-page .cart-summary-thumbnails > span {
  width: 34px;
  height: 34px;
}

.home-page .cart-summary-logo {
  width: 46px;
  height: 46px;
  font-size: 0.76rem;
}

.home-page .cart-details-toggle {
  min-height: 40px;
  padding: 7px 16px;
  font-size: 0.78rem;
}

.home-page .cart-body,
.home-page .cart-drawer:not(.is-empty) .cart-body {
  flex: none;
  max-height: none;
  overflow: visible;
  padding: 10px 16px 4px;
}

.home-page .cart-list {
  gap: 8px;
}

.home-page .cart-item {
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 9px;
  padding: 9px;
  border-radius: 7px;
  box-shadow: none;
}

.home-page .cart-item-media {
  width: 50px;
  height: 50px;
  padding: 4px;
}

.home-page .cart-item-content {
  gap: 2px;
}

.home-page .cart-item-name {
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-page .cart-item-unit-price,
.home-page .cart-size-line {
  font-size: 0.68rem;
}

.home-page .cart-item-total {
  align-self: start;
  font-size: 0.78rem;
}

.home-page .cart-quantity {
  flex-wrap: wrap;
  margin-top: 3px;
}

.home-page .cart-quantity button,
.home-page .cart-quantity input {
  min-height: 30px;
}

.home-page .cart-quantity button {
  min-width: 30px;
  padding: 0 7px;
}

.home-page .cart-quantity input {
  width: 38px;
}

.home-page .cart-quantity .remove-cart-item {
  padding-inline: 8px !important;
  font-size: 0.66rem;
}

.home-page .cart-footer {
  position: static;
  display: block;
  padding: 0 16px max(22px, env(safe-area-inset-bottom));
  border-top: 0;
  overflow: visible;
}

.home-page .clear-cart-button {
  margin: 10px 0 2px;
  font-size: 0.72rem;
}

.home-page #checkout-auth-note {
  margin: 8px 0 0;
  padding: 9px 11px;
  font-size: 0.72rem;
  line-height: 1.6;
}

.home-page .checkout-section {
  padding: 17px 0;
}

.home-page .checkout-section-heading {
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 8px;
  margin-bottom: 12px;
}

.home-page .checkout-section-icon {
  width: 34px;
  height: 34px;
}

.home-page .checkout-section-heading h3 {
  font-size: 0.94rem;
}

.home-page .checkout-section-heading p {
  font-size: 0.7rem;
}

.home-page .checkout-edit-button {
  width: 34px;
  min-height: 34px;
  padding: 0;
  justify-content: center;
}

.home-page .checkout-section-fields {
  gap: 10px;
}

.home-page .checkout-form input,
.home-page .checkout-form select,
.home-page .country-picker-trigger {
  min-height: 44px;
}

.country-picker {
  position: relative;
  min-width: 0;
}

.country-picker-trigger {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 8px 11px;
  border: 1px solid #ddd3d6;
  border-radius: 8px;
  background: #fff;
  color: #42393c;
  text-align: right;
}

.country-picker-trigger:focus-visible,
.country-picker-trigger[aria-expanded="true"] {
  outline: 2px solid rgba(183, 92, 119, 0.16);
  border-color: #b75c77;
}

.country-picker-chevron {
  color: #8d7f84;
  transition: transform 160ms ease;
}

.country-picker-trigger[aria-expanded="true"] .country-picker-chevron {
  transform: rotate(180deg);
}

.country-picker-menu {
  position: absolute;
  z-index: 170;
  top: calc(100% + 6px);
  inset-inline: 0;
  padding: 8px;
  border: 1px solid #e4dadd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(64, 42, 49, 0.16);
}

.country-picker-menu[hidden] {
  display: none !important;
}

.country-picker-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  padding: 0 7px;
  border: 1px solid #e4dadd;
  border-radius: 6px;
}

.country-picker-search span {
  color: #8b777e;
  font-size: 0.7rem;
  font-weight: 800;
}

.home-page .country-picker-search input {
  min-height: 38px;
  padding: 6px 0;
  border: 0;
  outline: 0;
}

.country-picker-options {
  max-height: 230px;
  margin-top: 7px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.country-picker-option {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 6px 8px;
  border: 0;
  border-bottom: 1px solid #f1ebed;
  border-radius: 0;
  background: #fff;
  color: #443a3e;
  text-align: right;
}

.country-picker-option:hover,
.country-picker-option:focus-visible {
  background: #fff5f8;
}

.country-option-flag {
  font-size: 1.2rem;
}

.country-option-name {
  display: grid;
  min-width: 0;
}

.country-option-name strong {
  overflow: hidden;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-option-name small,
.country-option-code {
  color: #8a7b80;
  font-size: 0.65rem;
}

.country-picker-empty {
  margin: 8px;
  color: #8a7b80;
  text-align: center;
}

.home-page .checkout-phone-row {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 0;
  direction: ltr;
}

.home-page .phone-country-picker {
  direction: rtl;
}

.home-page .phone-country-trigger {
  height: 44px;
  border-radius: 8px 0 0 8px;
  background: #faf8f9;
  direction: ltr;
  text-align: center;
}

.home-page .checkout-phone-row > #customer-phone {
  border-radius: 0 8px 8px 0;
  direction: ltr;
  text-align: left;
}

.home-page .phone-country-picker .country-picker-menu {
  min-width: 310px;
  direction: rtl;
}

.home-page .phone-help,
.home-page .field-error {
  display: block;
  margin-top: 5px;
  font-size: 0.67rem;
}

.checkout-final-summary {
  margin-top: 16px;
  padding: 14px 0;
  border-top: 1px solid #e8e1e3;
  border-bottom: 1px solid #e8e1e3;
}

.checkout-final-summary h3 {
  margin: 0 0 10px;
  color: #3e3438;
  font-size: 0.94rem;
}

.checkout-final-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 5px 0;
  color: #72666a;
  font-size: 0.78rem;
}

.checkout-final-summary > div strong {
  color: #40363a;
}

.checkout-final-summary > div[hidden] {
  display: none !important;
}

.checkout-final-summary .checkout-final-total {
  margin-top: 5px;
  padding-top: 10px;
  border-top: 1px solid #eee6e8;
  color: #2f282b;
  font-size: 0.92rem;
  font-weight: 900;
}

.home-page .checkout-contact-note,
.home-page .payment-unavailable-note,
.home-page .checkout-legal-note {
  font-size: 0.7rem;
  line-height: 1.65;
}

.home-page .checkout-btn {
  min-height: 48px;
  margin-top: 14px;
}

@media (max-width: 680px) {
  .home-page .cart-drawer {
    width: 100vw;
    scrollbar-gutter: auto;
  }

  .home-page .cart-order-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 14px;
  }

  .home-page .cart-summary-thumbnails {
    grid-column: auto;
    justify-self: end;
  }

  .home-page .cart-summary-logo {
    display: none;
  }

  .home-page .cart-body,
  .home-page .cart-drawer:not(.is-empty) .cart-body,
  .home-page .cart-footer {
    padding-inline: 14px;
  }

  .home-page .cart-item {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .home-page .cart-item-media {
    width: 44px;
    height: 44px;
  }

  .home-page .cart-item-total {
    grid-column: 3;
    justify-self: end;
  }

  .home-page .checkout-section-fields,
  .home-page .checkout-section-fields.two-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .checkout-section-fields .full-width {
    grid-column: auto;
  }

  .country-picker-menu {
    position: static;
    margin-top: 6px;
    box-shadow: none;
  }

  .home-page .phone-country-picker .country-picker-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: auto;
    left: 0;
    min-width: 0;
    width: min(330px, calc(100vw - 44px));
    margin-top: 0;
    box-shadow: 0 16px 34px rgba(64, 42, 49, 0.16);
  }
}

@media (max-width: 380px) {
  .home-page .cart-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .home-page .cart-item-total {
    grid-column: 2;
    justify-self: start;
  }

  .home-page .checkout-phone-row {
    grid-template-columns: 112px minmax(0, 1fr);
  }
}

/* Storefront product cards, favorites and cart refinement v111 */
.home-page .header-actions { gap: 8px; }
.home-page .favorites-trigger,
.home-page .cart-trigger {
  position: relative;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(159, 91, 112, 0.2);
  border-radius: 50%;
  background: #fff;
  color: #4d3d43;
}
.home-page .favorites-trigger > span:first-child { font-size: 1.35rem; line-height: 1; }
.home-page .header-counter {
  position: absolute;
  top: -5px;
  inset-inline-start: -5px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #b95273;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
}
.home-page .header-counter[hidden] { display: none !important; }

.home-page .home-product-section + .home-product-section { margin-top: 28px; }
.home-page .home-product-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}
.home-page .home-product-section-heading h3,
.home-page .home-product-section-heading p { margin: 0; }
.home-page .home-product-section-heading h3 { color: #3e3035; font-size: 1.18rem; }
.home-page .home-product-section-heading p { margin-top: 3px; color: #88777d; font-size: 0.78rem; }
.home-page .home-product-section-heading button,
.home-page .home-product-section-heading > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 6px 11px;
  border: 0;
  border-bottom: 1px solid #b95273;
  border-radius: 0;
  background: transparent;
  color: #9f4b67;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.home-page .product-horizontal-row {
  grid-auto-columns: minmax(158px, 188px);
  gap: 12px;
  scroll-snap-type: inline proximity;
}
.home-page .product-horizontal-row .product-card { scroll-snap-align: start; }
.home-page .compact-products-grid {
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 14px;
}
.home-page .product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid #eee6e9;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(66, 44, 52, 0.045);
}
.home-page .product-media {
  height: 205px;
  min-height: 205px;
  aspect-ratio: auto;
  padding: 22px 18px 12px;
  background: #fff;
}
.home-page .product-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  transform: none !important;
}
.home-page .product-card:hover .product-image { transform: none !important; }
.home-page .product-favorite-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border: 1px solid #e8dfe2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: #6d5b61;
  font-size: 1.22rem;
  line-height: 1;
}
.home-page .product-favorite-button.is-active { border-color: #e3b4c3; background: #fff1f5; color: #bd486d; }
.home-page .product-badges {
  position: absolute;
  top: 11px;
  left: 10px;
  z-index: 4;
  max-width: calc(100% - 62px);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.home-page .product-badges .marketing-badge,
.home-page .product-badges .badge {
  position: static;
  max-width: 100%;
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 0.62rem;
  line-height: 1.3;
  white-space: normal;
}
.home-page .product-body {
  flex: 1;
  min-height: 0;
  padding: 10px 12px 12px;
  display: grid;
  grid-template-rows: auto minmax(2.75em, auto) auto auto auto;
  align-content: start;
  gap: 6px;
}
.home-page .product-brand {
  overflow: hidden;
  color: #6f5d63;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-page .product-title {
  min-height: 2.75em;
  margin: 0;
  color: #342b2e;
  font-size: 0.82rem;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home-page .product-rating { color: #a87935; font-size: 0.68rem; line-height: 1.3; }
.home-page .product-rating.is-empty { visibility: hidden; }
.home-page .product-price-row { display: flex; align-items: end; justify-content: space-between; gap: 6px; margin-top: auto; }
.home-page .product-price-stack { min-width: 0; display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 7px; }
.home-page .product-price-stack .price { color: #8f3f59; font-size: 0.95rem; font-weight: 900; }
.home-page .product-price-stack .old-price { color: #9a8d91; font-size: 0.66rem; }
.home-page .product-discount-capsule { flex: 0 0 auto; padding: 3px 6px; border-radius: 999px; background: #f7e8ed; color: #a84665; font-size: 0.62rem; font-weight: 900; }
.home-page .product-card .product-add-button {
  justify-self: end;
  align-self: end;
  width: 38px;
  height: 38px;
  min-height: 38px;
  margin-top: 3px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #2e2729;
  color: #fff;
  font-size: 1.18rem;
}
.home-page .product-add-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

.favorites-overlay {
  position: fixed;
  inset: 0;
  z-index: 155;
  background: rgba(34, 27, 30, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.favorites-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 160;
  width: min(500px, 100vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -18px 0 50px rgba(43, 30, 35, 0.18);
  transform: translateX(105%);
  transition: transform 0.25s ease;
}
body.favorites-open { overflow: hidden; }
body.favorites-open .favorites-overlay { opacity: 1; pointer-events: auto; }
body.favorites-open .favorites-drawer { transform: translateX(0); }
.drawer-panel-header {
  min-height: 74px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #eee5e8;
}
.drawer-panel-header > div { display: grid; gap: 3px; }
.drawer-panel-header strong { color: #3d3135; font-size: 1.08rem; }
.drawer-panel-header span { color: #8c7a80; font-size: 0.73rem; }
.drawer-panel-header .close-button { width: 38px; height: 38px; min-height: 38px; border-radius: 50%; }
.favorites-drawer-body { flex: 1; min-height: 0; overflow-y: auto; padding: 18px; }
.drawer-empty-state { padding: 26px 12px; display: grid; justify-items: center; text-align: center; }
.drawer-empty-state[hidden] { display: none !important; }
.drawer-empty-icon { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 50%; background: #fff1f5; color: #b95273; font-size: 2rem; }
.drawer-empty-state h3 { margin: 15px 0 5px; color: #3e3337; }
.drawer-empty-state p { margin: 0; color: #86767b; line-height: 1.7; }
.drawer-shop-button { width: min(260px, 100%); min-height: 46px; margin-top: 18px; border: 0; border-radius: 6px; background: #1f1a1c; color: #fff; font-weight: 900; }
.favorites-list { display: grid; gap: 11px; }
.favorite-drawer-item { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 13px; padding: 11px; border-bottom: 1px solid #eee5e8; }
.favorite-item-media { height: 92px; padding: 7px; background: #fff; }
.favorite-item-media img { width: 100%; height: 100%; object-fit: contain; }
.favorite-drawer-item > div { min-width: 0; display: grid; align-content: start; gap: 4px; }
.favorite-drawer-item > div > span { color: #8a777d; font-size: 0.67rem; font-weight: 800; }
.favorite-drawer-item > div > strong { color: #3b3034; font-size: 0.82rem; line-height: 1.55; }
.favorite-item-price { display: flex; gap: 8px; align-items: baseline; }
.favorite-item-price .price { color: #98445f; font-size: 0.9rem; }
.favorite-item-price .old-price { font-size: 0.68rem; }
.favorite-item-actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 5px; }
.favorite-item-actions a,
.favorite-item-actions button { min-height: 31px; padding: 5px 8px; border: 1px solid #e5dadd; border-radius: 5px; background: #fff; color: #594a4f; font-size: 0.68rem; text-decoration: none; }
.favorite-item-actions .danger-link { color: #ae4254; }

.home-page .cart-drawer { width: min(540px, 100vw); }
.home-page .cart-overlay { background: rgba(34, 27, 30, 0.44); }
.home-page .cart-drawer.is-empty .cart-shipping-banner,
.home-page .cart-drawer.is-empty .cart-order-summary,
.home-page .cart-drawer.is-empty .cart-details-toggle,
.home-page .cart-drawer.is-empty .cart-footer { display: none; }
.home-page .cart-drawer.is-empty .cart-body { flex: 1; max-height: none; overflow-y: auto; padding: 12px 18px 28px; }
.home-page .cart-drawer:not(.is-empty) .cart-empty-state { display: none; }
.home-page .cart-empty-state { padding-top: 20px; }
.home-page .cart-recommendations { width: 100%; margin-top: 28px; padding-top: 18px; border-top: 1px solid #eee5e8; text-align: right; }
.home-page .cart-recommendations h4 { margin: 0 0 12px; color: #3e3337; font-size: 0.92rem; }
.home-page .cart-recommendations-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.home-page .cart-recommendation-card { position: relative; min-width: 0; padding: 9px; display: grid; gap: 3px; border: 1px solid #eee5e8; border-radius: 7px; background: #fff; }
.home-page .cart-recommendation-card > a { height: 105px; padding: 7px; }
.home-page .cart-recommendation-card img { width: 100%; height: 100%; object-fit: contain; }
.home-page .cart-recommendation-card > span { color: #89777d; font-size: 0.62rem; font-weight: 800; }
.home-page .cart-recommendation-card > strong { min-height: 2.8em; overflow: hidden; color: #3c3034; font-size: 0.72rem; line-height: 1.4; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.home-page .cart-recommendation-card .price { color: #98445f; font-size: 0.8rem; }
.home-page .cart-recommendation-card .old-price { font-size: 0.6rem; }
.home-page .cart-recommendation-card > button { position: absolute; left: 8px; bottom: 8px; width: 30px; height: 30px; min-height: 30px; padding: 0; border-radius: 50%; background: #2e2729; color: #fff; }
.home-page .cart-item-brand { color: #907d83; font-size: 0.65rem; font-weight: 800; }

@media (min-width: 1280px) {
  .home-page .product-horizontal-row { grid-auto-columns: minmax(165px, 190px); }
  .home-page .compact-products-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .home-page .compact-products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .home-page .header-actions { gap: 5px; }
  .home-page .favorites-trigger,
  .home-page .cart-trigger { min-width: 38px; width: 38px; min-height: 38px; height: 38px; padding: 0; }
  .home-page .cart-label { display: none; }
  .home-page .product-horizontal-row { grid-auto-columns: minmax(146px, 46vw); gap: 9px; }
  .home-page .compact-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .home-page .product-card { min-height: 350px; }
  .home-page .product-media { height: 172px; min-height: 172px; padding: 19px 13px 8px; }
  .home-page .product-body { padding: 9px 10px 10px; }
  .home-page .product-title { font-size: 0.76rem; }
  .home-page .product-favorite-button { width: 31px; height: 31px; min-height: 31px; top: 7px; right: 7px; }
  .home-page .product-badges { top: 8px; left: 7px; }
  .home-page .home-product-section-heading { align-items: center; }
  .home-page .home-product-section-heading h3 { font-size: 1rem; }
  .home-page .home-product-section-heading p { display: none; }
  .favorites-drawer { width: 100vw; }
}
@media (max-width: 350px) {
  .home-page .compact-products-grid { grid-template-columns: 1fr; }
  .home-page .product-horizontal-row { grid-auto-columns: minmax(155px, 78vw); }
}

.main-product-image { object-fit: contain; object-position: center; background: #fff; }

@media (max-width: 380px) {
  .cart-order-summary {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .cart-summary-logo {
    width: 48px;
    height: 48px;
  }

  .cart-header-brand span:not(.cart-brand-mark) {
    display: none;
  }

  .checkout-phone-row {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

/* ط¥ط®ظپط§ط، ط§ظ„ظ†طµ ظˆط§ظ„ط²ط± ظپظˆظ‚ ط§ظ„ط³ظ„ط§ظٹط¯ط± ظ„ط£ظ† ط§ظ„ظ†طµ ظ…ظˆط¬ظˆط¯ ط¯ط§ط®ظ„ ط§ظ„طµظˆط±ط© */
.hero-slide h1,
.hero-slide h2,
.hero-slide h3,
.hero-slide p,
.hero-slide a,
.hero-slide button,
.hero-slide .hero-content,
.hero-slide .slide-content,
.hero-slide .slider-content,
.home-slide h1,
.home-slide h2,
.home-slide h3,
.home-slide p,
.home-slide a,
.home-slide button,
.home-slide .hero-content,
.home-slide .slide-content,
.home-slide .slider-content,
.main-slide h1,
.main-slide h2,
.main-slide h3,
.main-slide p,
.main-slide a,
.main-slide button,
.main-slide .hero-content,
.main-slide .slide-content,
.main-slide .slider-content,
.store-slide h1,
.store-slide h2,
.store-slide h3,
.store-slide p,
.store-slide a,
.store-slide button,
.store-slide .hero-content,
.store-slide .slide-content,
.store-slide .slider-content,
.slider-slide h1,
.slider-slide h2,
.slider-slide h3,
.slider-slide p,
.slider-slide a,
.slider-slide button,
.slider-slide .hero-content,
.slider-slide .slide-content,
.slider-slide .slider-content {
  display: none !important;
}

/* ط¥ط°ط§ ظƒط§ظ† ط§ظ„ط³ظ„ط§ظٹط¯ط± ظٹط³طھط®ط¯ظ… طµظˆط±ط© img ط¨ط¯ظ„ background */
.hero-slide img,
.home-slide img,
.main-slide img,
.store-slide img,
.slider-slide img {
  width: 100% !important;
  height: 100% !important;
  max-height: 260px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  border-radius: 22px !important;
  background: #fff3f8 !important;
}

@media (max-width: 768px) {
  .hero-slide,
  .home-slide,
  .main-slide,
  .store-slide,
  .slider-slide {
    height: 160px !important;
    max-height: 160px !important;
    border-radius: 16px !important;
  }

  .hero-slide img,
  .home-slide img,
  .main-slide img,
  .store-slide img,
  .slider-slide img {
    max-height: 160px !important;
    border-radius: 16px !important;
  }
}/* Rawnq - ط¥طµظ„ط§ط­ ط¹ط±ط¶ ط³ظ„ط§ظٹط¯ط± ط§ظ„ظˆط§ط¬ظ‡ط© ظƒطµظˆط±ط© ظپظ‚ط· */
.hero-slide,
.home-slide,
.main-slide,
.store-slide,
.slider-slide {
  height: 260px !important;
  max-height: 260px !important;
  min-height: 0 !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #fff3f8 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}

/* ط¥ط®ظپط§ط، ط§ظ„ظ†طµ ظˆط§ظ„ط²ط± ظپظˆظ‚ ط§ظ„ط³ظ„ط§ظٹط¯ط± ظ„ط£ظ† ط§ظ„ظ†طµ ظ…ظˆط¬ظˆط¯ ط¯ط§ط®ظ„ ط§ظ„طµظˆط±ط© */
.hero-slide h1,
.hero-slide h2,
.hero-slide h3,
.hero-slide p,
.hero-slide a,
.hero-slide button,
.hero-slide .hero-content,
.hero-slide .slide-content,
.hero-slide .slider-content,
.home-slide h1,
.home-slide h2,
.home-slide h3,
.home-slide p,
.home-slide a,
.home-slide button,
.home-slide .hero-content,
.home-slide .slide-content,
.home-slide .slider-content,
.main-slide h1,
.main-slide h2,
.main-slide h3,
.main-slide p,
.main-slide a,
.main-slide button,
.main-slide .hero-content,
.main-slide .slide-content,
.main-slide .slider-content,
.store-slide h1,
.store-slide h2,
.store-slide h3,
.store-slide p,
.store-slide a,
.store-slide button,
.store-slide .hero-content,
.store-slide .slide-content,
.store-slide .slider-content,
.slider-slide h1,
.slider-slide h2,
.slider-slide h3,
.slider-slide p,
.slider-slide a,
.slider-slide button,
.slider-slide .hero-content,
.slider-slide .slide-content,
.slider-slide .slider-content {
  display: none !important;
}

/* ط¥ط°ط§ ظƒط§ظ† ط§ظ„ط³ظ„ط§ظٹط¯ط± ظٹط³طھط®ط¯ظ… طµظˆط±ط© img ط¨ط¯ظ„ background */
.hero-slide img,
.home-slide img,
.main-slide img,
.store-slide img,
.slider-slide img {
  width: 100% !important;
  height: 100% !important;
  max-height: 260px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  border-radius: 22px !important;
  background: #fff3f8 !important;
}

@media (max-width: 768px) {
  .hero-slide,
  .home-slide,
  .main-slide,
  .store-slide,
  .slider-slide {
    height: 160px !important;
    max-height: 160px !important;
    border-radius: 16px !important;
  }

  .hero-slide img,
  .home-slide img,
  .main-slide img,
  .store-slide img,
  .slider-slide img {
    max-height: 160px !important;
    border-radius: 16px !important;
  }
}/* Rawnq - ط¥طµظ„ط§ط­ ط¹ط±ط¶ ط³ظ„ط§ظٹط¯ط± ط§ظ„ظˆط§ط¬ظ‡ط© ظƒطµظˆط±ط© ظپظ‚ط· */
.hero-slide,
.home-slide,
.main-slide,
.store-slide,
.slider-slide {
  height: 260px !important;
  max-height: 260px !important;
  min-height: 0 !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #fff3f8 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}

/* ط¥ط®ظپط§ط، ط§ظ„ظ†طµ ظˆط§ظ„ط²ط± ظپظˆظ‚ ط§ظ„ط³ظ„ط§ظٹط¯ط± ظ„ط£ظ† ط§ظ„ظ†طµ ظ…ظˆط¬ظˆط¯ ط¯ط§ط®ظ„ ط§ظ„طµظˆط±ط© */
.hero-slide h1,
.hero-slide h2,
.hero-slide h3,
.hero-slide p,
.hero-slide a,
.hero-slide button,
.hero-slide .hero-content,
.hero-slide .slide-content,
.hero-slide .slider-content,
.home-slide h1,
.home-slide h2,
.home-slide h3,
.home-slide p,
.home-slide a,
.home-slide button,
.home-slide .hero-content,
.home-slide .slide-content,
.home-slide .slider-content,
.main-slide h1,
.main-slide h2,
.main-slide h3,
.main-slide p,
.main-slide a,
.main-slide button,
.main-slide .hero-content,
.main-slide .slide-content,
.main-slide .slider-content,
.store-slide h1,
.store-slide h2,
.store-slide h3,
.store-slide p,
.store-slide a,
.store-slide button,
.store-slide .hero-content,
.store-slide .slide-content,
.store-slide .slider-content,
.slider-slide h1,
.slider-slide h2,
.slider-slide h3,
.slider-slide p,
.slider-slide a,
.slider-slide button,
.slider-slide .hero-content,
.slider-slide .slide-content,
.slider-slide .slider-content {
  display: none !important;
}

/* ط¥ط°ط§ ظƒط§ظ† ط§ظ„ط³ظ„ط§ظٹط¯ط± ظٹط³طھط®ط¯ظ… طµظˆط±ط© img ط¨ط¯ظ„ background */
.hero-slide img,
.home-slide img,
.main-slide img,
.store-slide img,
.slider-slide img {
  width: 100% !important;
  height: 100% !important;
  max-height: 260px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  border-radius: 22px !important;
  background: #fff3f8 !important;
}

@media (max-width: 768px) {
  .hero-slide,
  .home-slide,
  .main-slide,
  .store-slide,
  .slider-slide {
    height: 160px !important;
    max-height: 160px !important;
    border-radius: 16px !important;
  }

  .hero-slide img,
  .home-slide img,
  .main-slide img,
  .store-slide img,
  .slider-slide img {
    max-height: 160px !important;
    border-radius: 16px !important;
  }
}/* Rawnq FINAL - ط¥طµظ„ط§ط­ ط§ظ„ط³ظ„ط§ظٹط¯ط± ظپظ‚ط·: ط¥ط²ط§ظ„ط© ط§ظ„طھط¹طھظٹظ… ظˆطھظ‚ظ„ظٹظ„ ط§ظ„ظ…ط³ط§ظپط© */
.hero-slider,
.home-slider,
.main-slider,
.store-slider,
.slider-section,
.slider-container,
.hero-section,
.hero,
.home-hero,
.hero-carousel {
  height: 170px !important;
  min-height: 170px !important;
  max-height: 170px !important;
  margin-top: 18px !important;
  margin-bottom: 16px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
}

.hero-slide,
.home-slide,
.main-slide,
.store-slide,
.slider-slide,
.slide,
.hero-banner,
.hero-item,
.carousel-slide {
  height: 170px !important;
  min-height: 170px !important;
  max-height: 170px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #fff3f8 !important;
  box-shadow: none !important;
}

/* ط¥ط²ط§ظ„ط© ط£ظٹ ط·ط¨ظ‚ط© ط³ظˆط¯ط§ط، ط£ظˆ طھط¯ط±ط¬ ظپظˆظ‚ ط§ظ„ط³ظ„ط§ظٹط¯ط± */
.hero-slide::before,
.hero-slide::after,
.home-slide::before,
.home-slide::after,
.main-slide::before,
.main-slide::after,
.store-slide::before,
.store-slide::after,
.slider-slide::before,
.slider-slide::after,
.slide::before,
.slide::after,
.hero-banner::before,
.hero-banner::after,
.hero-item::before,
.hero-item::after,
.carousel-slide::before,
.carousel-slide::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  background: none !important;
}

/* ط¥ط®ظپط§ط، ط·ط¨ظ‚ط§طھ ط§ظ„ظ†طµ ظˆط§ظ„طھط¹طھظٹظ… ط§ظ„ظ‚ط¯ظٹظ…ط© ط¯ط§ط®ظ„ ط§ظ„ط³ظ„ط§ظٹط¯ط± ظپظ‚ط· */
.hero-slide > div:not(.slider-arrow):not(.slider-controls):not(.slider-dots),
.home-slide > div:not(.slider-arrow):not(.slider-controls):not(.slider-dots),
.main-slide > div:not(.slider-arrow):not(.slider-controls):not(.slider-dots),
.store-slide > div:not(.slider-arrow):not(.slider-controls):not(.slider-dots),
.slider-slide > div:not(.slider-arrow):not(.slider-controls):not(.slider-dots),
.slide > div:not(.slider-arrow):not(.slider-controls):not(.slider-dots) {
  background: transparent !important;
  box-shadow: none !important;
}

/* ط¥ط®ظپط§ط، ط§ظ„ظ†طµ ظˆط§ظ„ط²ط± ط§ظ„ظ…ط¶ط§ظپظٹظ† ظپظˆظ‚ ط§ظ„طµظˆط±ط© ظ„ط£ظ† ط§ظ„طµظˆط±ط© ظپظٹظ‡ط§ ط§ظ„ظ†طµ ط£طµظ„ط§ظ‹ */
.hero-slide h1,
.hero-slide h2,
.hero-slide h3,
.hero-slide p,
.hero-slide a,
.hero-slide button,
.home-slide h1,
.home-slide h2,
.home-slide h3,
.home-slide p,
.home-slide a,
.home-slide button,
.main-slide h1,
.main-slide h2,
.main-slide h3,
.main-slide p,
.main-slide a,
.main-slide button,
.store-slide h1,
.store-slide h2,
.store-slide h3,
.store-slide p,
.store-slide a,
.store-slide button,
.slider-slide h1,
.slider-slide h2,
.slider-slide h3,
.slider-slide p,
.slider-slide a,
.slider-slide button,
.slide h1,
.slide h2,
.slide h3,
.slide p,
.slide a,
.slide button {
  display: none !important;
}

/* ط¶ط¨ط· ط§ظ„طµظˆط±ط© ظ†ظپط³ظ‡ط§ */
.hero-slide img,
.home-slide img,
.main-slide img,
.store-slide img,
.slider-slide img,
.slide img,
.hero-banner img,
.hero-item img,
.carousel-slide img {
  width: 100% !important;
  height: 170px !important;
  max-height: 170px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  border-radius: 18px !important;
  background: #fff3f8 !important;
  filter: none !important;
  opacity: 1 !important;
}

/* طھظ‚ظ„ظٹظ„ ط§ظ„ظ…ط³ط§ظپط© ط¨ط¹ط¯ ط§ظ„ط³ظ„ط§ظٹط¯ط± */
.hero-slider + *,
.home-slider + *,
.main-slider + *,
.store-slider + *,
.slider-section + *,
.slider-container + *,
.hero-section + *,
.hero + *,
.home-hero + *,
.hero-carousel + * {
  margin-top: 12px !important;
  padding-top: 0 !important;
}

@media (max-width: 768px) {
  .hero-slider,
  .home-slider,
  .main-slider,
  .store-slider,
  .slider-section,
  .slider-container,
  .hero-section,
  .hero,
  .home-hero,
  .hero-carousel,
  .hero-slide,
  .home-slide,
  .main-slide,
  .store-slide,
  .slider-slide,
  .slide,
  .hero-banner,
  .hero-item,
  .carousel-slide {
    height: 115px !important;
    min-height: 115px !important;
    max-height: 115px !important;
    margin-bottom: 10px !important;
    border-radius: 14px !important;
  }

  .hero-slide img,
  .home-slide img,
  .main-slide img,
  .store-slide img,
  .slider-slide img,
  .slide img,
  .hero-banner img,
  .hero-item img,
  .carousel-slide img {
    height: 115px !important;
    max-height: 115px !important;
    border-radius: 14px !important;
  }
}

/* Flexible additional slider placements v106 */
.home-slide > .home-slide-image-link,
.home-slide > div.home-slide-image-link {
  display: block !important;
  position: relative;
  width: 100%;
  height: 100%;
  color: inherit;
}

.home-slide > .home-slide-image-link > img {
  display: block !important;
}

.home-slider-slot:empty {
  display: none;
}

.home-slider-slot {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.additional-home-slider {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  min-width: 0;
  margin: 18px auto;
  border: 1px solid #eadde1;
  border-radius: 8px;
  background: #fff6f9;
  overflow: hidden;
}

.products-container > .home-slider-slot .additional-home-slider,
.badge-product-section + .home-slider-slot .additional-home-slider {
  width: 100%;
}

.additional-slider-track {
  position: relative;
  min-height: 230px;
}

.additional-slider-card {
  display: none;
  position: relative;
  width: 100%;
  height: 230px;
  background: #fff6f9;
  overflow: hidden;
}

.additional-slider-card.is-active {
  display: block;
}

.additional-slider-card > img,
.additional-slider-link > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff6f9;
}

.additional-slider-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: inherit;
}

.slider-image-fallback {
  position: absolute;
  inset: 0;
  place-items: center;
  padding: 18px;
  background: #fff0f5;
  color: #a6536c;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.slider-image-fallback:not([hidden]) {
  display: grid;
}

.additional-slider-copy {
  position: absolute;
  inset-inline-start: 22px;
  inset-block-end: 18px;
  max-width: min(440px, calc(100% - 44px));
  padding: 10px 13px;
  border: 1px solid rgba(228, 207, 214, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #403438;
}

.additional-slider-copy:empty {
  display: none;
}

.additional-slider-copy h2,
.additional-slider-copy p {
  margin: 0;
}

.additional-slider-copy h2 {
  font-size: 1.05rem;
}

.additional-slider-copy p {
  margin-top: 4px;
  color: #76686d;
  font-size: 0.84rem;
  line-height: 1.6;
}

.additional-slider-copy .button {
  display: inline-flex;
  width: auto;
  min-height: 34px;
  margin-top: 8px;
  padding: 6px 11px;
  font-size: 0.78rem;
}

.additional-slider-card.image-error {
  background: #fff0f5;
}

.additional-slider-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid #ead8de;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #9e4f68;
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.additional-slider-arrow.previous {
  inset-inline-start: 12px;
}

.additional-slider-arrow.next {
  inset-inline-end: 12px;
}

.additional-slider-dots {
  position: absolute;
  z-index: 2;
  inset-inline: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.additional-slider-dots button {
  width: 8px;
  min-width: 8px;
  height: 8px;
  min-height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d9bdc6;
}

.additional-slider-dots button.is-active {
  background: #a6536c;
}

@media (max-width: 700px) {
  .additional-home-slider {
    width: calc(100% - 24px);
    margin: 12px auto;
  }

  .additional-slider-track,
  .additional-slider-card {
    height: 150px;
    min-height: 150px;
  }

  .additional-slider-copy {
    inset-inline: 10px;
    inset-block-end: 11px;
    max-width: none;
    padding: 7px 9px;
  }

  .additional-slider-copy h2 {
    font-size: 0.88rem;
  }

  .additional-slider-copy p {
    display: none;
  }

  .additional-slider-copy .button {
    min-height: 30px;
    margin-top: 5px;
    padding: 4px 8px;
  }

  .additional-slider-arrow {
    width: 32px;
    height: 32px;
    min-height: 32px;
  }
}

.home-banner-slot:empty {
  display: none;
}

.home-banner-slot {
  width: min(1180px, calc(100% - 36px));
  min-width: 0;
  margin: 12px auto;
  overflow: hidden;
}

.home-banner-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.home-text-banner .home-banner-link {
  display: grid;
  place-items: center;
}

.home-text-banner.is-marquee {
  min-height: 64px;
  white-space: nowrap;
}

.home-text-banner.is-marquee .home-banner-link > span {
  display: inline-block;
  padding-inline: 100%;
  animation: rawnq-banner-marquee 18s linear infinite;
}

@keyframes rawnq-banner-marquee {
  from { transform: translateX(-30%); }
  to { transform: translateX(30%); }
}

.home-media-banner {
  position: relative;
  min-height: 130px;
  border: 1px solid #eadde1;
  border-radius: 8px;
  background: var(--banner-bg, #fff6f9);
  color: var(--banner-text, #2b2226);
  overflow: hidden;
}

.home-banner-images {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  min-height: 130px;
}

.home-media-banner.split2 .home-banner-images,
.home-media-banner.split4 .home-banner-images {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-media-banner.split4 .home-banner-images {
  grid-template-rows: repeat(2, minmax(90px, 1fr));
}

.home-banner-images img {
  width: 100%;
  height: 100%;
  min-height: 130px;
  max-height: 220px;
  display: block;
  object-fit: contain;
  background: #fff6f9;
}

.home-media-banner.split4 .home-banner-images img {
  min-height: 90px;
}

.home-media-banner > .home-banner-link > strong {
  position: absolute;
  inset-inline-start: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.home-media-banner.image-error {
  background: #fff0f5;
}

@media (prefers-reduced-motion: reduce) {
  .home-text-banner.is-marquee .home-banner-link > span {
    animation: none;
    padding-inline: 0;
  }
}

@media (max-width: 700px) {
  .home-banner-slot {
    width: calc(100% - 24px);
    margin-block: 9px;
  }

  .home-media-banner,
  .home-banner-images,
  .home-banner-images img {
    min-height: 105px;
  }

  .home-media-banner.split4 .home-banner-images {
    grid-template-rows: repeat(2, minmax(70px, 1fr));
  }

  .home-media-banner.split4 .home-banner-images img {
    min-height: 70px;
  }
}

/* Homepage UI polish v107: visual-only, scoped to index.html */
body.home-page {
  --home-content: min(1280px, calc(100% - 32px));
  overflow-x: hidden;
  background: #fff9fa;
}

.home-page main,
.home-page .site-header,
.home-page .site-footer {
  min-width: 0;
}

.home-page .site-header {
  border-bottom-color: rgba(199, 131, 150, 0.2);
  background: rgba(255, 250, 251, 0.96);
  box-shadow: 0 8px 28px rgba(77, 48, 58, 0.05);
}

.home-page .top-strip {
  padding-block: 5px;
  background: #49383e;
  font-size: 0.78rem;
}

.home-page .navbar {
  width: var(--home-content);
  min-height: 68px;
  gap: clamp(10px, 1.5vw, 20px);
}

.home-page .brand {
  flex: 0 0 auto;
}

.home-page .nav-links {
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(7px, 1.25vw, 18px);
  min-width: 0;
}

.home-page .nav-links > a,
.home-page .nav-dropdown summary {
  padding: 7px 5px;
  font-size: clamp(0.74rem, 0.9vw, 0.86rem);
  line-height: 1.35;
  white-space: nowrap;
}

.home-page .header-actions {
  flex: 0 0 auto;
  gap: 6px;
}

.home-page .header-actions .button-secondary,
.home-page .cart-trigger {
  min-height: 40px;
  padding-inline: 11px;
  border-radius: 8px;
  font-size: 0.76rem;
  white-space: nowrap;
}

.home-page .search-box {
  width: 40px;
  min-width: 40px;
  height: 40px;
  box-shadow: 0 6px 18px rgba(126, 75, 63, 0.07);
}

.home-page .search-box:focus-within,
.home-page .search-box.has-query {
  width: min(210px, 24vw);
}

.home-page .home-slider {
  width: var(--home-content) !important;
  height: clamp(156px, 14vw, 184px) !important;
  min-height: clamp(156px, 14vw, 184px) !important;
  max-height: 184px !important;
  margin: 14px auto 10px !important;
  padding: 0 !important;
  border: 1px solid rgba(199, 131, 150, 0.22);
  border-radius: 8px !important;
  background: #fff1f5 !important;
  box-shadow: 0 10px 28px rgba(77, 48, 58, 0.06);
}

.home-page .home-slide,
.home-page .home-slide > .home-slide-image-link,
.home-page .home-slide > div.home-slide-image-link {
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
  border-radius: 8px !important;
}

.home-page .home-slide img {
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 8px !important;
  background: #fff1f5 !important;
}

.home-page .home-slider-arrow {
  width: 36px;
  height: 36px;
  font-size: 1.35rem;
  box-shadow: 0 6px 16px rgba(77, 48, 58, 0.1);
}

.home-page .home-slider-arrow.prev { right: 10px; }
.home-page .home-slider-arrow.next { left: 10px; }

.home-page .section {
  width: var(--home-content);
  padding-top: 34px;
}

.home-page .offers-section {
  padding-top: 14px;
}

.home-page .section-header {
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.home-page .section-title {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.35;
}

.home-page .section-subtitle {
  max-width: 680px;
  margin-top: 4px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.home-page .benefits {
  width: var(--home-content);
  margin: 18px auto 0;
  gap: 10px;
}

.home-page .benefit {
  min-width: 0;
  padding: 13px;
  border-color: rgba(199, 131, 150, 0.18);
  box-shadow: 0 8px 22px rgba(77, 48, 58, 0.05);
}

.home-page .benefit p {
  font-size: 0.82rem;
  line-height: 1.65;
}

.home-page .category-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.home-page .category-card {
  min-height: 170px;
  border: 1px solid rgba(199, 131, 150, 0.18);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(77, 48, 58, 0.07);
  isolation: isolate;
  transition: translate 0.2s ease, box-shadow 0.2s ease;
}

.home-page .category-card:hover {
  translate: 0 -2px;
  box-shadow: 0 12px 26px rgba(77, 48, 58, 0.1);
}

.home-page .category-card img {
  object-fit: cover;
  object-position: center;
}

.home-page .category-content {
  padding: 16px;
}

.home-page .category-content h3 {
  margin-bottom: 3px;
  font-size: 1.02rem;
  line-height: 1.4;
}

.home-page .category-content p {
  font-size: 0.75rem;
  line-height: 1.45;
}

.home-page .category-row > .category-card:last-child:nth-child(4n + 1) {
  grid-column: 2 / span 2;
}

.home-page .offers-grid {
  grid-template-columns: repeat(auto-fit, minmax(165px, 190px));
  gap: 12px;
  align-items: stretch;
  justify-content: center;
}

.home-page .offer-card {
  height: 100%;
  min-width: 0;
  border-color: rgba(199, 131, 150, 0.2);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(77, 48, 58, 0.06);
}

.home-page .offer-media {
  aspect-ratio: 1 / 1;
  background: #fff4f7;
}

.home-page .offer-media img {
  object-fit: contain;
  object-position: center;
  background: #fff4f7;
}

.home-page .offer-card-body {
  min-height: 0;
  padding: 11px;
  gap: 7px;
}

.home-page .offer-card-body h3 {
  min-height: 2.7em;
  font-size: 0.9rem;
  -webkit-line-clamp: 2;
}

.home-page .offer-card-body p {
  min-height: 3em;
  -webkit-line-clamp: 2;
}

.home-page .offer-price-stack {
  margin-top: auto;
  border-radius: 8px;
  background: #fffbfc;
}

.home-page .offer-price-final strong {
  color: var(--color-primary-dark);
  font-size: 1.05rem;
}

.home-page .offer-card .buy-btn {
  min-height: 38px;
  margin-top: auto;
  border-radius: 8px;
}

.home-page .products-container {
  gap: 20px;
}

.home-page .badge-product-section {
  min-width: 0;
}

.home-page .badge-product-section + .badge-product-section {
  margin-top: 2px;
}

.home-page .badge-row-heading {
  margin-bottom: 9px;
}

.home-page .badge-row-heading h3 {
  font-size: 1.15rem;
}

.home-page .product-horizontal-row {
  grid-auto-columns: minmax(170px, 196px);
  gap: 11px;
  padding-bottom: 8px;
  align-items: stretch;
  scrollbar-width: thin;
  scrollbar-color: #d8aeb9 transparent;
}

.home-page .compact-products-grid {
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.home-page .product-card {
  height: 100%;
  min-width: 0;
  border-color: rgba(199, 131, 150, 0.2);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(77, 48, 58, 0.06);
}

.home-page .product-media {
  aspect-ratio: 1 / 1;
  min-height: 0;
  background: #fff4f7;
}

.home-page .product-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #fff4f7;
}

.home-page .product-card:hover .product-image {
  transform: scale(1.02);
}

.home-page .product-body {
  min-height: 0;
  padding: 11px;
  gap: 7px;
}

.home-page .product-title {
  min-height: 2.7em;
  font-size: 0.92rem;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.home-page .product-desc {
  min-height: 2.9em;
  font-size: 0.76rem;
  line-height: 1.48;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.home-page .product-meta {
  align-items: flex-end;
  gap: 6px;
  margin-top: auto;
}

.home-page .price {
  color: var(--color-primary-dark);
  font-size: 1.02rem;
  line-height: 1.35;
}

.home-page .old-price {
  font-size: 0.72rem;
}

.home-page .rating {
  color: #8b7b80;
  font-size: 0.7rem;
}

.home-page .product-card .buy-btn {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  padding-inline: 8px;
  border-radius: 8px;
  font-size: 0.78rem;
}

.home-page .home-slider-slot,
.home-page .home-banner-slot {
  max-width: 100%;
}

.home-page .additional-home-slider,
.home-page .home-banner-slot {
  width: var(--home-content);
}

.home-page .additional-home-slider {
  margin-block: 12px;
}

.home-page .site-footer {
  margin-top: 46px;
  background: #3f3035;
}

.home-page .footer-inner {
  width: var(--home-content);
  padding: 30px 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px 32px;
}

.home-page .footer-links {
  justify-content: flex-end;
  gap: 7px 16px;
}

.home-page .footer-links a {
  font-size: 0.78rem;
  line-height: 1.55;
}

.home-page .footer-inner > p {
  grid-column: 1 / -1;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.76rem;
}

@media (max-width: 1100px) {
  .home-page .navbar {
    flex-wrap: wrap;
    padding-block: 8px;
  }

  .home-page .nav-links {
    order: 3;
    display: flex;
    flex: 1 0 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3px 12px;
    padding-top: 6px;
    border-top: 1px solid rgba(199, 131, 150, 0.14);
  }

  .home-page .nav-links > a,
  .home-page .nav-dropdown summary {
    padding: 5px 4px;
    font-size: 0.74rem;
  }

  .home-page .category-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .category-row > .category-card:last-child:nth-child(4n + 1) {
    grid-column: auto;
  }

  .home-page .category-row > .category-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  body.home-page {
    --home-content: calc(100% - 20px);
  }

  .home-page .site-header {
    position: static;
  }

  .home-page .top-strip {
    padding: 4px 10px;
    font-size: 0.7rem;
    line-height: 1.55;
  }

  .home-page .navbar {
    display: grid;
    grid-template-columns: minmax(70px, auto) minmax(0, 1fr);
    padding-block: 7px;
    gap: 7px 10px;
  }

  .home-page .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .home-page .brand-ar { font-size: 1rem; }
  .home-page .brand-en { display: none; }

  .home-page .header-actions {
    min-width: 0;
    justify-content: flex-end;
    gap: 4px;
  }

  .home-page .header-actions .button-secondary,
  .home-page .cart-trigger {
    min-height: 36px;
    padding-inline: 7px;
    font-size: 0.68rem;
  }

  .home-page .search-box {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  .home-page .search-icon {
    inset-inline-start: 10px;
    width: 16px;
    height: 16px;
  }

  .home-page .search-box:focus-within,
  .home-page .search-box.has-query {
    position: absolute;
    z-index: 3;
    inset-inline: 10px;
    top: calc(100% + 4px);
    width: auto;
  }

  .home-page .nav-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
    width: 100%;
    padding-top: 6px;
  }

  .home-page .nav-links > a,
  .home-page .nav-dropdown,
  .home-page .nav-dropdown summary {
    min-width: 0;
    width: 100%;
  }

  .home-page .nav-links > a,
  .home-page .nav-dropdown summary {
    display: grid;
    place-items: center;
    min-height: 34px;
    padding: 5px 3px;
    border-radius: 6px;
    background: #fff7f9;
    font-size: 0.66rem;
    text-align: center;
    white-space: normal;
  }

  .home-page .nav-dropdown summary::after {
    display: none;
  }

  .home-page .nav-dropdown-menu {
    inset-inline-start: 0;
    min-width: min(250px, calc(100vw - 24px));
  }

  .home-page .home-slider {
    width: var(--home-content) !important;
    height: clamp(104px, 30vw, 132px) !important;
    min-height: clamp(104px, 30vw, 132px) !important;
    margin: 10px auto 8px !important;
  }

  .home-page .home-slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 1.05rem;
  }

  .home-page .home-slider-dots {
    bottom: 6px;
  }

  .home-page .section {
    padding-top: 26px;
  }

  .home-page .offers-section {
    padding-top: 10px;
  }

  .home-page .section-header {
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 12px;
  }

  .home-page .section-title {
    font-size: 1.2rem;
  }

  .home-page .section-subtitle {
    font-size: 0.76rem;
  }

  .home-page .section-header .button-secondary {
    min-height: 34px;
    padding-inline: 9px;
    font-size: 0.7rem;
    flex: 0 0 auto;
  }

  .home-page .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
    gap: 8px;
  }

  .home-page .benefit {
    padding: 10px;
  }

  .home-page .benefit p {
    font-size: 0.72rem;
  }

  .home-page .category-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .home-page .category-row > .category-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .home-page .category-row > .category-card:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    width: min(100%, 320px);
    justify-self: center;
  }

  .home-page .category-card {
    min-height: 128px;
  }

  .home-page .category-content {
    padding: 11px;
  }

  .home-page .category-content h3 {
    font-size: 0.88rem;
  }

  .home-page .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .home-page .offer-card-body,
  .home-page .product-body {
    padding: 9px;
  }

  .home-page .product-horizontal-row {
    grid-auto-columns: minmax(145px, 47vw);
    gap: 9px;
  }

  .home-page .compact-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .home-page .product-title,
  .home-page .offer-card-body h3 {
    font-size: 0.84rem;
  }

  .home-page .product-desc,
  .home-page .offer-card-body p {
    font-size: 0.7rem;
  }

  .home-page .product-card .buy-btn,
  .home-page .offer-card .buy-btn {
    min-height: 36px;
    font-size: 0.72rem;
  }

  .home-page .site-footer {
    margin-top: 34px;
  }

  .home-page .footer-inner {
    padding: 24px 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 17px;
    text-align: center;
  }

  .home-page .footer-links {
    justify-content: center;
    gap: 8px 14px;
  }

  .home-page .footer-links a {
    font-size: 0.72rem;
  }

  .home-page .footer-inner > p {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .home-page .navbar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-page .brand-name {
    display: none;
  }

  .home-page .header-actions .button-secondary {
    padding-inline: 6px;
    font-size: 0.62rem;
  }

  .home-page .nav-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .section-header {
    align-items: flex-start;
  }

  .home-page .offers-grid,
  .home-page .compact-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 340px) {
  .home-page .header-actions {
    flex-wrap: wrap;
  }

  .home-page .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .offers-grid,
  .home-page .compact-products-grid,
  .home-page .category-row {
    grid-template-columns: 1fr;
  }

  .home-page .category-row > .category-card:last-child:nth-child(2n + 1) {
    grid-column: auto;
    width: 100%;
  }
}

/* Buy X Get Y offers and checkout coupons v116 */
.quantity-offer-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 118px;
  min-height: 23px;
  padding: 4px 7px;
  overflow: hidden;
  border-radius: 5px;
  background: #2fae70;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 3px 9px rgba(47, 174, 112, 0.18);
}

.product-badges .quantity-offer-badge {
  order: -1;
}

.quantity-offer-summary {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(47, 174, 112, 0.25);
  border-radius: 7px;
  background: #f3fbf7;
}

.quantity-offer-summary strong {
  color: #197a49;
}

.quantity-offer-summary span {
  color: #5d7165;
  font-size: 0.75rem;
  line-height: 1.6;
}

.cart-quantity-offer {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 4px;
  padding: 6px 8px;
  border: 1px solid #cfe9da;
  border-radius: 6px;
  background: #f4fbf7;
  color: #35614a;
  font-size: 0.65rem;
}

.cart-quantity-offer strong {
  width: 100%;
  color: #167447;
}

/* Mobile-first storefront and responsive marketing images v121 */
.responsive-marketing-picture {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
}

.responsive-marketing-picture > img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  body.home-page {
    --home-content: calc(100% - 20px);
    overflow-x: hidden;
  }

  .home-page .site-header {
    position: relative;
    overflow: visible;
  }

  .home-page .top-strip {
    padding: 4px 10px;
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .home-page .navbar {
    position: relative;
    width: calc(100% - 20px);
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 7px;
    padding: 8px 0 7px;
  }

  .home-page .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    gap: 7px;
  }

  .home-page .brand-mark,
  .home-page .brand-logo-wrap {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .home-page .brand-ar { font-size: 1.12rem; }
  .home-page .brand-en { display: block; font-size: 0.58rem; }
  .home-page .header-actions { display: contents; }

  .home-page .favorites-trigger {
    grid-column: 2;
    grid-row: 1;
  }

  .home-page .cart-trigger {
    grid-column: 3;
    grid-row: 1;
  }

  .home-page .favorites-trigger,
  .home-page .cart-trigger {
    position: relative;
    width: auto;
    min-width: 40px;
    min-height: 40px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 0.74rem;
  }

  .home-page #language-toggle {
    grid-column: 2;
    grid-row: 2;
  }

  .home-page #customer-account-link {
    grid-column: 3;
    grid-row: 2;
  }

  .home-page #language-toggle,
  .home-page #customer-account-link {
    min-height: 38px;
    padding-inline: 8px;
    border-radius: 8px;
    font-size: 0.66rem;
    white-space: nowrap;
  }

  .home-page .search-box,
  .home-page .search-box:focus-within,
  .home-page .search-box.has-query {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    height: 38px;
    border-radius: 8px;
  }

  .home-page .search-field,
  .home-page .search-box:focus-within .search-field,
  .home-page .search-box.has-query .search-field {
    min-height: 36px;
    opacity: 1;
    padding-inline: 36px 10px;
    font-size: 0.74rem;
  }

  .home-page .search-icon {
    inset-inline-start: 10px;
    width: 16px;
    height: 16px;
  }

  .home-page .nav-links {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 7px;
    padding: 7px 0 2px;
    border-top: 1px solid rgba(199, 131, 150, 0.14);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .home-page .nav-links::-webkit-scrollbar,
  .home-page .category-row::-webkit-scrollbar { display: none; }

  .home-page .nav-links > a,
  .home-page .nav-dropdown,
  .home-page .nav-dropdown summary {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
  }

  .home-page .nav-links > a,
  .home-page .nav-dropdown summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 5px 11px;
    border: 1px solid rgba(199, 131, 150, 0.16);
    border-radius: 999px;
    background: #fff7f9;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .home-page .nav-dropdown summary::after { display: none; }
  .home-page .nav-dropdown-menu { min-width: min(270px, calc(100vw - 24px)); }

  .home-page .marketing-block-slot,
  .home-page .home-slider,
  .home-page .additional-home-slider,
  .home-page .home-banner-slot {
    width: var(--home-content) !important;
    max-width: var(--home-content) !important;
    margin-inline: auto !important;
  }

  /* Phone hero artwork uses the mobile source and a portrait card, never a compressed desktop strip. */
  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    width: var(--home-content) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4 / 5 !important;
    margin: 10px auto !important;
    border-radius: 8px !important;
    background: #fff4f7 !important;
  }

  .home-page .home-slide,
  .home-page .home-slide > .home-slide-image-link,
  .home-page .home-slide > div.home-slide-image-link,
  .home-page .marketing-slider.is-hero .marketing-slider-track,
  .home-page .marketing-slider.is-hero .marketing-slider-item,
  .home-page .marketing-slider-static.is-mobile-hero .marketing-slider-link {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
  }

  .home-page .home-slide img,
  .home-page .marketing-slider.is-hero .marketing-media img,
  .home-page .marketing-slider-static.is-mobile-hero .marketing-media img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 8px !important;
    background: transparent !important;
  }

  .home-page .marketing-slider.is-compact,
  .home-page .marketing-slider-static:not(.is-mobile-hero),
  .home-page .marketing-image-banner,
  .home-page .additional-home-slider {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 8px;
  }

  .home-page .additional-slider-track,
  .home-page .additional-slider-card,
  .home-page .additional-slider-link {
    height: 100% !important;
    min-height: 100% !important;
  }

  .home-page .additional-slider-card img { object-fit: cover !important; }

  .home-page .home-slider-arrow,
  .home-page .marketing-slider-arrow,
  .home-page .additional-slider-arrow {
    width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    font-size: 1rem !important;
    opacity: 0.9;
  }

  .home-page .home-slider-dots,
  .home-page .marketing-slider-dots,
  .home-page .additional-slider-dots { bottom: 8px !important; gap: 5px; }

  .home-page .home-slider-dots button,
  .home-page .marketing-slider-dots button,
  .home-page .additional-slider-dots button { width: 7px; height: 7px; }

  .home-page .store-marketing-block { margin-block: 9px; }
  .home-page .marketing-slider-grid,
  .home-page .marketing-banner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 8px; }

  .home-page .marketing-slider-grid .marketing-grid-link,
  .home-page .marketing-banner-grid .marketing-grid-link {
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 8px;
  }

  .home-page .marketing-slider-grid .marketing-media img,
  .home-page .marketing-banner-grid .marketing-media img { object-fit: contain !important; background: #fff4f7; }

  .home-page .home-banner-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .home-banner-images .responsive-marketing-picture { aspect-ratio: 1 / 1; background: #fff4f7; }
  .home-page .home-banner-images img { object-fit: contain; }

  .home-page .section { width: var(--home-content); padding-top: 22px; }
  .home-page .offers-section { padding-top: 8px; }
  .home-page .section-header { margin-bottom: 10px; gap: 8px; }
  .home-page .section-title { font-size: 1.18rem; }
  .home-page .section-subtitle { margin-top: 2px; font-size: 0.74rem; line-height: 1.55; }
  .home-page .section-header .button-secondary { min-height: 32px; padding-inline: 8px; font-size: 0.67rem; }

  .home-page .benefits {
    width: var(--home-content);
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-page .benefit { flex: 0 0 min(72vw, 245px); padding: 9px 11px; }
  .home-page .benefit p { font-size: 0.71rem; }

  /* Categories are compact horizontal controls on phones. */
  .home-page .category-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    padding: 2px 1px 6px;
  }

  .home-page .category-card,
  .home-page .category-row > .category-card:last-child:nth-child(2n + 1),
  .home-page .category-row > .category-card:last-child:nth-child(3n + 1) {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    min-height: 42px;
    padding: 0;
    border-radius: 999px;
    color: var(--color-ink);
    background: #fff;
    box-shadow: none;
  }

  .home-page .category-card img,
  .home-page .category-card::after { display: none; }
  .home-page .category-content { min-height: 40px; padding: 8px 13px; justify-content: center; }
  .home-page .category-content h3 { margin: 0; font-size: 0.75rem; white-space: nowrap; }
  .home-page .category-content p { display: none; }

  .home-page .offers-grid,
  .home-page .compact-products-grid,
  .home-page .product-horizontal-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 8px;
    overflow: visible;
  }

  .home-page .product-card { min-width: 0; border-radius: 8px; }
  .home-page .product-media { aspect-ratio: 1 / 1; }
  .home-page .product-image { width: 100%; height: 100%; object-fit: contain; }
  .home-page .product-body { padding: 8px; gap: 5px; }
  .home-page .product-brand { font-size: 0.64rem; }
  .home-page .product-title { min-height: 2.65em; font-size: 0.79rem; line-height: 1.34; }
  .home-page .product-rating { font-size: 0.65rem; }
  .home-page .product-price-stack .price { font-size: 0.86rem; }
  .home-page .old-price { font-size: 0.63rem; }
  .home-page .product-discount-capsule { padding: 2px 5px; font-size: 0.56rem; }

  .home-page .product-favorite-button {
    top: 6px;
    right: 6px;
    width: 30px;
    height: 30px;
    min-height: 30px;
  }

  .home-page .product-badges {
    top: 6px;
    left: 6px;
    right: auto;
    max-width: calc(100% - 44px);
    gap: 3px;
  }

  .home-page .product-badges .marketing-badge,
  .home-page .product-badges .badge,
  .home-page .product-badges .quantity-offer-badge {
    max-width: 100%;
    min-height: 19px;
    padding: 2px 5px;
    font-size: 0.54rem;
    line-height: 1.3;
  }

  .home-page .product-card .buy-btn {
    min-height: 36px;
    padding-inline: 7px;
    font-size: 0.68rem;
  }

  .home-page .product-add-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }
}

@media (max-width: 480px) {
  body.home-page { --home-content: calc(100% - 16px); }
  .home-page .navbar { width: calc(100% - 16px); gap: 6px; }
  .home-page #language-toggle,
  .home-page #customer-account-link { padding-inline: 6px; font-size: 0.62rem; }
  .home-page .marketing-media-overlay { inset-inline: 8px; bottom: 9px; max-width: calc(100% - 16px); }
  .home-page .marketing-media-overlay strong { max-width: 72%; padding: 5px 7px; font-size: 0.72rem; }
  .home-page .marketing-media-button { padding: 5px 7px; font-size: 0.65rem; }
}

@media (max-width: 430px) {
  .home-page .brand-mark,
  .home-page .brand-logo-wrap { width: 36px; height: 36px; flex-basis: 36px; }
  .home-page .brand-ar { font-size: 1.02rem; }
  .home-page .favorites-trigger,
  .home-page .cart-trigger { min-width: 38px; min-height: 38px; padding-inline: 8px; }
  .home-page .search-box,
  .home-page .search-box:focus-within,
  .home-page .search-box.has-query { height: 36px; }
  .home-page .section { padding-top: 19px; }
  .home-page .section-subtitle { max-width: 240px; }
  .home-page .marketing-slider-grid,
  .home-page .marketing-banner-grid { gap: 6px; }
}

@media (max-width: 390px) {
  .home-page .brand-en { display: none; }
  .home-page #language-toggle,
  .home-page #customer-account-link { font-size: 0.58rem; padding-inline: 5px; }
  .home-page .search-field { font-size: 0.68rem; }
  .home-page .nav-links > a,
  .home-page .nav-dropdown summary { min-height: 32px; padding-inline: 9px; font-size: 0.64rem; }
  .home-page .product-body { padding: 7px; }
  .home-page .product-title { font-size: 0.75rem; }
  .home-page .product-card .buy-btn { font-size: 0.64rem; }
}

@media (max-width: 340px) {
  .home-page .offers-grid,
  .home-page .compact-products-grid,
  .home-page .product-horizontal-row,
  .home-page .marketing-slider-grid,
  .home-page .marketing-banner-grid,
  .home-page .home-banner-images { grid-template-columns: 1fr !important; }
}

.product-quantity-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid #cfe8d9;
  border-radius: 8px;
  background: #f5fbf7;
}

.product-quantity-offer strong {
  color: #197a49;
  font-size: 1rem;
}

.product-quantity-offer p {
  margin: 5px 0 0;
  color: #5c7164;
  line-height: 1.7;
}

.product-quantity-offer-visual {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-quantity-offer-visual > span {
  position: relative;
  display: grid;
  justify-items: center;
  width: 72px;
  padding: 6px;
  border: 1px solid #dce9e1;
  border-radius: 7px;
  background: #fff;
}

.product-quantity-offer-visual img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.product-quantity-offer-visual small {
  color: #6d7d73;
  font-size: 0.64rem;
  font-weight: 800;
}

.product-quantity-offer-visual .is-free small {
  color: #16834e;
}

.checkout-final-summary .checkout-coupon-box {
  display: grid;
  align-items: stretch;
  gap: 7px;
  margin-bottom: 10px;
  padding: 11px;
  border: 1px solid #e7dce0;
  border-radius: 7px;
  background: #fffafa;
}

.checkout-coupon-box label {
  color: #493e42;
  font-size: 0.76rem;
  font-weight: 900;
}

.checkout-coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  gap: 7px;
}

.home-page .checkout-coupon-row input {
  min-height: 42px;
  text-transform: uppercase;
  direction: ltr;
  text-align: left;
}

.checkout-coupon-row button {
  min-height: 42px;
  padding: 7px 12px;
  border: 0;
  border-radius: 6px;
  background: #2d2528;
  color: #fff;
  font-weight: 900;
}

#checkout-coupon-message {
  min-height: 1.3em;
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.5;
}

#checkout-coupon-message.is-success {
  color: #16834e;
}

#checkout-coupon-message.is-error {
  color: #bd4053;
}

#checkout-coupon-discount-row strong {
  color: #16834e;
}

@media (max-width: 680px) {
  .product-quantity-offer {
    grid-template-columns: 1fr;
  }

  .product-quantity-offer-visual {
    justify-content: center;
  }

  .product-quantity-offer-visual > span {
    width: 64px;
  }

  .product-quantity-offer-visual img {
    width: 46px;
    height: 46px;
  }
}

/* v129: small homepage product price polish only */
.home-page .product-card .product-price-row {
  min-width: 0;
}

.home-page .product-card .product-price-stack {
  max-width: 100%;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3px 7px;
  line-height: 1.25;
}

.home-page .product-card .product-price-stack .price {
  max-width: 100%;
  color: #8f3f59;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.home-page .product-card .product-price-stack .old-price {
  max-width: 100%;
  color: #94878b;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration-line: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(92, 74, 80, 0.72);
  opacity: 0.86;
  overflow-wrap: anywhere;
}

.home-page .product-card .product-badges .badge {
  border: 1px solid rgba(185, 72, 105, 0.16);
  background: #fff3f6;
  color: #a84665;
  box-shadow: none;
}

@media (max-width: 480px) {
  .home-page .product-card .product-price-stack {
    gap: 2px 6px;
  }

  .home-page .product-card .product-price-stack .price {
    font-size: 0.9rem;
  }

  .home-page .product-card .product-price-stack .old-price {
    font-size: 0.64rem;
  }
}

/* v130: keep the homepage product add button readable inside the card */
.home-page .product-card .product-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: auto;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 8px;
  line-height: 1.25;
  overflow: visible;
  text-align: center;
}

.home-page .product-card .product-add-button .product-add-label {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

@media (max-width: 480px) {
  .home-page .product-card .product-add-button {
    min-height: 44px;
    padding: 8px 7px;
    font-size: 0.72rem;
  }
}

@media (max-width: 390px) {
  .home-page .product-card .product-add-button {
    min-height: 44px;
    font-size: 0.68rem;
  }
}

/* v131: compact homepage product badges only */
.home-page .product-card .product-badges {
  max-width: calc(100% - 58px);
  gap: 3px;
}

.home-page .product-card .product-badges .marketing-badge,
.home-page .product-card .product-badges .badge,
.home-page .product-card .product-badges .quantity-offer-badge {
  max-width: 100%;
  padding: 3px 6px;
  border-radius: 999px;
  font-size: 0.56rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .home-page .product-card .product-badges {
    max-width: calc(100% - 50px);
    gap: 2px;
  }

  .home-page .product-card .product-badges .marketing-badge,
  .home-page .product-card .product-badges .badge,
  .home-page .product-card .product-badges .quantity-offer-badge {
    padding: 2px 5px;
    font-size: 0.52rem;
  }
}

/* v132: small homepage product title readability polish only */
.home-page .product-card .product-title {
  min-height: 2.64em;
  font-size: clamp(0.76rem, 0.7rem + 0.12vw, 0.86rem);
  line-height: 1.33;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.home-page .product-card .product-title a {
  color: inherit;
}

@media (max-width: 480px) {
  .home-page .product-card .product-title {
    font-size: 0.76rem;
    line-height: 1.33;
  }
}

/* v133: small homepage product image spacing polish only */
.home-page .product-card .product-media {
  padding: 18px 14px 9px;
}

.home-page .product-card .product-image {
  object-fit: contain;
}

@media (max-width: 768px) {
  .home-page .product-card .product-media {
    padding: 15px 10px 7px;
  }
}

/* v137: notes fix for v136 mobile home interface */
.cart-trigger-icon {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  color: currentColor;
}

.cart-trigger-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-menu-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
}

.mega-menu-side {
  display: grid;
  align-content: start;
  gap: 7px;
  padding-inline-end: 14px;
  border-inline-end: 1px solid rgba(199, 131, 150, 0.16);
}

.mega-menu-side a,
.mega-menu-all {
  display: flex !important;
  align-items: center;
  gap: 9px;
  min-width: 0;
  white-space: normal !important;
}

.mega-menu-side img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff4f7;
}

.mega-menu-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px 18px;
  min-width: 0;
}

.mega-menu-column {
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
}

.nav-dropdown-menu .mega-menu-heading {
  color: #8f3f59;
  font-weight: 900;
}

.nav-dropdown-menu .mega-menu-column a {
  white-space: normal;
}

.mobile-categories-overlay,
.mobile-categories-panel {
  display: none;
}

@media (min-width: 769px) {
  .home-page .nav-dropdown-menu {
    position: fixed;
    top: 96px;
    inset-inline: max(20px, calc((100vw - 1180px) / 2));
    width: auto;
    min-width: 0;
    max-height: min(560px, calc(100vh - 120px));
    padding: 16px;
    border-radius: 18px;
  }
}

@media (max-width: 768px) {
  body.home-page {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  body.mobile-categories-open {
    overflow: hidden;
  }

  body.mobile-categories-open .mobile-bottom-nav {
    display: none;
  }

  .home-page .cart-trigger-icon {
    display: inline-grid;
    width: 21px;
    height: 21px;
  }

  .home-page .cart-trigger {
    color: #8f3f59;
  }

  .home-page .favorites-trigger:empty,
  .home-page .cart-trigger:empty {
    display: none !important;
  }

  .mobile-categories-overlay {
    position: fixed;
    inset: 0;
    z-index: 88;
    display: block;
    background: rgba(39, 30, 34, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }

  .mobile-categories-panel {
    position: fixed;
    inset-block: 0;
    inset-inline-start: 0;
    z-index: 89;
    width: min(100vw, 460px);
    display: flex;
    flex-direction: column;
    background: #fff;
    transform: translateX(-105%);
    transition: transform 0.22s ease;
    box-shadow: 18px 0 40px rgba(39, 30, 34, 0.16);
  }

  html[dir="rtl"] .mobile-categories-panel {
    inset-inline-start: auto;
    inset-inline-end: 0;
    transform: translateX(105%);
  }

  body.mobile-categories-open .mobile-categories-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-categories-open .mobile-categories-panel {
    transform: translateX(0);
  }

  .mobile-categories-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid #eee4e8;
  }

  .mobile-categories-header strong {
    display: block;
    color: #33282d;
    font-size: 1.05rem;
    font-weight: 900;
  }

  .mobile-categories-header span {
    color: #8c7a80;
    font-size: 0.74rem;
    font-weight: 700;
  }

  .mobile-categories-body {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    background: #faf7f8;
    overflow: hidden;
  }

  .mobile-categories-main {
    min-height: 0;
    overflow-y: auto;
    padding: 10px 7px;
    border-inline-end: 1px solid #eee4e8;
    background: #fff;
  }

  .mobile-categories-main button {
    width: 100%;
    min-height: 72px;
    display: grid;
    justify-items: center;
    gap: 5px;
    padding: 8px 4px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #7a6c71;
    font-weight: 900;
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .mobile-categories-main button.is-active {
    background: #fff0f5;
    color: #9f4865;
    box-shadow: inset 3px 0 0 #c65d82;
  }

  html[dir="rtl"] .mobile-categories-main button.is-active {
    box-shadow: inset -3px 0 0 #c65d82;
  }

  .mobile-categories-main img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff5f8;
  }

  .mobile-categories-content {
    min-height: 0;
    overflow-y: auto;
    padding: 14px;
  }

  .mobile-categories-content h3 {
    margin: 0 0 12px;
    color: #30262a;
    font-size: 1rem;
  }

  .mobile-categories-children {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-categories-children button {
    min-width: 0;
    min-height: 104px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 7px;
    padding: 10px 8px;
    border: 1px solid #f0e3e8;
    border-radius: 16px;
    background: #fff;
    color: #3c3034;
    font-weight: 900;
    font-size: 0.74rem;
    line-height: 1.35;
    box-shadow: 0 8px 20px rgba(77, 48, 58, 0.05);
  }

  .mobile-categories-children img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff5f8;
  }

  .mobile-category-open-all {
    grid-column: 1 / -1;
    min-height: 48px !important;
    color: #9f4865 !important;
    background: #fff0f5 !important;
  }

  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    width: calc(100% - 12px) !important;
    max-width: calc(100% - 12px) !important;
    aspect-ratio: 1.68 / 1 !important;
    margin: 6px auto 10px !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-page .home-slide,
  .home-page .home-slide > .home-slide-image-link,
  .home-page .home-slide > div.home-slide-image-link {
    border-radius: 18px !important;
  }

  .home-page .home-slide img,
  .home-page .marketing-slider.is-hero .marketing-media img,
  .home-page .marketing-slider-static.is-mobile-hero .marketing-media img {
    border-radius: 18px !important;
  }

  .home-page .home-media-banner,
  .home-page .marketing-image-banner,
  .home-page .additional-home-slider,
  .home-page .store-marketing-block {
    margin-block: 8px !important;
  }

  .home-page .home-banner-slot,
  .home-page .marketing-block-slot,
  .home-page .home-slider-slot {
    margin-block: 0 !important;
  }

  .home-page .home-banner-images {
    gap: 7px;
  }

  .home-page .home-media-banner,
  .home-page .home-banner-link,
  .home-page .home-banner-images,
  .home-page .responsive-marketing-picture,
  .home-page .marketing-media {
    background: transparent !important;
  }

  .home-page .home-banner-images img,
  .home-page .marketing-media img {
    display: block;
    border-radius: 14px;
  }

  .home-page .category-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px 7px;
    align-items: start;
  }

  .home-page .category-card img {
    width: 56px;
    height: 56px;
    padding: 4px;
  }

  .home-page .category-content h3 {
    max-width: 68px;
    min-height: 2.6em;
    font-size: 0.64rem;
  }

  .mobile-bottom-nav {
    align-items: end;
    padding-top: 7px;
  }

  .mobile-bottom-nav-item {
    min-height: 50px;
    gap: 3px;
  }

  .mobile-bottom-nav-item.is-active {
    background: #fff0f5;
    color: #9f4865;
  }

  .mobile-bottom-nav-item.is-active svg {
    stroke-width: 2.2;
  }
}

@media (max-width: 430px) {
  .home-page .category-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    aspect-ratio: 1.45 / 1 !important;
  }

  .mobile-categories-body {
    grid-template-columns: 104px minmax(0, 1fr);
  }
}

@media (max-width: 360px) {
  .mobile-categories-children {
    grid-template-columns: 1fr;
  }
}

/* v136: mobile home interface polish only */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body.home-page {
    --home-content: calc(100% - 20px);
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
    background: #fffafb;
  }

  body.drawer-open .mobile-bottom-nav,
  body.favorites-open .mobile-bottom-nav {
    display: none;
  }

  .home-page .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(199, 131, 150, 0.12);
    background: rgba(255, 250, 252, 0.96);
    box-shadow: 0 8px 22px rgba(77, 48, 58, 0.06);
  }

  .home-page .top-strip,
  .home-page .nav-menu-toggle,
  .home-page .nav-links,
  .home-page #language-toggle,
  .home-page #customer-account-link {
    display: none !important;
  }

  .home-page .navbar {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 8px;
    padding: 9px 12px 10px;
    margin: 0;
  }

  .home-page .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    gap: 8px;
  }

  .home-page .brand-mark,
  .home-page .brand-logo-wrap {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .home-page .brand-ar {
    font-size: 1.08rem;
  }

  .home-page .brand-en {
    font-size: 0.56rem;
  }

  .home-page .header-actions {
    display: contents;
  }

  .home-page .favorites-trigger,
  .home-page .cart-trigger {
    position: relative;
    grid-row: 1;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(77, 48, 58, 0.08);
  }

  .home-page .favorites-trigger {
    grid-column: 2;
  }

  .home-page .cart-trigger {
    grid-column: 3;
  }

  .home-page .cart-label {
    display: none;
  }

  .home-page .search-box,
  .home-page .search-box:focus-within,
  .home-page .search-box.has-query {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: min(280px, 74vw) !important;
    min-width: 0;
    height: 38px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(77, 48, 58, 0.07);
  }

  .home-page .search-field,
  .home-page .search-box:focus-within .search-field,
  .home-page .search-box.has-query .search-field {
    min-height: 38px;
    opacity: 1;
    padding-inline: 38px 12px;
    font-size: 0.78rem;
  }

  .home-page .search-icon {
    inset-inline-start: 13px;
    width: 17px;
    height: 17px;
  }

  .home-page main {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .home-page main > * {
    order: 40;
  }

  .home-page [data-marketing-placement="home.top"] { order: 1; }
  .home-page [data-marketing-placement="home.beforeHero"] { order: 2; }
  .home-page [data-marketing-placement="home.hero"] { order: 3; }
  .home-page #home-slider { order: 4; }
  .home-page [data-marketing-placement="home.afterHero"] { order: 5; }
  .home-page .home-banner-slot[data-banner-placement-key="before-collections"],
  .home-page .home-slider-slot[data-slider-placement-key="before-collections"],
  .home-page [data-marketing-placement="home.beforeCategories"] { order: 5; }
  .home-page #collections { order: 6; }
  .home-page [data-marketing-placement="home.afterCategories"] { order: 7; }
  .home-page .home-slider-slot[data-slider-placement-key="after-collections"],
  .home-page .home-banner-slot[data-banner-placement-key="after-collections"],
  .home-page .home-slider-slot[data-slider-placement-key="custom-home-area-1"],
  .home-page .home-banner-slot[data-banner-placement-key="custom-home-area-1"] { order: 8; }
  .home-page .home-slider-slot[data-slider-placement-key="home-top-extra"] { order: 8; }
  .home-page .home-banner-slot[data-banner-placement-key="before-offers"],
  .home-page .home-slider-slot[data-slider-placement-key="before-offers"] { order: 9; }
  .home-page #offers { order: 10; }
  .home-page .home-slider-slot[data-slider-placement-key="after-offers"],
  .home-page .home-banner-slot[data-banner-placement-key="after-offers"] { order: 11; }
  .home-page .home-slider-slot[data-slider-placement-key="before-benefits"],
  .home-page .home-slider-slot[data-slider-placement-key="after-benefits"] { order: 91; }
  .home-page #benefits { order: 100; }
  .home-page .home-banner-slot[data-banner-placement-key="before-products"],
  .home-page .home-slider-slot[data-slider-placement-key="before-products"],
  .home-page [data-marketing-placement="home.beforeProducts"] { order: 29; }
  .home-page #products { order: 30; }
  .home-page [data-marketing-placement="home.afterProducts"],
  .home-page .home-slider-slot[data-slider-placement-key="after-products"],
  .home-page .home-banner-slot[data-banner-placement-key="after-products"],
  .home-page [data-marketing-placement="custom"] { order: 31; }
  .home-page [data-marketing-placement="home.beforeFooter"] { order: 90; }

  .home-page .marketing-block-slot,
  .home-page .home-slider,
  .home-page .additional-home-slider,
  .home-page .home-banner-slot {
    width: var(--home-content) !important;
    max-width: var(--home-content) !important;
    margin-inline: auto !important;
  }

  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 16 / 9 !important;
    margin: 10px auto 12px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .home-page .home-slide,
  .home-page .home-slide > .home-slide-image-link,
  .home-page .home-slide > div.home-slide-image-link,
  .home-page .marketing-slider.is-hero .marketing-slider-track,
  .home-page .marketing-slider.is-hero .marketing-slider-item,
  .home-page .marketing-slider-static.is-mobile-hero .marketing-slider-link {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    border-radius: 18px !important;
  }

  .home-page .home-slide img,
  .home-page .marketing-slider.is-hero .marketing-media img,
  .home-page .marketing-slider-static.is-mobile-hero .marketing-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 18px !important;
    background: transparent !important;
  }

  .home-page .home-slider-arrow,
  .home-page .marketing-slider-arrow,
  .home-page .additional-slider-arrow {
    width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    border: 0 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 6px 18px rgba(77, 48, 58, 0.12);
    font-size: 1rem !important;
  }

  .home-page .home-slider-dots,
  .home-page .marketing-slider-dots,
  .home-page .additional-slider-dots {
    bottom: 8px !important;
  }

  .home-page .section {
    width: var(--home-content);
    padding-top: 18px;
  }

  .home-page .section-header {
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
  }

  .home-page .section-title {
    font-size: 1.22rem;
    line-height: 1.35;
  }

  .home-page .section-subtitle {
    display: none;
  }

  .home-page .category-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px 7px;
    padding: 0;
    overflow: visible;
  }

  .home-page .category-card,
  .home-page .category-row > .category-card:last-child:nth-child(2n + 1),
  .home-page .category-row > .category-card:last-child:nth-child(3n + 1) {
    display: grid;
    justify-items: center;
    align-content: start;
    width: auto;
    min-width: 0;
    min-height: 78px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--color-ink);
    box-shadow: none;
    overflow: visible;
  }

  .home-page .category-card img {
    position: static;
    display: block;
    width: 54px;
    height: 54px;
    padding: 5px;
    border: 1px solid rgba(199, 131, 150, 0.18);
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    opacity: 1;
    box-shadow: 0 8px 18px rgba(77, 48, 58, 0.07);
  }

  .home-page .category-card::after {
    display: none;
  }

  .home-page .category-content {
    position: static;
    z-index: auto;
    min-height: 0;
    height: auto;
    padding: 5px 0 0;
    display: block;
    text-align: center;
  }

  .home-page .category-content h3 {
    max-width: 64px;
    margin: 0 auto;
    font-size: 0.66rem;
    line-height: 1.35;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .home-page .category-content p {
    display: none;
  }

  .home-page .home-media-banner,
  .home-page .store-marketing-block,
  .home-page .marketing-image-banner,
  .home-page .marketing-slider-grid,
  .home-page .marketing-banner-grid,
  .home-page .additional-home-slider {
    border: 0 !important;
    border-radius: 16px !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden;
  }

  .home-page .home-banner-link,
  .home-page .marketing-banner-link,
  .home-page .marketing-grid-link,
  .home-page .marketing-slider-link,
  .home-page .additional-slider-link {
    border-radius: 16px;
    overflow: hidden;
  }

  .home-page .home-banner-images {
    display: grid;
    gap: 8px;
  }

  .home-page .home-media-banner:not(.split2):not(.split4) .home-banner-images {
    grid-template-columns: 1fr;
  }

  .home-page .home-media-banner.split2 .home-banner-images,
  .home-page .home-media-banner.split4 .home-banner-images,
  .home-page .marketing-slider-grid,
  .home-page .marketing-banner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-page .home-media-banner:not(.split2):not(.split4) .responsive-marketing-picture,
  .home-page .home-media-banner:not(.split2):not(.split4) .home-banner-images img,
  .home-page .marketing-image-banner .marketing-media {
    aspect-ratio: 16 / 9 !important;
  }

  .home-page .home-media-banner.split2 .responsive-marketing-picture,
  .home-page .home-media-banner.split4 .responsive-marketing-picture,
  .home-page .marketing-grid-link,
  .home-page .marketing-banner-grid .marketing-grid-link {
    aspect-ratio: 1 / 1 !important;
  }

  .home-page .home-banner-images img,
  .home-page .marketing-media img,
  .home-page .additional-slider-card img {
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center;
    background: transparent !important;
  }

  .mobile-bottom-nav {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 74;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2px;
    padding: 8px 8px max(8px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(199, 131, 150, 0.18);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 24px rgba(77, 48, 58, 0.09);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav-item {
    min-width: 0;
    min-height: 48px;
    display: grid;
    place-items: center;
    gap: 2px;
    padding: 4px 2px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #5d4d53;
    font: inherit;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
  }

  .mobile-bottom-nav-item svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-bottom-nav-item.is-active,
  .mobile-bottom-nav-feature {
    color: #a44865;
  }

  .mobile-bottom-nav-feature svg {
    width: 28px;
    height: 28px;
    padding: 4px;
    border-radius: 50%;
    background: #fff1f6;
  }

  .home-page .back-to-top {
    bottom: calc(86px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .home-page .navbar {
    padding-inline: 10px;
  }

  .home-page .search-box,
  .home-page .search-box:focus-within,
  .home-page .search-box.has-query {
    width: min(270px, 72vw) !important;
  }

  .home-page .category-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-page .category-card img {
    width: 52px;
    height: 52px;
  }

  .mobile-bottom-nav-item {
    font-size: 0.58rem;
  }
}

@media (max-width: 360px) {
  .home-page .brand-en {
    display: none;
  }

  .home-page .search-box,
  .home-page .search-box:focus-within,
  .home-page .search-box.has-query {
    width: min(242px, 70vw) !important;
  }

  .home-page .category-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* v137 final mobile overrides: notes fix over the accepted v136 base */
@media (max-width: 768px) {
  body.mobile-categories-open .mobile-bottom-nav {
    display: grid;
  }

  body.mobile-categories-open .mobile-categories-overlay {
    inset-block-end: calc(72px + env(safe-area-inset-bottom));
  }

  body.mobile-categories-open .mobile-categories-panel {
    inset-block-end: calc(72px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav {
    z-index: 92;
    align-items: end;
    padding-top: 7px;
  }

  .mobile-bottom-nav-item {
    min-height: 50px;
    gap: 3px;
  }

  .mobile-bottom-nav-item.is-active {
    background: #fff0f5;
    color: #9f4865;
  }

  body.mobile-categories-open .mobile-bottom-nav-item.is-active:not([data-open-mobile-categories]) {
    background: transparent;
    color: #5d4d53;
  }

  body.mobile-categories-open [data-open-mobile-categories] {
    background: #fff0f5;
    color: #9f4865;
  }

  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    width: calc(100% - 12px) !important;
    max-width: calc(100% - 12px) !important;
    aspect-ratio: 1.68 / 1 !important;
    margin: 6px auto 10px !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-page .home-slide,
  .home-page .home-slide > .home-slide-image-link,
  .home-page .home-slide > div.home-slide-image-link,
  .home-page .home-slide img,
  .home-page .marketing-slider.is-hero .marketing-media img,
  .home-page .marketing-slider-static.is-mobile-hero .marketing-media img {
    border-radius: 18px !important;
  }

  .home-page .home-media-banner,
  .home-page .marketing-image-banner,
  .home-page .additional-home-slider,
  .home-page .store-marketing-block {
    margin-block: 8px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-page .home-banner-slot,
  .home-page .marketing-block-slot,
  .home-page .home-slider-slot {
    margin-block: 0 !important;
  }

  .home-page .home-banner-images {
    gap: 7px;
  }

  .home-page .home-media-banner,
  .home-page .home-banner-link,
  .home-page .home-banner-images,
  .home-page .responsive-marketing-picture,
  .home-page .marketing-media {
    background: transparent !important;
  }

  .home-page .home-banner-images img,
  .home-page .marketing-media img {
    display: block;
    border-radius: 14px;
    object-fit: cover !important;
  }

  .home-page .category-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px 7px;
    align-items: start;
    overflow: visible;
  }

  .home-page .category-card,
  .home-page .category-row > .category-card:last-child:nth-child(2n + 1),
  .home-page .category-row > .category-card:last-child:nth-child(3n + 1) {
    display: grid;
    justify-items: center;
    align-content: start;
    width: auto;
    min-width: 0;
    min-height: 78px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .home-page .category-card img {
    position: static;
    display: block;
    width: 56px;
    height: 56px;
    padding: 4px;
    border: 1px solid rgba(199, 131, 150, 0.18);
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    opacity: 1;
    box-shadow: 0 8px 18px rgba(77, 48, 58, 0.07);
  }

  .home-page .category-card::after {
    display: none;
  }

  .home-page .category-content {
    position: static;
    min-height: 0;
    height: auto;
    padding: 5px 0 0;
    display: block;
    text-align: center;
  }

  .home-page .category-content h3 {
    max-width: 68px;
    min-height: 2.6em;
    margin: 0 auto;
    font-size: 0.64rem;
    line-height: 1.35;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .home-page .category-content p {
    display: none;
  }
}

@media (max-width: 430px) {
  .home-page .category-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    aspect-ratio: 1.45 / 1 !important;
  }
}

/* v138: mobile categories spacing and softer mobile typography only */
@media (max-width: 768px) {
  .home-page .section-title,
  .home-page .products-section h2,
  .home-page .categories-section h2 {
    font-size: clamp(1.05rem, 4.2vw, 1.38rem);
    font-weight: 750;
    line-height: 1.32;
  }

  .home-page .section-subtitle,
  .home-page .categories-section p,
  .home-page .products-section p {
    font-size: clamp(0.78rem, 3.2vw, 0.95rem);
    font-weight: 450;
    line-height: 1.6;
  }

  .home-page .nav-links a,
  .home-page .nav-dropdown summary,
  .home-page .button-secondary,
  .home-page .mobile-categories-main button,
  .home-page .mobile-categories-children button {
    font-weight: 650;
  }

  .mobile-bottom-nav-item {
    font-size: 0.56rem;
    font-weight: 650;
    line-height: 1.25;
  }

  .home-page .category-row {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-page .category-row::-webkit-scrollbar {
    display: none;
  }

  .home-page .category-card,
  .home-page .category-row > .category-card:last-child:nth-child(2n + 1),
  .home-page .category-row > .category-card:last-child:nth-child(3n + 1),
  .home-page .category-row > .category-card:last-child:nth-child(4n + 1) {
    flex: 0 0 68px;
    width: 68px;
    min-width: 68px;
    max-width: 68px;
    min-height: 86px;
    gap: 5px;
    scroll-snap-align: start;
  }

  .home-page .category-card img {
    width: 56px;
    height: 56px;
  }

  .home-page .category-content {
    width: 100%;
    padding-top: 4px;
  }

  .home-page .category-content h3 {
    max-width: 68px;
    min-height: 2.55em;
    font-size: 0.6rem;
    font-weight: 650;
    line-height: 1.28;
  }
}

@media (max-width: 430px) {
  .home-page .category-row {
    gap: 9px;
  }

  .home-page .category-card,
  .home-page .category-row > .category-card:last-child:nth-child(2n + 1),
  .home-page .category-row > .category-card:last-child:nth-child(3n + 1),
  .home-page .category-row > .category-card:last-child:nth-child(4n + 1) {
    flex-basis: 64px;
    width: 64px;
    min-width: 64px;
    max-width: 64px;
    min-height: 82px;
  }

  .home-page .category-card img {
    width: 52px;
    height: 52px;
  }

  .home-page .category-content h3 {
    max-width: 64px;
    font-size: 0.58rem;
  }
}

/* v139: mobile-only softer typography and compact product cards */
@media (max-width: 768px) {
  body.home-page,
  .home-page button,
  .home-page input,
  .home-page select,
  .home-page textarea {
    font-family: "Tajawal", "IBM Plex Sans Arabic", "Cairo", "Noto Sans Arabic", system-ui, sans-serif;
  }

  body.home-page {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
  }

  .home-page .top-strip,
  .home-page .section-subtitle,
  .home-page .home-product-section-heading p,
  .home-page .category-content h3,
  .home-page .mobile-bottom-nav-item,
  .home-page .nav-links a,
  .home-page .nav-dropdown summary {
    font-weight: 400;
  }

  .home-page .section-title,
  .home-page .products-section h2,
  .home-page .categories-section h2,
  .home-page .home-product-section-heading h3 {
    font-size: clamp(0.98rem, 3.8vw, 1.22rem);
    font-weight: 500;
    line-height: 1.35;
  }

  .home-page .section-subtitle,
  .home-page .home-product-section-heading p {
    font-size: clamp(0.72rem, 3vw, 0.88rem);
    line-height: 1.55;
  }

  .home-page .home-product-section-heading {
    margin-bottom: 8px;
  }

  .home-page .home-product-section-heading button,
  .home-page .home-product-section-heading > a,
  .home-page .section-header .button-secondary {
    min-height: 30px;
    padding: 5px 8px;
    font-size: 0.68rem;
    font-weight: 500;
  }

  .home-page .mobile-bottom-nav-item {
    font-size: 0.54rem;
    font-weight: 400;
  }

  .home-page .category-content h3 {
    font-size: 0.56rem;
    font-weight: 400;
  }

  .home-page .product-horizontal-row {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none !important;
    grid-auto-columns: minmax(112px, 31vw);
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1px 1px 10px;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }

  .home-page .product-horizontal-row::-webkit-scrollbar {
    display: none;
  }

  .home-page .product-horizontal-row .product-card,
  .home-page .compact-products-grid .product-card {
    min-height: 272px;
    border-radius: 7px;
    box-shadow: 0 4px 14px rgba(66, 44, 52, 0.04);
  }

  .home-page .product-horizontal-row .product-media,
  .home-page .compact-products-grid .product-media {
    height: 116px;
    min-height: 116px;
    padding: 10px 8px 5px;
  }

  .home-page .product-horizontal-row .product-body,
  .home-page .compact-products-grid .product-body {
    padding: 6px 7px 7px;
    gap: 3px;
    grid-template-rows: auto minmax(2.35em, auto) auto auto auto;
  }

  .home-page .product-horizontal-row .product-brand,
  .home-page .compact-products-grid .product-brand {
    font-size: 0.56rem;
    font-weight: 500;
    line-height: 1.25;
  }

  .home-page .product-horizontal-row .product-title,
  .home-page .compact-products-grid .product-title {
    min-height: 2.45em;
    font-size: 0.64rem;
    font-weight: 500;
    line-height: 1.26;
    -webkit-line-clamp: 2;
  }

  .home-page .product-horizontal-row .product-rating,
  .home-page .compact-products-grid .product-rating {
    font-size: 0.55rem;
    line-height: 1.2;
  }

  .home-page .product-horizontal-row .product-price-row,
  .home-page .compact-products-grid .product-price-row {
    gap: 4px;
  }

  .home-page .product-horizontal-row .product-price-stack,
  .home-page .compact-products-grid .product-price-stack {
    gap: 1px 4px;
    line-height: 1.15;
  }

  .home-page .product-horizontal-row .product-price-stack .price,
  .home-page .compact-products-grid .product-price-stack .price {
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.15;
  }

  .home-page .product-horizontal-row .product-price-stack .old-price,
  .home-page .compact-products-grid .product-price-stack .old-price {
    font-size: 0.54rem;
    font-weight: 400;
    line-height: 1.1;
  }

  .home-page .product-horizontal-row .product-discount-capsule,
  .home-page .compact-products-grid .product-discount-capsule {
    padding: 2px 4px;
    font-size: 0.5rem;
    font-weight: 500;
  }

  .home-page .product-horizontal-row .product-favorite-button,
  .home-page .compact-products-grid .product-favorite-button {
    top: 5px;
    right: 5px;
    width: 27px;
    height: 27px;
    min-height: 27px;
    font-size: 1rem;
  }

  .home-page .product-horizontal-row .product-badges,
  .home-page .compact-products-grid .product-badges {
    top: 5px;
    left: 5px;
    max-width: calc(100% - 39px);
    gap: 2px;
  }

  .home-page .product-horizontal-row .product-badges .marketing-badge,
  .home-page .product-horizontal-row .product-badges .badge,
  .home-page .product-horizontal-row .product-badges .quantity-offer-badge,
  .home-page .compact-products-grid .product-badges .marketing-badge,
  .home-page .compact-products-grid .product-badges .badge,
  .home-page .compact-products-grid .product-badges .quantity-offer-badge {
    min-height: 17px;
    padding: 2px 4px;
    font-size: 0.48rem;
    font-weight: 500;
  }

  .home-page .product-horizontal-row .product-add-button,
  .home-page .compact-products-grid .product-add-button {
    min-height: 32px;
    padding: 5px 6px;
    border-radius: 7px;
    gap: 4px;
    font-size: 0.58rem;
    font-weight: 500;
    line-height: 1.2;
  }
}

@media (max-width: 430px) {
  .home-page .product-horizontal-row {
    grid-auto-columns: minmax(108px, 30.5vw);
    gap: 7px;
  }

  .home-page .product-horizontal-row .product-card,
  .home-page .compact-products-grid .product-card {
    min-height: 262px;
  }

  .home-page .product-horizontal-row .product-media,
  .home-page .compact-products-grid .product-media {
    height: 108px;
    min-height: 108px;
    padding: 9px 7px 4px;
  }

  .home-page .product-horizontal-row .product-title,
  .home-page .compact-products-grid .product-title {
    font-size: 0.61rem;
  }

  .home-page .product-horizontal-row .product-price-stack .price,
  .home-page .compact-products-grid .product-price-stack .price {
    font-size: 0.73rem;
  }
}

/* v140: mobile marketing media system - hero, wide banners, and 2x2 grids only */
@media (max-width: 768px) {
  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 16 / 9 !important;
    margin: 8px auto 10px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .home-page .home-slide,
  .home-page .home-slide > .home-slide-image-link,
  .home-page .home-slide > div.home-slide-image-link,
  .home-page .marketing-slider-track,
  .home-page .marketing-slider-item,
  .home-page .marketing-slider-link,
  .home-page .marketing-slider.is-hero .marketing-media,
  .home-page .marketing-slider-static.is-mobile-hero .marketing-media {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    border-radius: inherit !important;
    background: transparent !important;
    overflow: hidden !important;
  }

  .home-page .home-slide img,
  .home-page .marketing-slider.is-hero .marketing-media img,
  .home-page .marketing-slider-static.is-mobile-hero .marketing-media img,
  .home-page .marketing-slider.is-hero .responsive-marketing-picture > img,
  .home-page .marketing-slider-static.is-mobile-hero .responsive-marketing-picture > img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: inherit !important;
    background: transparent !important;
  }

  .home-page .marketing-block-slot,
  .home-page .home-slider-slot,
  .home-page .home-banner-slot {
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    margin-inline: auto !important;
    overflow: visible !important;
  }

  .home-page .store-marketing-block,
  .home-page .home-media-banner,
  .home-page .marketing-image-banner,
  .home-page .additional-home-slider {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .home-page .marketing-media,
  .home-page .marketing-banner-link,
  .home-page .marketing-grid-link,
  .home-page .home-banner-link,
  .home-page .responsive-marketing-picture {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    display: block !important;
    border-radius: inherit !important;
    background: transparent !important;
    overflow: hidden !important;
  }

  .home-page .marketing-media img,
  .home-page .marketing-image-banner img,
  .home-page .home-banner-images img,
  .home-page .responsive-marketing-picture > img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: inherit !important;
    background: transparent !important;
  }

  .home-page .marketing-image-banner,
  .home-page .home-media-banner:not(.split2):not(.split4),
  .home-page .marketing-banner-grid.layout-stack2 .marketing-grid-link,
  .home-page .marketing-slider.is-compact,
  .home-page .marketing-slider-static:not(.is-mobile-hero) {
    aspect-ratio: 16 / 7 !important;
    min-height: 0 !important;
  }

  .home-page .additional-home-slider,
  .home-page .additional-slider-track,
  .home-page .additional-slider-card {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 7 !important;
  }

  .home-page .additional-slider-card,
  .home-page .additional-slider-link {
    border-radius: inherit !important;
    background: transparent !important;
    overflow: hidden !important;
  }

  .home-page .additional-slider-card > img,
  .home-page .additional-slider-link > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    background: transparent !important;
  }

  .home-page .home-banner-images {
    width: 100% !important;
    min-height: 0 !important;
    gap: 8px !important;
    background: transparent !important;
  }

  .home-page .home-media-banner.split2,
  .home-page .home-media-banner.split4 {
    aspect-ratio: auto !important;
  }

  .home-page .home-media-banner.split2 .home-banner-images,
  .home-page .home-media-banner.split4 .home-banner-images {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: auto !important;
  }

  .home-page .home-media-banner.split2 .home-banner-images img,
  .home-page .home-media-banner.split4 .home-banner-images img {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
  }

  .home-page .marketing-banner-grid,
  .home-page .marketing-slider-grid {
    gap: 8px !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .home-page .marketing-banner-grid.layout-grid2,
  .home-page .marketing-banner-grid.layout-grid3,
  .home-page .marketing-banner-grid.layout-grid4,
  .home-page .marketing-slider-grid.is-two-columns,
  .home-page .marketing-slider-grid.is-grid-2x2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-page .marketing-banner-grid .marketing-grid-link,
  .home-page .marketing-slider-grid .marketing-grid-link {
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .home-page .marketing-banner-grid.layout-feature,
  .home-page .marketing-slider-grid.is-feature-grid {
    grid-template-columns: 1fr !important;
  }

  .home-page .marketing-banner-grid.layout-feature .marketing-grid-link,
  .home-page .marketing-slider-grid.is-feature-grid .marketing-grid-link {
    aspect-ratio: 16 / 7 !important;
  }

  .home-page .marketing-slider-arrow,
  .home-page .home-slider-arrow,
  .home-page .additional-slider-arrow {
    width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    background: rgba(255, 255, 255, 0.78) !important;
    box-shadow: 0 4px 12px rgba(77, 48, 58, 0.12) !important;
  }

  .home-page .marketing-slider-dots,
  .home-page .home-slider-dots,
  .home-page .additional-slider-dots {
    bottom: 7px !important;
  }
}

@media (max-width: 430px) {
  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    aspect-ratio: 16 / 9 !important;
  }

  .home-page .marketing-image-banner,
  .home-page .home-media-banner:not(.split2):not(.split4),
  .home-page .marketing-slider.is-compact,
  .home-page .marketing-slider-static:not(.is-mobile-hero),
  .home-page .additional-home-slider,
  .home-page .additional-slider-track,
  .home-page .additional-slider-card {
    aspect-ratio: 16 / 7 !important;
  }
}

/* v141: smart responsive media system for admin-managed sliders and banners only */
.home-page .responsive-marketing-picture.media-fit-smart > img,
.home-page .responsive-marketing-picture.media-fit-contain > img {
  object-fit: contain;
}

.home-page .responsive-marketing-picture.media-fit-cover > img {
  object-fit: cover;
}

.home-page .responsive-marketing-picture.media-pos-center > img { object-position: center center; }
.home-page .responsive-marketing-picture.media-pos-right > img { object-position: right center; }
.home-page .responsive-marketing-picture.media-pos-left > img { object-position: left center; }
.home-page .responsive-marketing-picture.media-pos-top > img { object-position: center top; }
.home-page .responsive-marketing-picture.media-pos-bottom > img { object-position: center bottom; }

.home-page .marketing-image-fallback,
.home-page .responsive-marketing-picture:empty,
.home-page .marketing-media:empty,
.home-page .home-banner-images:empty,
.home-page .marketing-block-slot:empty,
.home-page .home-slider-slot:empty,
.home-page .home-banner-slot:empty {
  display: none !important;
}

@media (max-width: 768px) {
  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    aspect-ratio: 16 / 6.4 !important;
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    margin: 10px auto 14px !important;
    border-radius: 18px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-page .marketing-slider.is-compact,
  .home-page .marketing-slider-static:not(.is-mobile-hero),
  .home-page .marketing-image-banner,
  .home-page .home-media-banner:not(.split2):not(.split4),
  .home-page .additional-home-slider,
  .home-page .additional-slider-track,
  .home-page .additional-slider-card {
    aspect-ratio: 16 / 6.6 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .home-page .responsive-marketing-picture,
  .home-page .marketing-media,
  .home-page .marketing-slider-link,
  .home-page .marketing-grid-link,
  .home-page .home-banner-link,
  .home-page .additional-slider-link,
  .home-page .home-slide > .home-slide-image-link,
  .home-page .home-slide > div.home-slide-image-link {
    background: transparent !important;
  }

  .home-page .responsive-marketing-picture.media-fit-smart > img,
  .home-page .responsive-marketing-picture.media-fit-contain > img,
  .home-page .marketing-grid-link .responsive-marketing-picture.media-fit-smart > img,
  .home-page .marketing-grid-link .responsive-marketing-picture.media-fit-contain > img,
  .home-page .home-banner-images .responsive-marketing-picture.media-fit-smart > img,
  .home-page .home-banner-images .responsive-marketing-picture.media-fit-contain > img {
    object-fit: contain !important;
    background: transparent !important;
  }

  .home-page .responsive-marketing-picture.media-fit-cover > img,
  .home-page .marketing-grid-link .responsive-marketing-picture.media-fit-cover > img,
  .home-page .home-banner-images .responsive-marketing-picture.media-fit-cover > img {
    object-fit: cover !important;
    background: transparent !important;
  }

  .home-page .responsive-marketing-picture.media-pos-center > img { object-position: center center !important; }
  .home-page .responsive-marketing-picture.media-pos-right > img { object-position: right center !important; }
  .home-page .responsive-marketing-picture.media-pos-left > img { object-position: left center !important; }
  .home-page .responsive-marketing-picture.media-pos-top > img { object-position: center top !important; }
  .home-page .responsive-marketing-picture.media-pos-bottom > img { object-position: center bottom !important; }

  .home-page .home-slide img,
  .home-page .marketing-media img,
  .home-page .marketing-image-banner img,
  .home-page .home-banner-images img,
  .home-page .additional-slider-link img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    border-radius: inherit !important;
  }

  .home-page .home-banner-images {
    gap: 10px !important;
  }

  .home-page .marketing-banner-grid,
  .home-page .marketing-slider-grid {
    gap: 10px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .home-page .marketing-banner-grid .marketing-grid-link,
  .home-page .marketing-slider-grid .marketing-grid-link,
  .home-page .home-media-banner.split2 .responsive-marketing-picture,
  .home-page .home-media-banner.split4 .responsive-marketing-picture {
    aspect-ratio: 16 / 6.8 !important;
    min-height: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }
}

@media (max-width: 560px) {
  .home-page .home-media-banner.split2 .home-banner-images,
  .home-page .home-media-banner.split4 .home-banner-images,
  .home-page .marketing-banner-grid.layout-grid2,
  .home-page .marketing-banner-grid.layout-grid3,
  .home-page .marketing-banner-grid.layout-grid4,
  .home-page .marketing-slider-grid.is-two-columns,
  .home-page .marketing-slider-grid.is-grid-2x2 {
    grid-template-columns: 1fr !important;
  }

  .home-page .home-media-banner.split2,
  .home-page .home-media-banner.split4,
  .home-page .marketing-banner-grid,
  .home-page .marketing-slider-grid {
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-page .home-media-banner.split2 .responsive-marketing-picture,
  .home-page .home-media-banner.split4 .responsive-marketing-picture,
  .home-page .marketing-banner-grid .marketing-grid-link,
  .home-page .marketing-slider-grid .marketing-grid-link {
    aspect-ratio: 16 / 6.5 !important;
  }
}

/* v145-1: visual-only official SAR symbol and price color states */
.price {
  color: var(--color-ink);
}

.price.is-discounted,
.offer-price-line strong,
.offer-price-final strong,
.home-page .product-card .product-price-stack .price.is-discounted,
.favorite-item-price .price.is-discounted,
.home-page .cart-recommendation-card .price.is-discounted {
  color: #d64270;
}

.old-price,
.offer-price-line del,
.home-page .product-card .product-price-stack .old-price,
.favorite-item-price .old-price,
.home-page .cart-recommendation-card .old-price {
  color: #94878b;
  text-decoration-line: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
  opacity: 0.88;
}

.home-page .product-card .product-price-stack .price:not(.is-discounted),
.favorite-item-price .price:not(.is-discounted),
.home-page .cart-recommendation-card .price:not(.is-discounted) {
  color: var(--color-ink);
}

/* v146: unified public product card design */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(73, 55, 61, 0.06);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(59, 39, 46, 0.04);
}

.product-card-visual,
.product-card .product-media {
  background: #fff;
}

.product-card-visual {
  position: relative;
  height: 168px;
  padding: 18px 18px 8px;
}

.product-card .product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-card .product-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: none !important;
}

.product-card .product-favorite-button {
  position: absolute;
  top: 10px;
  left: 10px;
  right: auto;
  z-index: 3;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #20181c;
  box-shadow: none;
  font-size: 1.6rem;
  line-height: 1;
}

.product-card .product-favorite-button.is-active {
  color: #b24a68;
}

.product-card .product-badges {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  max-width: calc(100% - 58px);
}

.product-card .product-badges:empty {
  display: none;
}

.product-card .product-badges .marketing-badge,
.product-card .product-badges .badge,
.product-card .product-badges .quantity-offer-badge {
  min-height: 20px;
  max-width: 100%;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: none;
}

.product-card .product-badges .marketing-badge {
  background: var(--marketing-badge-color, #6d5086);
  color: var(--marketing-badge-text-color, #fff);
}

.product-card-cart-button.product-add-button {
  position: absolute;
  left: 12px;
  bottom: 8px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f4f2f2;
  color: #20181c;
  box-shadow: 0 6px 16px rgba(50, 36, 43, 0.08);
}

.home-page .product-card .product-card-cart-button.product-add-button,
.product-card .product-card-cart-button.product-add-button {
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 50%;
  gap: 0;
  overflow: visible;
}

.product-card-cart-button.product-add-button:disabled {
  opacity: 0.48;
}

.product-card .product-add-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.home-page .product-card .product-card-cart-button .product-add-label,
.product-card .product-card-cart-button .product-add-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.product-cart-icon {
  position: relative;
  width: 19px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 5px 5px 6px 6px;
}

.product-cart-icon::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 4px;
  width: 7px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.product-cart-icon::after {
  content: "+";
  position: absolute;
  right: -9px;
  top: -9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f4f2f2;
  color: currentColor;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 14px;
  text-align: center;
}

.product-card .product-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 5px;
  padding: 4px 14px 14px;
  text-align: right;
}

.product-card .product-brand,
.product-card .product-category {
  min-height: 0;
  color: #7a7376;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-card .product-title {
  min-height: calc(1.5em * 2);
  margin: 0;
  color: #20181c;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-card .product-title a {
  color: inherit;
  text-decoration: none;
}

.product-card .product-size-chip {
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6d6468;
  font-size: 0.72rem;
  line-height: 1.35;
}

.product-card .product-rating {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 3px;
  min-height: 0;
  color: #9c9397;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  direction: ltr;
}

.product-card .product-rating span {
  color: #f2be42;
}

.product-card .product-price-row {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 0;
  margin-top: auto;
}

.product-card .product-price-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  gap: 4px 7px;
  width: 100%;
  line-height: 1.18;
}

.product-card .product-price-stack.has-discount .old-price {
  flex-basis: 100%;
  text-align: right;
}

.product-card .product-price-stack .old-price {
  color: #9b9496;
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration-line: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}

.product-card .product-price-stack .price {
  color: #20181c;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0;
}

.product-card .product-price-stack .price.is-discounted {
  color: #d64270;
}

.product-discount-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ffe5ec;
  color: #d64270;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 768px) {
  .product-card-visual {
    height: 138px;
    padding: 15px 12px 7px;
  }

  .product-card .product-body {
    gap: 4px;
    padding: 3px 10px 11px;
  }

  .product-card .product-favorite-button {
    top: 7px;
    left: 7px;
    width: 30px;
    height: 30px;
    min-height: 30px;
    font-size: 1.42rem;
  }

  .product-card .product-badges {
    top: 7px;
    right: 7px;
    max-width: calc(100% - 48px);
  }

  .product-card .product-badges .marketing-badge,
  .product-card .product-badges .badge,
  .product-card .product-badges .quantity-offer-badge {
    min-height: 18px;
    padding: 2px 6px;
    font-size: 0.56rem;
  }

  .product-card-cart-button.product-add-button {
    left: 8px;
    bottom: 6px;
    width: 34px;
    height: 34px;
    min-height: 34px;
  }

  .home-page .product-card .product-card-cart-button.product-add-button,
  .product-card .product-card-cart-button.product-add-button {
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
  }

  .product-cart-icon {
    width: 17px;
    height: 15px;
  }

  .product-card .product-brand,
  .product-card .product-category {
    font-size: 0.68rem;
  }

  .product-card .product-title {
    font-size: 0.72rem;
    line-height: 1.42;
    min-height: calc(1.42em * 2);
  }

  .product-card .product-size-chip,
  .product-card .product-rating {
    font-size: 0.62rem;
  }

  .product-card .product-price-stack .old-price {
    font-size: 0.6rem;
  }

  .product-card .product-price-stack .price {
    font-size: 0.86rem;
  }

  .product-discount-capsule {
    min-height: 18px;
    padding: 2px 6px;
    font-size: 0.62rem;
  }
}

/* v146: keep the unified card internals stronger than older homepage row rules */
.home-page .product-card .product-card-visual,
.home-page .product-horizontal-row .product-card .product-card-visual,
.home-page .compact-products-grid .product-card .product-card-visual {
  position: relative;
  height: 168px;
  padding: 18px 18px 8px;
}

.home-page .product-card .product-media,
.home-page .product-horizontal-row .product-card .product-media,
.home-page .compact-products-grid .product-card .product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.home-page .product-card .product-image,
.home-page .product-horizontal-row .product-card .product-image,
.home-page .compact-products-grid .product-card .product-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: none !important;
}

.home-page .product-card .product-favorite-button,
.home-page .product-horizontal-row .product-card .product-favorite-button,
.home-page .compact-products-grid .product-card .product-favorite-button {
  top: 10px;
  left: 10px;
  right: auto;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 1.6rem;
}

.home-page .product-card .product-badges,
.home-page .product-horizontal-row .product-card .product-badges,
.home-page .compact-products-grid .product-card .product-badges {
  top: 10px;
  right: 10px;
  left: auto;
  align-items: flex-end;
  max-width: calc(100% - 58px);
  gap: 4px;
}

.home-page .product-card .product-body,
.home-page .product-horizontal-row .product-card .product-body,
.home-page .compact-products-grid .product-card .product-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px 14px 14px;
  text-align: right;
  grid-template-rows: none;
}

.home-page .product-card .product-title,
.home-page .product-horizontal-row .product-card .product-title,
.home-page .compact-products-grid .product-card .product-title {
  min-height: calc(1.5em * 2);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
  -webkit-line-clamp: 2;
}

.home-page .product-card .product-brand,
.home-page .compact-products-grid .product-card .product-brand,
.home-page .product-horizontal-row .product-card .product-brand {
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.home-page .product-card .product-rating,
.home-page .product-horizontal-row .product-card .product-rating,
.home-page .compact-products-grid .product-card .product-rating {
  font-size: 0.7rem;
  font-weight: 700;
}

.home-page .product-card .product-price-stack .price,
.home-page .product-horizontal-row .product-card .product-price-stack .price,
.home-page .compact-products-grid .product-card .product-price-stack .price {
  font-size: 1.02rem;
  font-weight: 900;
}

.home-page .product-card .product-price-stack .old-price,
.home-page .product-horizontal-row .product-card .product-price-stack .old-price,
.home-page .compact-products-grid .product-card .product-price-stack .old-price {
  font-size: 0.74rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .home-page .product-card .product-card-visual,
  .home-page .product-horizontal-row .product-card .product-card-visual,
  .home-page .compact-products-grid .product-card .product-card-visual {
    height: 138px;
    padding: 15px 12px 7px;
  }

  .home-page .product-card .product-favorite-button,
  .home-page .product-horizontal-row .product-card .product-favorite-button,
  .home-page .compact-products-grid .product-card .product-favorite-button {
    top: 7px;
    left: 7px;
    right: auto;
    width: 30px;
    height: 30px;
    min-height: 30px;
    font-size: 1.42rem;
  }

  .home-page .product-card .product-badges,
  .home-page .product-horizontal-row .product-card .product-badges,
  .home-page .compact-products-grid .product-card .product-badges {
    top: 7px;
    right: 7px;
    left: auto;
    max-width: calc(100% - 48px);
  }

  .home-page .product-card .product-body,
  .home-page .product-horizontal-row .product-card .product-body,
  .home-page .compact-products-grid .product-card .product-body {
    gap: 4px;
    padding: 3px 10px 11px;
  }

  .home-page .product-card .product-title,
  .home-page .product-horizontal-row .product-card .product-title,
  .home-page .compact-products-grid .product-card .product-title {
    min-height: calc(1.42em * 2);
    font-size: 0.72rem;
    line-height: 1.42;
  }

  .home-page .product-card .product-brand,
  .home-page .compact-products-grid .product-card .product-brand,
  .home-page .product-horizontal-row .product-card .product-brand {
    font-size: 0.68rem;
  }

  .home-page .product-card .product-rating,
  .home-page .product-horizontal-row .product-card .product-rating,
  .home-page .compact-products-grid .product-card .product-rating {
    font-size: 0.62rem;
  }

  .home-page .product-card .product-price-stack .price,
  .home-page .product-horizontal-row .product-card .product-price-stack .price,
  .home-page .compact-products-grid .product-card .product-price-stack .price {
    font-size: 0.86rem;
  }

  .home-page .product-card .product-price-stack .old-price,
  .home-page .product-horizontal-row .product-card .product-price-stack .old-price,
  .home-page .compact-products-grid .product-card .product-price-stack .old-price {
    font-size: 0.6rem;
  }
}

/* v147: selected offers use the same public product card system */
.home-page .offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(156px, 190px));
  justify-content: center;
  align-items: stretch;
  gap: 12px;
}

.home-page .offers-grid .offer-product-card {
  height: 100%;
  min-width: 0;
}

.home-page .offers-grid .offer-product-card .product-badges .marketing-badge + .marketing-badge {
  display: none;
}

.product-offer-countdown {
  width: fit-content;
  max-width: 100%;
  min-height: 20px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f8edf1;
  color: #9b4a63;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .home-page .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .product-offer-countdown {
    min-height: 18px;
    padding: 2px 6px;
    font-size: 0.58rem;
  }
}

/* v149: compact premium sliders and banners, display-only overrides */
.home-page .marketing-block-slot,
.home-page .home-slider-slot,
.home-page .home-banner-slot {
  margin-block: 10px !important;
}

.home-page .store-marketing-block,
.home-page .additional-home-slider,
.home-page .home-media-banner,
.home-page .marketing-image-banner,
.home-page .marketing-slider,
.home-page .marketing-slider-static,
.home-page .marketing-slider-grid,
.home-page .marketing-banner-grid {
  border-radius: 12px !important;
}

.home-page .home-slider,
.home-page .marketing-slider.is-hero,
.home-page .marketing-slider-static.is-mobile-hero {
  height: clamp(190px, 16vw, 300px) !important;
  min-height: 0 !important;
  max-height: 300px !important;
  aspect-ratio: auto !important;
  margin-block: 12px !important;
  overflow: hidden !important;
}

.home-page .marketing-slider.is-compact,
.home-page .marketing-slider-static:not(.is-mobile-hero),
.home-page .marketing-image-banner,
.home-page .home-media-banner:not(.split2):not(.split4),
.home-page .additional-home-slider,
.home-page .additional-slider-track,
.home-page .additional-slider-card {
  height: clamp(130px, 13vw, 240px) !important;
  min-height: 0 !important;
  max-height: 240px !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
}

.home-page .home-slide,
.home-page .home-slide > .home-slide-image-link,
.home-page .home-slide > div.home-slide-image-link,
.home-page .marketing-slider-track,
.home-page .marketing-slider-item,
.home-page .marketing-slider-link,
.home-page .marketing-banner-link,
.home-page .marketing-media,
.home-page .additional-slider-link,
.home-page .additional-slider-card {
  height: 100% !important;
  min-height: 0 !important;
  border-radius: inherit !important;
}

.home-page .marketing-slider-grid,
.home-page .marketing-banner-grid,
.home-page .home-banner-images {
  gap: 10px !important;
}

.home-page .marketing-slider-grid .marketing-grid-link,
.home-page .marketing-banner-grid .marketing-grid-link {
  height: clamp(118px, 12vw, 220px) !important;
  min-height: 0 !important;
  max-height: 220px !important;
  aspect-ratio: auto !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.home-page .home-media-banner.split2,
.home-page .home-media-banner.split4 {
  padding: 0 !important;
  background: transparent !important;
}

.home-page .home-media-banner.split2 .responsive-marketing-picture,
.home-page .home-media-banner.split4 .responsive-marketing-picture {
  height: clamp(110px, 10vw, 190px) !important;
  min-height: 0 !important;
  max-height: 190px !important;
  aspect-ratio: auto !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.home-page .responsive-marketing-picture,
.home-page .responsive-marketing-picture > img,
.home-page .marketing-media img,
.home-page .home-banner-images img,
.home-page .additional-slider-link img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block !important;
  border-radius: inherit !important;
}

.home-page .responsive-marketing-picture.media-fit-smart > img,
.home-page .responsive-marketing-picture.media-fit-contain > img {
  object-fit: contain !important;
}

.home-page .responsive-marketing-picture.media-fit-cover > img {
  object-fit: cover !important;
}

.home-page .responsive-marketing-picture.media-pos-center > img { object-position: center center !important; }
.home-page .responsive-marketing-picture.media-pos-right > img { object-position: right center !important; }
.home-page .responsive-marketing-picture.media-pos-left > img { object-position: left center !important; }
.home-page .responsive-marketing-picture.media-pos-top > img { object-position: center top !important; }
.home-page .responsive-marketing-picture.media-pos-bottom > img { object-position: center bottom !important; }

.home-page .home-slider-arrow,
.home-page .marketing-slider-arrow,
.home-page .additional-slider-arrow {
  width: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  font-size: 1rem !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 5px 14px rgba(63, 38, 48, 0.12) !important;
}

.home-page .home-slider-arrow.prev,
.home-page .marketing-slider-arrow.previous,
.home-page .additional-slider-arrow.previous {
  right: 10px !important;
}

.home-page .home-slider-arrow.next,
.home-page .marketing-slider-arrow.next,
.home-page .additional-slider-arrow.next {
  left: 10px !important;
}

.home-page .home-slider-dots,
.home-page .marketing-slider-dots,
.home-page .additional-slider-dots {
  bottom: 8px !important;
  gap: 5px !important;
}

.home-page .home-slider-dots button,
.home-page .marketing-slider-dots button,
.home-page .additional-slider-dots button {
  width: 6px !important;
  height: 6px !important;
}

.home-page .home-slider-dots button.is-active {
  width: 18px !important;
}

@media (min-width: 1600px) {
  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    max-height: 320px !important;
  }
}

@media (max-width: 768px) {
  .home-page .marketing-block-slot,
  .home-page .home-slider-slot,
  .home-page .home-banner-slot {
    margin-block: 8px !important;
  }

  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    height: clamp(138px, 38vw, 178px) !important;
    max-height: 178px !important;
    margin-block: 8px !important;
    border-radius: 14px !important;
  }

  .home-page .marketing-slider.is-compact,
  .home-page .marketing-slider-static:not(.is-mobile-hero),
  .home-page .marketing-image-banner,
  .home-page .home-media-banner:not(.split2):not(.split4),
  .home-page .additional-home-slider,
  .home-page .additional-slider-track,
  .home-page .additional-slider-card {
    height: clamp(110px, 30vw, 150px) !important;
    max-height: 150px !important;
    border-radius: 12px !important;
  }

  .home-page .marketing-slider-grid,
  .home-page .marketing-banner-grid,
  .home-page .home-banner-images {
    gap: 8px !important;
  }

  .home-page .marketing-slider-grid .marketing-grid-link,
  .home-page .marketing-banner-grid .marketing-grid-link,
  .home-page .home-media-banner.split2 .responsive-marketing-picture,
  .home-page .home-media-banner.split4 .responsive-marketing-picture {
    height: clamp(96px, 26vw, 132px) !important;
    max-height: 132px !important;
    border-radius: 12px !important;
  }

  .home-page .home-slider-arrow,
  .home-page .marketing-slider-arrow,
  .home-page .additional-slider-arrow {
    width: 26px !important;
    height: 26px !important;
    min-height: 26px !important;
    font-size: 0.9rem !important;
  }

  .home-page .home-slider-arrow.prev,
  .home-page .marketing-slider-arrow.previous,
  .home-page .additional-slider-arrow.previous {
    right: 7px !important;
  }

  .home-page .home-slider-arrow.next,
  .home-page .marketing-slider-arrow.next,
  .home-page .additional-slider-arrow.next {
    left: 7px !important;
  }
}

/* v152: white visual identity system, display-only overrides */
:root {
  --rnq-bg: #ffffff;
  --rnq-surface: #ffffff;
  --rnq-surface-soft: #fafafa;
  --rnq-border: #eeeeee;
  --rnq-text: #111827;
  --rnq-muted: #6b7280;
  --rnq-accent: #d64270;
  --rnq-accent-dark: #a83258;
  --rnq-accent-soft: #fff1f5;
  --rnq-radius-card: 16px;
  --rnq-shadow-soft: 0 6px 18px rgba(15, 23, 42, 0.06);

  --color-ink: var(--rnq-text);
  --color-muted: var(--rnq-muted);
  --color-primary: var(--rnq-accent);
  --color-primary-dark: var(--rnq-accent-dark);
  --color-ivory: var(--rnq-bg);
  --color-pearl: var(--rnq-surface-soft);
  --color-blush: #f8d8e2;
  --color-border: var(--rnq-border);
  --color-offer: var(--rnq-accent);
  --background-color: var(--rnq-bg);
  --soft-pink: var(--rnq-surface-soft);
  --shadow-soft: var(--rnq-shadow-soft);
  --shadow-card: 0 8px 24px rgba(15, 23, 42, 0.055);
}

body {
  background: var(--rnq-bg);
  color: var(--rnq-text);
}

.home-page,
.product-page,
.account-page,
.auth-shell {
  background: var(--rnq-bg);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--rnq-border);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.top-strip {
  background: #2f2528;
  color: #ffffff;
}

.brand-logo-wrap,
.brand-mark {
  background: #ffffff;
  border-color: #eeeeee;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.brand-ar,
.brand-mark,
.search-icon,
.nav-links a:hover,
.nav-dropdown summary:hover {
  color: var(--rnq-accent-dark);
}

.brand-en,
.nav-links a,
.section-subtitle,
.page-hero p {
  color: var(--rnq-muted);
}

.search-box,
.button-secondary,
.icon-button,
.favorites-trigger,
.close-button,
.quantity-button,
.cart-trigger {
  background: var(--rnq-surface);
  border-color: var(--rnq-border);
  color: var(--rnq-text);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.045);
}

.search-box:focus-within,
.search-box.has-query,
.button-secondary:hover,
.icon-button:hover,
.favorites-trigger:hover {
  border-color: rgba(214, 66, 112, 0.28);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.065);
}

.cart-trigger,
.button,
.checkout-btn {
  background: var(--rnq-text);
  border-color: var(--rnq-text);
  color: #ffffff;
}

.buy-btn {
  background: var(--rnq-accent);
  color: #ffffff;
}

.button:hover,
.buy-btn:hover,
.checkout-btn:hover,
.cart-trigger:hover {
  background: var(--rnq-accent-dark);
  border-color: var(--rnq-accent-dark);
}

.section,
.offers-section,
.benefits,
.page-hero,
.product-layout,
.details-grid > *,
.content-panel,
.account-panel,
.auth-shell {
  background: var(--rnq-surface);
}

.section,
.offers-section,
.benefits,
.product-layout,
.content-panel,
.account-panel,
.auth-shell {
  border-color: var(--rnq-border);
  box-shadow: none;
}

.section-title,
.product-heading,
.page-title,
.home-product-section-heading h3,
.offers-section .section-title {
  color: var(--rnq-text);
}

.category-card,
.home-product-section,
.product-card,
.offer-product-card,
.offers-grid .offer-banner.offer-loading,
.cart-drawer,
.cart-item,
.checkout-section,
.checkout-final-summary,
.cart-order-summary {
  background: var(--rnq-surface);
  border-color: var(--rnq-border);
  box-shadow: var(--rnq-shadow-soft);
}

.product-card,
.offer-product-card {
  border-radius: var(--rnq-radius-card);
}

.product-card-visual,
.product-card .product-media,
.home-page .product-card .product-media,
.home-page .product-horizontal-row .product-card .product-media,
.home-page .compact-products-grid .product-card .product-media {
  background: #ffffff;
}

.home-page .product-card .product-price-stack .price.is-discounted,
.product-card .product-price-stack .price.is-discounted,
.offer-price-final strong,
.offer-price-row strong {
  color: var(--rnq-accent);
}

.product-card .product-price-stack .old-price,
.home-page .product-card .product-price-stack .old-price {
  color: #9ca3af;
}

.product-discount-chip,
.product-card .product-price-stack .discount-chip,
.product-card .product-price-stack .discount-badge,
.offer-price-line em,
.offer-countdown {
  background: var(--rnq-accent-soft);
  color: var(--rnq-accent);
}

.home-page .marketing-block-slot,
.home-page .home-slider-slot,
.home-page .home-banner-slot,
.home-page .store-marketing-block,
.home-page .home-slider,
.home-page .additional-home-slider,
.home-page .home-media-banner,
.home-page .marketing-slider,
.home-page .marketing-slider-static,
.home-page .marketing-image-banner,
.home-page .marketing-slider-grid,
.home-page .marketing-banner-grid,
.home-page .home-banner-images {
  background: transparent !important;
}

.home-page .marketing-slider-grid .marketing-grid-link,
.home-page .marketing-banner-grid .marketing-grid-link,
.home-page .home-media-banner.split2 .responsive-marketing-picture,
.home-page .home-media-banner.split4 .responsive-marketing-picture,
.home-page .home-slider,
.home-page .marketing-slider.is-hero,
.home-page .marketing-slider-static.is-mobile-hero {
  border-color: transparent !important;
  box-shadow: none !important;
}

.home-page .marketing-media img,
.home-page .marketing-image-banner img,
.home-page .home-banner-images img,
.home-page .additional-slider-link img,
.home-page .responsive-marketing-picture > img {
  background: transparent !important;
}

.home-page .home-slider-arrow,
.home-page .marketing-slider-arrow,
.home-page .additional-slider-arrow {
  background: rgba(255, 255, 255, 0.86) !important;
  color: var(--rnq-text) !important;
  border: 1px solid rgba(238, 238, 238, 0.72) !important;
}

.home-page .home-slider-dots button.is-active,
.home-page .marketing-slider-dots button.is-active,
.home-page .additional-slider-dots button.is-active {
  background: var(--rnq-accent) !important;
}

.site-footer,
.home-page .site-footer {
  background: #ffffff;
  color: var(--rnq-text);
  border-top: 1px solid var(--rnq-border);
}

.footer-links a,
.home-page .footer-links a {
  color: var(--rnq-muted);
}

.footer-links a:hover,
.home-page .footer-links a:hover {
  color: var(--rnq-accent-dark);
}

@media (max-width: 768px) {
  body {
    background: #ffffff;
  }

  .home-page .section,
  .home-page .offers-section,
  .home-page .benefits,
  .home-page .home-product-section {
    background: #ffffff;
  }

  .mobile-bottom-nav {
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--rnq-border);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.06);
  }

  .mobile-bottom-nav-item {
    color: var(--rnq-muted);
  }

  .mobile-bottom-nav-item.is-active,
  .mobile-bottom-nav-feature {
    background: var(--rnq-accent-soft);
    color: var(--rnq-accent-dark);
  }

  .home-page .category-card {
    background: #ffffff;
    border-color: var(--rnq-border);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.045);
  }
}
/* End v152 white visual identity system */

@media (max-width: 560px) {
  .home-page .marketing-banner-grid.layout-grid2,
  .home-page .marketing-banner-grid.layout-grid3,
  .home-page .marketing-banner-grid.layout-grid4,
  .home-page .marketing-slider-grid.is-two-columns,
  .home-page .marketing-slider-grid.is-grid-2x2,
  .home-page .home-media-banner.split2 .home-banner-images,
  .home-page .home-media-banner.split4 .home-banner-images {
    grid-template-columns: 1fr !important;
  }
}

/* v150: strict compact media with no visible inner frame */
.home-page .marketing-block-slot,
.home-page .home-slider-slot,
.home-page .home-banner-slot {
  width: min(calc(100% - 28px), 1120px) !important;
  max-width: min(calc(100% - 28px), 1120px) !important;
  margin: 10px auto !important;
}

.home-page .store-marketing-block,
.home-page .home-slider,
.home-page .additional-home-slider,
.home-page .home-media-banner,
.home-page .marketing-slider,
.home-page .marketing-slider-static,
.home-page .marketing-image-banner,
.home-page .marketing-slider-grid,
.home-page .marketing-banner-grid {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.home-page .home-slider,
.home-page .marketing-slider.is-hero,
.home-page .marketing-slider-static.is-mobile-hero {
  width: min(calc(100% - 28px), 1120px) !important;
  max-width: min(calc(100% - 28px), 1120px) !important;
  height: clamp(150px, 12vw, 220px) !important;
  min-height: 0 !important;
  max-height: 220px !important;
  margin: 10px auto 12px !important;
  border-radius: 12px !important;
  aspect-ratio: auto !important;
}

.home-page .marketing-slider.is-compact,
.home-page .marketing-slider-static:not(.is-mobile-hero),
.home-page .marketing-image-banner,
.home-page .home-media-banner:not(.split2):not(.split4),
.home-page .additional-home-slider,
.home-page .additional-slider-track,
.home-page .additional-slider-card {
  height: clamp(105px, 9vw, 165px) !important;
  min-height: 0 !important;
  max-height: 165px !important;
  margin-block: 8px !important;
  border-radius: 12px !important;
  aspect-ratio: auto !important;
}

.home-page .marketing-slider-grid,
.home-page .marketing-banner-grid,
.home-page .home-banner-images {
  gap: 8px !important;
  background: transparent !important;
  overflow: visible !important;
}

.home-page .marketing-slider-grid .marketing-grid-link,
.home-page .marketing-banner-grid .marketing-grid-link,
.home-page .home-media-banner.split2 .responsive-marketing-picture,
.home-page .home-media-banner.split4 .responsive-marketing-picture {
  height: clamp(85px, 8vw, 135px) !important;
  min-height: 0 !important;
  max-height: 135px !important;
  aspect-ratio: auto !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.home-page .home-slide,
.home-page .home-slide > .home-slide-image-link,
.home-page .home-slide > div.home-slide-image-link,
.home-page .marketing-slider-track,
.home-page .marketing-slider-item,
.home-page .marketing-slider-link,
.home-page .marketing-banner-link,
.home-page .marketing-grid-link,
.home-page .marketing-media,
.home-page .responsive-marketing-picture,
.home-page .home-banner-link,
.home-page .additional-slider-link {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  background: transparent !important;
  border-radius: inherit !important;
  overflow: hidden !important;
}

.home-page .home-slide img,
.home-page .marketing-media img,
.home-page .marketing-image-banner img,
.home-page .home-banner-images img,
.home-page .additional-slider-link img,
.home-page .responsive-marketing-picture > img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  background: transparent !important;
  border-radius: inherit !important;
}

.home-page .responsive-marketing-picture.media-fit-smart > img {
  object-fit: cover !important;
}

.home-page .responsive-marketing-picture.media-fit-contain > img {
  object-fit: contain !important;
}

.home-page .responsive-marketing-picture.media-fit-cover > img {
  object-fit: cover !important;
}

.home-page .responsive-marketing-picture.media-pos-center > img { object-position: center center !important; }
.home-page .responsive-marketing-picture.media-pos-right > img { object-position: right center !important; }
.home-page .responsive-marketing-picture.media-pos-left > img { object-position: left center !important; }
.home-page .responsive-marketing-picture.media-pos-top > img { object-position: center top !important; }
.home-page .responsive-marketing-picture.media-pos-bottom > img { object-position: center bottom !important; }

.home-page .home-slider-arrow,
.home-page .marketing-slider-arrow,
.home-page .additional-slider-arrow {
  width: 24px !important;
  height: 24px !important;
  min-height: 24px !important;
  font-size: 0.82rem !important;
  background: rgba(255, 255, 255, 0.76) !important;
  box-shadow: 0 4px 10px rgba(63, 38, 48, 0.1) !important;
}

.home-page .home-slider-arrow.prev,
.home-page .marketing-slider-arrow.previous,
.home-page .additional-slider-arrow.previous {
  right: 8px !important;
}

.home-page .home-slider-arrow.next,
.home-page .marketing-slider-arrow.next,
.home-page .additional-slider-arrow.next {
  left: 8px !important;
}

.home-page .home-slider-dots,
.home-page .marketing-slider-dots,
.home-page .additional-slider-dots {
  bottom: 6px !important;
  gap: 4px !important;
}

.home-page .home-slider-dots button,
.home-page .marketing-slider-dots button,
.home-page .additional-slider-dots button {
  width: 5px !important;
  height: 5px !important;
}

.home-page .home-slider-dots button.is-active {
  width: 14px !important;
}

@media (min-width: 1440px) {
  .home-page .marketing-block-slot,
  .home-page .home-slider-slot,
  .home-page .home-banner-slot,
  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    max-width: 1040px !important;
  }
}

@media (max-width: 768px) {
  .home-page .marketing-block-slot,
  .home-page .home-slider-slot,
  .home-page .home-banner-slot {
    width: calc(100% - 18px) !important;
    max-width: calc(100% - 18px) !important;
    margin-block: 8px !important;
  }

  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    width: calc(100% - 18px) !important;
    max-width: calc(100% - 18px) !important;
    height: clamp(115px, 34vw, 155px) !important;
    max-height: 155px !important;
    margin-block: 8px !important;
    border-radius: 12px !important;
  }

  .home-page .marketing-slider.is-compact,
  .home-page .marketing-slider-static:not(.is-mobile-hero),
  .home-page .marketing-image-banner,
  .home-page .home-media-banner:not(.split2):not(.split4),
  .home-page .additional-home-slider,
  .home-page .additional-slider-track,
  .home-page .additional-slider-card {
    height: clamp(85px, 28vw, 125px) !important;
    max-height: 125px !important;
  }

  .home-page .marketing-slider-grid,
  .home-page .marketing-banner-grid,
  .home-page .home-banner-images {
    gap: 6px !important;
  }

  .home-page .marketing-slider-grid .marketing-grid-link,
  .home-page .marketing-banner-grid .marketing-grid-link,
  .home-page .home-media-banner.split2 .responsive-marketing-picture,
  .home-page .home-media-banner.split4 .responsive-marketing-picture {
    height: clamp(75px, 24vw, 105px) !important;
    max-height: 105px !important;
    border-radius: 10px !important;
  }

  .home-page .home-slider-arrow,
  .home-page .marketing-slider-arrow,
  .home-page .additional-slider-arrow {
    width: 22px !important;
    height: 22px !important;
    min-height: 22px !important;
    font-size: 0.78rem !important;
  }
}

/* v153: remove nested frames around home product sections only */
.home-page #products.section,
.home-page .offers-section,
.home-page .products-container,
.home-page .home-product-section,
.home-page .badge-product-section {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-page #products.section,
.home-page .offers-section {
  padding-inline: 0 !important;
}

.home-page .products-container {
  width: 100%;
  max-width: 100%;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

.home-page .home-product-section {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding: 0 !important;
  border-radius: 0 !important;
}

.home-page .home-product-section + .home-product-section {
  margin-top: clamp(24px, 3vw, 38px);
}

.home-page .home-product-section-heading {
  align-items: center;
  margin-bottom: 12px;
  padding-inline: 0;
}

.home-page .home-product-section-heading > div {
  min-width: 0;
}

.home-page .home-product-section-heading button,
.home-page .home-product-section-heading > a {
  margin: 0;
}

.home-page .home-product-section .product-horizontal-row,
.home-page .offers-grid {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-page .home-product-section .product-horizontal-row {
  padding: 2px 0 10px;
}

@media (min-width: 769px) {
  .home-page .home-product-section .product-horizontal-row {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: initial;
    overflow: visible;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .home-page #products.section {
    padding-top: 20px;
  }

  .home-page .products-container {
    gap: 20px;
  }

  .home-page .home-product-section-heading {
    gap: 10px;
    margin-bottom: 8px;
  }

  .home-page .home-product-section .product-horizontal-row {
    padding: 1px 0 10px;
  }
}

/* v155: unified single-image slider/banner system, no crop */
.home-page {
  --main-hero-slider-max-width: 1040px;
  --main-hero-slider-height: clamp(260px, 29vw, 310px);
  --marketing-media-radius: 14px;
}

.home-page .home-slider,
.home-page .marketing-slider.is-hero,
.home-page .marketing-slider-static.is-mobile-hero {
  width: min(var(--main-hero-slider-max-width), calc(100% - 32px)) !important;
  max-width: var(--main-hero-slider-max-width) !important;
  height: var(--main-hero-slider-height) !important;
  max-height: 310px !important;
  min-height: 260px !important;
  margin: 16px auto 22px !important;
  border-radius: var(--marketing-media-radius) !important;
  overflow: hidden !important;
  background: #fff8fb !important;
  border: 1px solid rgba(217, 188, 199, 0.42) !important;
  box-shadow: none !important;
}

.home-page .home-slider-track,
.home-page .home-slide,
.home-page .home-slide-image-link,
.home-page .marketing-slider-track,
.home-page .marketing-slider-item,
.home-page .marketing-slider-link,
.home-page .marketing-media,
.home-page .responsive-marketing-picture,
.home-page .home-banner-link,
.home-page .home-banner-images,
.home-page .marketing-grid-link {
  min-width: 0 !important;
  max-width: 100% !important;
}

.home-page .responsive-marketing-picture.no-crop > img,
.home-page .home-slide img,
.home-page .marketing-slider.is-hero .marketing-media img,
.home-page .marketing-slider-static.is-mobile-hero .marketing-media img,
.home-page .home-banner-images img,
.home-page .marketing-image-banner img,
.home-page .marketing-slider-grid img,
.home-page .marketing-banner-grid img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
}

.home-page .responsive-marketing-picture.media-fit-smart > img,
.home-page .responsive-marketing-picture.media-fit-cover > img {
  object-fit: contain !important;
}

.home-page .home-media-banner.split4 .home-banner-images,
.home-page .marketing-slider-grid.is-grid-2x2,
.home-page .marketing-banner-grid.layout-grid4 {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.home-page .home-media-banner.split4 .responsive-marketing-picture,
.home-page .marketing-slider-grid.is-grid-2x2 .marketing-grid-link,
.home-page .marketing-banner-grid.layout-grid4 .marketing-grid-link {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  border-radius: 12px !important;
  background: #fff8fb !important;
}

@media (max-width: 1024px) {
  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    width: min(94%, calc(100% - 24px)) !important;
    height: clamp(150px, 29vw, 245px) !important;
    min-height: 150px !important;
    max-height: 245px !important;
    margin-block: 12px 18px !important;
  }
}

@media (max-width: 768px) {
  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    height: clamp(96px, 29vw, 150px) !important;
    min-height: 96px !important;
    max-height: 150px !important;
    margin: 10px auto 16px !important;
    border-radius: 12px !important;
  }

  .home-page .home-media-banner.split4 .home-banner-images,
  .home-page .marketing-slider-grid.is-grid-2x2,
  .home-page .marketing-banner-grid.layout-grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .home-page .home-media-banner.split4 .responsive-marketing-picture,
  .home-page .marketing-slider-grid.is-grid-2x2 .marketing-grid-link,
  .home-page .marketing-banner-grid.layout-grid4 .marketing-grid-link {
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
  }
}

/* v156: tighter no-crop media spacing without inner frames */
.home-page {
  --main-hero-slider-ratio: 1800 / 400;
  --wide-marketing-banner-ratio: 1600 / 330;
  --marketing-wide-gap: 16px;
  --marketing-grid-gap: 16px;
}

.home-page .home-slider,
.home-page .marketing-slider.is-hero,
.home-page .marketing-slider-static.is-mobile-hero {
  width: min(1040px, calc(100% - 32px)) !important;
  max-width: 1040px !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: var(--main-hero-slider-ratio) !important;
  margin: 12px auto var(--marketing-wide-gap) !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

.home-page .home-slider-track,
.home-page .home-slide,
.home-page .home-slide-image-link,
.home-page .marketing-slider.is-hero .marketing-slider-track,
.home-page .marketing-slider.is-hero .marketing-slider-item,
.home-page .marketing-slider.is-hero .marketing-slider-link,
.home-page .marketing-slider-static.is-mobile-hero .marketing-slider-link,
.home-page .marketing-slider.is-hero .marketing-media,
.home-page .marketing-slider-static.is-mobile-hero .marketing-media {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: inherit !important;
}

.home-page .marketing-image-banner,
.home-page .home-media-banner:not(.split2):not(.split4),
.home-page .marketing-slider.is-compact,
.home-page .marketing-slider-static:not(.is-mobile-hero),
.home-page .additional-home-slider {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: var(--wide-marketing-banner-ratio) !important;
  margin: 10px auto var(--marketing-wide-gap) !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

.home-page .responsive-marketing-picture,
.home-page .marketing-media,
.home-page .home-banner-images,
.home-page .home-banner-link,
.home-page .marketing-grid-link,
.home-page .marketing-banner-link {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-page .responsive-marketing-picture > img,
.home-page .home-slide img,
.home-page .marketing-media img,
.home-page .marketing-image-banner img,
.home-page .home-banner-images img,
.home-page .additional-slider-link img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
}

.home-page .home-slider-dots,
.home-page .marketing-slider-dots,
.home-page .additional-slider-dots {
  bottom: 7px !important;
}

.home-page .home-media-banner.split4,
.home-page .marketing-slider-grid.is-grid-2x2,
.home-page .marketing-banner-grid.layout-grid4 {
  margin-block: 10px var(--marketing-wide-gap) !important;
}

.home-page .home-media-banner.split4 .home-banner-images,
.home-page .marketing-slider-grid.is-grid-2x2,
.home-page .marketing-banner-grid.layout-grid4 {
  gap: var(--marketing-grid-gap) !important;
}

.home-page .home-media-banner.split4 .responsive-marketing-picture,
.home-page .marketing-slider-grid.is-grid-2x2 .marketing-grid-link,
.home-page .marketing-banner-grid.layout-grid4 .marketing-grid-link {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 1024px) {
  .home-page {
    --marketing-wide-gap: 14px;
    --marketing-grid-gap: 12px;
  }

  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    aspect-ratio: var(--main-hero-slider-ratio) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin-block: 10px var(--marketing-wide-gap) !important;
  }
}

@media (max-width: 768px) {
  .home-page {
    --marketing-wide-gap: 12px;
    --marketing-grid-gap: 10px;
  }

  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero,
  .home-page .marketing-image-banner,
  .home-page .home-media-banner:not(.split2):not(.split4),
  .home-page .marketing-slider.is-compact,
  .home-page .marketing-slider-static:not(.is-mobile-hero),
  .home-page .additional-home-slider {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin-block: 8px var(--marketing-wide-gap) !important;
    border-radius: 12px !important;
  }

  .home-page .home-media-banner.split4 .home-banner-images,
  .home-page .marketing-slider-grid.is-grid-2x2,
  .home-page .marketing-banner-grid.layout-grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--marketing-grid-gap) !important;
  }
}

/* Rawnq v189: managed social links as a compact icon grid on public pages. */
.social-icon-section {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(143, 64, 91, 0.14);
}

.social-icon-section h4 {
  margin: 0 0 11px;
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.social-links.social-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 44px);
  justify-content: start;
  gap: 10px;
  width: 100%;
}

.social-icon-grid .social-icon-link {
  --social-icon-color: #7d4055;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border: 1px solid rgba(143, 64, 91, 0.2);
  border-radius: 10px;
  color: var(--social-icon-color);
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(69, 43, 52, 0.07);
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.social-icon-grid .social-icon-link:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--social-icon-color) 44%, white);
  background: #fff8fa;
  box-shadow: 0 8px 18px rgba(69, 43, 52, 0.11);
}

.social-icon-grid .social-icon-link:focus-visible {
  outline: 3px solid rgba(143, 64, 91, 0.2);
  outline-offset: 3px;
}

.social-icon-svg {
  display: block;
  width: 22px;
  height: 22px;
}

.social-icon-whatsapp { --social-icon-color: #168a4b !important; }
.social-icon-instagram { --social-icon-color: #b83280 !important; }
.social-icon-tiktok { --social-icon-color: #20242a !important; }
.social-icon-facebook { --social-icon-color: #3568b8 !important; }
.social-icon-youtube { --social-icon-color: #d23f47 !important; }
.social-icon-snapchat { --social-icon-color: #5f5712 !important; }
.social-icon-x { --social-icon-color: #20242a !important; }
.social-icon-linkedin { --social-icon-color: #2167a6 !important; }

@media (max-width: 480px) {
  .social-icon-section {
    margin-top: 15px;
    padding-top: 13px;
  }

  .social-links.social-icon-grid {
    grid-template-columns: repeat(auto-fit, 42px);
    gap: 9px;
  }

  .social-icon-grid .social-icon-link {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .social-icon-svg {
    width: 21px;
    height: 21px;
  }
}

/* v157: compact banner grid spacing only */
.home-page {
  --banner-grid-column-gap: 22px;
  --banner-grid-row-gap: 22px;
  --banner-grid-block-gap: 12px;
}

.home-page .home-media-banner.split4,
.home-page .marketing-slider-grid.is-grid-2x2,
.home-page .marketing-banner-grid.layout-grid4 {
  margin-block: 8px var(--banner-grid-block-gap) !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-items: start !important;
  align-content: start !important;
  justify-items: stretch !important;
}

.home-page .home-media-banner.split4 .home-banner-images,
.home-page .marketing-slider-grid.is-grid-2x2,
.home-page .marketing-banner-grid.layout-grid4 {
  column-gap: var(--banner-grid-column-gap) !important;
  row-gap: var(--banner-grid-row-gap) !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-items: start !important;
  align-content: start !important;
}

.home-page .home-media-banner.split4 .responsive-marketing-picture,
.home-page .marketing-slider-grid.is-grid-2x2 .marketing-grid-link,
.home-page .marketing-banner-grid.layout-grid4 .marketing-grid-link,
.home-page .marketing-slider-grid.is-grid-2x2 .marketing-media,
.home-page .marketing-banner-grid.layout-grid4 .marketing-media {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  align-self: start !important;
}

.home-page .home-media-banner.split4 .responsive-marketing-picture,
.home-page .marketing-slider-grid.is-grid-2x2 .responsive-marketing-picture,
.home-page .marketing-banner-grid.layout-grid4 .responsive-marketing-picture {
  aspect-ratio: 16 / 9 !important;
}

.home-page .home-slider,
.home-page .marketing-slider.is-hero,
.home-page .marketing-slider-static.is-mobile-hero {
  margin-bottom: 14px !important;
}

.home-page .marketing-image-banner,
.home-page .home-media-banner:not(.split2):not(.split4),
.home-page .marketing-slider.is-compact,
.home-page .marketing-slider-static:not(.is-mobile-hero),
.home-page .additional-home-slider {
  margin-block: 8px 14px !important;
}

@media (max-width: 1024px) {
  .home-page {
    --banner-grid-column-gap: 20px;
    --banner-grid-row-gap: 20px;
    --banner-grid-block-gap: 10px;
  }
}

@media (max-width: 768px) {
  .home-page {
    --banner-grid-column-gap: 10px;
    --banner-grid-row-gap: 10px;
    --banner-grid-block-gap: 8px;
  }

  .home-page .home-media-banner.split4,
  .home-page .marketing-slider-grid.is-grid-2x2,
  .home-page .marketing-banner-grid.layout-grid4 {
    margin-block: 6px var(--banner-grid-block-gap) !important;
  }

  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    margin-bottom: 10px !important;
  }

  .home-page .marketing-image-banner,
  .home-page .home-media-banner:not(.split2):not(.split4),
  .home-page .marketing-slider.is-compact,
  .home-page .marketing-slider-static:not(.is-mobile-hero),
  .home-page .additional-home-slider {
    margin-block: 6px 10px !important;
  }
}

/* v158: measure-based visual spacing fix for no-crop banner grids */
.home-page {
  --banner-grid-column-gap: 16px;
  --banner-grid-row-gap: 14px;
  --banner-grid-block-gap: 8px;
  --compact-banner-visual-ratio: 1600 / 520;
  --marketing-wide-gap: 12px;
}

.home-page .home-media-banner.split4,
.home-page .marketing-slider-grid.is-grid-2x2,
.home-page .marketing-banner-grid.layout-grid4 {
  row-gap: var(--banner-grid-row-gap) !important;
  column-gap: var(--banner-grid-column-gap) !important;
  margin-block: 6px var(--banner-grid-block-gap) !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-content: start !important;
}

.home-page .home-media-banner.split4 .home-banner-images,
.home-page .marketing-slider-grid.is-grid-2x2,
.home-page .marketing-banner-grid.layout-grid4 {
  row-gap: var(--banner-grid-row-gap) !important;
  column-gap: var(--banner-grid-column-gap) !important;
  align-items: start !important;
}

.home-page .home-media-banner.split4 .responsive-marketing-picture,
.home-page .marketing-slider-grid.is-grid-2x2 .marketing-grid-link,
.home-page .marketing-banner-grid.layout-grid4 .marketing-grid-link,
.home-page .marketing-slider-grid.is-grid-2x2 .marketing-media,
.home-page .marketing-banner-grid.layout-grid4 .marketing-media,
.home-page .marketing-slider-grid.is-grid-2x2 .responsive-marketing-picture,
.home-page .marketing-banner-grid.layout-grid4 .responsive-marketing-picture {
  aspect-ratio: var(--compact-banner-visual-ratio) !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.home-page .home-media-banner.split4 .responsive-marketing-picture > img,
.home-page .marketing-slider-grid.is-grid-2x2 img,
.home-page .marketing-banner-grid.layout-grid4 img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.home-page .home-slider,
.home-page .marketing-slider.is-hero,
.home-page .marketing-slider-static.is-mobile-hero {
  margin-bottom: 12px !important;
}

.home-page .marketing-image-banner,
.home-page .home-media-banner:not(.split2):not(.split4),
.home-page .marketing-slider.is-compact,
.home-page .marketing-slider-static:not(.is-mobile-hero),
.home-page .additional-home-slider {
  margin-block: 6px 12px !important;
}

@media (max-width: 1024px) {
  .home-page {
    --banner-grid-column-gap: 12px;
    --banner-grid-row-gap: 10px;
    --banner-grid-block-gap: 6px;
  }
}

@media (max-width: 768px) {
  .home-page {
    --banner-grid-column-gap: 8px;
    --banner-grid-row-gap: 8px;
    --banner-grid-block-gap: 6px;
    --marketing-wide-gap: 10px;
  }

  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    margin-bottom: 10px !important;
  }

  .home-page .marketing-image-banner,
  .home-page .home-media-banner:not(.split2):not(.split4),
  .home-page .marketing-slider.is-compact,
  .home-page .marketing-slider-static:not(.is-mobile-hero),
  .home-page .additional-home-slider {
    margin-block: 5px 10px !important;
  }
}

/* v161: Flexible product package offers */
.product-offer-badge.is-free-shipping {
  background: #e8f8ef;
  color: #15803d;
}

.product-card-offer-note {
  display: block;
  margin-top: 6px;
  color: #9f5068;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-package-offers {
  display: grid;
  gap: 12px;
  margin: 12px 0;
}

.product-package-offers h2 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.product-package-offers-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.product-package-offer {
  display: grid;
  gap: 4px;
  align-content: start;
  text-align: start;
  border: 1px solid rgba(168, 87, 111, 0.22);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: 12px;
  cursor: pointer;
}

.product-package-offer.is-selected {
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(168, 87, 111, 0.16);
  background: #fff7fa;
}

.product-package-offer span,
.product-package-offer em {
  color: var(--brand);
  font-style: normal;
  font-weight: 800;
}

.product-package-offer del,
.product-package-offer small {
  color: var(--muted);
}

.product-offers-editor {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.product-offer-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.product-offers-list {
  display: grid;
  gap: 10px;
}

.product-offer-admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.product-offer-admin-row strong,
.product-offer-admin-row small {
  display: block;
}

@media (max-width: 720px) {
  .product-offer-admin-row {
    grid-template-columns: 1fr;
  }
}

/* v163: compact mobile home, controllable sections, and content-sized product cards */
.home-page {
  --home-compact-width: min(1120px, calc(100% - 24px));
  --home-hero-width: min(1040px, calc(100% - 24px));
  --home-section-gap: 16px;
}

.home-page .top-strip {
  min-height: 28px;
  padding: 4px 12px;
  background: var(--promo-bar-bg, #2f2528);
  color: var(--promo-bar-text, #fff);
}

.home-page .top-strip[hidden],
.home-page section[hidden] {
  display: none !important;
}

.home-page .top-strip-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  color: inherit;
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.home-page .top-strip-content > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .top-strip-content > strong {
  flex: 0 0 auto;
  padding: 1px 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.68rem;
}

.home-page main,
.home-page main > *,
.home-page .section,
.home-page .products-container,
.home-page .home-product-section,
.home-page .product-horizontal-row,
.home-page .offers-grid {
  min-width: 0;
  max-width: 100%;
}

.home-page #collections,
.home-page #offers,
.home-page #products,
.home-page #benefits {
  width: var(--home-compact-width);
  margin: var(--home-section-gap) auto 0;
}

.home-page .section-header,
.home-page .home-product-section-heading {
  margin-bottom: 9px;
}

.home-page .section-title,
.home-page .home-product-section-heading h3 {
  color: #171014;
  font-weight: 700;
}

.home-page .section-subtitle,
.home-page .home-product-section-heading p {
  color: #51494d;
}

.home-page .home-product-section + .home-product-section {
  margin-top: 18px;
}

.home-page .home-product-section-heading button,
.home-page .home-product-section-heading > a,
.home-page .section-header .button-secondary {
  color: #3b3035;
  border-color: #e7dfe2;
  background: #fff;
}

/* One responsive image remains authoritative; wrappers follow its reference ratio. */
.home-page .home-slider,
.home-page .marketing-slider.is-hero,
.home-page .marketing-slider-static.is-mobile-hero {
  width: var(--home-hero-width) !important;
  max-width: 1040px !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 1600 / 330 !important;
  margin: 12px auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.home-page .marketing-slider.is-compact,
.home-page .marketing-slider-static:not(.is-mobile-hero),
.home-page .marketing-image-banner,
.home-page .home-media-banner:not(.split2):not(.split4),
.home-page .additional-home-slider,
.home-page .additional-slider-track,
.home-page .additional-slider-card {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 1600 / 520 !important;
  margin-block: 8px 12px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home-page .home-slide,
.home-page .home-slide-image-link,
.home-page .marketing-slider-track,
.home-page .marketing-slider-item,
.home-page .marketing-slider-link,
.home-page .marketing-media,
.home-page .responsive-marketing-picture,
.home-page .home-banner-link,
.home-page .additional-slider-link {
  min-height: 0 !important;
  background: transparent !important;
}

.home-page .home-slide img,
.home-page .marketing-media img,
.home-page .marketing-image-banner img,
.home-page .home-banner-images img,
.home-page .additional-slider-link img,
.home-page .responsive-marketing-picture > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
}

.home-page .home-media-banner.split4 .home-banner-images,
.home-page .marketing-slider-grid.is-grid-2x2,
.home-page .marketing-banner-grid.layout-grid4 {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px 12px !important;
  align-items: start !important;
}

.home-page .home-media-banner.split4 .responsive-marketing-picture,
.home-page .marketing-slider-grid.is-grid-2x2 .marketing-grid-link,
.home-page .marketing-banner-grid.layout-grid4 .marketing-grid-link,
.home-page .marketing-slider-grid.is-grid-2x2 .marketing-media,
.home-page .marketing-banner-grid.layout-grid4 .marketing-media {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 1600 / 520 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Compact confidence row. */
.home-page .benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid #eee8ea;
  border-radius: 12px;
  background: #fff;
}

.home-page .benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 52px;
  padding: 6px;
  border: 0;
  background: #fff;
  text-align: start;
}

.home-page .benefit-icon {
  display: inline-flex;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff1f5;
  color: #a83258;
  font-weight: 800;
}

.home-page .benefit p {
  display: grid;
  gap: 1px;
  margin: 0;
  color: #171014;
}

.home-page .benefit strong {
  font-size: 0.72rem;
  line-height: 1.35;
}

.home-page .benefit small {
  color: #62595d;
  font-size: 0.62rem;
  line-height: 1.35;
}

/* Cards size themselves from real content instead of reserving blank rows. */
.home-page .product-horizontal-row,
.home-page .offers-grid {
  align-items: start;
}

.home-page .product-card,
.home-page .product-horizontal-row .product-card,
.home-page .compact-products-grid .product-card,
.home-page .offers-grid .offer-product-card {
  height: auto !important;
  min-height: 0 !important;
  align-self: start;
  background: #fff;
}

.home-page .product-card .product-card-visual,
.home-page .product-card .product-media,
.home-page .product-card .product-image {
  background: #fff !important;
}

.home-page .product-card .product-body {
  flex: 0 0 auto;
  gap: 3px;
  padding: 3px 11px 10px;
}

.home-page .product-card .product-brand {
  color: #5b5357;
}

.home-page .product-card .product-title,
.home-page .product-card .product-title a {
  color: #171014;
}

.home-page .product-card .product-price-row {
  margin: 3px 0 0 !important;
}

.home-page .product-card-offer-note {
  margin-top: 2px;
  color: #8f425a;
  font-size: 0.67rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .home-page {
    --home-compact-width: calc(100% - 20px);
    --home-hero-width: calc(100% - 20px);
    --home-section-gap: 10px;
  }

  .home-page .top-strip:not([hidden]) {
    display: flex !important;
  }

  .home-page .top-strip {
    min-height: 25px;
    padding-block: 3px;
  }

  .home-page .top-strip-content {
    gap: 6px;
    font-size: 0.65rem;
  }

  .home-page .top-strip-content > strong {
    padding-inline: 5px;
    font-size: 0.59rem;
  }

  .home-page .navbar {
    gap: 7px;
    padding: 7px 10px 8px;
  }

  .home-page .brand-mark,
  .home-page .brand-logo-wrap,
  .home-page .favorites-trigger,
  .home-page .cart-trigger {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .home-page .search-box,
  .home-page .search-box:focus-within,
  .home-page .search-box.has-query {
    width: min(320px, 82vw) !important;
    height: 37px;
  }

  .home-page .search-field,
  .home-page .search-box:focus-within .search-field,
  .home-page .search-box.has-query .search-field {
    min-height: 37px;
    color: #282126;
    font-size: 0.76rem;
  }

  .home-page #benefits { order: 100; }

  .home-page #collections,
  .home-page #offers,
  .home-page #products,
  .home-page #benefits {
    margin-top: var(--home-section-gap);
  }

  .home-page #collections,
  .home-page #offers,
  .home-page #products {
    padding-top: 8px !important;
    padding-bottom: 0 !important;
  }

  .home-page .section-header,
  .home-page .home-product-section-heading {
    gap: 7px;
    margin-bottom: 7px;
  }

  .home-page .section-title,
  .home-page .home-product-section-heading h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .home-page .home-product-section-heading p {
    margin-top: 2px;
    color: #5b5357;
    font-size: 0.65rem;
    line-height: 1.35;
  }

  .home-page .home-product-section-heading button,
  .home-page .home-product-section-heading > a,
  .home-page .section-header .button-secondary {
    min-height: 29px;
    padding: 4px 8px;
    font-size: 0.65rem;
  }

  .home-page .home-product-section + .home-product-section {
    margin-top: 13px;
  }

  .home-page .products-container {
    gap: 13px;
  }

  .home-page .home-slider,
  .home-page .marketing-slider.is-hero,
  .home-page .marketing-slider-static.is-mobile-hero {
    width: var(--home-hero-width) !important;
    max-width: var(--home-hero-width) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 1600 / 330 !important;
    margin: 8px auto !important;
    border-radius: 12px !important;
  }

  .home-page .marketing-slider.is-compact,
  .home-page .marketing-slider-static:not(.is-mobile-hero),
  .home-page .marketing-image-banner,
  .home-page .home-media-banner:not(.split2):not(.split4),
  .home-page .additional-home-slider,
  .home-page .additional-slider-track,
  .home-page .additional-slider-card {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 1600 / 520 !important;
    margin-block: 6px 8px !important;
    border-radius: 10px !important;
  }

  .home-page .home-media-banner.split4 .home-banner-images,
  .home-page .marketing-slider-grid.is-grid-2x2,
  .home-page .marketing-banner-grid.layout-grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .home-page .home-media-banner.split4 .responsive-marketing-picture,
  .home-page .marketing-slider-grid.is-grid-2x2 .marketing-grid-link,
  .home-page .marketing-banner-grid.layout-grid4 .marketing-grid-link,
  .home-page .marketing-slider-grid.is-grid-2x2 .marketing-media,
  .home-page .marketing-banner-grid.layout-grid4 .marketing-media {
    aspect-ratio: 1600 / 520 !important;
    border-radius: 9px !important;
  }

  .home-page #collections .section-header {
    margin-bottom: 5px;
  }

  .home-page #collections .section-subtitle {
    display: none;
  }

  .home-page .category-row {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    padding: 1px 0 5px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
  }

  .home-page .category-row::-webkit-scrollbar {
    display: none;
  }

  .home-page .category-card,
  .home-page .category-row > .category-card:last-child:nth-child(2n + 1),
  .home-page .category-row > .category-card:last-child:nth-child(3n + 1),
  .home-page .category-row > .category-card:last-child:nth-child(4n + 1) {
    flex: 0 0 clamp(62px, 17vw, 72px);
    width: clamp(62px, 17vw, 72px);
    min-width: clamp(62px, 17vw, 72px);
    max-width: clamp(62px, 17vw, 72px);
    min-height: 75px;
    gap: 3px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    scroll-snap-align: start;
  }

  .home-page .category-card img {
    width: 50px;
    height: 50px;
    padding: 3px;
    border: 1px solid #eadfe3;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(31, 22, 26, 0.05);
  }

  .home-page .category-content {
    padding-top: 1px;
  }

  .home-page .category-content h3 {
    max-width: 100%;
    min-height: 2.35em;
    margin: 0;
    color: #171014;
    font-size: 0.61rem;
    font-weight: 650;
    line-height: 1.18;
    -webkit-line-clamp: 2;
  }

  .home-page .category-content p {
    display: none;
  }

  .home-page .benefits {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3px;
    padding: 6px 4px;
    overflow: visible;
  }

  .home-page .benefit {
    display: grid;
    justify-items: center;
    gap: 3px;
    min-height: 49px;
    padding: 3px 1px;
    text-align: center;
  }

  .home-page .benefit-icon {
    flex-basis: 23px;
    width: 23px;
    height: 23px;
    font-size: 0.67rem;
  }

  .home-page .benefit p {
    display: block;
    text-align: center;
  }

  .home-page .benefit strong {
    display: block;
    color: #2a2226;
    font-size: 0.52rem;
    line-height: 1.22;
  }

  .home-page .benefit small {
    display: none;
  }

  .home-page .product-horizontal-row {
    grid-auto-columns: minmax(144px, 42vw) !important;
    gap: 8px;
    padding: 1px 0 7px;
  }

  .home-page .compact-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .product-card .product-card-visual,
  .home-page .product-horizontal-row .product-card .product-card-visual,
  .home-page .compact-products-grid .product-card .product-card-visual {
    height: 124px;
    padding: 12px 9px 5px;
  }

  .home-page .product-card .product-body,
  .home-page .product-horizontal-row .product-card .product-body,
  .home-page .compact-products-grid .product-card .product-body {
    display: flex;
    flex: 0 0 auto;
    gap: 2px;
    padding: 2px 8px 9px;
  }

  .home-page .product-card .product-brand,
  .home-page .product-horizontal-row .product-card .product-brand,
  .home-page .compact-products-grid .product-card .product-brand {
    color: #51494d;
    font-size: 0.64rem;
    font-weight: 700;
  }

  .home-page .product-card .product-title,
  .home-page .product-horizontal-row .product-card .product-title,
  .home-page .compact-products-grid .product-card .product-title {
    min-height: calc(1.3em * 2);
    color: #171014;
    font-size: 0.7rem;
    font-weight: 650;
    line-height: 1.3;
  }

  .home-page .product-card .product-size-chip {
    font-size: 0.62rem;
  }

  .home-page .product-card .product-rating {
    font-size: 0.59rem;
  }

  .home-page .product-card .product-price-row {
    margin: 2px 0 0 !important;
  }

  .home-page .product-card .product-price-stack .price,
  .home-page .product-horizontal-row .product-card .product-price-stack .price,
  .home-page .compact-products-grid .product-card .product-price-stack .price {
    color: #171014;
    font-size: 0.84rem;
    font-weight: 900;
  }

  .home-page .product-card .product-price-stack .price.is-discounted,
  .home-page .product-horizontal-row .product-card .product-price-stack .price.is-discounted,
  .home-page .compact-products-grid .product-card .product-price-stack .price.is-discounted {
    color: #d64270;
  }

  .home-page .product-card .product-price-stack .old-price {
    font-size: 0.58rem;
  }

  .home-page .product-card-offer-note {
    font-size: 0.6rem;
  }

  .home-page .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .home-page .category-card,
  .home-page .category-row > .category-card:last-child:nth-child(2n + 1),
  .home-page .category-row > .category-card:last-child:nth-child(3n + 1),
  .home-page .category-row > .category-card:last-child:nth-child(4n + 1) {
    flex-basis: 64px;
    width: 64px;
    min-width: 64px;
    max-width: 64px;
  }

  .home-page .product-horizontal-row {
    grid-auto-columns: minmax(142px, 43vw) !important;
  }
}

/* v164 final cascade guard */
.product-page {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  padding: 22px 0 48px;
}

.cart-shipping-banner {
  align-items: flex-start;
  background: #9a6676;
}

@media (max-width: 768px) {
  .product-page {
    width: 100%;
    max-width: 100%;
    padding: 0 0 80px;
  }

  .home-page .checkout-form { gap: 8px; }
  .home-page .checkout-section { padding: 12px; border-radius: 8px; }
  .home-page .checkout-section-fields,
  .home-page .checkout-section-fields.two-columns { grid-template-columns: minmax(0, 1fr); gap: 9px; }
  .home-page .checkout-phone-row { grid-template-columns: 104px minmax(0, 1fr); }
  .home-page .country-picker-menu { width: min(340px, calc(100vw - 28px)); max-width: calc(100vw - 28px); }
  .home-page .checkout-btn { min-height: 50px; line-height: normal; }

  .product-detail-page .top-strip,
  .product-detail-page .nav-menu-toggle,
  .product-detail-page .nav-links,
  .product-detail-page .header-actions > :not(.cart-trigger) {
    display: none !important;
  }

  .product-detail-page .navbar {
    min-height: 68px;
    padding: 8px 14px;
    justify-content: space-between;
    gap: 12px;
  }

  .product-detail-page .header-actions {
    width: auto;
    margin: 0;
  }

  .product-detail-page .header-actions .cart-trigger {
    min-height: 42px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
  }
}

/* v165: final storefront polish and internal style guide.
   Media reference sizes: product 1200x1200, hero 1600x330,
   banner 1600x520, category 600x600, brand 800x400. */
:root {
  --rnq-color-primary: #d64270;
  --rnq-color-primary-strong: #a83258;
  --rnq-color-text: #111827;
  --rnq-color-text-muted: #6b7280;
  --rnq-color-price: #111827;
  --rnq-color-offer: #d64270;
  --rnq-color-background: #ffffff;
  --rnq-color-surface-soft: #fafafa;
  --rnq-color-border: #eeeeee;
  --rnq-radius-control: 10px;
  --rnq-radius-media: 12px;
  --rnq-radius-card: 16px;
  --rnq-shadow-default: 0 6px 18px rgba(15, 23, 42, 0.06);
  --rnq-section-space: clamp(12px, 2vw, 20px);
  --rnq-product-image-size: 320px;
  --rnq-mobile-card-min-height: 218px;
  --rnq-mobile-card-max-height: 232px;
  --rnq-hero-aspect-ratio: 2000 / 800;
  --rnq-banner-aspect-ratio: 1600 / 520;
  --rnq-category-image-size: 96px;
  --rnq-cta-min-height: 46px;
  --rnq-motion-fast: 160ms ease;
  --rnq-motion-normal: 220ms ease;
}

.home-page .button,
.home-page .button-secondary,
.home-page .icon-button,
.home-page .favorites-trigger,
.home-page .cart-trigger,
.home-page .product-add-button,
.home-page .checkout-btn,
.product-detail-page button,
.product-detail-page a,
.mobile-bottom-nav-item {
  transition: color var(--rnq-motion-fast), background-color var(--rnq-motion-fast), border-color var(--rnq-motion-fast), box-shadow var(--rnq-motion-fast), transform var(--rnq-motion-fast);
}

.home-page button:focus-visible,
.home-page a:focus-visible,
.home-page input:focus-visible,
.home-page select:focus-visible,
.home-page textarea:focus-visible,
.product-detail-page button:focus-visible,
.product-detail-page a:focus-visible,
.product-detail-page input:focus-visible,
.product-detail-page summary:focus-visible {
  outline: 3px solid rgba(214, 66, 112, 0.24);
  outline-offset: 2px;
}

.home-page button:active,
.home-page .button:active,
.home-page .button-secondary:active,
.product-detail-page button:active {
  transform: translateY(1px) scale(0.985);
}

.product-color-swatch {
  transition: transform var(--rnq-motion-fast), border-color var(--rnq-motion-fast), box-shadow var(--rnq-motion-fast);
}

.product-color-swatch:hover,
.product-color-swatch.is-selected {
  transform: translateY(-1px);
}

.product-accordion-item[open] .product-accordion-content {
  animation: rnq-accordion-reveal 180ms ease-out;
}

@keyframes rnq-accordion-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-bottom-nav-item.is-active svg,
.mobile-bottom-nav-feature svg {
  transform: translateY(-1px);
}

.home-page .header-counter {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  line-height: 1;
}

.empty-state,
.loading-state {
  box-sizing: border-box;
  width: 100%;
  min-height: 88px;
  margin: 8px 0 0;
  padding: 18px;
  border: 1px dashed #e8dde1;
  border-radius: var(--rnq-radius-media);
  background: #fffafa;
  color: #62595d;
  text-align: center;
}

.empty-state.is-compact,
.loading-state.is-compact {
  min-height: 58px;
  padding: 13px;
}

.empty-state.is-error {
  border-color: #f0c9d4;
  background: #fff6f8;
  color: #9f3657;
}

.loading-state {
  display: grid;
  place-items: center;
  gap: 10px;
}

.loading-state::before {
  content: "";
  width: min(180px, 56%);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f5e9ed 0%, #ffffff 48%, #f5e9ed 100%);
  background-size: 220% 100%;
  animation: rnq-loading-shimmer 1.2s linear infinite;
}

.home-page .responsive-marketing-picture[hidden],
.home-page .responsive-marketing-picture > img[hidden],
.home-page .marketing-media.image-error,
.home-page .marketing-grid-link.image-error,
.home-page .marketing-banner-link.image-error,
.home-page .home-banner-link.image-error,
.home-page .marketing-slider-item.image-error,
.home-page .home-slide.image-error,
.home-page .additional-slider-card.image-error {
  display: none !important;
}

@keyframes rnq-loading-shimmer {
  from { background-position: 100% 0; }
  to { background-position: -120% 0; }
}

@media (min-width: 769px) {
  .home-page .offers-grid:has(> .offer-product-card:only-child) {
    justify-content: start;
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-page .button-secondary:hover,
  .home-page .icon-button:hover,
  .home-page .favorites-trigger:hover,
  .product-detail-page .product-color-swatch:hover {
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .button,
  .home-page .button-secondary,
  .home-page .icon-button,
  .home-page .favorites-trigger,
  .home-page .cart-trigger,
  .home-page .product-add-button,
  .home-page .checkout-btn,
  .product-detail-page button,
  .product-detail-page a,
  .product-color-swatch,
  .mobile-bottom-nav-item {
    transition: none !important;
  }

  .product-accordion-item[open] .product-accordion-content,
  .loading-state::before {
    animation: none !important;
  }
}

/* v167 final guard: keep the storefront trust strip compact and last in main. */
.home-page main > #benefits {
  order: 100 !important;
  display: block;
  width: min(var(--container), calc(100% - 32px));
  min-width: 0;
  margin: 20px auto 10px;
  padding: 9px;
}

.home-page main > #benefits[hidden] {
  display: none !important;
}

.home-page main > #benefits .benefits-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  min-width: 0;
}

.home-page main > #benefits .benefit {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  margin: 0;
  padding: 6px 8px;
}

@media (max-width: 768px) {
  .home-page main > #benefits {
    width: calc(100% - 24px);
    margin-block: 14px 8px;
    padding: 7px;
    overflow: hidden;
  }

  .home-page main > #benefits .benefits-list {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .home-page main > #benefits .benefits-list::-webkit-scrollbar {
    display: none;
  }

  .home-page main > #benefits .benefit {
    flex: 0 0 104px;
    display: grid;
    justify-items: center;
    gap: 3px;
    min-height: 58px;
    padding: 5px 3px;
    text-align: center;
  }
}

/* Unified marketing layout builder: natural media dimensions, transparent wrappers, no viewport overflow. */
.home-page .marketing-block-slot {
  min-width: 0;
  background: transparent;
}

.home-page .marketing-layout-block,
.home-page .marketing-layout-block::before,
.home-page .marketing-layout-block::after,
.home-page .marketing-layout-viewport,
.home-page .marketing-layout-track,
.home-page .marketing-layout-item,
.home-page .marketing-layout-link,
.home-page .marketing-natural-picture {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .marketing-layout-block::before,
.home-page .marketing-layout-block::after {
  content: none;
}

.home-page .marketing-layout-block {
  position: relative;
  width: min(100%, var(--marketing-max-width, 1040px));
  height: auto;
  min-height: 0;
  margin: var(--marketing-margin-top, 12px) auto var(--marketing-margin-bottom, 12px);
  color: #2b2226;
}

.home-page .marketing-layout-block.marketing-layout-wide,
.home-page .marketing-layout-block.marketing-layout-fullBleed,
.home-page .marketing-layout-block.is-marketing-full-width,
.home-page .marketing-layout-block.is-marketing-full-bleed {
  width: 100%;
  max-width: 100%;
}

.home-page .marketing-layout-viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: var(--marketing-radius, 14px);
}

.home-page .marketing-layout-track {
  display: grid;
  align-items: start;
  width: 100%;
  height: auto;
  gap: var(--marketing-gap, 12px);
}

.home-page .marketing-layout-block.is-carousel .marketing-layout-track {
  grid-template-columns: repeat(var(--marketing-visible-items, var(--marketing-visible-desktop, 1)), minmax(0, 1fr));
}

.home-page .marketing-layout-block.is-grid .marketing-layout-track {
  grid-template-columns: repeat(var(--marketing-visible-desktop, 1), minmax(0, 1fr));
}

.home-page .marketing-layout-block.is-custom .marketing-layout-track {
  grid-template-columns: repeat(var(--marketing-custom-columns-desktop, 4), minmax(0, 1fr));
  grid-auto-flow: row dense;
}

.home-page .marketing-layout-block.is-custom.has-custom-rows .marketing-layout-track {
  grid-template-rows: repeat(var(--marketing-custom-rows, 1), auto);
}

.home-page .marketing-layout-item {
  position: relative;
  order: var(--marketing-item-order, 0);
  width: 100%;
  height: auto;
  min-height: 0;
  align-self: start;
  overflow: hidden;
  border-radius: var(--marketing-radius, 14px);
}

.home-page .marketing-layout-item[hidden],
.home-page .marketing-layout-block[hidden] {
  display: none;
}

.home-page .marketing-layout-item.is-visible {
  animation: marketing-layout-enter var(--marketing-transition-speed, 350ms) ease both;
}

.home-page .marketing-layout-block.is-custom .marketing-layout-item {
  grid-column: span var(--marketing-column-span-desktop, 1);
  grid-row: span var(--marketing-row-span, 1);
}

.home-page .marketing-layout-link,
.home-page .marketing-natural-picture {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  border-radius: inherit;
}

.home-page .marketing-natural-picture > img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  margin: 0;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: inherit;
  background: transparent;
}

.home-page .marketing-layout-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  translate: 0 -50%;
  border: 1px solid rgba(179, 60, 100, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #963652;
  font-size: 1.3rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(43, 34, 38, 0.1);
  cursor: pointer;
}

.home-page .marketing-layout-arrow.previous { right: 9px; }
.home-page .marketing-layout-arrow.next { left: 9px; }
.home-page .marketing-layout-arrow:disabled { opacity: 0.35; cursor: default; }

.home-page .marketing-layout-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-height: 0;
  padding: 7px 0 0;
  background: transparent;
}

.home-page .marketing-layout-dots[hidden] { display: none; }
.home-page .marketing-layout-dots button {
  width: 6px;
  height: 6px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9bec2;
  cursor: pointer;
}

.home-page .marketing-layout-dots button.is-active {
  width: 18px;
  border-radius: 999px;
  background: #b33c64;
}

.home-page .marketing-layout-block .marketing-media-overlay {
  border-radius: inherit;
}

.home-page .nav-menu-toggle {
  display: none;
}

@keyframes marketing-layout-enter {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .home-page .marketing-layout-block.is-grid .marketing-layout-track {
    grid-template-columns: repeat(var(--marketing-visible-tablet, 1), minmax(0, 1fr));
  }

  .home-page .marketing-layout-block.is-custom .marketing-layout-track {
    grid-template-columns: repeat(var(--marketing-custom-columns-tablet, 2), minmax(0, 1fr));
  }

  .home-page .marketing-layout-block.is-custom .marketing-layout-item {
    grid-column: span var(--marketing-column-span-tablet, 1);
  }
}

@media (max-width: 767px) {
  .home-page .marketing-layout-block {
    width: 100%;
    max-width: 100%;
  }

  .home-page .marketing-layout-block.is-grid .marketing-layout-track {
    grid-template-columns: repeat(var(--marketing-visible-mobile, 1), minmax(0, 1fr));
  }

  .home-page .marketing-layout-block.is-custom .marketing-layout-track {
    grid-template-columns: repeat(var(--marketing-custom-columns-mobile, 1), minmax(0, 1fr));
  }

  .home-page .marketing-layout-block.is-custom .marketing-layout-item {
    grid-column: span var(--marketing-column-span-mobile, 1);
  }

  .home-page .marketing-layout-arrow {
    width: 28px;
    height: 28px;
    min-height: 28px;
    font-size: 1rem;
  }

  .home-page .marketing-layout-arrow.previous { right: 6px; }
  .home-page .marketing-layout-arrow.next { left: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .marketing-layout-item.is-visible { animation: none; }
}

/* v178: one searchable country and international phone selector across customer flows. */
.country-picker-native[hidden] {
  display: none !important;
}

.rawnq-country-picker {
  width: 100%;
  min-width: 0;
  direction: rtl;
}

.rawnq-country-picker .country-picker-trigger {
  min-height: 46px;
}

.country-picker-trigger-label {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.country-picker-trigger-label strong,
.country-picker-trigger-label small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-picker-trigger-label strong {
  color: inherit;
  font-size: 0.86rem;
}

.country-picker-trigger-label small {
  margin-top: 2px;
  color: #85777c;
  font-size: 0.66rem;
  font-weight: 500;
}

.rawnq-country-picker .country-picker-menu {
  width: min(380px, calc(100vw - 28px));
  max-width: calc(100vw - 28px);
  direction: rtl;
}

.rawnq-country-picker .country-picker-search input {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 6px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #332b2e;
  box-shadow: none;
}

.rawnq-country-picker .country-picker-options {
  max-height: min(310px, 48vh);
}

.rawnq-country-picker .country-picker-option[aria-selected="true"] {
  background: #fff0f5;
  color: #8f405b;
}

.rawnq-country-picker.phone-country-picker .country-picker-trigger {
  grid-template-columns: 19px minmax(0, 1fr) 10px;
  gap: 4px;
  padding-inline: 6px;
  direction: ltr;
  text-align: center;
}

.rawnq-country-picker.phone-country-picker .country-option-flag {
  font-size: 1rem;
}

.rawnq-country-picker.phone-country-picker .country-picker-trigger-label strong {
  font-size: 0.78rem;
}

.rawnq-country-picker.phone-country-picker .country-picker-trigger-label small {
  display: none;
}

.checkout-phone-row > .rawnq-country-picker,
.complaint-phone-row > .rawnq-country-picker,
.track-phone-row > .rawnq-country-picker {
  min-width: 0;
}

@media (max-width: 600px) {
  .rawnq-country-picker .country-picker-menu {
    position: fixed;
    z-index: 1200;
    top: 50%;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    max-height: 76vh;
    transform: translateY(-50%);
  }

  .rawnq-country-picker .country-picker-options {
    max-height: 58vh;
  }

  .checkout-phone-row,
  .complaint-phone-row,
  .track-phone-row {
    grid-template-columns: 104px minmax(0, 1fr) !important;
    gap: 7px !important;
  }
}

/* Rawnq v179: focused products header and compact homepage gap */
.home-page #products:not(.is-focused-view) {
  padding-top: 24px !important;
}

.home-page #products:not(.is-focused-view) > .section-header {
  display: none !important;
}
/* Rawnq v180: align homepage products with hero */
.home-page {
  --home-compact-width: min(1040px, calc(100% - 24px));
}

.home-page #products:not(.is-focused-view) {
  margin-top: 8px !important;
  padding-top: 0 !important;
}

.home-page #products:not(.is-focused-view) .home-product-section-heading {
  width: 100%;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .home-page {
    --home-compact-width: calc(100% - 20px);
  }

  .home-page #products:not(.is-focused-view) {
    margin-top: 6px !important;
  }
}

/* Rawnq v191: official full logo inside the header circle */
.brand-mark.brand-mark-official {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
}

.brand-mark-logo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transform: translateY(14%) scale(3.05);
  transform-origin: center;
}

@media (max-width: 768px) {
  .brand-mark.brand-mark-official {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

@media (max-width: 390px) {
  .brand-mark.brand-mark-official {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}


/* ===== RAWNQ HEADER CATEGORIES MENU V1 ===== */

#sections-dropdown-menu {
  width: min(920px, calc(100vw - 32px));
  max-width: min(920px, calc(100vw - 32px));
  min-width: 0;
  max-height: min(72vh, 650px);
  padding: 18px;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  border: 1px solid rgba(199, 131, 150, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(92, 48, 61, 0.14);
}

#sections-dropdown-menu .mega-menu-categories {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 16px;
}

#sections-dropdown-menu .mega-menu-title {
  margin: 0;
  padding: 0 2px 2px;
  color: #713247;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 900;
  line-height: 1.4;
  text-align: start;
}

#sections-dropdown-menu .mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  min-width: 0;
}

#sections-dropdown-menu .mega-menu-card {
  display: flex !important;
  flex-direction: column;
  min-width: 0;
  padding: 0 !important;
  overflow: hidden;
  color: #62283c;
  text-decoration: none;
  border: 1px solid rgba(199, 131, 150, 0.18);
  border-radius: 16px;
  background: #fffafa;
  box-shadow: 0 5px 15px rgba(104, 48, 67, 0.07);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

#sections-dropdown-menu .mega-menu-card:hover {
  transform: translateY(-2px);
  border-color: rgba(170, 88, 113, 0.42);
  background: #fff6f8;
  box-shadow: 0 10px 22px rgba(104, 48, 67, 0.12);
}

#sections-dropdown-menu .mega-menu-card:focus-visible {
  outline: 3px solid rgba(169, 78, 108, 0.35);
  outline-offset: 3px;
}

#sections-dropdown-menu .mega-menu-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: #f8edf1;
}

#sections-dropdown-menu .mega-menu-card-name {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 9px 12px;
  color: #713247;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  white-space: normal;
}

#sections-dropdown-menu .mega-menu-empty {
  display: block;
  padding: 18px;
  color: #713247;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 700px) {
  #sections-dropdown-menu {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 120px);
    padding: 12px;
    border-radius: 16px;
  }

  #sections-dropdown-menu .mega-menu-categories {
    gap: 12px;
  }

  #sections-dropdown-menu .mega-menu-title {
    font-size: 18px;
  }

  #sections-dropdown-menu .mega-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #sections-dropdown-menu .mega-menu-card {
    border-radius: 13px;
  }

  #sections-dropdown-menu .mega-menu-card-image {
    aspect-ratio: 4 / 3;
  }

  #sections-dropdown-menu .mega-menu-card-name {
    min-height: 44px;
    padding: 7px 8px;
    font-size: 13px;
  }
}

/* ===== END RAWNQ HEADER CATEGORIES MENU V1 ===== */

/* ===== UNIFIED OFFERS + HOMEPAGE LAYOUT V193 ===== */
.home-page #storefront-main.is-unified-home > :not(#home-blocks-root) {
  display: none !important;
}

.home-page #storefront-main.is-unified-focus > :not(#home-blocks-root):not(#products) {
  display: none !important;
}

.home-page #home-blocks-root[hidden] {
  display: none !important;
}

.home-page #home-blocks-root {
  display: grid;
  gap: clamp(18px, 2.2vw, 30px);
  width: min(100% - 24px, 1180px);
  min-width: 0;
  max-width: 1180px;
  margin: 14px auto 28px;
}

.home-page .unified-home-block {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
}

.home-page .unified-home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 12px;
}

.home-page .unified-home-section-heading > div {
  min-width: 0;
}

.home-page .unified-home-section-heading h2 {
  margin: 0;
  color: #21191d;
  font-size: 1.55rem;
  font-weight: 750;
  line-height: 1.35;
}

.home-page .unified-home-section-heading p {
  margin: 4px 0 0;
  color: #62565b;
  font-size: 0.92rem;
  line-height: 1.65;
}

.home-page .unified-home-view-all {
  flex: 0 0 auto;
  padding: 7px 12px;
  border: 1px solid #e4d8dd;
  border-radius: 7px;
  color: #713247;
  background: #fff;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.home-page .unified-home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.home-page .unified-home-categories {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.home-page .unified-home-category-card {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  padding: 0;
  border: 0;
  color: #2b2226;
  background: transparent;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
}

.home-page .unified-home-category-media {
  display: grid;
  place-items: center;
  width: clamp(72px, 7.5vw, 96px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #eadfe3;
  border-radius: 50%;
  background: #fff7f9;
  box-shadow: 0 5px 16px rgba(89, 45, 60, 0.07);
}

.home-page .unified-home-category-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .unified-home-category-fallback {
  color: #9d4965;
  font-size: 1.5rem;
  font-weight: 800;
}

.home-page .unified-home-trust .benefits-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-page .unified-home-trust .benefit {
  min-width: 0;
}

.home-page .unified-home-marketing > .marketing-layout-block,
.home-page .unified-home-marketing > .store-marketing-block {
  margin-block: 0 !important;
}

@media (max-width: 900px) {
  .home-page .unified-home-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .unified-home-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .home-page #home-blocks-root {
    gap: 18px;
    width: calc(100% - 20px);
    margin-block: 10px 20px;
  }

  .home-page .unified-home-section-heading {
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
  }

  .home-page .unified-home-section-heading h2 {
    font-size: 1.2rem;
  }

  .home-page .unified-home-section-heading p {
    display: none;
  }

  .home-page .unified-home-view-all {
    padding: 6px 9px;
    font-size: 0.76rem;
  }

  .home-page .unified-home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .unified-home-categories {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 74px;
    grid-template-columns: none;
    gap: 8px;
    padding: 2px 0 6px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .home-page .unified-home-categories::-webkit-scrollbar {
    display: none;
  }

  .home-page .unified-home-category-card {
    width: 74px;
    font-size: 0.68rem;
    scroll-snap-align: start;
  }

  .home-page .unified-home-category-media {
    width: 60px;
  }

  .home-page .unified-home-trust .benefits-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(92px, 1fr);
    grid-template-columns: none;
    gap: 7px;
    padding-bottom: 5px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-page .unified-home-trust .benefits-list::-webkit-scrollbar {
    display: none;
  }
}
/* ===== END UNIFIED OFFERS + HOMEPAGE LAYOUT V193 ===== */

/* v202-checkout-success-visible */
.home-page .cart-drawer.is-empty.has-order-success .cart-body {
    display: none;
}

.home-page .cart-drawer.is-empty.has-order-success .cart-footer {
    display: block;
    padding: 20px 18px;
    background: #ffffff;
}

.home-page .cart-drawer.is-empty.has-order-success .cart-footer > :not(#notice) {
    display: none;
}

.home-page .cart-drawer.is-empty.has-order-success #notice {
    margin: 0;
    min-height: 0;
}