/* ============================================================
   CLOUDSKIN, design system  ·  "Alo, in warm light"
   A faithful re-skin toward aloyoga.com: calm luxury minimalism,
   warm off-white paper, near-black ink, generous whitespace,
   uppercase-tracked type, huge quiet photography, soft reveals.
   Every class hook the JS renders is preserved verbatim.
   Type: Fraunces (serif italic) + Inter (UI/body).
   ============================================================ */

:root {
  /* ---- warm neutral ramp (the brand) ---- */
  --white:   #ffffff;
  --paper:   #f7f4ef;   /* page / warm off-white, the Alo canvas */
  --oat:     #efeae1;   /* soft warm panel */
  --sand:    #e5ddd0;   /* deeper warm accent panel */
  --linen:   #ded4c5;
  --ink:     #171512;   /* near-black, text, buttons, logo */
  --graphite:#2c2925;
  --slate:   #55504a;   /* secondary text */
  --stone:   #857d72;   /* muted / meta text */
  --mist:    #b4ab9f;   /* faint labels */
  --line:    #e6e0d6;   /* hairline on light */
  --line-2:  #d8d0c3;   /* stronger hairline */
  --char:    #191713;   /* dark contrast band */

  /* ---- accent (used sparingly) ---- */
  --gold:    #857d72;   /* was brass; now muted stone, Alo has no metallic accent */
  --sale:    #9a3b2f;   /* muted brick for sale/error */
  --star:    #171512;   /* monochrome rating stars */
  --alert:   #9a3b2f;
  --accent-blue:     #cfe0ea;   /* Alo's one chromatic accent */
  --accent-blue-ink: #3e5566;

  /* ---- type ---- */
  --sans:  "Inter", "Helvetica Neue", Arial, sans-serif;   /* UI, nav, body, buttons, eyebrows, section heads, logo, wordmark */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;  /* feature headlines, ITALIC only */
  --disp:  var(--sans);                                    /* repointed: stragglers stay sans, never serif */

  /* ---- motion ---- */
  --ease:    cubic-bezier(.22,1,.36,1);    /* easeOutExpo-ish */
  --ease-io: cubic-bezier(.65,0,.35,1);
  --spring:  cubic-bezier(.34,1.4,.64,1);

  /* ---- metrics ---- */
  --announce-h: 34px;
  --header-h: 74px;
  --pad: clamp(22px, 4.4vw, 68px);
  --maxw: 1560px;
  --gridw: 1500px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; scrollbar-gutter: stable; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
  line-height: 1.62;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .35s var(--ease); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--ink); color: var(--paper); }

/* keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible, [role="button"]:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 1px;
}
.header--transparent:not(.solid) a:focus-visible, .header--transparent:not(.solid) button:focus-visible,
.hero a:focus-visible, .hero button:focus-visible,
.editorial a:focus-visible, .newsletter :focus-visible, .quotes :focus-visible {
  outline-color: #fff;
}

/* utility */
.up { text-transform: uppercase; letter-spacing: .14em; }
.visually-hidden { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }
.skip-link { position: fixed; top: -60px; left: 12px; z-index: 500; background: var(--ink); color: #fff; padding: 10px 16px; letter-spacing: .1em; text-transform: uppercase; font-size: 12px; }
.skip-link:focus { top: 12px; }
.wrap { max-width: var(--maxw); margin: 0 auto; }

/* film grain intentionally removed, Alo surfaces are clean */
.grain { display: none !important; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 11.5px;
  letter-spacing: .18em; text-transform: uppercase; line-height: 1;
  color: var(--ink); background: var(--ink); color: #fff;
  padding: 15px 30px; border: 1px solid var(--ink); border-radius: 0;
  cursor: pointer; white-space: nowrap;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .5s var(--spring);
}
.btn:hover { background: transparent; color: var(--ink); }
/* light button, for placing over photography (hero, editorial) */
.btn--light { background: transparent; color: #fff; border-color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }
/* outline, quiet ghost button */
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
/* outline buttons placed over dark photography go light */
.hero .btn--outline, .editorial .btn--outline, .quotes .btn--outline { color: #fff; border-color: rgba(255,255,255,.7); }
.hero .btn--outline:hover, .editorial .btn--outline:hover, .quotes .btn--outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
/* full-width commerce action */
.btn--full { display: flex; width: 100%; }
.btn--lg { padding: 18px 30px; font-size: 12px; letter-spacing: .2em; }

/* small underline text-link CTA */
.link-cta {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; position: relative; padding-bottom: 5px; color: var(--ink);
}
.link-cta::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(1); transform-origin: right; transition: transform .5s var(--ease); }
.link-cta:hover::after { transform: scaleX(0); transform-origin: left; }

/* ============================================================
   HEADER  (Alo: black announce strip + white/透明 sticky header)
   ============================================================ */
.announce { height: var(--announce-h); background: var(--accent-blue); color: var(--accent-blue-ink);
  display: grid; place-items: center; position: relative; z-index: 60; overflow: hidden;
  transition: background .4s var(--ease); }
.announce.over { background: transparent; }
.announce.over .announce__track p { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.55); }
.announce__track { position: relative; width: 100%; height: 100%; }
.announce__track p { position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; padding: 0 16px;
  white-space: nowrap; opacity: 0; transform: translateY(6px); font-weight: 500;
  transition: opacity .4s linear, transform .5s var(--ease); }
.announce__track p.on { opacity: 1; transform: none; }
/* Mobile: the fixed single-line bar cannot wrap, and the longest Greek promo ("Δωρεάν αποστολη για
   παραγγελιες ανω των ...") at the wide .22em tracking overflows narrow phones (clips both ends). Tighten
   tracking + size + padding at phone widths so ann.1 plus the longest currency amount fits at 320px with
   margin; ann.2/ann.3 already fit. Keeps a tracked uppercase micro-label. Desktop keeps the wide tracking. */
@media (max-width: 720px) { .announce__track p { font-size: 9px; letter-spacing: .06em; padding: 0 10px; } }

#site-header { display: contents; }
.header { position: sticky; top: 0; z-index: 100; background: var(--paper); color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: transform .5s var(--ease), background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease); }
.header.hide { transform: translateY(-102%); }
/* transparent over hero → white text, no chrome */
.header--transparent { background: transparent; color: #fff; border-bottom-color: transparent; }
.header--transparent.solid { background: var(--paper); color: var(--ink);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(23,21,18,.07);
  border-bottom-color: var(--line); }

.nav { height: var(--header-h); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 var(--pad); max-width: var(--maxw); margin: 0 auto; }
.nav__left, .nav__right { display: flex; align-items: center; gap: 26px; }
.nav__right { justify-content: flex-end; }
.nav__left-links { display: flex; gap: 22px; align-items: center; }
.nav__item { position: static; }
.nav__link { font-size: 11.5px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase;
  padding: 26px 0; display: inline-block; position: relative; white-space: nowrap; }
.nav__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 22px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.nav__item:hover .nav__link::after, .nav__link:focus-visible::after { transform: scaleX(1); }
.nav__item--accent .nav__link { color: var(--gold); }

.logo { font-family: var(--sans); font-weight: 500; letter-spacing: .42em;
  font-size: 21px; text-transform: uppercase; white-space: nowrap; justify-self: center; color: inherit; }
.logo sup { font-size: 8px; letter-spacing: 0; font-weight: 400; top: -.7em; }

.nav__icons { display: flex; align-items: center; gap: 18px; }
.nav__icons button, .nav__icons a { display: grid; place-items: center; padding: 5px;
  transition: opacity .3s var(--ease); }
.nav__icons button:hover, .nav__icons a:hover { opacity: .6; }
.nav__icons svg { width: 19px; height: 19px; }
.bag { position: relative; }
.bag__count { position: absolute; top: -3px; right: -6px; background: var(--ink); color: #fff;
  font-size: 9.5px; font-weight: 600; min-width: 16px; height: 16px; border-radius: 9px;
  display: grid; place-items: center; padding: 0 4px; letter-spacing: 0; }
.header--transparent:not(.solid) .bag__count { background: #fff; color: var(--ink); }
.bag__count.bump { animation: bump .5s var(--ease); }
@keyframes bump { 40% { transform: scale(1.7); } }
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; padding: 8px; margin-left: -11px; }
.burger span { display: block; width: 22px; height: 1.6px; background: currentColor; border-radius: 2px;
  transform-origin: center; will-change: transform; backface-visibility: hidden;
  transition: transform .46s cubic-bezier(.6,-0.02,.2,1.1); }
/* slight stagger so the two strokes flow into the X instead of snapping together */
.burger span:nth-child(2) { transition-delay: .04s; }
.burger.on span:nth-child(1) { transform: translateY(3.3px) rotate(45deg); }
.burger.on span:nth-child(2) { transform: translateY(-3.3px) rotate(-45deg); }

/* ---------- mega menu ---------- */
.mega { position: absolute; left: 0; right: 0; top: 100%; background: var(--white);
  border-top: 1px solid var(--line); box-shadow: 0 30px 50px -30px rgba(23,21,18,.25);
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  padding: 46px var(--pad) 54px; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility 0s .4s; z-index: 90; color: var(--ink); }
.nav__item:hover .mega, .nav__item:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
.mega__cols { display: flex; gap: clamp(36px, 5vw, 88px); }
.mega__col h4 { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 18px; font-weight: 600; }
.mega__col a { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 14px; font-weight: 400; color: var(--slate); }
.mega__col a:hover { color: var(--ink); }
/* "Shop by Category" set apart as its own divided block (Categories column stays as is) */
.mega__col--sep { border-left: 1px solid var(--line); padding-left: clamp(28px, 3.4vw, 60px); margin-left: clamp(4px, 1vw, 16px); }
.mega__col--sep h4 { color: var(--ink); }
.mega__col a i { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18); flex: none; }
.mega__feature { display: flex; gap: 18px; }
.mega__feature a { display: block; position: relative; overflow: hidden; width: min(280px, 24vw); }
.mega__feature img { aspect-ratio: 4/5; object-fit: cover; width: 100%; transition: transform 1s var(--ease); }
.mega__feature a:hover img { transform: scale(1.05); }
.mega__feature span { position: absolute; left: 18px; bottom: 18px; color: #fff; font-size: 11px;
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase; text-shadow: 0 2px 12px rgba(0,0,0,.5);
  border-bottom: 1px solid #fff; padding-bottom: 3px; }

/* ---------- mobile menu ---------- */
.mmenu { position: fixed; inset: var(--announce-h) 0 0; z-index: 95; background: var(--paper);
  transform: translateX(-102%); transition: transform .55s var(--ease-io); overflow-y: auto; padding: 20px var(--pad) 44px; }
.mmenu.on { transform: none; }
.mmenu__cat { border-bottom: 1px solid var(--line); }
.mmenu__cat > button { width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 15px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.mmenu__cat > button span { font-size: 20px; transition: transform .35s; font-weight: 300; }
.mmenu__cat.open > button span { transform: rotate(45deg); }
.mmenu__sub { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.mmenu__cat.open .mmenu__sub { max-height: 900px; }
.mmenu__sub a { display: block; padding: 10px 0 10px 8px; font-size: 14px; color: var(--slate); }
.mmenu__account { display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 15px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--line); }
.mmenu__account span:last-child { font-size: 18px; font-weight: 300; opacity: .6; }
.mmenu__foot { margin-top: 30px; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative;
  /* Mobile viewport stability (house rule): never let the hero resize as the mobile
     browser chrome shows/hides on scroll (the moving "shade"). vh is the ancient
     fallback; svh is the modern stable value; --app-h (set by shell.js on touch, and
     recomputed ONLY on real width/orientation change) is the bulletproof pixel lock
     for in-app WebViews that mis-treat svh as dynamic. Desktop leaves --app-h unset,
     so it falls to 100svh and stays fully responsive. */
  height: calc(100vh - var(--header-h) - var(--announce-h));
  height: calc(100svh - var(--header-h) - var(--announce-h));
  height: calc(var(--app-h, 100svh) - var(--header-h) - var(--announce-h));
  min-height: 560px;
  overflow: hidden; background: #100f0d; color: #fff; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero__slide.on { opacity: 1; }
.hero__media { position: absolute; inset: -90px 0; }  /* over-scan top+bottom so the capped scroll parallax (js/home.js, <=72px) never exposes the dark hero backdrop at an edge */
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; will-change: transform; }
/* Desktop hero focal: the built-in founders photo is PORTRAIT (2313x2560) in a landscape hero band, so
   object-fit:cover shows only a tall slice - a higher % cuts the women's heads. Frame from the TOP so
   both heads stay fully in view. !important so it wins over the inline object-position content.js applies
   from home.hero.image.pos (mobile uses its own -mobile crop at 18%). Per-owner DESKTOP reframing:
   content.js sets --hero-pos-d from home.hero.image.pos.desktop, so the owner can frame the WIDE hero
   independently of mobile; absent/empty falls back to this built-in 50% 0% default. */
@media (min-width: 721px) { .hero__media img { object-position: var(--hero-pos-d, 50% 0%) !important; } }
/* darkening scrim for wordmark legibility. Its strength is owner-controllable from the Creator
   Studio fade slider: content.js sets --hero-fade-mult on .hero from home.hero.fade (0-100% maps
   to a 0..2 multiplier, 50% == this default). When the key is ABSENT the multiplier defaults to 1,
   so the scrim renders EXACTLY as designed here (fully backward-compatible, the hero is unchanged
   for everyone until the owner sets a value). */
.hero__media::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0, calc(.26 * var(--hero-fade-mult, 1))) 0%,
    rgba(0,0,0, calc(.20 * var(--hero-fade-mult, 1))) 25%,
    rgba(0,0,0, calc(.44 * var(--hero-fade-mult, 1))) 50%,
    rgba(0,0,0, calc(.42 * var(--hero-fade-mult, 1))) 72%,
    rgba(0,0,0, calc(.56 * var(--hero-fade-mult, 1))) 100%); }
