/* ============================================================
   YZA — Maison Marrakech
   Cohesive component layer for the Hostinger storefront.
   It intentionally preserves the existing JS hooks and contracts.
   ============================================================ */

* { box-sizing: border-box; }
html { background: var(--color-bg); color: var(--color-fg); scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: var(--leading-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.skip-link {
  top: 8px !important;
  left: 8px !important;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
[dir="rtl"] .skip-link { right: 8px !important; left: auto !important; }
/* Off-canvas honeypots at left:-9999px expand an RTL document by ~10,000px.
   Clip them in place instead so they remain available to spam checks without
   creating a horizontal scroll surface. */
input[name="_hp"],
input[name="company"],
.news-band__hp {
  position: absolute !important;
  inset: auto !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
body:has(.header) { --yza-ann-h: 0px; }
body > .announcement { display: none !important; }
main { min-height: 55vh; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
h1, h2, h3, .footer__wordmark {
  margin: 0;
  color: var(--color-fg);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.02;
}
p { margin-block: 0 1em; }
::selection { background: var(--color-accent); color: #fff; }
:focus-visible {
  outline: 2px solid var(--color-accent) !important;
  outline-offset: 3px !important;
}
[hidden] { display: none !important; }
.container { width: min(100% - (2 * var(--gutter)), var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - (2 * var(--gutter)), var(--container-wide)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 144px) var(--gutter); }
.section > .container,
.section > .container-wide { width: 100%; }
.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 10000;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--color-fg);
  color: #fff;
  transition: transform 300ms ease;
}
.skip-link:focus { transform: translateY(0); }

/* Shared quiet link language */
.maison-link,
.link-underline {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 44px;
  padding-block: 10px 7px;
  color: var(--color-fg);
  font-weight: 400;
  text-decoration: none;
}
.maison-link::after,
.link-underline::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 300ms ease;
}
.maison-link:hover::after,
.link-underline:hover::after { transform: scaleX(.35); }
.maison-link--accent { color: var(--color-accent); }
.maison-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Static layout placeholders are replaced, not appended, by chrome.js. */
.site-chrome-skeleton { height: var(--header-h); }
.header--skeleton { position: relative !important; }
.header-skeleton__actions { white-space: nowrap; font-size: 20px; letter-spacing: .08em; }
.nav--skeleton { display: flex; gap: clamp(22px, 3vw, 48px); font-size: 14px; }
.footer-skeleton {
  min-height: 390px;
  padding: 96px var(--gutter);
  border-top: 1px solid var(--color-border);
}
.footer-skeleton__wordmark { font-family: var(--font-display); font-size: clamp(72px, 15vw, 220px); letter-spacing: .16em; }

/* Header */
.header {
  position: sticky !important;
  z-index: 900 !important;
  top: 0 !important;
  height: var(--header-h) !important;
  border-bottom: 1px solid var(--color-border) !important;
  background: color-mix(in srgb, var(--color-bg) 95%, transparent) !important;
  color: var(--color-fg) !important;
  backdrop-filter: blur(14px);
  transition: background-color 300ms ease, height 300ms ease, transform 300ms ease !important;
}
.header.is-stuck { height: var(--header-h-stuck) !important; box-shadow: none !important; }
body.is-scroll-down .header { transform: translateY(-100%); }
body.has-search-overlay .header,
body.has-drawer .header,
body.has-cart-drawer .header { transform: none; }
.header .container-wide { width: 100%; max-width: none; padding-inline: var(--gutter); }
.header__inner {
  display: grid !important;
  height: 100%;
  grid-template-columns: minmax(104px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
}
.header__left { display: flex; align-items: center; }
.logo { display: inline-flex; min-width: 88px; align-items: center; }
.logo__img { width: 96px !important; height: auto !important; object-fit: contain; }
.nav {
  display: flex !important;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.8vw, 46px) !important;
  padding: 0 !important;
}
.nav-item { height: 100%; }
.nav-item > a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  color: var(--color-fg) !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.nav-item > a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  background: var(--color-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}
.nav-item > a:hover::after,
.nav-item > a[aria-current="page"]::after { transform: scaleX(1); }
.header__actions {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 2px !important;
}
.header__actions .icon-btn,
.header-search,
.lang-select__button {
  display: inline-flex !important;
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 10px !important;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  background: transparent !important;
  color: var(--color-fg) !important;
}
.header-search > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.header__actions svg { width: 22px !important; height: 22px !important; fill: none; stroke: currentColor; stroke-width: 1.35; }
.header__actions .cart-svg { fill: currentColor; stroke: none; }
.header__actions .lang { display: none !important; }
.header__actions .burger { display: none !important; }
.cart-count { min-width: 16px; height: 16px; background: var(--color-accent) !important; color: #fff !important; font-size: 10px; }

/* Drawer, search and cart */
.overlay {
  z-index: 1000 !important;
  background: rgba(23, 21, 18, .48) !important;
  backdrop-filter: blur(2px);
}
.drawer,
.cart-drawer {
  z-index: 1010 !important;
  width: min(100%, 480px) !important;
  max-width: 100% !important;
  background: var(--color-bg) !important;
  color: var(--color-fg) !important;
  box-shadow: var(--shadow) !important;
}
.search-overlay { z-index: 1020 !important; }
.drawer {
  /* A legacy Jacquemus override used `inset: 0`, which left the closed
     drawer translated into the middle of wide screens. Anchor it to the
     viewport edge and keep it out of hit-testing until explicitly opened. */
  inset: 0 0 0 auto !important;
  transform: translateX(100%) !important;
  visibility: hidden;
  pointer-events: none;
  transition: transform 700ms var(--ease-reveal), visibility 0s linear 700ms !important;
}
.drawer.is-open {
  transform: translateX(0) !important;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s !important;
}
[dir="rtl"] .drawer {
  inset: 0 auto 0 0 !important;
  transform: translateX(-100%) !important;
}
[dir="rtl"] .drawer.is-open { transform: translateX(0) !important; }
@media (max-width: 860px) {
  .drawer {
    inset: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }
}
.drawer__bar,
.cart-drawer__head { min-height: 72px; border-bottom: 1px solid var(--color-border) !important; }
.drawer .icon-btn,
.cart-drawer .icon-btn { width: 44px; height: 44px; }
.cart-drawer__head h2 { font-size: 30px !important; text-transform: none !important; }
.cart-drawer__body { padding: 24px 28px !important; }
.cart-drawer__foot { padding: 20px 28px 28px !important; border-top: 1px solid var(--color-border) !important; }
.cart-drawer .btn,
.drawer .btn { min-height: 52px; border-radius: 0 !important; }
.search-overlay { background: var(--color-bg) !important; }
.search-mega { color: var(--color-fg) !important; }

/* Buttons */
.btn,
.product-add-main {
  min-height: 52px;
  border: 1px solid var(--color-fg) !important;
  border-radius: 0 !important;
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease, transform 300ms var(--ease-reveal) !important;
}
.btn--solid,
.product-add-main { background: var(--color-fg) !important; color: #fff !important; }
.btn--solid:hover,
.product-add-main:hover { background: var(--color-accent) !important; border-color: var(--color-accent) !important; }
.btn--outline { background: transparent !important; color: var(--color-fg) !important; }
.btn--outline:hover { background: var(--color-fg) !important; color: #fff !important; }

/* Reveal motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-reveal), transform 700ms var(--ease-reveal) !important;
}
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Homepage
   ============================================================ */
.maison-hero {
  display: grid;
  min-height: calc(100svh - var(--header-h));
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  border-bottom: 1px solid var(--color-border);
}
.maison-hero__media { min-height: 680px; margin: 0; overflow: hidden; background: #ddd5ca; }
.maison-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; }
.maison-hero__copy {
  display: flex;
  padding: clamp(64px, 8vw, 132px) clamp(44px, 7vw, 120px);
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.maison-hero__copy h1 { max-width: 760px; font-size: clamp(68px, 6.6vw, 112px); }
.maison-hero__lede { max-width: 510px; margin: 30px 0 22px; font-size: clamp(18px, 1.45vw, 23px); font-weight: 300; line-height: 1.5; }
.maison-hero__actions { display: flex; flex-wrap: wrap; gap: 4px 32px; }

.maison-feature {
  display: grid;
  min-height: 760px;
  grid-template-columns: 58% 42%;
  border-bottom: 1px solid var(--color-border);
}
.maison-feature__media { min-height: 760px; margin: 0; overflow: hidden; background: var(--paper-card); }
.maison-feature__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; transition: transform 700ms var(--ease-reveal); }
.maison-feature:hover .maison-feature__media img { transform: scale(1.015); }
.maison-feature__copy { display: flex; max-width: 680px; padding: clamp(56px, 7vw, 112px); justify-content: center; flex-direction: column; }
.maison-feature__copy h2 { font-size: clamp(60px, 6vw, 96px); }
.maison-feature__copy > p:not(.maison-kicker) { max-width: 470px; margin: 28px 0 18px; color: var(--color-muted); font-size: 18px; font-weight: 300; }

.maison-atelier {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-bottom: 1px solid var(--color-border);
}
.maison-atelier__copy { grid-column: 1 / 7; padding: clamp(72px, 8vw, 132px) var(--gutter); align-self: center; }
.maison-atelier__copy h2 { max-width: 700px; font-size: clamp(58px, 6vw, 98px); }
.maison-atelier__copy > p:not(.maison-kicker) { max-width: 580px; margin-block: 28px 18px; color: var(--color-muted); font-size: 18px; font-weight: 300; }
.maison-atelier__image { margin: 0; overflow: hidden; }
.maison-atelier__image img { width: 100%; height: 100%; object-fit: cover; }
.maison-atelier__image--wide { grid-column: 7 / 13; min-height: 740px; }
.maison-atelier__image--table { grid-column: 1 / 5; min-height: 590px; }
.maison-atelier__image--table img { object-position: center 42%; }
.maison-proof-rail {
  display: grid;
  margin: 0;
  padding: 0;
  grid-column: 5 / 13;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}
.maison-proof-rail li {
  display: flex;
  min-height: 50%;
  padding: 32px;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 14px;
}

.maison-edit { padding-inline: 0; }
.maison-section-head { display: grid; padding: 0 var(--gutter) clamp(44px, 6vw, 84px); grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 24px; }
.maison-section-head .maison-kicker { grid-column: 1 / -1; }
.maison-section-head h2 { max-width: 980px; font-size: clamp(54px, 6vw, 92px); }
.maison-edit__grid { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 1px !important; background: var(--color-border); }
.maison-edit__grid .product-card { min-width: 0; background: var(--color-bg); }
.maison-edit__grid .product-card:nth-child(n+5) { display: none; }

.maison-community { padding-inline: 0; border-top: 1px solid var(--color-border); }
.maison-community__intro { display: grid; padding: 0 var(--gutter) clamp(48px, 7vw, 96px); grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); align-items: end; gap: 40px; }
.maison-community__intro .maison-kicker { grid-column: 1 / -1; }
.maison-community__intro h2 { max-width: 840px; font-size: clamp(58px, 6vw, 96px); }
.maison-community__intro > p:not(.maison-kicker) { max-width: 490px; margin: 0; color: var(--color-muted); font-size: 18px; font-weight: 300; }
.maison-community__intro .maison-link { grid-column: 2; }
.maison-community__grid { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px !important; background: var(--color-border); }
.maison-community__grid > :nth-child(n+5) { display: none; }
.maison-community__grid .girls-feed__item { min-height: 540px; background: var(--color-bg); }
.maison-community__grid img { width: 100%; height: 100%; object-fit: cover; }
.maison-reviews { margin-top: clamp(72px, 9vw, 140px); padding-inline: var(--gutter); }
.maison-reviews__head { display: flex; padding-bottom: 28px; align-items: end; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--color-border); }
.maison-reviews__head h3 { font-size: clamp(34px, 3vw, 54px); }
.maison-reviews .reviews-trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.maison-reviews .review-card { min-height: 260px; margin: 0; padding: 34px 34px 34px 0; border: 0; border-bottom: 1px solid var(--color-border); }
.maison-reviews .review-card + .review-card { padding-left: 34px; border-left: 1px solid var(--color-border); }
.maison-reviews .review-card__quote { font-family: var(--font-display); font-size: clamp(24px, 2vw, 34px); line-height: 1.18; }

.maison-faq { display: grid; padding-inline: var(--gutter); grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(48px, 8vw, 140px); border-top: 1px solid var(--color-border); }
.maison-faq__intro h2 { max-width: 540px; font-size: clamp(54px, 5vw, 82px); }
.maison-faq__list { border-top: 1px solid var(--color-border); }
.maison-faq > .maison-link { grid-column: 2; justify-self: start; }

/* ============================================================
   Product cards and collections
   ============================================================ */
.product-card { position: relative; color: var(--color-fg); }
.product-card__media-wrap { position: relative; overflow: hidden; background: var(--paper-card); }
.product-card__media { display: block; overflow: hidden; background: var(--paper-card); aspect-ratio: 3 / 4; }
.product-card__media img,
.product-card__media video { width: 100%; height: 100%; object-fit: cover; transition: opacity var(--transition-image), transform 700ms var(--ease-reveal) !important; }
.product-card:hover .product-card__img:not(.product-card__img--hover) { transform: scale(1.012); }
.product-card__wish {
  position: absolute !important;
  z-index: 3;
  top: 10px !important;
  right: 10px !important;
  display: grid !important;
  width: 44px !important;
  height: 44px !important;
  place-items: center;
  border: 0 !important;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent) !important;
}
.product-card__wish svg { width: 20px; fill: transparent; stroke: currentColor; }
.product-card__wish.is-active svg { fill: currentColor; }
.product-card__info { display: grid !important; padding: 17px 0 26px; grid-template-columns: 1fr auto; gap: 4px 16px; text-decoration: none; }
.product-card__name { font-size: 16px; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.product-card__price { color: var(--color-fg); font-size: 15px; white-space: nowrap; }
.product-card__meta { display: flex !important; grid-column: 1 / -1; justify-content: space-between; gap: 12px; color: var(--color-muted); font-size: 13px; }
.product-card__meta span:last-child { display: none; }
.product-card__addbag {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62%;
  min-height: 44px;
  max-width: calc(100% - 24px);
  padding: .62rem 1.1rem;
  border: 1px solid var(--color-fg);
  border-radius: 0;
  background: rgba(255, 255, 255, .62);
  color: var(--color-fg);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out), background-color 200ms ease, color 200ms ease;
}
.product-card__addbag:hover { background: var(--color-fg); color: var(--color-bg); }
@media (min-width: 861px) and (hover: hover) {
  .product-card:hover .product-card__addbag,
  .product-card__addbag:focus-visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
}
@media (hover: none) {
  .product-card__addbag { background: rgba(255, 255, 255, .85); opacity: 1; pointer-events: auto; transform: translateX(-50%); }
}

body[data-page="collections"] main { padding: 0 0 clamp(88px, 10vw, 160px); }
body[data-page="collections"] main > .container-wide { width: 100%; max-width: none; }
body[data-page="collections"] .breadcrumb { margin: 0; padding: 24px var(--gutter) 0; color: var(--color-muted); font-size: 12px; }
body[data-page="collections"] .collection-head { padding: clamp(48px, 6vw, 88px) var(--gutter) 36px; }
body[data-page="collections"] .collection-head h1 { display: flex; align-items: flex-start; font-size: clamp(60px, 6.5vw, 104px) !important; text-transform: none !important; }
body[data-page="collections"] .collection-head__count { margin: .35em 0 0 .5em; color: var(--color-muted); font-family: var(--font-body); font-size: 13px; font-weight: 400; }
body[data-page="collections"] #collectionDesc { max-width: 680px; margin-top: 18px; color: var(--color-muted); font-size: 18px; font-weight: 300; }
body[data-page="collections"] .toolbar {
  position: sticky;
  z-index: 20;
  top: var(--header-h-stuck);
  display: flex;
  min-height: 60px;
  margin: 0 var(--gutter) 20px;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-block: 1px solid var(--color-border);
  background: color-mix(in srgb, var(--color-bg) 96%, transparent);
  backdrop-filter: blur(12px);
}
body[data-page="collections"] .filter-chips { display: flex; min-width: 0; align-items: center; gap: clamp(16px, 3vw, 48px); overflow-x: auto; scrollbar-width: none; }
body[data-page="collections"] .filter-chips::-webkit-scrollbar { display: none; }
body[data-page="collections"] .filter-chips button {
  position: relative;
  min-height: 44px;
  padding: 0;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font-size: 14px;
}
body[data-page="collections"] .filter-chips button[aria-pressed="true"] { color: var(--color-fg); }
body[data-page="collections"] .filter-chips button[aria-pressed="true"]::after { position: absolute; right: 0; bottom: 7px; left: 0; height: 1px; background: currentColor; content: ""; }
body[data-page="collections"] .filter-chips [data-size-filter] { min-width: 36px; color: var(--color-fg); }
body[data-page="collections"] .toolbar__right { display: flex; align-items: center; gap: 24px; }
body[data-page="collections"] .grid-density { display: none !important; }
body[data-page="collections"] #sortSelect,
body[data-page="collections"] #colorFilter { min-width: 110px; min-height: 44px; padding: 0 30px 0 6px; border: 0; background-color: transparent; color: var(--color-fg); }
body[data-page="collections"] #collectionGrid {
  display: grid !important;
  padding-inline: var(--gutter);
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(2rem, 3vw, 3rem) 28px !important;
}
body[data-page="collections"] #collectionGrid > .product-card { min-width: 0; }
body[data-page="collections"] #collectionGrid > .product-story,
body[data-page="collections"] #collectionGrid > .col-story--ingrid {
  grid-column: 1 / -1;
  margin: clamp(48px, 7vw, 100px) calc(-1 * var(--gutter));
}
body[data-page="collections"] .product-story--wide { min-height: 620px; }
body[data-page="collections"] .product-story--duo { display: grid; grid-template-columns: .8fr 1.1fr 1.1fr; background: #eee6dc; }
body[data-page="collections"] .product-story__copy { padding: clamp(42px, 6vw, 90px); align-self: center; }
body[data-page="collections"] .product-story__copy h2 { font-size: clamp(48px, 5vw, 78px); }
body[data-page="collections"] .bag-family-section { grid-column: 1 / -1; margin-bottom: 80px; }
body[data-page="collections"] .bag-family-head { display: grid; margin-bottom: 30px; grid-template-columns: 1fr 1fr; align-items: end; gap: 30px; }
body[data-page="collections"] .bag-family-head h2 { font-size: clamp(52px, 5vw, 82px); }
body[data-page="collections"] .bag-family-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 28px !important; }
body[data-page="collections"] .bag-color-row + .bag-color-row { margin-top: 60px; }

/* ============================================================
   Product detail
   ============================================================ */
body[data-page="product"] main { padding: 0; }
body[data-page="product"] #productRoot { width: 100%; max-width: none; }
body[data-page="product"] .product {
  display: grid !important;
  grid-template-columns: minmax(0, 3fr) minmax(440px, 2fr) !important;
  align-items: start;
  gap: 0 !important;
}
body[data-page="product"] .gallery {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  padding: 32px;
  border-right: 1px solid var(--color-border);
}
body[data-page="product"] .product-info {
  position: sticky !important;
  top: var(--header-h-stuck);
  grid-column: 2;
  grid-row: 1;
  max-height: calc(100svh - var(--header-h-stuck));
  padding: clamp(40px, 4.5vw, 72px) clamp(32px, 4vw, 70px) 48px !important;
  overflow-y: auto;
  scrollbar-width: thin;
  width: 100%;
  max-width: none !important;
  min-width: 0;
}
body[data-page="product"] .product-info__breadcrumb { margin-bottom: 30px; color: var(--color-muted); font-size: 12px; }
body[data-page="product"] #pName {
  max-width: 650px;
  font-size: clamp(48px, 3.8vw, 66px) !important;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-transform: none !important;
}
body[data-page="product"] .product-info__price { margin-top: 18px; font-size: 20px !important; font-weight: 400; }
body[data-page="product"] .product-info__short { margin: 16px 0 0; color: var(--color-muted); font-size: 16px; font-weight: 300; }
body[data-page="product"] .product-info__bullets { display: grid !important; margin: 28px 0 0; padding: 0; list-style: none; }
body[data-page="product"] .product-info__bullets li { padding: 12px 0; border-bottom: 1px solid var(--color-border); color: var(--color-muted); font-size: 14px; }
body[data-page="product"] .product-info__divider { margin: 30px 0 0; border-top: 1px solid var(--color-border); }
body[data-page="product"] .option { margin-top: 0; padding: 20px 0; border-bottom: 1px solid var(--color-border); }
body[data-page="product"] .product-color__swatches { gap: 24px; }
body[data-page="product"] .product-color__swatches button { min-width: 52px; min-height: 60px; }
body[data-page="product"] .product-color__swatches button::before { width: 34px !important; height: 34px !important; }
body[data-page="product"] .chips { display: flex; flex-wrap: wrap; gap: 10px; }
body[data-page="product"] .chip { min-width: 72px; min-height: 46px; border: 1px solid var(--color-border-strong) !important; border-radius: 0 !important; background: transparent !important; }
body[data-page="product"] .chip.is-active { border-color: var(--color-fg) !important; }
body[data-page="product"] .option--add { border-bottom: 0; }
body[data-page="product"] .product-add-main { width: 100%; min-height: 60px; margin-top: 8px; justify-content: center; }
body[data-page="product"] .product-add-main__icon { display: none; }
body[data-page="product"] .product-info__links { text-align: center; }
body[data-page="product"] .pp-shipbar { margin-top: 12px; color: var(--color-muted); font-size: 13px; text-align: center; }
.pdp-waitlist { padding-top: 16px; }
.pdp-waitlist h2 { font-size: clamp(32px, 3vw, 44px); }
.pdp-waitlist > p { margin-top: 10px; color: var(--color-muted); font-size: 14px; }
.pdp-waitlist__form { display: grid; margin-top: 18px; grid-template-columns: minmax(0, 1fr) auto; }
.pdp-waitlist__form input[type="email"] { min-width: 0; min-height: 52px; padding: 10px 14px; border: 1px solid var(--color-border-strong); border-right: 0; background: transparent; }
.pdp-waitlist__form input[name="_hp"] { position: absolute; left: -9999px; width: 1px; height: 1px; }
.pdp-waitlist__form .btn { min-width: 126px; }
.pdp-waitlist__form .form-msg { margin: 12px 0 0; grid-column: 1 / -1; color: var(--color-muted); font-size: 13px; }
body[data-page="product"] .product-story { margin: 24px 0 0; padding: 28px 0; border-block: 1px solid var(--color-border); }
body[data-page="product"] .product-story__quote { margin: 18px 0; font-family: var(--font-display); font-size: 30px; line-height: 1.15; }
body[data-page="product"] .product-accordions { margin-top: 18px; border-top: 1px solid var(--color-border); }
body[data-page="product"] .accordion__btn { min-height: 58px; padding-inline: 0; }
body[data-page="product"] .gallery__main { position: relative; overflow: hidden; background: var(--paper-card); aspect-ratio: 4 / 5; }
body[data-page="product"] .gallery__main img,
body[data-page="product"] .gallery__main video { width: 100%; height: 100%; object-fit: cover; }
body[data-page="product"] .gallery__thumbs { display: grid !important; margin-top: 16px; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
body[data-page="product"] .gallery__thumb { width: auto !important; height: auto !important; padding: 0; border: 1px solid transparent; background: var(--paper-card); aspect-ratio: 4 / 5; }
body[data-page="product"] .gallery__thumb.is-active { border-color: var(--color-accent); }
body[data-page="product"] .gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
body[data-page="product"] .gallery__wish-btn { width: 44px !important; height: 44px !important; background: var(--color-bg) !important; }
body[data-page="product"] .product-rail-section { padding: clamp(72px, 8vw, 128px) var(--gutter) !important; border-top: 1px solid var(--color-border); }
body[data-page="product"] .product-mobile-bar { z-index: 700; padding: 10px max(20px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-right)); background: var(--color-bg); border-top: 1px solid var(--color-border); }

/* ============================================================
   Story / contact / checkout surfaces
   ============================================================ */
body[data-page="story"] .story-page { background: var(--color-bg); }
.maison-story-lead {
  display: grid;
  min-height: calc(100svh - var(--header-h));
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
}
.maison-story-lead__media { min-height: 720px; margin: 0; overflow: hidden; }
.maison-story-lead__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.maison-story-lead__copy { display: flex; padding: clamp(60px, 7vw, 120px); justify-content: center; flex-direction: column; }
.maison-story-lead__copy h1 { max-width: 760px; font-size: clamp(62px, 6vw, 98px); }
.maison-story-lead__copy > p:not(.maison-kicker) { max-width: 580px; margin: 28px 0 16px; color: var(--color-muted); font-size: 18px; font-weight: 300; }
body[data-page="story"] .story-hero { padding: 0; }
body[data-page="story"] .story-hero > .container-wide { width: 100%; max-width: none; }
body[data-page="story"] .story-hero__copy { padding: clamp(72px, 8vw, 132px) var(--gutter); }
body[data-page="story"] .story-hero h1,
body[data-page="story"] .story-hero__title { max-width: 1100px; margin-inline: auto; font-size: clamp(64px, 7vw, 110px) !important; text-align: center; }
body[data-page="story"] .story-copy { color: var(--color-muted); font-weight: 300; }
body[data-page="story"] .story-copy h2 { color: var(--color-fg); font-size: clamp(52px, 5vw, 82px); }
body[data-page="story"] .story-moodboard { margin: 0; }
body[data-page="story"] .story-moodboard img { width: 100%; max-height: 700px; object-fit: cover; }
body[data-page="story"] .story-section { padding: clamp(72px, 9vw, 144px) var(--gutter); border-bottom: 1px solid var(--color-border); }
body[data-page="story"] .story-section--founder,
body[data-page="story"] .story-section--atelier { background: transparent !important; }
body[data-page="story"] .story-founder-grid,
body[data-page="story"] .story-atelier-grid { gap: clamp(36px, 7vw, 110px); }
body[data-page="story"] .manifesto-list { border-top: 1px solid var(--color-border); }
body[data-page="story"] .manifesto-list li { padding: 22px 0; border-bottom: 1px solid var(--color-border); }