/* top veil so the transparent header/announce stay legible */
.hero::before { content: none; }
.hero__inner { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 0 var(--pad); }
/* wide enough that the big wordmark never overflows the pane (overflowing text left-aligns
   and shifts the wordmark right on wide screens); still wraps the sub copy on small screens */
.hero__pane { max-width: min(92vw, 1120px); width: 100%; }
.hero__sub { max-width: 620px; margin-left: auto; margin-right: auto; }
.hero__wordmark { font-family: var(--sans); font-weight: 300; text-transform: uppercase;
  font-size: clamp(28px,7.6vw,108px); letter-spacing: .18em; text-indent: 0; line-height: 1;
  white-space: nowrap; color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero__wordmark span { display: inline-block; opacity: 0;
  animation: letter 1.1s var(--ease) forwards; animation-delay: calc(.18s + var(--i,0)*40ms); }
@keyframes letter { to { opacity: 1; } }
.hero__sub { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none;
  font-size: clamp(1.05rem,2vw,1.6rem); letter-spacing: 0; margin-top: 20px;
  color: rgba(255,255,255,.94); }
.hero__ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
/* desktop only: sit lower, near the models' hands, independent of the wordmark/sub stack above */
@media (min-width: 821px) {
  .hero__ctas { position: absolute; left: 0; right: 0; bottom: 20vh; margin-top: 0; }
}
[data-hero-fade] { opacity: 0; transform: translateY(18px); animation: heroFade 1.1s var(--ease) forwards; }
.hero__sub[data-hero-fade]{animation-delay:1.05s}
.hero__ctas[data-hero-fade]{animation-delay:1.2s}
@keyframes heroFade { to { opacity: 1; transform: none; } }
.hero__dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 4px; }
.hero__dots button { width: 26px; height: 26px; border-radius: 50%; background: transparent; display: grid; place-items: center; }
.hero__dots button::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.5); transition: background .35s var(--ease), transform .35s var(--ease); }
.hero__dots button.on::before { background: #fff; transform: scale(1.3); }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section { padding: clamp(56px,8vw,124px) var(--pad); }
.section--tight { padding: clamp(40px,5vw,84px) var(--pad); }
.section--extend { position: relative; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--stone); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  max-width: var(--maxw); margin: 0 auto clamp(30px,3.4vw,52px); flex-wrap: wrap; }
.section__head--center { justify-content: center; text-align: center; flex-direction: column; align-items: center; gap: 10px; }
.section__head h2 { font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .2em;
  font-size: clamp(14px,1.3vw,17px); line-height: 1.3; color: var(--stone); }
.section__link { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  position: relative; padding-bottom: 4px; color: var(--slate); }
.section__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(1); transform-origin: right; transition: transform .5s var(--ease); }
.section__link:hover::after { transform: scaleX(0); transform-origin: left; }
.section__link:hover { color: var(--ink); }

/* ============================================================
   CATEGORY / SHOP TILES
   ============================================================ */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: var(--maxw); margin: 0 auto; }
.tiles--two { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }
.tile { position: relative; display: block; overflow: hidden; background: var(--oat); }
.tile img { aspect-ratio: 3/4; object-fit: cover; width: 100%; transition: transform 1.1s var(--ease); }
.tiles--two .tile img { aspect-ratio: 4/5; }
.tile:hover img { transform: scale(1.05); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.42)); }
.tile__label { position: absolute; left: 0; right: 0; bottom: 26px; z-index: 2; color: #fff;
  font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; text-transform: none;
  font-size: clamp(20px, 2vw, 30px); line-height: 1;
  display: flex; flex-direction: column; align-items: center; gap: 12px; }
.tile__label em { font-family: var(--sans); font-style: normal; font-size: 10px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; opacity: .95; border-bottom: 1px solid rgba(255,255,255,.8); padding-bottom: 3px; }

/* ============================================================
   PRODUCT CARD  (Alo anatomy, clean, quiet)
   ============================================================ */
.pcard { position: relative; display: flex; flex-direction: column; }
.pcard__media { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--oat); display: block; }
/* products cover the fixed 3/4 frame with a top-biased focal, so owner lifestyle photos fill it with
   no white letterbox; the focal keeps head + product in view (legacy square cutouts lose only a sliver
   of empty margin). Owner focal control can override per photo. */
.pcard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transition: opacity .6s var(--ease), transform 1.1s var(--ease); }
.pcard__media img.alt { opacity: 0; }
.pcard:hover .pcard__media img.alt { opacity: 1; }
.pcard:hover .pcard__media img { transform: scale(1.03); }
.pcard__badge { position: absolute; top: 14px; left: 14px; z-index: 3; background: var(--paper); color: var(--ink);
  font-size: 9.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 6px 10px; }
.pcard__badge--new { background: var(--ink); color: #fff; }
.pcard__badge--sale { background: var(--sale); color: #fff; }
.pcard__wish { position: absolute; top: 12px; right: 12px; z-index: 3; width: 32px; height: 32px; display: grid; place-items: center; }
.pcard__wish svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 1.5; transition: fill .3s, stroke .3s, transform .3s; filter: drop-shadow(0 1px 2px rgba(255,255,255,.7)); }
.pcard__wish.on svg { fill: var(--ink); stroke: var(--ink); transform: scale(1.1); }
/* quick-add drawer (slides up on hover) */
.pcard__quick { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; background: var(--paper);
  display: flex; flex-direction: column; gap: 7px; padding: 9px 10px 10px; transform: translateY(101%); transition: transform .45s var(--ease); }
.pcard__quick-label { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; text-align: center; color: var(--ink); opacity: .58; }
.pcard__quick-row { display: flex; gap: 3px; }
.pcard__media:hover .pcard__quick, .pcard__quick:focus-within { transform: none; }
.pcard__quick button { flex: 1; font-size: 11.5px; font-weight: 600; letter-spacing: .04em; padding: 10px 0; border: 1px solid var(--line-2);
  background: #fff; transition: background .25s, color .25s, border-color .25s; }
.pcard__quick button:hover:not(:disabled) { background: var(--ink); color: #fff; border-color: var(--ink); }
.pcard__quick button:disabled { color: var(--mist); text-decoration: line-through; cursor: not-allowed; }
/* touch devices have no hover: the cloud button toggles .show-quick to reveal the size picker (see shell.js) */
@media (hover: none) { .pcard.show-quick .pcard__quick { transform: none; } }
/* wishlist toggle: WHITE = not saved, INK BLACK = saved (.added below) - a plain, unmissable
   two-state signal so the icon's meaning reads without needing to already know what it does
   (Mike's call, 2026-08-03: the previous translucent-cream default read as too close to "on"
   already, especially against light studio photos). Solid #fff (not translucent) so it stays
   a clean white circle regardless of what photo sits behind it. */
.pcard__cloud { position: absolute; top: 12px; right: 12px; z-index: 3; width: 34px; height: 34px;
  display: grid; place-items: center; background: #fff; border-radius: 50%;
  opacity: 0; transform: translateY(-6px); transition: opacity .35s var(--ease), transform .35s var(--ease), background .25s; }
.pcard:hover .pcard__cloud { opacity: 1; transform: none; }
/* touch devices have no hover - keep the quick-add cloud always visible so it's tappable */
@media (hover: none) { .pcard__cloud { opacity: 1; transform: none; } }
.pcard__cloud svg { width: 20px; height: 16px; fill: none; stroke: var(--ink); stroke-width: 1.5;
  transition: transform .35s var(--spring); }
.pcard__cloud:hover { background: var(--ink); }
.pcard__cloud:hover svg { stroke: #fff; transform: scale(1.05); }
.pcard__cloud.added { background: var(--ink); }
.pcard__cloud.added svg { stroke: #fff; fill: rgba(255,255,255,.25); }
.pcard__cloud.puff svg { animation: cloudpuff .55s var(--ease); }
@keyframes cloudpuff { 0%{transform:scale(1)} 30%{transform:scale(1.4)} 55%{transform:scale(.92)} 100%{transform:scale(1)} }

.pcard__swatches { display: flex; gap: 7px; margin: 16px 0 9px; align-items: center; }
.pcard__swatches i { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18); cursor: pointer; transition: transform .2s; }
.pcard__swatches i:hover, .pcard__swatches i.on { transform: scale(1.25); box-shadow: inset 0 0 0 1px rgba(0,0,0,.2), 0 0 0 1px var(--ink); }
.pcard__swatches em { font-size: 11px; color: var(--stone); align-self: center; font-style: normal; }
.pcard__name { font-size: 13.5px; font-weight: 500; line-height: 1.4; letter-spacing: .01em; }
.pcard__meta { font-size: 12px; color: var(--stone); margin-top: 3px; letter-spacing: .02em; }
.pcard__price { font-size: 13px; font-weight: 500; margin-top: 7px; color: var(--slate); letter-spacing: .02em; }
.pcard__price s { color: var(--stone); font-weight: 400; margin-right: 8px; }
.pcard__price .sale { color: var(--sale); }

/* grids / rails */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(40px,3.4vw,60px) clamp(14px,1.6vw,26px); max-width: var(--gridw); margin: 0 auto; }
.prail { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(230px, 24vw, 320px); gap: 18px;
  overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; padding-bottom: 14px;
  scroll-padding-left: var(--pad); scroll-padding-right: var(--pad);
  margin: 0 calc(-1 * var(--pad)); padding-left: var(--pad); padding-right: var(--pad); scrollbar-width: none;
  justify-content: safe center; min-height: clamp(360px, 40vw, 460px); cursor: grab; }
.prail::-webkit-scrollbar { display: none; }
.prail .pcard { scroll-snap-align: start; }
.prail.dragging { scroll-snap-type: none; cursor: grabbing; scroll-behavior: auto; }
.prail.dragging a, .prail.dragging img { pointer-events: none; }
/* desktop: few products -> centred grid (no scroll). mobile keeps the swipe rail above. */
@media (min-width: 1024px) {
  .prail { display: flex; flex-wrap: wrap; justify-content: center; align-items: start;
    gap: clamp(18px, 2vw, 30px) clamp(16px, 1.6vw, 24px); overflow: visible;
    scroll-snap-type: none; margin: 0 auto; padding: 0; min-height: 0; cursor: auto; }
  .prail > .pcard { width: clamp(220px, 21vw, 290px); flex: 0 0 auto; }
}
.pcard { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.pcard.in { opacity: 1; transform: none; }

/* product rail carousel controls, shown only while the rail actually scrolls (mobile/tablet) */
.railwrap { position: relative; }
.railnav { position: absolute; top: 40%; transform: translateY(-50%); z-index: 6;
  width: 44px; height: 44px; border-radius: 50%; display: none; place-items: center;
  background: rgba(247,244,239,.94); color: var(--ink); cursor: pointer;
  border: 1px solid var(--line-2); box-shadow: 0 6px 20px rgba(22,17,12,.18);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: opacity .3s var(--ease), background .3s var(--ease), color .3s var(--ease), transform .2s var(--ease); }
.railwrap.has-nav .railnav { display: grid; }
.railnav--prev { left: 4px; }
.railnav--next { right: 4px; }
/* RTL: swap the arrow sides (prev sits on the right, toward the start) and mirror the
   chevron so it points the right way in Arabic. */
html.i18n-rtl .railnav--prev { left: auto; right: 4px; }
html.i18n-rtl .railnav--next { right: auto; left: 4px; }
html.i18n-rtl .railnav svg { transform: scaleX(-1); }
.railnav svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.railnav:hover:not(:disabled) { background: var(--ink); color: #fff; }
.railnav:active:not(:disabled) { transform: translateY(-50%) scale(.92); }
/* at the far end there is nothing to scroll that way, so hide that arrow entirely (fades out via the base transition) */
.railnav:disabled { opacity: 0; pointer-events: none; }
@media (min-width: 1024px) { .railwrap.has-nav .railnav { display: none; } }
/* New Arrivals carousel: horizontal scroll + prev/next arrows on ALL breakpoints */
@media (min-width: 1024px) {
  .prail.prail--carousel { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(240px, 21vw, 300px);
    gap: clamp(16px, 1.6vw, 24px); overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory;
    justify-content: start; align-items: start; min-height: clamp(380px, 40vw, 460px);
    margin: 0 calc(-1 * var(--pad)); padding: 0 var(--pad) 14px; cursor: grab; }
  .prail.prail--carousel > .pcard { width: auto; flex: none; }
  .railwrap.railwrap--carousel.has-nav .railnav { display: grid; }
}

/* ============================================================
   EDITORIAL / STATEMENT / STORY BANDS
   ============================================================ */
/* full-bleed editorial image band */
.editorial { position: relative; min-height: clamp(540px, 84vh, 900px); display: grid; align-items: center; overflow: hidden; color: #fff; }
.editorial > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
/* desktop: the campaign shot covers the band with a top-biased focal so head + subject stay in view;
   the dark fill only backstops any letterbox edge case. Mobile keeps the nicer full-bleed cover. */
@media (min-width: 1024px) {
  .editorial { background: #0a0a0a; }
  .editorial > img { object-fit: cover; object-position: 50% 35%; }
}
.editorial::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.5), rgba(0,0,0,.1) 55%, transparent); z-index: 1; }
.editorial__inner { position: relative; z-index: 2; max-width: 480px; padding: 40px var(--pad); margin-left: clamp(0px, 3vw, 48px); }
.editorial__eyebrow { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.86); font-weight: 500; }
/* editorial title matches the "Court to everywhere" band (.collbanner__title): sans, uppercase, letter-spaced */
.editorial__title { font-family: var(--sans); font-style: normal; font-weight: 300; text-transform: uppercase; letter-spacing: .2em;
  font-size: clamp(1.75rem, 3.6vw, 3rem); line-height: 1.3; margin: 20px 0 22px; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.editorial__copy { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.85; color: rgba(255,255,255,.9); max-width: 46ch; margin-bottom: 32px; font-weight: 300; }
/* desktop: widen the editorial column and keep each title line intact (WHERE PERFORMANCE / BECOMES PRESENCE) */
@media (min-width: 1024px) {
  .editorial__inner { max-width: clamp(480px, 44vw, 660px); }
  .editorial__title { white-space: normal; font-size: clamp(1.65rem, 2.6vw, 2.1rem); }
}

/* quiet typographic statement (light) */
.statement { padding: clamp(28px, 3.2vw, 48px) var(--pad); text-align: center; background: var(--paper); }
.statement--alt { background: var(--oat); }
/* The Court title adopts the editorial (Above the Everyday) title font: sans, uppercase, letter-spaced */
.statement--alt .statement__title { font-family: var(--sans); font-style: normal; font-weight: 300; text-transform: uppercase; letter-spacing: .2em; font-size: clamp(1.75rem, 3.6vw, 3rem); line-height: 1.3; }
.statement__eyebrow { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--stone); font-weight: 600; }
.statement__title { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -.01em;
  line-height: 1.12; font-size: clamp(1.6rem, 3.4vw, 2.7rem); margin: 12px 0 0; color: var(--ink); }
.statement__rule { display: block; width: 0; height: 1px; background: var(--ink); margin: 18px auto; transition: width 1.2s var(--ease) .15s; }
.statement.in .statement__rule { width: 58px; }
.statement__copy { font-size: clamp(14.5px, 1.35vw, 17.5px); line-height: 1.7; color: var(--slate); max-width: 46ch; margin: 0 auto 22px; font-weight: 300; }
.statement__link { display: inline-block; font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  position: relative; padding-bottom: 6px; color: var(--ink); }
.statement__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ink);
  transform: scaleX(1); transform-origin: right; transition: transform .55s var(--ease); }
.statement__link:hover::after { transform: scaleX(0); transform-origin: left; }

/* full-bleed collection campaign band: cover image + centred caption overlay */
.collbanner-sec { background: var(--ink); padding: 0; }
.collbanner { position: relative; display: block; width: 100%; min-height: clamp(420px, 58vh, 620px); overflow: hidden; color: #fff; }
.collbanner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 1.4s var(--ease); }
.collbanner:hover > img { transform: scale(1.03); }
.collbanner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.14) 42%, rgba(0,0,0,.52) 100%); }
.collbanner__inner { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; padding: 40px var(--pad); }
.collbanner__eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: rgba(255,255,255,.86); font-weight: 500; }
.collbanner__title { font-family: var(--sans); font-style: normal; font-weight: 300; text-transform: uppercase; letter-spacing: .2em; font-size: clamp(1.55rem, 3.5vw, 2.85rem); line-height: 1.35; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.collbanner__cta { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.75); transition: border-color .3s var(--ease); }
.collbanner:hover .collbanner__cta { border-color: #fff; }
/* desktop: mirror the editorial band - full campaign photo on the LEFT, caption on the RIGHT, on black */
@media (min-width: 1024px) {
  .collbanner { min-height: clamp(540px, 84vh, 900px); background: #0a0a0a; }
  /* photo fills the left ~54% (cover, no stretch) so it reads wide and covers the black; text on the right */
  .collbanner > img { width: 46%; height: 100%; inset: 0 auto 0 0; object-fit: cover; object-position: center; }
  .collbanner::after { display: none; }
  /* keep the caption in the right (non-photo) area so a longer title wraps instead of overlapping the image */
  .collbanner__inner { align-items: flex-end; text-align: right; padding: 40px clamp(48px, 6vw, 96px) 40px calc(46% + 48px); }
}

/* CLOUDSKIN wordmark used as the Shop band heading (in place of "The Edit / Shop") */
.shoplogo { display: inline-block; font-family: var(--sans); font-weight: 300; text-transform: uppercase;
  letter-spacing: .5em; padding-left: .5em; font-size: clamp(20px, 3.4vw, 38px); color: #f4f2ee; line-height: 1; }
.shoplogo sup { font-size: .3em; letter-spacing: 0; vertical-align: super; opacity: .6; }

/* Instagram follow CTA - large text + handle below (no faux post grid) */
/* static baby-blue / white gradient (no infinite animation: continuous repaint was stealing scroll frames + draining battery even off-screen) */
.iginsta-sec { padding: 0; background: linear-gradient(120deg, #cfe6f7, #ffffff, #cfe6f7); }
.iginsta { text-align: center; padding: clamp(12px, 1.4vw, 20px) var(--pad); }
/* Follow-on-Instagram title adopts the editorial (Above the Everyday) title font */
.iginsta__title { font-family: var(--sans); font-style: normal; font-weight: 300; text-transform: uppercase; letter-spacing: .2em; font-size: clamp(0.95rem, 1.7vw, 1.3rem); line-height: 1.3; color: var(--ink); }
.iginsta__handle { display: inline-flex; align-items: center; gap: 11px; margin-top: clamp(9px, 1.3vw, 15px); font-family: var(--sans); font-size: clamp(15px, 1.8vw, 20px); font-weight: 500; letter-spacing: .04em; color: var(--ink); }
.iginsta__handle svg { width: clamp(22px, 2.4vw, 30px); height: clamp(22px, 2.4vw, 30px); fill: none; stroke: currentColor; stroke-width: 1.6; }
.iginsta__handle span { transition: opacity .3s var(--ease); }
.iginsta__handle:hover span { opacity: .6; }

/* mobile menu open: pin the header (logo + close X) and hide the announce so nothing scrolls away */
body.menu-open .announce { display: none; }
body.menu-open .header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
body.menu-open .mmenu { top: 61px; }
/* Alo tape label */
.tape { position: absolute; z-index: 4; background: var(--white); border: 1px solid var(--line);
  font-family: var(--sans); font-weight: 600; font-size: 9.5px; line-height: 1; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink); padding: 8px 12px; }
.editorial__tape { top: clamp(24px,4vw,48px); left: var(--pad); }

/* ============================================================
   PILLARS  (materials / technology)
   ============================================================ */
.pillars { background: var(--white); padding: clamp(64px,8vw,120px) var(--pad); }
.pillars__title { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -.01em;
  font-size: clamp(2rem, 3.4vw, 3.25rem); text-align: center; margin-bottom: clamp(40px,4.5vw,64px); }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2px,0.4vw,8px); max-width: var(--maxw); margin: 0 auto; }
.pillar { position: relative; overflow: hidden; padding: 40px clamp(20px,2.4vw,40px) 46px; border-top: 1px solid var(--line); }
.pillar__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0;
  transform: scale(1.06); transition: opacity .8s var(--ease), transform 1.6s var(--ease); z-index: 0; }
.pillar::after { content: ""; position: absolute; inset: 0; z-index: 0; background: rgba(247,244,239,.72);
  opacity: 0; transition: opacity .8s var(--ease); }
.pillar:hover .pillar__bg, .pillar:focus-within .pillar__bg { opacity: 1; transform: scale(1); }
.pillar:hover::after, .pillar:focus-within::after { opacity: 1; }
.pillar > *:not(.pillar__bg) { position: relative; z-index: 1; }
.pillar__no { font-family: var(--disp); font-weight: 500; font-size: 12px; letter-spacing: .14em; color: var(--gold); }
.pillar h3 { font-family: var(--disp); font-weight: 500; text-transform: uppercase; letter-spacing: .1em; font-size: clamp(16px,1.5vw,20px); margin: 18px 0 14px; }
.pillar p { font-size: 14px; line-height: 1.75; color: var(--slate); font-weight: 300; }

/* ============================================================
   INSTAGRAM / "IN THE WILD"
   ============================================================ */
.iggrid-sec { padding-bottom: clamp(44px,5vw,72px); background: var(--paper); }
.igmasonry { columns: 2; column-gap: 14px; max-width: var(--gridw); margin: 0 auto; }
@media (min-width: 760px) { .igmasonry { columns: 4; } }
.igitem { display: block; break-inside: avoid; margin-bottom: 14px; position: relative; overflow: hidden; background: var(--oat);
  opacity: 0; transform: translateY(28px) scale(.98); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.igmasonry.in .igitem { opacity: 1; transform: none; transition-delay: calc(var(--n, 0) * .07s); }
.igitem img { width: 100%; height: auto; display: block; transition: transform 1.1s var(--ease); }
.igitem:hover img { transform: scale(1.05); }
.igtile__ig { position: absolute; right: 14px; bottom: 14px; width: 24px; height: 24px; z-index: 2; opacity: 0; transform: translateY(6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.2' cy='6.8' r='.9' fill='white' stroke='none'/%3E%3C/svg%3E");
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.55)); }
.igitem:hover .igtile__ig { opacity: 1; transform: none; }
.iggrid__cta { text-align: center; margin-top: clamp(32px,3.6vw,48px); }

/* ============================================================
   TESTIMONIALS (light, quiet)
   ============================================================ */
/* Reviews/testimonials temporarily disabled (no fake reviews). Re-enable by removing `display:none`. */
.quotes { display: none; background: var(--paper); color: var(--ink); padding: clamp(64px,9vw,120px) var(--pad) clamp(28px,3.4vw,48px); text-align: center; overflow: hidden; position: relative; }
.quotes__track { position: relative; max-width: 900px; margin: 0 auto; min-height: 176px; z-index: 1; }
.quote { position: absolute; inset: 0; opacity: 0; transform: translateY(14px); filter: blur(5px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), filter .6s var(--ease); pointer-events: none; }
.quote.on { opacity: 1; transform: none; filter: blur(0); position: relative; pointer-events: auto; }
.quote blockquote { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -.005em;
  font-size: clamp(1.6rem, 3.4vw, 2.9rem); line-height: 1.28; color: var(--ink); }
.quote figcaption { margin-top: 26px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--stone); }

/* ============================================================
   NEWSLETTER (cinematic 4K campaign band with dark overlay)
   ============================================================ */
.newsletter { background: linear-gradient(rgba(18,15,12,.60), rgba(18,15,12,.74)), var(--vlm-bg, url("../img/shoot/campaign-black-visor.jpg")) center 30% / cover no-repeat, var(--char);
  color: #fff; text-align: center; position: relative; overflow: hidden;
  min-height: clamp(460px, 56vh, 620px); display: flex; align-items: center; justify-content: center; }
.newsletter__inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.newsletter h2 { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -.005em;
  font-size: clamp(2rem, 3vw, 3rem); }
.newsletter__lead { font-size: 14.5px; color: rgba(255,255,255,.72); margin-top: 16px; max-width: 46ch; margin-inline: auto; line-height: 1.75; font-weight: 300; }
.newsletter__form { display: flex; gap: 0; margin: 30px auto 0; max-width: 460px; border-bottom: 1px solid rgba(255,255,255,.35); }
.newsletter__form input { flex: 1; background: none; border: 0; color: #fff; padding: 14px 4px; font: inherit; font-size: 14px; }
.newsletter__form input::placeholder { color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }
.newsletter__form input:focus, .newsletter__form input:focus-visible { outline: none; }
.newsletter__form button { font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; padding: 0 10px; }
.newsletter__fine { font-size: 10.5px; color: rgba(255,255,255,.5); margin-top: 18px; line-height: 1.6; }
.newsletter__fine a { text-decoration: underline; }
.newsletter__ok { color: #fff; margin-top: 18px; font-size: 14px; letter-spacing: .04em; }

/* ============================================================
   FOOTER (light, clean)
   ============================================================ */
.footer { background: var(--paper); color: var(--slate); padding: clamp(56px,6vw,88px) var(--pad) 30px; position: relative; border-top: 1px solid var(--line); }
.footer__bgs { display: none; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; max-width: var(--maxw); margin: 0 auto;
  padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.footer__brand .logo { color: var(--ink); justify-self: start; font-size: 22px; }
.footer__tag { margin-top: 18px; font-size: 13.5px; max-width: 34ch; color: var(--slate); line-height: 1.7; font-weight: 300; }
.footer__social { display: flex; gap: 12px; margin-top: 24px; }
.footer__social a { width: 38px; height: 38px; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; color: var(--slate); transition: border-color .3s, color .3s, transform .3s; }
.footer__social a:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.footer__social svg { width: 16px; height: 16px; }
.footer__ig { display: inline-block; margin-top: 20px; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--stone); border-bottom: 1px solid var(--line-2); padding-bottom: 3px; transition: color .3s, border-color .3s; }
.footer__ig:hover { color: var(--ink); border-color: var(--ink); }
.footer__mail { display: block; margin-top: 14px; font-size: 12.5px; letter-spacing: .03em; color: var(--slate); transition: color .3s; }
.footer__mail:hover { color: var(--ink); }
.footer__col h3 { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); margin-bottom: 18px; font-weight: 600; }
.footer__col a { display: block; padding: 6px 0; font-size: 13px; color: var(--slate); width: fit-content; transition: color .25s, transform .25s; }
.footer__col a:hover { color: var(--ink); transform: translateX(3px); }
.footer__legal { max-width: var(--maxw); margin: 0 auto; padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 11px; color: var(--stone); letter-spacing: .02em; }
.footer__legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal-links a:hover { color: var(--ink); }
.footer__region { display: flex; align-items: center; gap: 16px; }
.footer__totop { border-bottom: 1px solid currentColor; padding-bottom: 2px; letter-spacing: .12em; text-transform: uppercase; }

/* ============================================================
   CART DRAWER + TOAST
   ============================================================ */
.scrim { position: fixed; inset: 0; z-index: 150; background: rgba(23,21,18,.42); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); opacity: 0; transition: opacity .45s; }
.scrim.on { opacity: 1; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 160; width: min(440px, 92vw); background: var(--paper);
  display: flex; flex-direction: column; transform: translateX(102%); transition: transform .55s var(--ease-io), box-shadow .55s var(--ease-io); }