body[data-page="contact"] main,
body[data-page="checkout"] main { background: var(--color-bg); }
/* Checkout owns its compact YZA + progress header. Hiding the storefront chrome
   avoids a duplicate logo/navigation bar and keeps the transactional flow focused. */
body[data-page="checkout"] > .site-chrome-skeleton,
body[data-page="checkout"] > .announcement,
body[data-page="checkout"] > .header,
body[data-page="checkout"] > .mega { display: none !important; }
body[data-page="checkout"] main { padding-top: 0; }
body[data-page="contact"] .page-hero { padding-top: clamp(56px, 8vw, 110px); }
body[data-page="contact"] .page-hero h1 { font-size: clamp(60px, 7vw, 105px) !important; }
body[data-page="contact"] .contact-grid { gap: clamp(40px, 8vw, 120px); }
body[data-page="contact"] input,
body[data-page="contact"] textarea,
body[data-page="checkout"] input,
body[data-page="checkout"] select,
body[data-page="checkout"] textarea { min-height: 48px; border: 1px solid var(--color-border-strong); border-radius: 0; background: transparent; color: var(--color-fg); }
body[data-page="contact"] textarea,
body[data-page="checkout"] textarea { min-height: 120px; }
body[data-page="contact"] .form-msg[role="alert"] { color: #8e2e20; }
body[data-page="checkout"] .checkout-page { padding-block: clamp(44px, 7vw, 96px); }
body[data-page="checkout"] .checkout-title,
body[data-page="checkout"] .checkout-section h2 { font-family: var(--font-display); font-weight: 400; text-transform: none; }

/* Footer */
.footer { border-top: 1px solid var(--color-border) !important; background: var(--color-bg) !important; color: var(--color-fg) !important; }
.footer > .container-wide { width: 100%; max-width: none; padding-inline: var(--gutter); }
.footer-service { border-bottom: 1px solid var(--color-border) !important; }
.footer__top { display: grid; padding-block: clamp(60px, 8vw, 110px); grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: clamp(40px, 8vw, 130px); }
.footer__newsletter-head,
.footer__contact-title { font-family: var(--font-display) !important; font-size: clamp(32px, 3vw, 48px) !important; font-weight: 400 !important; letter-spacing: -.03em !important; text-transform: none !important; }
.footer-field input { min-height: 50px; border: 0; border-bottom: 1px solid var(--color-border-strong); background: transparent; }
.footer-news__btn { min-height: 52px; border: 1px solid var(--color-fg); background: var(--color-fg); color: #fff; }
.footer__nav { padding-block: 54px; border-top: 1px solid var(--color-border) !important; }
.footer__meta { min-height: 140px; border-top: 1px solid var(--color-border) !important; }
.footer__wordmark .logo__img { width: clamp(120px, 16vw, 260px) !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .header__inner { grid-template-columns: 110px 1fr 156px; }
  .nav { gap: 18px !important; }
  .nav-item > a { font-size: 13px; }
  .maison-edit__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .maison-community__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body[data-page="product"] .product { grid-template-columns: minmax(0, 1fr) !important; }
  body[data-page="product"] .gallery { grid-column: 1; grid-row: 1; }
  body[data-page="product"] .product-info {
    position: static !important;
    grid-column: 1;
    grid-row: 2;
    max-height: none;
  }
}

@media (max-width: 860px) {
  body { font-size: 15px; }
  .section { padding: 72px 20px; }
  .site-chrome-skeleton { height: 64px; }
  .nav--skeleton { display: none; }
  .header-skeleton__actions { font-size: 17px; }
  .header { height: 64px !important; backdrop-filter: blur(10px); }
  .header__inner { grid-template-columns: 1fr auto !important; gap: 10px; }
  .header__left { grid-column: 1 !important; }
  .header__actions { grid-column: 2 !important; }
  .logo__img { width: 92px !important; }
  .nav { display: none !important; }
  .header__actions { gap: 0 !important; }
  .header__actions .lang { display: none !important; }
  .header__actions .burger { display: inline-flex !important; }
  .header-search,
  .header__actions .icon-btn { width: 44px !important; min-width: 44px !important; }
  .drawer { width: 100% !important; }
  .cart-drawer { width: 100% !important; }
  .cart-drawer__body { padding: 20px !important; }
  .cart-drawer__foot { padding: 18px 20px calc(18px + env(safe-area-inset-bottom)) !important; }
  .js [data-reveal] { transform: translateY(18px); }

  .maison-hero { min-height: 0; grid-template-columns: 1fr; }
  .maison-hero__media { min-height: 0; height: min(74svh, 610px); }
  .maison-hero__media img { object-position: center 44%; }
  .maison-hero__copy { padding: 52px 20px 64px; }
  .maison-hero__copy h1 { max-width: 600px; font-size: clamp(54px, 15vw, 78px); }
  .maison-hero__lede { margin-top: 24px; font-size: 17px; }
  .maison-hero__actions { align-items: flex-start; flex-direction: column; gap: 0; }

  .maison-feature { min-height: 0; grid-template-columns: 1fr; }
  .maison-feature__media { min-height: 0; height: 118vw; max-height: 680px; }
  .maison-feature__copy { padding: 52px 20px 64px; }
  .maison-feature__copy h2 { font-size: clamp(54px, 14vw, 74px); }

  .maison-atelier { grid-template-columns: 1fr; }
  .maison-atelier__copy,
  .maison-atelier__image--wide,
  .maison-atelier__image--table,
  .maison-proof-rail { grid-column: 1; }
  .maison-atelier__copy { padding: 72px 20px; }
  .maison-atelier__copy h2 { font-size: clamp(54px, 14vw, 76px); }
  .maison-atelier__image--wide { min-height: 0; height: 118vw; max-height: 680px; }
  .maison-atelier__image--table { display: none; }
  .maison-proof-rail { grid-template-columns: 1fr; }
  .maison-proof-rail li { min-height: 58px; padding: 17px 20px; border-left: 0; }

  .maison-section-head { display: block; padding: 0 20px 42px; }
  .maison-section-head h2 { font-size: clamp(50px, 13vw, 70px); }
  .maison-section-head .maison-link { margin-top: 22px; }
  .maison-edit__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .maison-edit__grid .product-card:nth-child(n+5) { display: none; }
  .product-card__info { display: block !important; padding: 13px 8px 24px; }
  .product-card__name,
  .product-card__price { display: block; font-size: 13px; }
  .product-card__price { margin-top: 4px; }
  .product-card__meta { margin-top: 6px; font-size: 11px; }
  .product-card__addbag { right: 8px; bottom: 8px; opacity: 1; transform: none; font-size: 0; }
  .product-card__addbag::before { content: "+"; font-size: 22px; }

  .maison-community__intro { display: block; padding: 0 20px 48px; }
  .maison-community__intro h2 { font-size: clamp(52px, 13vw, 72px); }
  .maison-community__intro > p:not(.maison-kicker) { margin-top: 24px; }
  .maison-community__intro .maison-link { margin-top: 18px; }
  .maison-community__grid { display: flex !important; padding-inline: 20px; gap: 10px !important; overflow-x: auto; scroll-snap-type: x mandatory; background: transparent; }
  .maison-community__grid > * { display: block !important; min-width: 78vw; scroll-snap-align: start; }
  .maison-community__grid .girls-feed__item { min-height: 104vw; max-height: 620px; }
  .maison-reviews { margin-top: 80px; padding-inline: 20px; }
  .maison-reviews__head { display: block; }
  .maison-reviews__head #ratingSummary { margin-top: 12px; }
  .maison-reviews .reviews-trio { grid-template-columns: 1fr; }
  .maison-reviews .review-card { min-height: 0; padding: 26px 0 !important; border-left: 0 !important; }

  .maison-faq { display: block; padding: 72px 20px; }
  .maison-faq__intro h2 { margin-bottom: 38px; font-size: clamp(50px, 13vw, 70px); }
  .maison-faq > .maison-link { margin-top: 24px; }

  body[data-page="collections"] .breadcrumb { padding: 18px 20px 0; }
  body[data-page="collections"] .collection-head { padding: 40px 20px 28px; }
  body[data-page="collections"] .collection-head h1 {
    position: relative;
    justify-content: center;
    font-size: clamp(44px, 13vw, 56px) !important;
    overflow-wrap: anywhere;
  }
  body[data-page="collections"] #collectionTitleText { min-width: 0; max-width: 100%; }
  body[data-page="collections"] #collectionDesc { font-size: 16px; }
  body[data-page="collections"] .toolbar { top: 64px; margin: 0 20px 14px; min-height: 56px; gap: 0; flex-wrap: wrap; }
  body[data-page="collections"] .filter-chips { width: 100%; flex: 1 1 100%; gap: 22px; padding-right: 24px; }
  body[data-page="collections"] .toolbar__right { width: 100%; flex: 1 1 100%; justify-content: space-between; border-top: 1px solid var(--color-border); }
  body[data-page="collections"] #sortSelect { width: 74px; min-width: 74px; font-size: 12px; }
  body[data-page="collections"] #colorFilter { width: 90px; min-width: 90px; font-size: 12px; }
  body[data-page="collections"] #collectionGrid { padding-inline: 0; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 0 1px !important; background: var(--color-border); }
  body[data-page="collections"] #collectionGrid > .product-card { background: var(--color-bg); }
  body[data-page="collections"] #collectionGrid > .product-story,
  body[data-page="collections"] #collectionGrid > .col-story--ingrid { margin: 54px 0; background: var(--color-bg); }
  body[data-page="collections"] .product-story--duo { grid-template-columns: 1fr; }
  body[data-page="collections"] .product-story--duo .product-story__image:nth-of-type(n+2) { display: none; }
  body[data-page="collections"] .bag-family-section { margin: 0; padding: 0; background: var(--color-bg); }
  body[data-page="collections"] .bag-family-head { display: block; padding: 48px 20px 24px; }
  body[data-page="collections"] .bag-family-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 1px !important; background: var(--color-border); }
  body[data-page="collections"] .bag-color-row + .bag-color-row { margin-top: 36px; }
  body[data-page="collections"] .bag-color-row__head { padding-inline: 20px; }

  body[data-page="product"] .product { display: flex !important; flex-direction: column; }
  body[data-page="product"] .product-info { display: contents; }
  body[data-page="product"] #productRoot { padding-inline: 0 !important; }
  body[data-page="product"] .product-info > * { order: 6; padding-inline: 20px; }
  body[data-page="product"] .product-info__breadcrumb { order: 1; margin: 20px 0 0; }
  body[data-page="product"] #pName {
    order: 2;
    margin-top: 16px;
    font-size: clamp(44px, 11vw, 50px) !important;
    line-height: .96;
    letter-spacing: -.025em !important;
    overflow-wrap: break-word;
  }
  body[data-page="product"] .product-info__price { order: 3; margin: 10px 0 0; font-size: 18px !important; }
  body[data-page="product"] .product-info__short { order: 4; margin: 8px 0 22px; }
  body[data-page="product"] .gallery { order: 5; width: 100%; padding: 0; border: 0; }
  body[data-page="product"] .gallery__main { aspect-ratio: 4 / 5; }
  body[data-page="product"] .gallery__thumbs { display: flex !important; margin: 10px 20px 0; gap: 8px; overflow-x: auto; }
  body[data-page="product"] .gallery__thumb { min-width: 62px; }
  body[data-page="product"] .product-info__bullets { order: 8; margin: 24px 0 0; padding-inline: 20px; }
  body[data-page="product"] .product-info__divider { order: 9; margin: 0 20px; padding: 0; }
  body[data-page="product"] .product-info > .option,
  body[data-page="product"] .product-info > .product-trust-chips,
  body[data-page="product"] .product-info > .bundle-panel,
  body[data-page="product"] .product-info > .product-story,
  body[data-page="product"] .product-info > .product-accordions { order: 10; margin-inline: 20px; padding-inline: 0; }
  body[data-page="product"] .product-info > .product-story { order: 12; }
  body[data-page="product"] .product-info > .option--add { order: 15; }
  body[data-page="product"] .product-info > .product-trust-chips { order: 16; }
  body[data-page="product"] .product-info > .product-accordions { order: 20; }
  .pdp-waitlist__form { grid-template-columns: 1fr; }
  .pdp-waitlist__form input[type="email"] { border-right: 1px solid var(--color-border-strong); border-bottom: 0; }
  body[data-page="product"] .product-rail-section { order: 30; padding: 72px 20px !important; }
  body[data-page="product"] .product-mobile-bar { display: grid; grid-template-columns: 1fr minmax(190px, 1.5fr); align-items: center; gap: 10px; }
  body[data-page="product"] .product-mobile-bar .btn { min-height: 48px; }

  body[data-page="story"] .story-hero__copy { padding: 64px 20px; }
  .maison-story-lead { min-height: 0; grid-template-columns: 1fr; }
  .maison-story-lead__media { min-height: 0; height: 122vw; max-height: 670px; }
  .maison-story-lead__copy { padding: 58px 20px 72px; }
  .maison-story-lead__copy h1 { font-size: clamp(52px, 14vw, 74px); }
  body[data-page="story"] .story-hero h1,
  body[data-page="story"] .story-hero__title { font-size: clamp(54px, 14vw, 74px) !important; }
  body[data-page="story"] .story-section { padding: 72px 20px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { display: block; }
  .footer__meta { display: grid; padding-block: 32px; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .maison-link::after,
  .link-underline::after,
  .nav-item > a::after { background: CanvasText; }
}

/* Minimal language + currency utilities. Prices remain canonical in MAD;
   converted values are display-only and use the persisted shopper choice. */
.locale-tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.header__actions .locale-tools .lang { display: inline-flex !important; }
.currency-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}
.currency-select__control {
  appearance: none;
  -webkit-appearance: none;
  min-width: 3.25rem;
  padding: 4px 13px 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: linear-gradient(45deg, transparent 50%, currentColor 50%) right 4px center/4px 4px no-repeat,
              linear-gradient(135deg, currentColor 50%, transparent 50%) right 0 center/4px 4px no-repeat;
  color: inherit;
  font: 500 10px/1 var(--font-mono, monospace);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.currency-select__control:focus-visible { outline: 1px solid currentColor; outline-offset: 4px; }
.currency-select__note {
  max-width: 190px;
  color: var(--color-muted, #68615A);
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: .02em;
  text-transform: none;
}
.cart-drawer__head-actions { display: inline-flex; align-items: center; gap: 14px; }
.currency-select--cart .currency-select__control { min-width: 3.5rem; }
.checkout__head .currency-select--checkout { margin-inline-start: auto; }
.currency-attribution { color: inherit; font-size: 9px; opacity: .55; text-decoration: none; }
.currency-attribution:hover { opacity: 1; }
.drawer__locale { display: flex; align-items: center; gap: 14px; width: 100%; }
.drawer__locale .drawer__lang { flex: 1 1 auto; margin: 0; padding: 0; border: 0; }
.drawer__locale .currency-select { flex: 0 0 auto; }

@media (max-width: 860px) {
  .header__actions > .locale-tools { display: none !important; }
  .drawer__locale { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--color-border); }
  .drawer__locale .lang-select__button { min-height: 44px; }
  .drawer__locale .currency-select__control { min-height: 44px; padding-inline: 10px 20px; border: 1px solid var(--color-border); background-position: right 10px center, right 6px center; }
  .checkout__head { flex-wrap: wrap; gap: 14px; }
  .checkout__head .currency-select--checkout { width: 100%; margin-inline-start: 0; justify-content: flex-end; }
  .currency-select__note { max-width: 155px; }
}

/* ============================================================
   Homepage — Ranaco-inspired campaign cadence

   The reference informs the rhythm only: quiet white chrome, a full-bleed
   campaign frame, an immediate four-up edit and image-led editorial bands.
   Every photograph, word and commerce hook remains YZA's own.
   ============================================================ */
body[data-page="home"] {
  --ranaco-gap: 4px;
  --ranaco-announcement-h: 32px;
  --header-h: 64px;
  --header-h-stuck: 60px;
  --yza-ann-h: var(--ranaco-announcement-h);
  background: #fff;
}

body[data-page="home"] .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Reserve the exact hydrated chrome height so the hero never jumps. */
body[data-page="home"] .site-chrome-skeleton {
  height: calc(var(--ranaco-announcement-h) + var(--header-h));
  background: #fff;
}

body[data-page="home"] .home-announcement-skeleton,
body[data-page="home"] > .announcement {
  display: grid !important;
  min-height: var(--ranaco-announcement-h);
  height: var(--ranaco-announcement-h);
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid #e7e2db;
  background: #fff !important;
  color: #4f4a45 !important;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

body[data-page="home"] > .announcement {
  position: sticky;
  z-index: 901;
  top: 0;
}

body[data-page="home"] .announcement__inner {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  place-items: center;
}

body[data-page="home"] .announcement__line { margin: 0; }

body[data-page="home"] .header {
  top: var(--ranaco-announcement-h) !important;
  height: var(--header-h) !important;
  border-color: #e7e2db !important;
  background: #fff !important;
  backdrop-filter: none !important;
}

body[data-page="home"] .header.is-stuck { height: var(--header-h-stuck) !important; }
body[data-page="home"] .header .container-wide { padding-inline: clamp(24px, 3.2vw, 52px); }
body[data-page="home"] .header__inner { grid-template-columns: minmax(112px, 1fr) auto minmax(210px, 1fr); }
body[data-page="home"] .header .logo__img { width: 104px !important; }
body[data-page="home"] .nav { gap: clamp(22px, 3vw, 50px) !important; }
body[data-page="home"] .nav-item > a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
}
body[data-page="home"] .header__actions { gap: 2px !important; }

/* Full-bleed campaign frame: there is deliberately no tint or marketing copy. */
body[data-page="home"] .ranaco-hero {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--ranaco-announcement-h) - var(--header-h));
  min-height: 540px;
  overflow: hidden;
  background: #d9d4ca;
}