/* Shadow only while OPEN. A "closed" drawer is translated 102% of its OWN width past the edge, but
   its 70px blur radius is wider than that margin is ever guaranteed to be (worst on mobile, where
   width is a vw-based min()), so an always-on shadow bled a soft dark gradient into the visible
   right edge of EVERY page, sitting at a viewport-fixed position - which visibly shifts as the
   mobile browser chrome bar animates on scroll (flagged as "a shade moved by the browser bar",
   2026-08-01). Gating it behind .on removes the leak at any viewport width, no offset tuning needed. */
.drawer.on { transform: none; box-shadow: -30px 0 70px rgba(23,21,18,.2); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.drawer__head h2 { font-family: var(--disp); font-size: 15px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.drawer__close { padding: 6px; opacity: .55; transition: opacity .2s, transform .35s; font-size: 16px; }
.drawer__close:hover { opacity: 1; transform: rotate(90deg); }
.drawer__body { flex: 1; overflow-y: auto; padding: 18px 26px; }
.drawer__empty { text-align: center; color: var(--stone); padding: 64px 0; font-size: 14px; line-height: 1.8; }
.ditem { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.ditem img { width: 72px; height: 96px; object-fit: cover; object-position: 50% 25%; background: var(--oat); }
.ditem__info { flex: 1; }
.ditem__info h4 { font-size: 13px; font-weight: 500; }
.ditem__info p { font-size: 11.5px; color: var(--stone); margin-top: 3px; }
.ditem__row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.qty { display: inline-flex; align-items: center; gap: 14px; border: 1px solid var(--line-2); padding: 5px 12px; }
.qty button { font-size: 15px; line-height: 1; padding: 0 4px; color: var(--slate); }
.qty button:hover { color: var(--ink); }
.ditem__price { font-weight: 500; font-size: 13px; }
.drawer__foot { padding: 20px 26px 26px; border-top: 1px solid var(--line); }
.drawer__total { display: flex; justify-content: space-between; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.drawer__total strong { font-size: 16px; letter-spacing: 0; }
.drawer__note { text-align: center; font-size: 10.5px; color: var(--stone); margin-top: 14px; letter-spacing: .1em; text-transform: uppercase; }

.toast { position: fixed; bottom: 28px; left: 50%; z-index: 170; transform: translate(-50%, 90px);
  background: var(--ink); color: #fff; padding: 14px 26px; font-size: 13px; letter-spacing: .02em;
  max-width: min(92vw, 440px); text-align: center; opacity: 0; visibility: hidden;
  box-shadow: 0 18px 44px -12px rgba(23,21,18,.4); transition: transform .55s var(--ease), opacity .45s var(--ease), visibility .45s var(--ease); pointer-events: none; }
.toast.on { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.toast em { color: #fff; font-style: normal; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   WELCOME OFFER (first-visit popup, 10% off)
   ============================================================ */
body.welcome-open { overflow: hidden; }
.welcome { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility 0s .4s; }
.welcome.in { opacity: 1; visibility: visible; transition: opacity .4s var(--ease); }
.welcome__overlay { position: absolute; inset: 0; background: rgba(23,21,18,.62); }  /* solid dim, NO live backdrop-filter blur: the blur forced the WHOLE poster to re-composite every time the X spun on hover (Mike's glitch). Dim alone keeps the premium focus with zero repaint cost. */
.welcome__box { position: relative; z-index: 1; width: min(860px, 100%); max-height: 90vh; max-height: 90svh; overflow: auto;
  background: var(--paper); display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 40px 90px -20px rgba(23,21,18,.45);
  transform: translateY(18px) scale(.98); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease); }
.welcome.in .welcome__box { transform: none; opacity: 1; }
.welcome__imgs { display: block; overflow: hidden; }
.welcome__imgs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.welcome__imgs img:not(:first-child) { display: none; }
.welcome__close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 34px; height: 34px; display: grid; place-items: center;
  background: rgba(247,244,239,.85); font-size: 18px; line-height: 1; color: var(--ink); transition: transform .3s, background .3s; }
.welcome__close:hover { background: var(--paper); transform: rotate(90deg); }
.welcome__body { padding: clamp(32px,4vw,52px) clamp(28px,3.6vw,44px); display: flex; flex-direction: column; justify-content: center; text-align: center; background: #fff; }
.welcome__eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--slate); }
.welcome__title { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.005em; color: var(--ink);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); line-height: 1.15; margin-top: 10px; }
.welcome__copy { font-size: 13.5px; color: var(--slate); line-height: 1.7; margin-top: 14px; max-width: 32ch; margin-inline: auto; font-weight: 300; }
.welcome__form { display: flex; gap: 0; margin: 26px auto 0; max-width: 360px; border-bottom: 1px solid var(--line-2); width: 100%; }
.welcome__form input { flex: 1; background: none; border: 0; color: var(--ink); padding: 13px 4px; font: inherit; font-size: 14px; min-width: 0; }
.welcome__form input::placeholder { color: var(--mist); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.welcome__form input:focus:not(:focus-visible) { outline: none; }
.welcome__form button { font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 0 4px; color: var(--ink); white-space: nowrap; }
.welcome__form button:hover { color: var(--slate); }
.welcome__skip { display: block; margin: 18px auto 0; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--mist); padding: 4px; transition: color .2s; }
.welcome__skip:hover { color: var(--slate); }
.welcome__ok { font-size: 14px; color: var(--ink); margin-top: 26px; line-height: 1.6; }
/* the real discount code handed over after signup: legible, tappable, copies on click */
.welcome__okmsg { margin: 0; }
.welcome__codelabel { margin: 14px 0 8px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); }
.welcome__code { font: inherit; font-size: 17px; font-weight: 600; letter-spacing: .18em; color: var(--ink);
  background: var(--oat); border: 1px dashed var(--line); border-radius: 2px; padding: 12px 20px; cursor: pointer;
  transition: background .2s ease, border-color .2s ease; }
.welcome__code:hover { border-color: var(--stone); }
.welcome__code.is-copied { background: var(--accent-blue); border-color: var(--accent-blue-ink); color: var(--accent-blue-ink); }
@media (prefers-reduced-motion: reduce) { .welcome__code { transition: none; } }
@media (max-width: 720px) {
  /* minmax(0,1fr) (not 1fr) so the single column can shrink to the box width: a plain 1fr has
     min-width:auto and expanded to the body's min-content (driven by the 280px form), pushing the Greek
     content ~72px past the box and clipping it on the right at ~320px. Paired with .welcome__body min-width:0. */
  .welcome__box { grid-template-columns: minmax(0, 1fr); max-width: 420px; }
  /* taller banner + top-anchored crop so the model's face shows completely */
  .welcome__imgs { height: 250px; }
  .welcome__imgs img { object-position: center 12%; }
  /* single seamless photo banner, then a big WHITE text area (no dividing line) */
  .welcome__body { padding-top: clamp(28px, 6vw, 38px); padding-inline: clamp(32px, 9vw, 46px); min-width: 0; }
  /* keep the form a centred, compact block so the CLAIM button isn't hard against the right edge */
  .welcome__form { max-width: 280px; }
  .welcome__eyebrow { margin-top: 2px; }
  /* comfortable close tap target on touch screens (>=44px hit area) */
  .welcome__close { top: 8px; right: 8px; width: 44px; height: 44px; }
}

/* ============================================================
   PLP (collection)
   ============================================================ */
.crumb { max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad) 0; font-size: 11px; color: var(--stone); letter-spacing: .06em; text-transform: uppercase; }
.crumb a:hover { color: var(--ink); }
.plp__head { max-width: var(--maxw); margin: 0 auto; padding: 20px var(--pad) 10px; text-align: center; }
.plp__head h1 { font-family: var(--disp); font-weight: 400; text-transform: uppercase; letter-spacing: .1em; font-size: clamp(28px,3.6vw,48px); }
.plp__head p { color: var(--stone); font-size: 14px; margin-top: 12px; font-weight: 300; letter-spacing: .02em; }
/* PLP header - clean text title only, no photo banner */
.plp__hero { display: grid; place-items: center; text-align: center; padding: clamp(40px, 6vw, 82px) var(--pad) clamp(18px, 2.4vw, 34px); }
.plp__hero-inner { max-width: var(--maxw); }
.plp__hero-inner h1 { font-family: var(--disp); font-weight: 400; text-transform: uppercase; letter-spacing: .12em; font-size: clamp(28px, 3.4vw, 48px); color: var(--ink); line-height: 1.05; }
.plp__hero-inner p { color: var(--stone); font-size: 14px; margin-top: 12px; font-weight: 300; letter-spacing: .02em; }
.filterbar { position: sticky; top: var(--header-h); z-index: 40; background: rgba(247,244,239,.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px; padding: 12px var(--pad); max-width: 100%; margin: 22px auto 0; flex-wrap: wrap; }
/* Touch: a live backdrop-filter on a fixed/sticky bar forces a full-page re-composite
   as the mobile chrome animates; use a solid bar on every touch device (not just narrow
   widths), so tablets with hover:none never re-composite either. Desktop keeps the glass. */
@media (hover: none) { .filterbar { -webkit-backdrop-filter: none; backdrop-filter: none; background: #f7f4ef; } }
/* Same trap, same fix: .scrim + the full-viewport modal overlays are all position:fixed/
   absolute with a live blur and no touch guard, so opening the cart drawer, size guide, or
   any info/consent modal while the mobile chrome is animating forces the same re-composite
   glitch. Solid tint on touch, glass stays on desktop (hover-capable). */
@media (hover: none) {
  .scrim,
  .sizeguide__overlay,
  .infomodal__overlay,
  .i18n-modal__overlay,
  .cprefs__overlay {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
.filterbar__facets { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.facet { position: relative; }
.facet__btn { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 10px 16px; border: 1px solid var(--line-2); display: inline-flex; gap: 8px; align-items: center; transition: border-color .2s, background .2s; background: #fff; }
.facet__btn:hover, .facet.open .facet__btn { border-color: var(--ink); }
.facet__btn .caret { font-size: 8px; transition: transform .3s; }
.facet.open .facet__btn .caret { transform: rotate(180deg); }
.facet__btn .dot { background: var(--ink); color: #fff; font-size: 9.5px; border-radius: 9px; min-width: 15px; height: 15px; display: grid; place-items: center; padding: 0 4px; }
.facet__pop { position: absolute; top: calc(100% + 8px); left: 0; z-index: 20; background: #fff; border: 1px solid var(--line-2);
  box-shadow: 0 24px 48px -24px rgba(23,21,18,.28); padding: 16px; min-width: 210px; display: none; }
.facet.open .facet__pop { display: block; }
.facet__pop .opt { display: flex; align-items: center; gap: 10px; padding: 7px 4px; font-size: 13px; cursor: pointer; }
.facet__pop .opt input { accent-color: var(--ink); }
.facet__pop .opt i { width: 14px; height: 14px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18); }
.facet__swatches { display: flex; flex-wrap: wrap; gap: 10px; max-width: 210px; }
.facet__swatches .sw { width: 24px; height: 24px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18); cursor: pointer; position: relative; }
.facet__swatches .sw.on::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 11px; mix-blend-mode: difference; }
.filterbar__count { font-size: 11px; color: var(--stone); letter-spacing: .12em; text-transform: uppercase; }
.filterbar__sort { position: relative; margin-left: auto; }
.filterbar__sort select { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 10px 32px 10px 16px; border: 1px solid var(--line-2); background: #fff; -webkit-appearance: none; appearance: none; cursor: pointer; }
.filterbar__sort::after { content: "▾"; position: absolute; right: 13px; top: 50%; transform: translateY(-50%); pointer-events: none; font-size: 9px; }
.chips { max-width: var(--maxw); margin: 0 auto; padding: 16px var(--pad) 0; display: flex; gap: 8px; flex-wrap: wrap; }
.chips .chip { font-size: 11px; letter-spacing: .04em; padding: 7px 13px; background: var(--oat); display: inline-flex; gap: 7px; align-items: center; }
.chips .chip button { font-size: 12px; opacity: .55; }
.chips .chip button:hover { opacity: 1; }
.chips .clear { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; border-bottom: 1px solid; align-self: center; }
.plp__grid { padding-top: 28px; padding-bottom: clamp(56px,7vw,96px); }
.plp__empty { text-align: center; padding: 90px var(--pad); color: var(--stone); }
.filterbtn-m { display: none; }
.plp__group { max-width: var(--gridw); margin: 0 auto; }
.plp__group + .plp__group { margin-top: clamp(36px, 4vw, 64px); }
.plp__group-head { display: flex; align-items: baseline; gap: 14px; padding: 6px 0 20px; }
.plp__group-head h2 { font-family: var(--disp); font-weight: 500; text-transform: uppercase; letter-spacing: .12em; font-size: clamp(15px, 1.5vw, 20px); }
.plp__group-head span { font-size: 11.5px; color: var(--stone); letter-spacing: .06em; }

/* ============================================================
   PDP (product)
   ============================================================ */
.pdp { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px,3.4vw,64px); max-width: var(--maxw); margin: 0 auto; padding: 18px var(--pad) 0; align-items: start; }
.gallery { display: grid; grid-template-columns: 66px 1fr; gap: clamp(14px, 1.4vw, 20px); }
/* Desktop rail is a vertical column capped to the main image's height (min-height:0 lets the
   grid row be driven by the tall main image, not by the thumbs), so a product with many photos
   scrolls INSIDE the rail instead of running past the image. A soft bottom-edge fade is the
   quiet "more photos below" cue; it sits over empty space when nothing overflows, so it only
   ever shows when there is genuinely more to reach. overflow-x:clip + a clip margin keep the
   active thumb's lift shadow from being cut while still preventing a stray horizontal scrollbar. */
.gallery__thumbs { display: flex; flex-direction: column; gap: 11px; height: 0; min-height: 100%; overflow-y: auto; overflow-x: clip; overflow-clip-margin: 16px; padding-bottom: 2px; scrollbar-width: none; }
.gallery__thumbs::-webkit-scrollbar { display: none; }
/* Premium thumbnail rail. Two deliberate moves so it reads designed, not templated:
   1) a whisper --line hairline frames every thumb so white garments on a white thumb
      still have a defined edge on the cream page;
   2) the active view is lifted (soft shadow) and softly framed (half-strength ink
      hairline), a considered "current" state rather than a hard black outline box.
   Thumbnails all render at full brightness (no opacity dim on the unselected ones -
   Mike found the dim read as an unwanted grey/"shade" against the cream page, 2026-08-03);
   the border + lift above are the only active-state signal now. */
.gallery__thumbs button { position: relative; flex: 0 0 auto; border: 1px solid var(--line); overflow: hidden; aspect-ratio: 3/4; background: var(--oat); padding: 0; cursor: pointer; transition: box-shadow .4s var(--ease), border-color .35s var(--ease); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__thumbs button.on { border-color: rgba(23, 21, 18, .5); box-shadow: 0 8px 20px -10px rgba(23, 21, 18, .3); }
.gallery__main { position: relative; overflow: hidden; aspect-ratio: 3/4; max-height: 80vh; max-height: 80svh; background: var(--oat); cursor: zoom-in; }
/* MAIN image covers the fixed 3/4 frame with a top-biased focal, so owner lifestyle photos fill it
   with no white letterbox; the focal keeps head and product in view (legacy square cutouts lose only
   a sliver of empty margin). Owner focal control can override per photo. */
.gallery__main img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transition: transform .6s var(--ease); }
.gallery__main.zoom img { transform: scale(1.7); cursor: zoom-out; }
/* single-photo colourway: drop the thumbnail rail AND its reserved column, just the main image. */
.gallery--single { grid-template-columns: 1fr; }
.gallery--single .gallery__thumbs { display: none; }
.buybox { position: sticky; top: calc(var(--header-h) + 20px); }
.buybox__title { font-family: var(--disp); font-weight: 400; text-transform: uppercase; letter-spacing: .08em; font-size: clamp(22px,2.4vw,32px); line-height: 1.1; }
.buybox__rate { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 12px; color: var(--stone); }
.buybox__stars { color: var(--star); letter-spacing: 2px; }
.buybox__price { font-size: 20px; font-weight: 500; margin-top: 18px; color: var(--ink); }
.buybox__price s { color: var(--stone); font-weight: 400; margin-right: 10px; }
.buybox__price .sale { color: var(--sale); }
.buybox__installments { font-size: 12px; color: var(--stone); margin-top: 8px; }
.buybox__style { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--mist); margin-top: 10px; }
.buybox__group { margin-top: 26px; }
.buybox__label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); margin-bottom: 12px; display: flex; justify-content: space-between; }
.buybox__label strong { color: var(--ink); font-weight: 600; }
.buybox__label a { border-bottom: 1px solid; padding-bottom: 1px; color: var(--slate); }
.buybox__label a:hover { color: var(--ink); }
.opts { display: flex; gap: 10px; flex-wrap: wrap; }
.opts--sw i { width: 30px; height: 30px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18); cursor: pointer; transition: box-shadow .2s; }
.opts--sw i.on { box-shadow: inset 0 0 0 1px rgba(0,0,0,.18), 0 0 0 2px var(--ink); }
.opts button { min-width: 48px; padding: 12px 15px; border: 1px solid var(--line-2); font-size: 13px; font-weight: 500; transition: border-color .2s, background .2s, color .2s; background: #fff; }
.opts button:hover:not(:disabled) { border-color: var(--ink); }
.opts button.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.opts button:disabled { color: var(--mist); text-decoration: line-through; cursor: not-allowed; }
.buybox__add { margin-top: 28px; }
/* Long-language safety for the primary (wide, full-width) add-to-bag CTA: ease the wide
   uppercase tracking so the full localized label stays on ONE line in every language
   (Greek/Italian/Portuguese run long), and allow a clean centered wrap instead of a
   horizontal clip on the very narrowest phones. English/short languages are unaffected. */
.buybox__add .btn { letter-spacing: .1em; white-space: normal; line-height: 1.18; }
.buybox__details { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 24px; }
.buybox__desc { font-size: 15px; line-height: 1.8; color: var(--ink); font-weight: 400; letter-spacing: .006em; max-width: 60ch; }
.buybox__bullets { margin-top: 28px; display: grid; gap: 11px; }
.buybox__details .buybox__bullets { margin-top: 20px; gap: 12px; }
.buybox__bullets li { padding-left: 22px; position: relative; font-size: 14px; line-height: 1.6; color: var(--graphite); font-weight: 400; letter-spacing: .004em; }
.buybox__bullets li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border: 1px solid var(--gold); border-radius: 50%; }
.buybox__ship { margin-top: 20px; font-size: 11px; color: var(--stone); letter-spacing: .1em; text-transform: uppercase; }
/* region-aware delivery estimate ("Arrives 29-31 Aug") under the shipping promise */
.buybox__arrives { margin-top: 10px; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--slate); letter-spacing: .01em; }
.buybox__arrives svg { width: 15px; height: 15px; color: var(--accent-blue-ink); flex: none; }
.buybox__arrives strong { color: var(--ink); font-weight: 600; }
.acc { max-width: var(--maxw); margin: clamp(44px,5vw,72px) auto 0; padding: 0 var(--pad); }
.acc__item { border-top: 1px solid var(--line); }
.acc__item:last-child { border-bottom: 1px solid var(--line); }
.acc__btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.acc__btn span { font-size: 20px; transition: transform .35s; font-weight: 300; }
.acc__item.open .acc__btn span { transform: rotate(45deg); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc__item.open .acc__panel { max-height: 640px; }
.acc__panel div { padding: 2px 0 26px; font-size: 14.5px; color: var(--slate); line-height: 1.8; font-weight: 300; letter-spacing: .006em; max-width: 62ch; }
.acc__panel p { margin: 0; }
.acc__panel p strong { font-weight: 500; color: var(--graphite); }
.acc__list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 9px; }
.acc__list li { position: relative; padding-left: 18px; font-size: 14px; color: var(--slate); line-height: 1.7; font-weight: 300; letter-spacing: .004em; }
.acc__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 4px; height: 4px; border-radius: 50%; background: var(--stone); }

/* ---- PDP lower layout: Complete the Look (left) + Details accordion (right) ---- */
.pdp-extra { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 5vw, 72px);
  max-width: var(--maxw); margin: clamp(46px, 6vw, 84px) auto 0; padding: 0 var(--pad) clamp(48px, 6vw, 90px); }
@media (min-width: 1100px) {
  .pdp-extra { grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 4.5vw, 88px); align-items: start; }
}
.pdp-extra__head { margin-bottom: clamp(18px, 2.2vw, 30px); }
.pdp-extra__head h2 { font-family: var(--disp); font-weight: 600; text-transform: uppercase;
  letter-spacing: .2em; font-size: clamp(14px, 1.3vw, 17px); color: var(--stone); }
.pdp-look__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(10px, 1.4vw, 20px); }
@media (max-width: 560px) { .pdp-look__grid { grid-template-columns: repeat(2, 1fr); } }
/* Complete-the-Look cards share the same cover fit as every product card (the box is already
   aspect-ratio:3/4); this override only pins the focal to the top so paired garments frame from
   the shoulders rather than the mid-body. No CLS - it changes only how the image paints inside
   the fixed box. */
.pdp-look__grid .pcard__media img { object-fit: cover; object-position: top center; }
/* accordion fills the right column (reset its standalone max-width / margins / padding) */
.pdp-details .acc { max-width: none; margin: 0; padding: 0; }

/* ============================================================
   SIZE GUIDE MODAL
   ============================================================ */
.sizeguide { position: fixed; inset: 0; z-index: 320; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility 0s .35s; }
.sizeguide.on { opacity: 1; visibility: visible; transition: opacity .35s var(--ease); }
.sizeguide__overlay { position: absolute; inset: 0; background: rgba(23,21,18,.5); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.sizeguide__box { position: relative; z-index: 1; width: min(560px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--paper); padding: clamp(28px, 4vw, 46px); box-shadow: 0 40px 90px -20px rgba(23,21,18,.45);
  transform: translateY(14px) scale(.99); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease); }
.sizeguide.on .sizeguide__box { transform: none; opacity: 1; }
.sizeguide__close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; display: grid; place-items: center;
  background: none; font-size: 20px; line-height: 1; color: var(--ink); cursor: pointer; transition: transform .3s var(--ease); }
.sizeguide__close:hover { transform: rotate(90deg); }
.sizeguide__eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--stone); }
.sizeguide__title { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em;
  font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--ink); margin-top: 6px; line-height: 1.05; }
.sizeguide__intro { font-size: 13.5px; color: var(--slate); line-height: 1.7; margin-top: 12px; font-weight: 300; max-width: 50ch; }
.sizeguide__controls { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin: 26px 0 8px; flex-wrap: wrap; }
.sizeguide__tabs, .sizeguide__units { display: inline-flex; border: 1px solid var(--line-2); }
.sizeguide__tab, .sizeguide__unit { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 9px 16px; color: var(--slate); background: none; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease); }
.sizeguide__tab + .sizeguide__tab, .sizeguide__unit + .sizeguide__unit { border-left: 1px solid var(--line-2); }
.sizeguide__tab.on, .sizeguide__unit.on { background: var(--ink); color: #fff; }
.sizeguide__tablewrap { overflow-x: auto; margin-top: 10px; }
.sizeguide__table { width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: 13px; }
.sizeguide__table th, .sizeguide__table td { padding: 12px 8px; text-align: center; border-bottom: 1px solid var(--line); white-space: nowrap; }
.sizeguide__table th { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }
.sizeguide__table td { color: var(--slate); }
.sizeguide__table .sg-size { font-weight: 600; color: var(--ink); letter-spacing: .04em; }
.sizeguide__table tbody tr:last-child td { border-bottom: 0; }
.sizeguide__measure { margin-top: 24px; border-top: 1px solid var(--line); padding-top: 20px; }
.sizeguide__measure h3 { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.sizeguide__measure ul { display: grid; gap: 8px; }
.sizeguide__measure li { font-size: 13px; color: var(--slate); line-height: 1.6; font-weight: 300; }
.sizeguide__measure strong { color: var(--ink); font-weight: 600; }
@media (max-width: 460px) {
  .sizeguide__box { padding: 30px 20px 34px; }
  .sizeguide__table th, .sizeguide__table td { padding: 11px 5px; }
  .sizeguide__intro { font-size: 13px; }
}

/* ============================================================
   ABOUT / OUR STORY page
   ============================================================ */
.about-hero { position: relative; min-height: clamp(460px, 82vh, 820px); display: grid; place-items: center;
  text-align: center; overflow: hidden; color: #fff; }
.about-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.about-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.22) 42%, rgba(0,0,0,.5)); }
.about-hero__inner { position: relative; z-index: 2; padding: 0 var(--pad); }
.about-hero__logo { display: block; width: clamp(150px, 22vw, 240px); height: auto; margin: 0 auto clamp(16px, 2.4vw, 28px);
  filter: drop-shadow(0 2px 14px rgba(0,0,0,.45)); }
.about-hero__eyebrow { font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: rgba(255,255,255,.85); font-weight: 500; }
.about-hero__title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(3rem, 8vw, 6rem); line-height: 1; margin-top: 14px; text-shadow: 0 2px 34px rgba(0,0,0,.4); }
.about-story { padding: clamp(70px, 10vw, 150px) var(--pad); max-width: 800px; margin: 0 auto; text-align: center; }
.about-story__eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--stone); font-weight: 600; }
.about-story__lead { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.7rem, 3.6vw, 2.75rem); line-height: 1.16; color: var(--ink); margin: 16px auto 34px; max-width: 20ch; }
.about-story p:not(.about-story__eyebrow):not(.about-story__lead) { font-size: clamp(15px, 1.35vw, 17px); line-height: 1.95; color: var(--slate); font-weight: 300; margin: 0 auto 18px; max-width: 64ch; }
/* Founders' Edit ethos - light two-column (image + text) to match the rest of the page */
.about-ethos { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(32px, 5vw, 80px);
  max-width: var(--maxw); margin: 0 auto; padding: clamp(50px, 7vw, 100px) var(--pad); }
.about-ethos__media { overflow: hidden; background: var(--oat); }
.about-ethos__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 22%; display: block; transition: transform 1.2s var(--ease); }
.about-ethos__media:hover img { transform: scale(1.04); }
.about-ethos__eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--stone); font-weight: 600; }
.about-ethos__title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.04; color: var(--ink); margin: 16px 0 22px; }
.about-ethos__copy { font-size: clamp(15px, 1.35vw, 17px); line-height: 1.9; color: var(--slate); font-weight: 300; margin-bottom: 30px; max-width: 48ch; }
@media (max-width: 800px) { .about-ethos { grid-template-columns: 1fr; gap: 26px; padding-top: clamp(30px, 6vw, 50px); } .about-ethos__media img { aspect-ratio: 3/4; } }

.about-campaign { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 1vw, 16px); max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(64px, 9vw, 120px); }
.about-campaign figure { position: relative; overflow: hidden; margin: 0; background: var(--oat); }
.about-campaign img { aspect-ratio: 3/4; object-fit: cover; width: 100%; transition: transform 1.2s var(--ease); }
.about-campaign figure:hover img { transform: scale(1.05); }
.about-campaign figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.5)); }
.about-campaign figcaption { position: absolute; left: 16px; bottom: 16px; z-index: 2; color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
@media (max-width: 700px) { .about-campaign { grid-template-columns: 1fr; } }
.about-close { text-align: center; padding: clamp(70px, 10vw, 140px) var(--pad); background: var(--oat); }
.about-close__title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.9rem, 3.6vw, 2.9rem); color: var(--ink); margin-bottom: 28px; }
/* The hero photo is a wide side-by-side portrait of two models. On narrow screens a tall hero
   crops the faces off the sides, so switch to a shorter landscape-shaped band that keeps both
   faces fully in frame on every device. */