body[data-page="home"] .ranaco-hero::after,
body[data-page="home"] .ranaco-editorial__tile::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, .18) 56%, transparent);
  content: "";
  pointer-events: none;
}

body[data-page="home"] .ranaco-hero__media,
body[data-page="home"] .ranaco-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

body[data-page="home"] .ranaco-hero__media img {
  object-fit: cover;
  /* Keep the standing model's face in the desktop campaign frame. */
  object-position: 50% 25%;
}

body[data-page="home"] .ranaco-image-cta {
  position: absolute;
  z-index: 2;
  inset-inline-start: clamp(24px, 3.2vw, 52px);
  bottom: clamp(20px, 3vw, 40px);
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1.2;
  text-decoration: none;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .42);
  text-transform: uppercase;
}

body[data-page="home"] .ranaco-image-cta svg {
  width: 58px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
  transition: transform 300ms cubic-bezier(.19, 1, .22, 1);
}

body[data-page="home"] .ranaco-image-cta:hover svg,
body[data-page="home"] .ranaco-image-cta:focus-visible svg { transform: translateX(8px); }
[dir="rtl"] body[data-page="home"] .ranaco-image-cta svg { transform: scaleX(-1); }
[dir="rtl"] body[data-page="home"] .ranaco-image-cta:hover svg,
[dir="rtl"] body[data-page="home"] .ranaco-image-cta:focus-visible svg { transform: scaleX(-1) translateX(8px); }