@media (max-width: 900px) {
  .about-hero { min-height: 0; height: min(96vw, 66vh); }
  .about-hero > img { object-position: center 38%; }
  .about-hero__title { font-size: clamp(2.6rem, 12vw, 4rem); }
}

/* ============================================================
   INFO / LEGAL MODAL (Returns, Privacy, Terms, FAQ, Size Guide, Contact)
   ============================================================ */
.infomodal { position: fixed; inset: 0; z-index: 320; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility 0s .35s; }
.infomodal.on { opacity: 1; visibility: visible; transition: opacity .35s var(--ease); }
.infomodal__overlay { position: absolute; inset: 0; background: rgba(23,21,18,.5); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.infomodal__box { position: relative; z-index: 1; width: min(680px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--paper); padding: clamp(30px, 4vw, 54px); box-shadow: 0 40px 90px -20px rgba(23,21,18,.45);
  transform: translateY(14px) scale(.99); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease); }
.infomodal.on .infomodal__box { transform: none; opacity: 1; }
.infomodal__close { position: sticky; top: 0; float: right; margin: -8px -8px 0 0; width: 40px; height: 40px; display: grid; place-items: center;
  background: none; font-size: 22px; line-height: 1; color: var(--ink); cursor: pointer; transition: transform .3s var(--ease); z-index: 2; }
.infomodal__close:hover { transform: rotate(90deg); }
.infomodal__title { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem); color: var(--ink); line-height: 1.05; margin-bottom: 22px; }
.infomodal__body { font-size: 14.5px; line-height: 1.85; color: var(--slate); font-weight: 300; letter-spacing: .004em; }
.infomodal__body h3 { font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .14em;
  font-size: 12px; color: var(--ink); margin: 26px 0 10px; }
.infomodal__body h3:first-child { margin-top: 0; }
.infomodal__body p { margin: 0 0 12px; }
.infomodal__body a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.infomodal__body a:hover { color: var(--slate); }
.infomodal__body ul { margin: 0 0 14px; padding: 0; list-style: none; display: grid; gap: 7px; }
.infomodal__body li { position: relative; padding-left: 18px; }
.infomodal__body li::before { content: ""; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.infomodal__body strong { color: var(--graphite); font-weight: 500; }
.legal__meta { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); }
.legal__sign { font-family: var(--serif); font-style: italic; color: var(--ink); margin-top: 20px; }
.legal__tablewrap { overflow-x: auto; margin: 8px 0 16px; }
.legal__table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.legal__table th, .legal__table td { padding: 10px 8px; text-align: center; border-bottom: 1px solid var(--line); white-space: nowrap; }
.legal__table th { font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); }
.legal__table td { color: var(--slate); }

/* footer "Be First to Know" newsletter */
.footer__nl { margin: 26px 0 6px; max-width: 340px; }
.footer__nl h3 { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); margin-bottom: 10px; font-weight: 600; }
.footer__nl-copy { font-size: 12.5px; color: var(--slate); line-height: 1.6; font-weight: 300; margin-bottom: 14px; }
.footer__nl-row { display: flex; border-bottom: 1px solid var(--line-2); }
.footer__nl-row input { flex: 1; background: none; border: 0; padding: 10px 4px; font: inherit; font-size: 13.5px; color: var(--ink); min-width: 0; }
.footer__nl-row input::placeholder { color: var(--mist); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.footer__nl-row input:focus { outline: none; }
.footer__nl-row button { padding: 0 8px; font-size: 16px; color: var(--ink); }
.footer__nl-row button:hover { opacity: .6; }
.footer__nl-ok { font-size: 12.5px; color: var(--ink); margin-top: 10px; }

/* reviews */
.reviews { max-width: var(--maxw); margin: clamp(52px,6vw,88px) auto 0; }
.reviews__top { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: center; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.reviews__avg { text-align: center; }
.reviews__avg strong { font-family: var(--disp); font-size: 54px; font-weight: 500; line-height: 1; }
.reviews__avg .stars { color: var(--star); letter-spacing: 3px; font-size: 18px; margin-top: 10px; }
.reviews__avg span { display: block; font-size: 11.5px; color: var(--stone); margin-top: 10px; letter-spacing: .06em; text-transform: uppercase; }
.reviews__bars { display: grid; gap: 7px; }
.rbar { display: grid; grid-template-columns: 52px 1fr 42px; gap: 12px; align-items: center; font-size: 11.5px; color: var(--stone); }
.rbar__track { height: 5px; background: var(--oat); overflow: hidden; }
.rbar__fill { height: 100%; background: var(--ink); }
.reviews__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 30px; }
.review { border: 1px solid var(--line); padding: 26px; background: var(--white); }
.review__stars { color: var(--star); letter-spacing: 2px; }
.review h4 { font-size: 14px; font-weight: 600; margin: 10px 0 8px; }
.review p { font-size: 13.5px; color: var(--slate); line-height: 1.7; font-weight: 300; }
.review footer { margin-top: 14px; font-size: 11px; color: var(--stone); letter-spacing: .08em; text-transform: uppercase; }

/* sticky add-to-bag. box-shadow lives ONLY on .on (same fix pattern as .drawer.on above): at
   102% translateY this bar's own box clears the viewport by just ~1-2px on a typical mobile
   height (67px tall * 2%), nowhere near the ~20px+ the shadow's blur(24)/spread(-10) reaches
   above the box - so an unconditional shadow bled a soft horizontal line into view at the very
   bottom of the screen even while "closed", confirmed live via getBoundingClientRect() 2026-08-03. */
.stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: var(--paper); border-top: 1px solid var(--line);
  transform: translateY(102%); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.stickybar.on { transform: none; box-shadow: 0 -8px 24px -10px rgba(23,21,18,0.12); }
.stickybar__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 18px; padding: 12px var(--pad); }
.stickybar img { width: 44px; height: 58px; object-fit: cover; object-position: 50% 25%; background: var(--oat); }
.stickybar__info { flex: 1; }
.stickybar__info h4 { font-size: 13px; font-weight: 500; }
.stickybar__info p { font-size: 12px; color: var(--stone); }
.stickybar select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding: 12px 40px 12px 16px; min-width: 108px;
  border: 1px solid var(--ink); border-radius: 2px;
  font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); cursor: pointer;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none' stroke='%23171512' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.2l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 10px 7px;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.stickybar select:hover { background-color: var(--oat); }
.stickybar select:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(23,21,18,.14); }
.stickybar select option { text-transform: none; letter-spacing: normal; font-weight: 400; color: var(--ink); }
.stickybar select option:disabled { color: var(--stone); }
.stickybar .btn { padding: 13px 26px; }
/* Sticky add-to-bag label adapts to the button width: desktop is roomy so it keeps the full
   worded CTA; the narrow mobile bar (134px) shows the short native noun so no language clips. */
#sbAdd .sbAdd__short { display: none; }
/* mobile: keep the sticky add-to-bag fully on-screen (no ADD TO BAG cut-off) */
@media (max-width:600px){
  #stickybar .stickybar__inner{ gap:10px; padding:10px 14px; align-items:center; }
  #stickybar #sbImg{ display:none; }
  #stickybar .stickybar__info{ flex:1 1 auto; min-width:0; }
  #stickybar .stickybar__info h4,
  #stickybar .stickybar__info p{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:100%; }
  #stickybar #sbSize{ flex:0 0 auto; width:96px; height:46px; }
  #stickybar #sbAdd{ flex:0 0 auto; width:134px; min-width:0; height:46px; padding-left:0; padding-right:0; }
  #sbAdd .sbAdd__full{ display: none; }
  #sbAdd .sbAdd__short{ display: inline; }
}