/* The collection begins immediately, without a title block or section padding. */
body[data-page="home"] .ranaco-product-edit {
  width: 100%;
  margin: 0;
  padding: var(--ranaco-gap) 0 0;
  background: #fff;
}

body[data-page="home"] .ranaco-product-edit__grid {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: var(--ranaco-gap) !important;
  background: #fff !important;
}

body[data-page="home"] .ranaco-product-edit__grid .product-card:nth-child(n + 5) { display: none !important; }
body[data-page="home"] .ranaco-product-edit__grid .product-card { min-width: 0; background: #fff; }
body[data-page="home"] .ranaco-product-edit__grid .product-card__media { aspect-ratio: 2 / 3; background: #eeeae4; }
body[data-page="home"] .ranaco-product-edit__grid .product-card__media img { object-position: center; }
body[data-page="home"] .ranaco-product-edit__grid .product-card__wish { width: 44px !important; height: 44px !important; }
body[data-page="home"] .ranaco-product-edit__grid .product-card__info {
  min-height: 68px;
  padding: 14px 14px 18px;
  align-items: start;
}
body[data-page="home"] .ranaco-product-edit__grid .product-card__name {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .04em;
  text-decoration: none;
}
body[data-page="home"] .ranaco-product-edit__grid .product-card__price {
  font-family: var(--font-body);
  font-size: 11px;
}
body[data-page="home"] .ranaco-product-edit__grid .product-card__meta span {
  display: inline-flex !important;
  min-height: 0;
  padding: 0;
  border: 0;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .025em;
  line-height: 1.35;
  text-transform: none;
}

@media (min-width: 861px) and (hover: hover) {
  body[data-page="home"] .ranaco-product-edit__grid .product-card__info {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 84px;
    padding: 34px 14px 15px;
    background: linear-gradient(to top, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0));
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
  }
  body[data-page="home"] .ranaco-product-edit__grid .product-card:hover .product-card__info,
  body[data-page="home"] .ranaco-product-edit__grid .product-card:focus-within .product-card__info {
    opacity: 1;
    pointer-events: auto;
  }
  body[data-page="home"] .ranaco-product-edit__grid .product-card__wish { opacity: 0; }
  body[data-page="home"] .ranaco-product-edit__grid .product-card:hover .product-card__wish,
  body[data-page="home"] .ranaco-product-edit__grid .product-card:focus-within .product-card__wish { opacity: 1; }
}

/* A paired image chapter replaces the previous large copy-heavy blocks. */
body[data-page="home"] .ranaco-editorial {
  display: grid;
  width: 100%;
  margin: var(--ranaco-gap) 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ranaco-gap);
  background: #fff;
}

body[data-page="home"] .ranaco-editorial__tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d9d4ca;
}

body[data-page="home"] .ranaco-editorial__tile picture,
body[data-page="home"] .ranaco-editorial__tile img { width: 100%; height: 100%; }
body[data-page="home"] .ranaco-editorial__tile img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.19, 1, .22, 1);
}
body[data-page="home"] .ranaco-editorial__tile:first-child img { object-position: 50% 55%; }
body[data-page="home"] .ranaco-editorial__tile:last-child img { object-position: 50% 38%; }
body[data-page="home"] .ranaco-editorial__tile:hover img,
body[data-page="home"] .ranaco-editorial__tile:focus-visible img { transform: scale(1.018); }

/* Community wall: image first on desktop; names and CTA remain keyboard/touch reachable. */
body[data-page="home"] .ranaco-community {
  margin: var(--ranaco-gap) 0 0;
  padding: 0;
  border: 0;
  background: #fff;
}

body[data-page="home"] .ranaco-community__grid {
  display: grid !important;
  width: 100%;
  padding: 0 !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: var(--ranaco-gap) !important;
  overflow: visible;
  background: #fff !important;
}

body[data-page="home"] .ranaco-community__grid > :nth-child(n + 5) { display: none !important; }
body[data-page="home"] .ranaco-community__grid .girls-feed__item {
  width: 100%;
  max-width: none;
  min-height: 0;
  aspect-ratio: 4 / 5;
  flex: none;
  scroll-snap-align: none;
}
body[data-page="home"] .ranaco-community__grid .girls-feed__item img { transform: none; }
body[data-page="home"] .ranaco-community__grid .girls-feed__meta,
body[data-page="home"] .ranaco-community__grid .girls-feed__overlay { transition: opacity 300ms ease; }