/* ============================================================
   REVEALS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease) var(--d,0s), transform .9s var(--ease) var(--d,0s); }
.reveal.in { opacity: 1; transform: none; }
.reveal-img { position: relative; overflow: hidden; }
.reveal-img > img { transform: scale(1.1); transition: transform 1.4s var(--ease); }
.reveal-img::after { content: ""; position: absolute; inset: 0; background: var(--paper); transform: translateY(0); transition: transform 1.1s var(--ease-io); z-index: 1; }
.reveal-img.in::after { transform: translateY(-101%); }
.reveal-img.in > img { transform: scale(1); }
[data-parallax] { will-change: transform; }
[data-magnetic] { will-change: transform; }

/* page enter/exit fade */
.page-fade { position: fixed; inset: 0; z-index: 900; background: var(--paper); pointer-events: none; opacity: 0; transition: opacity .5s var(--ease); }
.page-fade.in { opacity: 1; pointer-events: all; }
main { animation: pageIn .8s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* below-hero perf.
   NOTE: content-visibility:auto was removed here. With a fixed contain-intrinsic-size
   of 720px that did not match the real section/footer heights, the page total height
   swung ~1300px as sections near the viewport boundary virtualized and un-virtualized
   while scrolling. On mobile that produced a repeated flicker/glitch when scrolling up
   from the footer (the height jump moved the boundary, which re-triggered the flip).
   The page is short (~8 sections, images already lazy), so the render-skip gain was
   marginal versus the layout instability it caused. */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .igmasonry { columns: 3; }
}
@media (max-width: 1080px) {
  /* collapse the top-level links into the slide-out menu before they can crowd the
     centred logo; keep burger + centred logo + icons with equal side tracks */
  .nav { grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); }
  .nav__left, .nav__right { min-width: 0; }
  .nav__left-links { display: none; }
  .nav__right .nav__link { display: none; }
  .burger { display: flex; }
  .mega { display: none; }
}
@media (max-width: 1000px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: clamp(32px, 5vw, 52px) clamp(14px, 2.4vw, 26px); }
  .pdp { grid-template-columns: 1fr; }
  .buybox { position: static; }
  .gallery { grid-template-columns: 1fr; gap: 0; }
  /* Thumbs move below the main image as a horizontal strip. When there are more photos than
     fit, the next thumbnail bleeds under a soft right-edge fade so it reads instantly as
     "swipe for more" (a peek, never a flush cut-off). The 30px right padding lets the final
     thumb clear the fade once you reach the end, so it never leaves a photo permanently dimmed.
     padding-bottom keeps the active lift shadow from being clipped by the scroll container. */
  .gallery__thumbs { flex-direction: row; order: 2; height: auto; min-height: 0; overflow-x: auto; overflow-y: hidden; gap: 9px; margin-top: 12px; padding: 2px 30px 12px 1px; scrollbar-width: none; scroll-padding-right: 30px; }
  .gallery__thumbs button { width: 60px; flex: none; }
  .reviews__list { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 820px) {
  :root { --header-h: 60px; }
  .hero__wordmark { letter-spacing: .14em; text-indent: 0; }
  .logo { font-size: 16px; letter-spacing: .22em; }
  .editorial { min-height: clamp(460px, 70vh, 720px); }
  .editorial::after { background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%); }
  .editorial__inner { margin-left: 0; max-width: 100%; text-align: start; }
  .editorial__title br { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .reviews__top { grid-template-columns: 1fr; gap: 22px; }
  /* mobile: show the Size/Color facets directly (no separate filter button); sort drops to its own row */
  .filterbar__count { margin-left: auto; }
  .filterbar__sort { margin-left: 0; flex-basis: 100%; }
  .filterbar__sort select { width: 100%; }
  /* mobile perf: parallax is disabled on touch (js/home.js), so a promoted hero layer is pure waste */
  .hero__media img { will-change: auto; }
  /* mobile perf: a sticky backdrop-filter re-blurs every scroll frame; use a solid opaque bar instead */
  .filterbar { background: #f7f4ef; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .section__head { align-items: flex-start; }
  .igmasonry { columns: 2; }
}
/* Header safety net: on very narrow phones keep the centred wordmark compact so the
   burger + globe (left) and Search + Bag (right) clusters always clear it, in every
   language. Scoped to .header so the larger footer wordmark is untouched. */
@media (max-width: 400px) {
  .header .logo { font-size: 15px; letter-spacing: .14em; }
}
@media (max-width: 560px) {
  .tiles { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tiles--two { grid-template-columns: 1fr; }
  .tiles--two .tile img { aspect-ratio: 3/4; }
  .pgrid { grid-template-columns: 1fr 1fr; gap: 30px 12px; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
  .hero__scroll { display: none; }
  .statement__title br { display: none; }
  /* one prominent product card + a clear peek of the next, so the swipe is obvious */
  .prail { grid-auto-columns: min(78vw, 300px); }
  /* tighten the header side clusters on phones: the desktop 26px gap makes the
     burger + globe cluster wider than its grid track on narrow screens, which
     pushed the globe onto the logo (worst in RTL). A smaller gap keeps every
     header control inside its lane, in every language. */
  .nav__left, .nav__right { gap: 12px; }
  /* keep the phone header cluster narrow (Search + Bag) so the centered logo never
     collides with it; Account stays available on desktop and in the slide-out menu.
     Target the login link by href, NOT its aria-label - the label is translated in
     every non-English language, which used to leave Account visible and push the
     Search icon over the logo (worst in RTL). href is language-independent.
     Use ends-with ($=) so it matches both the root pages' relative "login.html"
     AND the /blog subpath pages' absolute "/login.html" (an exact = match missed
     the latter, leaving Account visible on the blog and colliding with the logo). */
  .nav__icons a[href$="login.html"], .nav__icons a[href$="account.html"] { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__wordmark span, .hero__scroll::after { animation: none !important; }
  [data-hero-fade] { animation-duration: .01s !important; animation-delay: 0s !important; }
  .reveal, .reveal-img::after, .reveal-img > img, .pcard { transition-duration: .01s !important; }
  [data-parallax] { transform: none !important; }
  .hero__wordmark span { opacity: 1; transform: none; filter: none; }
  main { animation: none !important; }
  .quote { transition-duration: .01s !important; }
  .igitem { opacity: 1 !important; transform: none !important; transition: none !important; }
  .iginsta-sec { animation: none !important; background-position: 0% 50%; }
}

/* ============================================================
   CLOUD QUICK-ADD, instant "removed" state
   On un-add, .unadded forces the resting (white) look immediately,
   overriding :hover so the cloud turns white the instant you click.
   Cleared on mouseleave so the hover preview returns next time.
   ============================================================ */
.pcard__cloud.unadded { background: #fff !important; transition: none; }
.pcard__cloud.unadded svg { stroke: var(--ink) !important; fill: none !important; }

/* Shop by Category, 3-tile taxonomy (Tops · Bottoms · Dresses) */
.tiles--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 560px) { .tiles--three { grid-template-columns: 1fr; } }

/* ============================================================
   INTERNATIONALIZATION - per-language type · RTL · switcher
   The CLOUDSKIN wordmark + logo are pinned to the Latin brand
   face and forced LTR, so they never change in any language.
   ============================================================ */

/* Every language uses the BRAND fonts (Inter + Fraunces), same as English.
   Latin (es/it/fr/de/nl/pt/sv) is fully covered; Greek & Cyrillic (el/ru) use
   Inter for body and fall back to Georgia for the few Fraunces-italic headings
   (Fraunces has no Greek/Cyrillic). Only Arabic needs a dedicated Arabic face. */
html[lang="ar"] {
  --sans: "IBM Plex Sans Arabic", "Inter", sans-serif;
  --serif: "Noto Naskh Arabic", "Fraunces", serif;
}

/* PROTECT the brand wordmark + logo: always the Latin brand face, always LTR */
.logo, .hero__wordmark, .hero__wordmark span {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif !important;
  direction: ltr !important;
  unicode-bidi: isolate;
}

/* non-Latin scripts: kill Latin letter-spacing + uppercasing (they break Arabic joins,
   Devanagari conjuncts and CJK) everywhere EXCEPT the protected brand marks */
html.i18n-nolatin *:not(.logo):not(.hero__wordmark):not(.hero__wordmark span) {
  letter-spacing: normal !important;
  text-transform: none !important;
}
html.i18n-nolatin body { line-height: 1.7; }

/* ---------- RTL (Arabic · Urdu · Persian) ---------- */
html.i18n-rtl body { text-align: right; }
html.i18n-rtl .crumb { text-align: right; }
html.i18n-rtl .pcard__cloud { right: auto; left: 12px; }
html.i18n-rtl .pcard__badge { left: auto; right: 14px; }
html.i18n-rtl .about-campaign figcaption { left: auto; right: 16px; }
html.i18n-rtl .welcome__close { right: auto; left: 14px; }
html.i18n-rtl .sizeguide__close { right: auto; left: 12px; }
html.i18n-rtl .infomodal__close { float: left; margin: -8px 0 0 -8px; }
html.i18n-rtl .facet__pop { left: auto; right: 0; }
html.i18n-rtl .filterbar__sort { margin-left: 0; margin-right: auto; }
html.i18n-rtl .filterbar__sort select { padding: 10px 16px 10px 32px; }
html.i18n-rtl .filterbar__sort::after { right: auto; left: 13px; }
html.i18n-rtl .footer__col a:hover { transform: translateX(-3px); }
html.i18n-rtl .editorial .tape { left: auto !important; right: var(--pad); }
/* RTL: mirror the editorial split so the text never lands on the photo subject */
@media (min-width: 1024px) {
  html.i18n-rtl .editorial > img { object-position: 0% 35%; }   /* mirror the LTR top-biased cover, biased away from the RTL caption panel */
  html.i18n-rtl .editorial::after { background: linear-gradient(270deg, rgba(0,0,0,.5), rgba(0,0,0,.1) 55%, transparent); }
  html.i18n-rtl .editorial__inner { margin-left: 0; margin-right: clamp(0px, 3vw, 48px); }
}
/* cart drawer slides in from the LEFT in RTL (closed state only, so .on → transform:none still wins) */
html.i18n-rtl .drawer { right: auto; left: 0; }
html.i18n-rtl .drawer.on { box-shadow: 30px 0 70px rgba(23,21,18,.2); }
html.i18n-rtl .drawer:not(.on) { transform: translateX(-102%); }
/* mobile menu slides from the RIGHT in RTL */
html.i18n-rtl .mmenu:not(.on) { transform: translateX(102%); }

/* ---------- language / currency switcher ---------- */
.i18n-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer; color: inherit; padding: 6px 6px; }
.i18n-btn svg { width: 19px; height: 19px; }
.i18n-btn__t { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .08em; }
@media (max-width: 620px) { .i18n-btn__t { display: none; } }

.i18n-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.i18n-modal.on { display: block; }
.i18n-modal__overlay { position: absolute; inset: 0; background: rgba(23,21,18,.5); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.i18n-modal__box { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(560px, 92vw); max-height: 86vh; overflow: auto; background: var(--paper); padding: clamp(24px,4vw,40px); box-shadow: 0 40px 120px rgba(23,21,18,.35); }
.i18n-modal__close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; background: none; border: 0; font-size: 22px; line-height: 1; cursor: pointer; color: var(--ink); }
html.i18n-rtl .i18n-modal__close { right: auto; left: 12px; }
.i18n-modal__h { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); margin: 4px 0 12px; }
.i18n-grid { display: grid; gap: 8px; margin-bottom: 26px; }
.i18n-grid--langs { grid-template-columns: repeat(3, 1fr); }
.i18n-grid--curs { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 520px) { .i18n-grid--langs { grid-template-columns: repeat(2,1fr); } .i18n-grid--curs { grid-template-columns: repeat(3,1fr); } }
.i18n-opt { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; padding: 12px 14px; background: var(--white); border: 1px solid var(--line-2); cursor: pointer; text-align: left; transition: border-color .2s, background .2s, color .2s; }
.i18n-opt:hover { border-color: var(--ink); }
.i18n-opt.on { border-color: var(--ink); background: var(--ink); color: var(--white); }
.i18n-opt__native { font-size: 15px; font-weight: 600; }
.i18n-opt__label { font-size: 11px; color: var(--stone); }
.i18n-opt.on .i18n-opt__label { color: rgba(255,255,255,.72); }
.i18n-opt--cur { flex-direction: row; align-items: center; justify-content: space-between; }
html[dir="rtl"] .i18n-opt { text-align: right; align-items: flex-end; }

/* ============================================================
   SIZE GUIDE - General guide (Women + Men) with figures + logo
   ============================================================ */
.sizeguide { --sg-fig: #7d7264; --sg-line: #b3a898; }
.sg-head { text-align: center; margin-bottom: clamp(18px, 3vw, 30px); }
.sg-logo { height: 20px; width: auto; filter: brightness(0); opacity: .5; margin: 0 auto 16px; display: block; }
html.i18n-rtl .sg-head, html.i18n-rtl .sg-block__title, html.i18n-rtl .sg-measure__h, html.i18n-rtl .sg-foot__col { text-align: right; }
.sg-block { margin: clamp(22px, 4vw, 42px) 0; }
.sg-block__title { font-family: var(--sans); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: 13px; color: var(--ink); margin-bottom: 16px; }
.sg-block__grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(22px, 4vw, 54px); align-items: start; }
.sg-tablewrap { overflow-x: auto; }
.sg-rowlabel { text-align: left; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; font-size: 10.5px; color: var(--slate); white-space: nowrap; }
html.i18n-rtl .sg-rowlabel { text-align: right; }
.sg-measure__h { font-family: var(--sans); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: 12px; color: var(--ink); margin-bottom: 16px; }
.sg-measure__row { display: flex; gap: 18px; align-items: center; }
.sg-figure { flex: 0 0 104px; }
.sg-figure .sg-svg { width: 104px; height: auto; display: block; }
.sg-measure__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.sg-measure__list li { display: flex; flex-direction: column; gap: 3px; }
.sg-measure__list strong { font-family: var(--sans); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: 10.5px; color: var(--ink); }
.sg-measure__list span { font-size: 12px; line-height: 1.5; color: var(--slate); }
.sg-foot { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(22px, 4vw, 54px); margin-top: clamp(20px, 3vw, 36px); padding-top: clamp(18px, 3vw, 28px); border-top: 1px solid var(--line); }
.sg-foot__col h4 { font-family: var(--sans); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: 12px; color: var(--ink); margin-bottom: 12px; }
.sg-foot__col p { font-size: 12px; line-height: 1.7; color: var(--slate); margin-bottom: 8px; }
.sg-foot__mail { font-size: 13px; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.sg-foot__help { margin-top: 8px; }
html.i18n-nolatin .sg-block__title, html.i18n-nolatin .sg-measure__h, html.i18n-nolatin .sg-measure__list strong, html.i18n-nolatin .sg-foot__col h4, html.i18n-nolatin .sg-rowlabel { letter-spacing: normal; }
@media (max-width: 640px) {
  .sg-block__grid, .sg-foot { grid-template-columns: 1fr; gap: 22px; }
  .sg-measure { max-width: 340px; }
}

/* ============================================================
   COMMERCE ADD-ONS (2026-07-11): shipping/duties in bag,
   Added-to-Bag popup + Pairs Great With, Wishlist, Search
   ============================================================ */

/* ---- header wishlist heart (desktop; hidden on phones like Account) ---- */
.wishbtn { position: relative; }
.wishbtn__c { position: absolute; top: -4px; right: -6px; min-width: 15px; height: 15px; padding: 0 3px;
  display: none; place-items: center; background: var(--ink); color: #fff; border-radius: 999px;
  font-size: 9px; font-weight: 600; line-height: 15px; }
.wishbtn__c.on { display: grid; }
.header--transparent:not(.solid) .wishbtn__c { background: #fff; color: var(--ink); }

/* ---- cart drawer: subtotal + shipping lines + duties note + free-shipping hint ---- */
.drawer__line { display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.drawer__line strong { font-size: 16px; letter-spacing: 0; }
.drawer__line--muted { color: var(--stone); font-size: 11.5px; margin-bottom: 6px; }
.drawer__line--muted span:last-child { letter-spacing: .04em; }
#drawerShip.is-free { color: var(--accent-blue-ink); font-weight: 600; }
.drawer__duties { font-size: 12.5px; line-height: 1.65; color: var(--ink); margin: 12px 0 16px; font-weight: 400;
  letter-spacing: .01em; padding: 12px 14px; background: var(--oat); border-radius: 2px; text-align: center; }
.drawer__ccynote { font-size: 12px; line-height: 1.4; color: var(--stone); text-align: center; margin: 8px 0 0; padding: 0 4px; }

/* ---- PayPal alternate-checkout: "or" divider + button slot (cart drawer + add-bag panel).
   Hidden by default; js/checkout-paypal.js reveals it only after the PayPal SDK
   actually renders a button (so a not-yet-configured PayPal never shows a dead
   divider with nothing under it). The slot reserves the SDK's own button height
   (48px, set in the Buttons() style config) so nothing shifts when it mounts. */
.paydivider { display: flex; align-items: center; gap: 12px; margin: 14px 0 12px; }
.paydivider::before, .paydivider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.paydivider span { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--stone); }
.paypal-slot { min-height: 48px; margin-bottom: 10px; }
.paypal-slot:empty { min-height: 0; }
/* free-shipping progress bar (cart drawer): fills toward the threshold, springs a
   check when complimentary shipping is unlocked. Reuses cart.freeHint/cart.freeYes. */
.freebar { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.freebar__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 9px; }
.freebar__label { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); line-height: 1.35; }
.freebar__check { display: inline-flex; flex: none; color: var(--accent-blue-ink); opacity: 0; transform: scale(.5);
  transition: opacity .35s ease, transform .35s cubic-bezier(.34, 1.56, .64, 1); }
.freebar__check svg { width: 15px; height: 15px; }
.freebar__track { position: relative; height: 4px; border-radius: 999px; background: var(--line); overflow: hidden; }
.freebar__fill { position: absolute; inset-block: 0; inset-inline-start: 0; width: 0; border-radius: 999px;
  background: var(--accent-blue-ink); transition: width .55s cubic-bezier(.4, 0, .2, 1); }
.freebar.is-free .freebar__label { color: var(--accent-blue-ink); font-weight: 600; }
.freebar.is-free .freebar__check { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) { .freebar__fill, .freebar__check { transition: none; } }

/* ---- wishlist drawer ---- */
.mmenu__wish { width: 100%; text-align: inherit; background: none; border: 0; font: inherit; cursor: pointer; }
.mmenu__wishc { display: inline-block; min-width: 18px; margin-inline-start: 8px; padding: 0 5px; font-size: 11px;
  background: var(--ink); color: #fff; border-radius: 999px; text-align: center; }
/* Wishlist "add to bag" is a small, refined icon button (localized aria-label): it fits the
   tight drawer row, never collides with the price in long languages (EL / IT), and matches
   the compact circular add control on the product cards. The visible mark stays minimal while
   an invisible expanded hit area keeps a comfortable >=44px tap target on touch. */
.wish__add { flex: none; width: 32px; height: 32px; padding: 0; display: grid; place-items: center;
  position: relative; border: 1px solid var(--line-2); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.wish__add svg { width: 13px; height: 13px; }
.wish__add::after { content: ""; position: absolute; inset: -7px; }
.wish__add:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.ditem { position: relative; }
.ditem__rm { position: absolute; top: 14px; right: 0; padding: 4px; font-size: 13px; color: var(--mist);
  transition: color .2s; line-height: 1; }
.ditem__rm:hover { color: var(--ink); }
.drawer--wish .ditem { padding-right: 24px; }
.drawer--wish .ditem__info h4 a { color: inherit; }

/* ---- PDP "Add to Wishlist" (below Add to Bag) ---- */
.btn--wish { display: flex; width: 100%; margin-top: 10px; background: transparent; color: var(--ink);
  border-color: var(--line-2); gap: 10px; }
.btn--wish:hover { background: var(--oat); color: var(--ink); border-color: var(--ink); }
.btn--wish svg { width: 17px; height: 17px; transition: fill .3s var(--ease); }
.btn--wish.on { border-color: var(--ink); }
.btn--wish.on svg { fill: var(--ink); }

/* ---- Added-to-Bag popup (mini-cart confirmation) ---- */
.addbag { position: fixed; inset: 0; z-index: 190; visibility: hidden; }
.addbag.on { visibility: visible; }
.addbag__scrim { position: absolute; inset: 0; background: rgba(23,21,18,.24); opacity: 0;
  transition: opacity .35s var(--ease); }
.addbag.on .addbag__scrim { opacity: 1; }
.addbag__panel { position: fixed; top: 116px; right: clamp(10px, 3vw, 34px);
  width: min(400px, calc(100vw - 20px)); max-height: calc(100vh - 130px); overflow-y: auto; overflow-x: hidden;
  background: var(--paper); border: 1px solid var(--line-2); box-shadow: 0 26px 64px rgba(23,21,18,.24);
  padding: 18px 20px 20px; transform: translateY(-16px); opacity: 0;
  transition: opacity .35s var(--ease), transform .45s var(--ease); }
.addbag.on .addbag__panel { transform: none; opacity: 1; }
.addbag__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.addbag__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink); }
.addbag__eyebrow svg { color: var(--accent-blue-ink); }
.addbag__close { padding: 4px; opacity: .5; font-size: 14px; transition: opacity .2s, transform .35s; }
.addbag__close:hover { opacity: 1; transform: rotate(90deg); }
.addbag__item { display: flex; gap: 14px; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.addbag__item img { width: 62px; height: 82px; object-fit: cover; object-position: 50% 25%; background: var(--oat); }
.addbag__iteminfo h4 { font-size: 13px; font-weight: 500; }
.addbag__iteminfo p { font-size: 11.5px; color: var(--stone); margin-top: 4px; }
.addbag__sub { display: flex; justify-content: space-between; align-items: baseline; margin: 16px 0;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.addbag__sub em { font-style: normal; color: var(--stone); }
.addbag__sub strong { font-size: 16px; letter-spacing: 0; }
.addbag__actions { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 10px; }
/* let the two buttons shrink + wrap so long labels (e.g. Greek "ΟΛΟΚΛΗΡΩΣΗ ΑΓΟΡΑΣ")
   never push the popup wider than itself and trigger a horizontal scrollbar */
.addbag__actions .btn { min-width: 0; white-space: normal; line-height: 1.2; text-align: center;
  padding-left: 10px; padding-right: 10px; letter-spacing: .1em; }
.addbag__view { background: transparent; color: var(--ink); border-color: var(--ink); }
.addbag__view:hover { background: var(--ink); color: #fff; }
.addbag__pairs { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 16px; }
.addbag__pairsh { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 14px; }
.addbag__pairsrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pairitem { display: flex; flex-direction: column; gap: 6px; }
.pairitem__img { display: block; aspect-ratio: 3/4; overflow: hidden; background: var(--oat); }
.pairitem__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transition: transform .6s var(--ease); }
.pairitem:hover .pairitem__img img { transform: scale(1.05); }

/* =========================================================================
   VELLUM per-photo ZOOM  (Studio focal-point + zoom control)
   -------------------------------------------------------------------------
   An owner-set zoom scales the photo INSIDE its object-fit:cover frame, toward
   the saved focal point (--szo), so she can push in on a subject without ever
   letterboxing (the frame stays overflow:hidden + fixed aspect-ratio). It is
   applied only to photos she zoomed (class .vlm-zoomed + inline --sz); every
   other image is untouched. The scale COMPOSES with the surrounding hover /
   click transitions: a zoomed photo keeps its zoom in every state (the small
   decorative hover nudge is simply dropped on zoomed photos so it never pops
   back to scale 1). --sz defaults to 1, so a stray class is a visual no-op. */
img.vlm-zoomed { transform: scale(var(--sz, 1)); transform-origin: var(--szo, 50% 50%); }
.mega__feature a:hover img.vlm-zoomed,
.tile:hover img.vlm-zoomed,
.pcard:hover .pcard__media img.vlm-zoomed,
.collbanner:hover > img.vlm-zoomed,
.about-ethos__media:hover img.vlm-zoomed,
.about-campaign figure:hover img.vlm-zoomed,
.pairitem:hover .pairitem__img img.vlm-zoomed { transform: scale(var(--sz, 1)); }
/* PDP main frame: the existing click-to-zoom magnifies ON TOP of the owner base zoom */
.gallery__main img.vlm-zoomed { transform: scale(var(--sz, 1)); transform-origin: var(--szo, 50% 30%); }
.gallery__main.zoom img.vlm-zoomed { transform: scale(calc(var(--sz, 1) * 1.7)); }
/* while the owner drags the zoom slider in edit mode, apply instantly (no eased lag) */
html.vlm-adjusting img.vlm-zoomed { transition: none !important; }

.pairitem__t { font-size: 11px; line-height: 1.3; color: var(--ink); }
.pairitem__p { font-size: 11px; color: var(--stone); }
@media (max-width: 560px) {
  .addbag__panel { left: 10px; right: 10px; width: auto; }
}

/* ---- Search overlay ---- */
.search { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.search.on { visibility: visible; }
.search__scrim { position: absolute; inset: 0; background: rgba(23,21,18,.42); opacity: 0;
  transition: opacity .3s var(--ease); }
.search.on .search__scrim { opacity: 1; }
.search__panel { position: absolute; top: 0; left: 0; right: 0; background: var(--paper);
  transform: translateY(-100%); transition: transform .45s var(--ease); padding: 0 var(--pad);
  box-shadow: 0 20px 50px rgba(23,21,18,.18); }
.search.on .search__panel { transform: none; }
.search__bar { display: flex; align-items: center; gap: 14px; height: var(--header-h);
  max-width: var(--gridw); margin: 0 auto; }
.search__bar svg { width: 20px; height: 20px; color: var(--stone); flex: none; }
.search__bar input { flex: 1; border: 0; background: none; font-family: var(--sans); font-size: clamp(16px, 2.4vw, 22px);
  color: var(--ink); letter-spacing: .01em; padding: 8px 0; outline: none; }
.search__bar input::placeholder { color: var(--mist); }
.search__close { padding: 8px; font-size: 15px; color: var(--slate); flex: none; transition: transform .35s, color .2s; }
.search__close:hover { color: var(--ink); transform: rotate(90deg); }
.search__results { max-width: var(--gridw); margin: 0 auto; max-height: min(64vh, 560px); overflow-y: auto; }
.search__results.has { padding: 6px 0 26px; border-top: 1px solid var(--line); }
.search__none { padding: 40px 0; text-align: center; color: var(--stone); font-size: 13px; letter-spacing: .04em; }
.sresult { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.sresult:last-child { border-bottom: 0; }
.sresult__img { width: 52px; height: 68px; flex: none; overflow: hidden; background: var(--oat); }
.sresult__img img { width: 100%; height: 100%; object-fit: cover; }
.sresult__body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sresult__t { font-size: 14px; color: var(--ink); }
.sresult__meta { font-size: 11.5px; color: var(--stone); letter-spacing: .04em; }
.sresult__p { font-size: 13px; color: var(--ink); font-weight: 500; }

/* ---- RTL: popup + search anchor to the mirrored side ---- */
html.i18n-rtl .addbag__panel { right: auto; left: clamp(10px, 3vw, 34px); }
@media (max-width: 560px) { html.i18n-rtl .addbag__panel { left: 10px; right: 10px; } }
html.i18n-rtl .ditem__rm { right: auto; left: 0; }
html.i18n-rtl .wishbtn__c { right: auto; left: -6px; }

/* ---- keep the header heart off phones so the icon row never crowds the logo
   (needs .nav__icons prefix to beat `.nav__icons button { display:grid }`) ---- */
@media (max-width: 560px) { .nav__icons .wishbtn { display: none; } }

/* ============================================================
   GDPR cookie consent - first-visit banner + preferences panel.
   Layering: banner 300 < prefs 310 < info/policy modal 320, so the
   Cookie Policy always opens on top of both. On-brand (paper, ink,
   hairline), calm motion, honours prefers-reduced-motion.
   ============================================================ */
.cconsent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 330;
  background: var(--paper); border-top: 1px solid var(--line-2);
  box-shadow: 0 -10px 30px rgba(23,21,18,.07);
  padding-bottom: env(safe-area-inset-bottom); /* lift the action row above the iOS home indicator */
  transform: translateY(102%); transition: transform .4s var(--ease); }
.cconsent.on { transform: none; }
.cconsent__inner { max-width: 1180px; margin: 0 auto; padding: 16px clamp(18px, 4vw, 46px);
  display: flex; align-items: center; gap: 18px clamp(18px, 3vw, 36px); flex-wrap: wrap; justify-content: space-between; }
.cconsent__text { flex: 1 1 340px; margin: 0; font-family: var(--sans); font-size: 13px; line-height: 1.6;
  color: var(--graphite); font-weight: 300; letter-spacing: .003em; }
.cconsent__text a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.cconsent__text a:hover { color: var(--slate); }
.cconsent__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; flex-wrap: wrap; }
.cconsent__btn { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px; padding: 0 20px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center; transition: background .2s, color .2s, border-color .2s; white-space: nowrap; }
.cconsent__btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.cconsent__btn--ghost:hover { border-color: var(--ink); }
.cconsent__btn--solid { background: var(--ink); color: #fff; border: 1px solid var(--ink); }
.cconsent__btn--solid:hover { opacity: .86; }

.cprefs { position: fixed; inset: 0; z-index: 340; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.cprefs.on { opacity: 1; visibility: visible; }
.cprefs__overlay { position: absolute; inset: 0; background: rgba(23,21,18,.5); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.cprefs__box { position: relative; z-index: 1; width: min(560px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: 3px; padding: clamp(26px, 4vw, 40px);
  transform: translateY(14px); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease); }
.cprefs.on .cprefs__box { transform: none; opacity: 1; }
.cprefs__close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; display: grid; place-items: center;
  background: none; border: 0; color: var(--ink); font-size: 26px; line-height: 1; cursor: pointer; transition: transform .3s var(--ease); }
.cprefs__close:hover { transform: rotate(90deg); }
.cprefs__title { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; font-size: clamp(24px, 3.4vw, 30px); margin: 0 0 10px; color: var(--ink); }
.cprefs__intro { font-family: var(--sans); font-size: 13.5px; line-height: 1.7; color: var(--slate); font-weight: 300; margin: 0 0 22px; }
.cprefs__intro a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.cprefs__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line); }
.cprefs__row--toggle { cursor: pointer; }
.cprefs__meta { display: flex; flex-direction: column; gap: 4px; }
.cprefs__meta strong { font-family: var(--sans); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); }
.cprefs__meta span { font-family: var(--sans); font-size: 12.5px; line-height: 1.6; color: var(--slate); font-weight: 300; }
.cprefs__always { flex: 0 0 auto; font-family: var(--sans); font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--stone); margin-top: 2px; }
.cprefs__switch { flex: 0 0 auto; position: relative; width: 44px; height: 26px; margin-top: 1px; }
.cprefs__switch input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; z-index: 2; }
.cprefs__track { position: absolute; inset: 0; background: var(--line-2); border-radius: 999px; box-shadow: inset 0 0 0 1px var(--stone); transition: background .25s var(--ease), box-shadow .25s var(--ease); }
.cprefs__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(23,21,18,.25); transition: transform .25s var(--ease); }
.cprefs__switch input:checked + .cprefs__track { background: var(--ink); box-shadow: none; }
.cprefs__switch input:checked + .cprefs__track::after { transform: translateX(18px); }
.cprefs__switch input:focus-visible + .cprefs__track { outline: 2px solid var(--ink); outline-offset: 2px; }
.cprefs__actions { display: flex; gap: 12px; margin-top: 24px; }
.cprefs__actions .cconsent__btn { flex: 1; }

@media (max-width: 620px) {
  .cconsent__inner { padding: 15px 18px 18px; gap: 13px; }
  .cconsent__actions { width: 100%; }
  /* Long-language safety: the reject label runs long in Greek/Italian ("Απόρριψη μη
     απαραίτητων" / "Rifiuta i non essenziali"). Let the button text WRAP instead of
     clipping on the narrowest phones, keeping a full-width >=44px tap target. */
  .cconsent__btn { flex: 1 1 100%; padding: 10px 14px; height: auto; min-height: 44px;
    white-space: normal; line-height: 1.25; text-align: center; }
  /* Stack the preferences-modal actions on phones: side by side, the two
     nowrap labels ("Reject non-essential" + "Save preferences") exceed the
     box width, pushing "Save preferences" off the right edge (clipped, and
     off-screen at <=~330px). Stacking keeps both full-width and tappable. */
  .cprefs__actions { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .cconsent, .cprefs, .cprefs__box, .cprefs__track, .cprefs__track::after, .cprefs__close { transition: none; }
}
html.i18n-rtl .cprefs__close { right: auto; left: 14px; }
html.i18n-rtl .cprefs__track::after { left: auto; right: 3px; }
html.i18n-rtl .cprefs__switch input:checked + .cprefs__track::after { transform: translateX(-18px); }