@media (min-width: 861px) and (hover: hover) {
  body[data-page="home"] .ranaco-community__grid .girls-feed__meta,
  body[data-page="home"] .ranaco-community__grid .girls-feed__overlay { opacity: 0; }
  body[data-page="home"] .ranaco-community__grid .girls-feed__item:hover .girls-feed__meta,
  body[data-page="home"] .ranaco-community__grid .girls-feed__item:hover .girls-feed__overlay,
  body[data-page="home"] .ranaco-community__grid .girls-feed__item:focus-visible .girls-feed__meta,
  body[data-page="home"] .ranaco-community__grid .girls-feed__item:focus-visible .girls-feed__overlay { opacity: 1; }
}

body[data-page="home"] .ranaco-reviews {
  width: min(100% - (2 * var(--gutter)), 1440px);
  margin: clamp(64px, 7vw, 104px) auto 0;
  padding: 0;
}
body[data-page="home"] .ranaco-reviews .review-card { background: #fff; }

body[data-page="home"] .ranaco-manifesto {
  display: grid;
  min-height: clamp(280px, 28vw, 430px);
  padding: clamp(72px, 9vw, 136px) var(--gutter);
  place-items: center;
  align-content: center;
  gap: 24px;
  border-top: 1px solid #e7e2db;
  background: #fff;
  text-align: center;
}
body[data-page="home"] .ranaco-manifesto h2 {
  max-width: 1080px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  text-wrap: balance;
}
body[data-page="home"] .ranaco-text-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  padding: 12px 0 9px;
  align-items: center;
  font-size: 11px;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}
body[data-page="home"] .ranaco-text-link::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 300ms ease;
}
body[data-page="home"] .ranaco-text-link:hover::after,
body[data-page="home"] .ranaco-text-link:focus-visible::after { transform: scaleX(.35); }

body[data-page="home"] .ranaco-faq {
  padding: clamp(80px, 9vw, 136px) var(--gutter);
  border-top: 1px solid #e7e2db;
  background: #fff;
}

@media (max-width: 860px) {
  body[data-page="home"] {
    --ranaco-announcement-h: 28px;
    --header-h: 58px;
    --header-h-stuck: 58px;
  }

  body[data-page="home"] .site-chrome-skeleton { height: 86px; }
  body[data-page="home"] .home-announcement-skeleton,
  body[data-page="home"] > .announcement {
    min-height: 28px;
    height: 28px;
    font-size: 9px;
    letter-spacing: .1em;
  }
  body[data-page="home"] .announcement__inner { padding-inline: 12px; }
  body[data-page="home"] .header,
  body[data-page="home"] .header.is-stuck { height: 58px !important; }
  body[data-page="home"] .header .container-wide { padding-inline: 14px; }
  body[data-page="home"] .header__inner {
    position: relative;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    gap: 0;
  }
  body[data-page="home"] .header__left {
    z-index: 2;
    display: flex;
    grid-column: 2 !important;
    grid-row: 1;
    justify-self: center;
  }
  body[data-page="home"] .header__actions {
    display: flex !important;
    width: 100%;
    grid-column: 1 / -1 !important;
    grid-row: 1;
    justify-content: flex-end;
    pointer-events: none;
  }
  body[data-page="home"] .header__actions > * { pointer-events: auto; }
  body[data-page="home"] .header__actions .burger {
    display: inline-flex !important;
    margin-inline-end: auto;
    order: -1;
  }
  body[data-page="home"] .header__actions .wishlist-btn { display: none !important; }
  body[data-page="home"] .header__actions .header-search,
  body[data-page="home"] .header__actions .cart-btn,
  body[data-page="home"] .header__actions .burger { width: 44px !important; min-width: 44px !important; }
  body[data-page="home"] .header .logo__img { width: 84px !important; }
  body[data-page="home"] .header--skeleton .logo { grid-column: 2; grid-row: 1; justify-self: center; }
  body[data-page="home"] .header--skeleton .header-skeleton__actions { grid-column: 3; grid-row: 1; justify-self: end; }

  body[data-page="home"] .ranaco-hero {
    height: min(78svh, 720px);
    min-height: 560px;
  }
  body[data-page="home"] .ranaco-hero__media img { object-position: 50% 48%; }
  body[data-page="home"] .ranaco-image-cta {
    inset-inline-start: 20px;
    bottom: 18px;
    max-width: calc(100% - 40px);
    gap: 11px;
    font-size: 10px;
    letter-spacing: .12em;
  }
  body[data-page="home"] .ranaco-image-cta svg { width: 48px; }

  body[data-page="home"] .ranaco-product-edit { padding-top: var(--ranaco-gap); overflow: hidden; }
  body[data-page="home"] .ranaco-product-edit__grid {
    display: flex !important;
    width: 100% !important;
    padding: 0 18vw 0 0 !important;
    gap: var(--ranaco-gap) !important;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  [dir="rtl"] body[data-page="home"] .ranaco-product-edit__grid { padding: 0 0 0 18vw !important; }
  body[data-page="home"] .ranaco-product-edit__grid::-webkit-scrollbar { display: none; }
  body[data-page="home"] .ranaco-product-edit__grid .product-card {
    display: block !important;
    min-width: 82vw;
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }
  body[data-page="home"] .ranaco-product-edit__grid .product-card:nth-child(n + 5) { display: none !important; }
  body[data-page="home"] .ranaco-product-edit__grid .product-card__info {
    display: grid !important;
    min-height: 72px;
    padding: 12px 14px 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
  }
  body[data-page="home"] .ranaco-product-edit__grid .product-card__meta { grid-column: 1 / -1; }

  body[data-page="home"] .ranaco-editorial {
    grid-template-columns: 1fr;
    gap: var(--ranaco-gap);
  }
  body[data-page="home"] .ranaco-editorial__tile { aspect-ratio: 4 / 5; }
  body[data-page="home"] .ranaco-editorial__tile:first-child img { object-position: 50% 52%; }
  body[data-page="home"] .ranaco-editorial__tile:last-child img { object-position: 50% 35%; }

  body[data-page="home"] .ranaco-community__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--ranaco-gap) !important;
  }
  body[data-page="home"] .ranaco-community__grid .girls-feed__item { min-width: 0; min-height: 0; }
  body[data-page="home"] .ranaco-community__grid .girls-feed__meta {
    padding: 2rem 8px 10px;
    text-align: start;
  }
  body[data-page="home"] .ranaco-community__grid .girls-feed__meta span { display: none; }
  body[data-page="home"] .ranaco-community__grid .girls-feed__overlay { display: none; }

  body[data-page="home"] .ranaco-reviews {
    width: auto;
    margin: 64px 20px 0;
  }
  body[data-page="home"] .ranaco-manifesto {
    min-height: 300px;
    padding: 76px 20px;
    gap: 18px;
  }
  body[data-page="home"] .ranaco-manifesto h2 { font-size: clamp(32px, 10.5vw, 46px); }
  body[data-page="home"] .ranaco-faq { padding: 76px 20px; }
}

@media (min-width: 701px) and (max-width: 860px) {
  body[data-page="home"] .ranaco-product-edit__grid {
    display: grid !important;
    width: 100% !important;
    padding: 0 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--ranaco-gap) !important;
    overflow: visible;
    scroll-snap-type: none;
  }
  [dir="rtl"] body[data-page="home"] .ranaco-product-edit__grid { padding: 0 !important; }
  body[data-page="home"] .ranaco-product-edit__grid .product-card {
    min-width: 0;
    flex: none;
    scroll-snap-align: none;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .ranaco-hero { min-height: 520px; }
  body[data-page="home"] .ranaco-image-cta { letter-spacing: .09em; }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .ranaco-image-cta svg,
  body[data-page="home"] .ranaco-editorial__tile img,
  body[data-page="home"] .ranaco-community__grid .girls-feed__meta,
  body[data-page="home"] .ranaco-community__grid .girls-feed__overlay { transition: none !important; }
  body[data-page="home"] .ranaco-editorial__tile:hover img,
  body[data-page="home"] .ranaco-editorial__tile:focus-visible img { transform: none; }
}

@media (forced-colors: active) {
  body[data-page="home"] .ranaco-image-cta { color: LinkText; text-shadow: none; }
  body[data-page="home"] .ranaco-text-link::after { background: CanvasText; }
}

/* ============================================================
   Client polish — collection clarity, visual cross-links, WhatsApp
   ============================================================ */
body[data-page="collections"][data-collection="bags"] .collection-head {
  align-items: flex-start;
  text-align: left;
}
body[data-page="collections"][data-collection="bags"] .collection-head h1 {
  justify-content: flex-start;
  font-size: clamp(58px, 7vw, 104px) !important;
  text-align: left;
}
body[data-page="collections"][data-collection="bags"] .toolbar { flex-wrap: wrap; align-items: stretch; }
body[data-page="collections"][data-collection="bags"] .filter-chips { width: 100%; flex: 1 1 100%; }
body[data-page="collections"][data-collection="bags"] .toolbar__right {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex: 1 1 100%;
  justify-content: flex-start;
  padding: 10px 0 12px;
  border-top: 1px solid var(--color-border);
}

.bag-filter-group { display: grid; width: min(680px, 100%); grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: end; gap: 20px; }
.bag-filter-group[hidden], #collectionSort[hidden] { display: none !important; }
.bag-filter { display: grid; min-width: 118px; gap: 3px; }
.bag-filter > span {
  color: var(--color-muted);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
body[data-page="collections"] .bag-filter select,
body[data-page="collections"] #bagSizeFilter {
  width: 100%;
  min-height: 34px;
  padding: 0 26px 0 0;
  border: 0;
  border-bottom: 1px solid var(--color-border-strong);
  border-radius: 0;
  background-color: transparent;
  color: var(--color-fg);
  font-size: 13px;
}

body[data-page="collections"] .bag-family-head {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(260px, 1.25fr);
  align-items: start;
  gap: 32px;
  margin-bottom: 30px;
  text-align: left;
}
body[data-page="collections"] .bag-family-head > div { align-items: start; text-align: left; }
body[data-page="collections"] .bag-family-head .eyebrow {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
body[data-page="collections"] .bag-family-head .eyebrow::before { display: none; }
body[data-page="collections"] .bag-family-head h2 {
  margin-top: 7px;
  font-size: clamp(34px, 3vw, 46px) !important;
  line-height: 1;
  text-align: left;
}
body[data-page="collections"] .bag-family-head p:not(.eyebrow) {
  max-width: 50ch;
  justify-self: start;
  color: var(--color-muted);
  line-height: 1.7;
  text-align: left;
}

#collectionGrid .col-story--rtw {
  grid-template-columns: minmax(220px, .8fr) minmax(300px, 1.2fr);
  justify-items: start;
  align-items: start;
  gap: 12px 48px;
  margin-block: 22px;
  padding: clamp(30px, 4vw, 54px);
  text-align: left;
}
#collectionGrid .col-story--rtw blockquote {
  grid-row: 1 / span 4;
  max-width: 27ch;
  padding-top: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  text-align: left;
}
#collectionGrid .col-story--rtw blockquote::before { display: none; }
#collectionGrid .col-story--rtw h2,
#collectionGrid .col-story--rtw p { max-width: 52ch; text-align: left; }
#collectionGrid .col-story--rtw h2 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
#collectionGrid .col-story--rtw p { font-size: 14px; line-height: 1.75; }

.charm-styling__cats { display: grid; gap: 14px; margin-top: clamp(42px, 7vw, 82px); }
.charm-styling__cats-label { margin: 0; }
.charm-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.charm-related-card { position: relative; display: block; min-height: 180px; overflow: hidden; background: var(--color-surface-2); color: #fff; }
.charm-related-card::after { position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.64)); content: ""; }
.charm-related-card img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s var(--ease-out); }
.charm-related-card:hover img { transform: scale(1.035); }
.charm-related-card span { position: absolute; right: 18px; bottom: 15px; left: 18px; z-index: 1; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

body[data-page="product"] .product-story__specific { display: grid; gap: var(--space-3); }
body[data-page="product"] .product-story__fabric { display: grid; gap: 13px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--color-border); }
body[data-page="product"] .product-story__fabric .eyebrow { color: var(--color-accent-text); font-family: var(--font-serif); font-size: 16px; font-style: italic; letter-spacing: 0; text-transform: none; }
body[data-page="product"] .product-story__fabric h2 { max-width: 18ch; font-size: clamp(28px, 3vw, 40px); line-height: 1.08; }
body[data-page="product"] .product-story__fabric p:not(.eyebrow) { color: var(--color-fg); font-size: 14px; line-height: 1.75; text-align: left; }

.lead-chat-fab--whatsapp { overflow: visible; border-color: #168b45; background: #25d366; color: #fff; text-decoration: none; }
.lead-chat-fab--whatsapp:hover { border-color: #12823f; background: #20bd5a; color: #fff; }
.lead-chat-fab--whatsapp svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.lead-chat-fab__label {
  position: absolute;
  right: calc(100% + 8px);
  padding: 7px 10px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  box-shadow: 0 7px 20px rgba(0,0,0,.1);
  color: var(--color-fg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  white-space: nowrap;
}
[dir="rtl"] .lead-chat-fab__label { right: auto; left: calc(100% + 8px); }

@media (max-width: 700px) {
  body[data-page="collections"][data-collection="bags"] .collection-head h1 { justify-content: flex-start !important; font-size: 44px !important; }
  body[data-page="collections"] .toolbar__right { align-items: stretch; }
  .bag-filter-group { width: 100%; padding: 10px 0 12px; display: grid; grid-template-columns: 1.25fr .8fr 1fr; gap: 10px; }
  .bag-filter { min-width: 0; }
  body[data-page="collections"] .bag-filter select,
  body[data-page="collections"] #bagSizeFilter { min-width: 0; font-size: 12px; }
  body[data-page="collections"] .bag-family-head { display: grid; grid-template-columns: 1fr; gap: 14px; padding: 34px 20px 22px; }
  body[data-page="collections"] .bag-family-head h2 { font-size: 34px !important; }
  #collectionGrid .col-story--rtw { grid-template-columns: 1fr; gap: 14px; margin: 18px 0; padding: 34px 20px; }
  #collectionGrid .col-story--rtw blockquote { grid-row: auto; }
  .charm-related-grid { grid-template-columns: repeat(3, minmax(145px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; }
  .charm-related-card { min-height: 170px; scroll-snap-align: start; }
  .lead-chat-fab__label { display: none; }
}
