/* SkonSkin storefront theme — brand gray orange #95695E.
   Palette and dark-mode values ported verbatim from the static reference build
   (skonskin/assets/theme.css) so both projects render the same brand.

   Unlike the reference — whose pages are React-rendered with inline styles and
   therefore need !important overrides — this project's markup is class-based
   Blade. Everything here is authored against those classes, so the dark theme
   is a straight custom-property swap and the responsive layers are ordinary
   cascade. No !important is needed except where an inline style attribute in a
   Blade view has to be beaten. */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');

/* ---------------------------------------------------------------- palette */
:root{
  --brand:#95695E;          /* client's gray orange */
  --mauve:#95695E;          /* legacy alias kept so existing markup works */
  --deep:#6F4A41;
  --tint:#F4EBE6;
  --bg:#FDFBFA;
  --ink:#2A2320;
  --muted:#8C8079;
  --rose:#C0705B;
  --gold:#C79A45;
  --line:rgba(149,105,94,.22);

  --surface:#FFFFFF;
  --surface-2:#F8F2ED;
  --body-2:#57504B;
  --footer-bg:#2A2320;
  --footer-fg:#EFE7E1;

  /* artwork washes — swapped wholesale in dark mode so the gradient-drawn
     hero / category / product art doesn't stay light under near-white text */
  --art-1:#F1DCCF;
  --art-2:#E3CBBB;
  --art-3:#D8B9A6;
  --hero-wash:linear-gradient(120deg,#F4EBE6 0%,#F8F0EA 45%,#FDFBFA 100%);
  --hero-scrim:linear-gradient(100deg,rgba(253,251,250,.92) 0%,rgba(253,251,250,.55) 45%,rgba(253,251,250,.15) 75%);
  --shop-wash:radial-gradient(120% 160% at 20% 0%,#F4EBE6,#FDFBFA 60%);
  --search-wash:radial-gradient(120% 160% at 50% 0%,#F4EBE6,#FDFBFA 65%);
  --header-bg:rgba(253,251,250,.92);
  --header-bg-shrunk:rgba(253,251,250,.82);
  --on-accent:#FFFFFF;      /* label colour on a filled brand button */
  --shadow-lg:0 30px 60px -24px rgba(42,35,32,.25);
  --shadow-md:0 6px 30px -12px rgba(42,35,32,.16);
  --sk-1:#F1E7DF;
  --sk-2:#F8F0EA;

  --radius:16px;
  --gutter:40px;            /* single source of truth for page side padding */
  --maxw:1280px;
}

/* ------------------------------------------------------------- dark mode */
:root[data-theme="dark"]{
  --brand:#C08D7E;
  --mauve:#C08D7E;
  --deep:#D7A899;
  --tint:#2A2320;
  --bg:#181413;
  --ink:#F2E9E4;
  --muted:#A2958D;
  --rose:#D48B76;
  --gold:#D6B25F;
  --line:rgba(214,175,160,.20);

  --surface:#221C1A;
  --surface-2:#2A2320;
  --body-2:#C3B6AE;
  --footer-bg:#120F0E;
  --footer-fg:#EFE7E1;

  --art-1:#3A2C27;
  --art-2:#2E2421;
  --art-3:#251D1B;
  --hero-wash:linear-gradient(120deg,#2A2320 0%,#221C1A 45%,#181413 100%);
  --hero-scrim:linear-gradient(100deg,rgba(24,20,19,.92) 0%,rgba(24,20,19,.55) 45%,rgba(24,20,19,.15) 75%);
  --shop-wash:radial-gradient(120% 160% at 20% 0%,#2A2320,#181413 60%);
  --search-wash:radial-gradient(120% 160% at 50% 0%,#2A2320,#181413 65%);
  --header-bg:rgba(24,20,19,.96);
  --header-bg-shrunk:rgba(24,20,19,.86);
  /* The brand accent is deliberately *light* in dark mode, so a white label on
     a filled button lands near 2.8:1. Dark ink on the light accent is the
     accessible pairing and keeps buttons reading as the same control. */
  --on-accent:#1F1917;
  --shadow-lg:0 30px 60px -24px rgba(0,0,0,.6);
  --shadow-md:0 6px 30px -12px rgba(0,0,0,.5);
  --sk-1:#241E1C;
  --sk-2:#2E2724;
}

html{color-scheme:light}
:root[data-theme="dark"]{color-scheme:dark}

/* ------------------------------------------------------------------ base */
*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;                 /* belt-and-braces against stray overflow */
  transition:background .3s ease,color .3s ease;
}
h1,h2,h3,.serif{font-family:'Playfair Display',serif}
h1,h2,h3{margin:0;color:var(--ink);font-weight:600}
p{margin:0}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font-family:inherit;cursor:pointer}
input,select,textarea{font-family:inherit;font-size:14px}
ul{margin:0;padding:0;list-style:none}

/* Inputs must follow the theme — left alone they stay white-on-white in dark
   mode. Scoped to the form controls rather than a blanket selector. */
input,select,textarea{
  background:var(--surface);
  color:var(--ink);
  border:1px solid var(--line);
}
input::placeholder,textarea::placeholder{color:var(--muted)}
:focus-visible{outline:2px solid var(--brand);outline-offset:2px}

/* A grid/flex item's default min-width:auto floors it at its content width, so
   a collapsed one-column panel can still be wider than the screen. Letting
   these shrink is what stops horizontal scroll on phones. */
section *,footer *,.shop-layout *,.pdp-main *,.co-layout *{min-width:0}

.container{max-width:var(--maxw);margin:0 auto;padding:0 var(--gutter)}
.eyebrow{font-size:11px;letter-spacing:.4em;text-transform:uppercase;color:var(--deep);font-weight:600}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border-radius:999px;padding:14px 28px;font-size:13.5px;font-weight:600;letter-spacing:.02em;border:1px solid transparent;transition:background .25s ease,color .25s ease,border-color .25s ease,transform .25s ease;white-space:nowrap}
.btn-mauve{background:var(--mauve);color:var(--on-accent)}
.btn-mauve:hover{background:var(--deep);transform:translateY(-1px)}
.btn-outline{border-color:var(--line);color:var(--ink);background:transparent}
.btn-outline:hover{border-color:var(--mauve);color:var(--mauve)}
.btn:disabled{opacity:.5;cursor:not-allowed;pointer-events:none}

/* -------------------------------------------------------------- announcement */
.ann-bar{background:var(--deep);color:#fff;text-align:center;font-size:12.5px;padding:9px 20px;letter-spacing:.06em;font-weight:500}
.ann-bar > span{opacity:.95}
:root[data-theme="dark"] .ann-bar{background:#3A2B26;color:#F2E9E4}
.ann-bar .ann-sep{opacity:.5;margin:0 12px}

/* -------------------------------------------------------------------- header */
.site-header{position:sticky;top:0;z-index:50;background:var(--header-bg);backdrop-filter:saturate(140%) blur(14px);border-bottom:1px solid var(--line);padding:20px var(--gutter);transition:padding .3s ease,box-shadow .3s ease,background .3s ease}
.site-header.shrunk{padding-top:12px;padding-bottom:12px;background:var(--header-bg-shrunk);box-shadow:var(--shadow-md)}
.hdr-inner{max-width:var(--maxw);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:32px}
.hdr-mark{display:flex;flex-direction:column;line-height:1.1;transition:transform .3s ease;flex:0 0 auto}
/* wide-tracked uppercase wordmark in --deep, per the reference build */
.hdr-mark .logo{font-family:'Playfair Display',serif;font-size:23px;font-weight:600;letter-spacing:.32em;color:var(--deep);text-transform:uppercase;line-height:1}
.hdr-mark .tagline{font-size:8.5px;color:var(--mauve);letter-spacing:.42em;text-transform:uppercase;margin-top:5px;margin-left:2px}
/* An uploaded logo replaces the wordmark; capped so an oversized file cannot
   push the header out of shape. */
.hdr-logo{max-height:40px;max-width:200px;width:auto;object-fit:contain}
.site-header.shrunk .hdr-mark{transform:scale(.92);transform-origin:left center}
.main-nav{flex:1;display:flex;align-items:center;justify-content:center;gap:34px}
.navlink{position:relative;font-size:13.5px;font-weight:500;color:var(--ink);padding:6px 0;white-space:nowrap}
.navlink::after{content:'';position:absolute;left:0;bottom:-4px;height:1.5px;width:0;background:var(--deep);transition:width .28s ease}
.navlink:hover::after{width:100%}
.hasmenu{position:relative}
.mega{position:absolute;top:calc(100% + 18px);left:50%;transform:translateX(-50%) translateY(10px);width:min(640px,calc(100vw - 40px));background:var(--surface);border:1px solid var(--line);border-radius:18px;box-shadow:var(--shadow-lg);padding:28px;display:grid;grid-template-columns:1.4fr 1fr;gap:24px;opacity:0;visibility:hidden;transition:opacity .28s ease,transform .28s ease,visibility .28s}
.hasmenu:hover .mega{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.mega-cats{display:grid;grid-template-columns:1fr 1fr;gap:6px}
.mega-cats a{padding:9px 10px;border-radius:10px;font-size:13.5px;color:var(--ink)}
.mega-cats a:hover{background:var(--tint);color:var(--deep)}
.mega-feature{background:var(--tint);border-radius:14px;padding:20px}
.mega-feature .mf-eyebrow{font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:var(--mauve);font-weight:600}
.mega-feature h4{font-family:'Playfair Display',serif;font-size:19px;margin:8px 0 12px}
.mega-feature a{font-size:13px;font-weight:600;color:var(--deep)}
.hdr-actions{display:flex;align-items:center;gap:20px;flex:0 0 auto}
/* bare icons rather than circled buttons — matches the reference header */
.hdr-icon-btn{position:relative;background:none;border:none;cursor:pointer;color:var(--ink);padding:4px;display:flex;align-items:center;justify-content:center;transition:color .2s ease;flex:0 0 auto}
.hdr-icon-btn:hover{color:var(--deep)}
.hdr-icon-btn svg{width:20px;height:20px}
.cart-badge{position:absolute;top:-4px;right:-5px;background:var(--mauve);color:var(--on-accent);font-size:10px;font-weight:600;min-width:16px;height:16px;border-radius:9px;display:flex;align-items:center;justify-content:center;padding:0 4px}

/* --------------------------------------------------------- theme toggle */
/* sits alongside the search/cart icons, so it wears the same bare treatment */
.theme-toggle{
  flex:0 0 auto;border:none;background:none;color:var(--ink);
  display:inline-flex;align-items:center;justify-content:center;cursor:pointer;
  padding:4px;transition:color .2s ease;
}
.theme-toggle:hover{color:var(--deep)}
.theme-toggle svg{width:20px;height:20px}
.theme-toggle .icon-moon{display:none}
:root[data-theme="dark"] .theme-toggle .icon-moon{display:block}
:root[data-theme="dark"] .theme-toggle .icon-sun{display:none}

/* The same control as a labelled row inside the mobile nav panel — it only
   exists there, hidden until the panel styling kicks in below 980px. */
.theme-row{display:none}
.theme-row-icons{display:inline-flex;align-items:center;color:var(--deep)}
.theme-row-icons svg{width:18px;height:18px}
.theme-row .icon-moon{display:none}
:root[data-theme="dark"] .theme-row .icon-moon{display:block}
:root[data-theme="dark"] .theme-row .icon-sun{display:none}

.nav-toggle{display:none;width:38px;height:38px;border:1px solid var(--line);border-radius:10px;background:transparent;color:var(--ink);align-items:center;justify-content:center;flex:0 0 auto}
.nav-toggle svg{width:20px;height:20px}

/* --------------------------------------------------------------------- hero */
/* Full-bleed band; .hero-content owns the padding. The copy sits on a dark
   scrim over the artwork and is white in BOTH themes — matching the reference,
   where the hero reads as an editorial photo band rather than a tinted panel. */
.hero{position:relative;height:640px;display:flex;align-items:center;overflow:hidden;background:linear-gradient(120deg,#EFE1D9 0%,#F4EBE6 45%,#FDFBFA 100%);padding:0;width:100%}
:root[data-theme="dark"] .hero{background:var(--hero-wash)}
.hero-ken{position:absolute;inset:0;background:url('/images/site/hero-skincare-ritual.png') 70% center/cover no-repeat;animation:kenburns 20s ease-in-out infinite alternate}
@keyframes kenburns{from{transform:scale(1) translate(0,0)}to{transform:scale(1.09) translate(-1.5%,-1%)}}
.hero-scrim{position:absolute;inset:0;pointer-events:none;background:linear-gradient(90deg,rgba(42,35,32,.42) 0%,rgba(42,35,32,.14) 42%,rgba(42,35,32,0) 70%)}
:root[data-theme="dark"] .hero-scrim{background:linear-gradient(90deg,rgba(12,9,8,.68) 0%,rgba(12,9,8,.34) 42%,rgba(12,9,8,.05) 70%)}
.hero-content{position:relative;max-width:var(--maxw);margin:0 auto;padding:0 var(--gutter);width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;color:#fff}
.hero-content .eyebrow{font-size:11px;letter-spacing:.4em;text-transform:uppercase;font-weight:600;margin-bottom:20px;display:block;color:#fff;opacity:.92}
.hero-content h1{font-family:'Playfair Display',serif;font-weight:500;font-size:clamp(32px,5.2vw,60px);line-height:1.06;letter-spacing:-.01em;max-width:560px;margin:0 0 22px;color:#fff;text-wrap:balance}
.hero-content p{font-size:clamp(14.5px,1.6vw,16.5px);line-height:1.7;max-width:440px;margin:0 0 34px;color:#fff;opacity:.94}
.hero-content .hero-featured{font-size:11px;line-height:1.6;letter-spacing:.08em;text-transform:uppercase;max-width:480px;margin:-12px 0 30px;color:#fff;opacity:.9}
.hero-featured span{font-weight:700;margin-right:8px;color:#fff}
.hero-ctas{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
/* the hero pair is squarer and heavier than the site-wide pill buttons */
.hero-ctas .btn{border-radius:12px;padding:16px 34px;font-size:14px;letter-spacing:.03em}
.hero-ctas .btn-mauve{background:var(--mauve);color:#fff;box-shadow:0 14px 30px -12px rgba(111,74,65,.6)}
.hero-ctas .btn-mauve:hover{background:var(--deep);color:#fff;transform:translateY(-2px);box-shadow:0 12px 26px -10px rgba(111,74,65,.6)}
.hero-ctas .btn-outline{background:rgba(255,255,255,.14);color:#fff;border:1px solid rgba(255,255,255,.5);backdrop-filter:blur(4px);padding:16px 30px}
.hero-ctas .btn-outline:hover{background:rgba(255,255,255,.24);color:#fff;border-color:#fff}

/* ---------------------------------------------------------------- sections */
section{padding:52px var(--gutter)}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:40px;gap:20px;max-width:var(--maxw);margin-left:auto;margin-right:auto;flex-wrap:wrap}
.section-head h2{font-family:'Playfair Display',serif;font-weight:500;font-size:clamp(26px,4vw,42px);letter-spacing:-.01em}
.section-head .eyebrow{margin-bottom:14px;display:block}
/* the "All Categories →" style link: small, wide-tracked, uppercase */
.section-link{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--deep);font-weight:600;white-space:nowrap}

/* --------------------------------------------------------------- categories */
/* The reference sets this section to 1180px while everything around it is
   1280px. At laptop width that reads as a mistake — the tiles sit ~50px
   inboard of the hero copy and the header above them — so it is aligned to
   the shared --maxw here. Only the smaller heading is kept: the section is an
   index strip, not a headline block. */
#categories{max-width:var(--maxw);margin:0 auto;padding:38px var(--gutter) 10px}
#categories .section-head{margin-bottom:16px;align-items:baseline}
#categories .section-head h2{font-size:clamp(22px,2.4vw,27px)}
.cat-grid{max-width:var(--maxw);margin:0 auto;display:flex;flex-wrap:wrap;gap:8px}
.cat{position:relative;display:inline-flex;align-items:center;min-height:38px;padding:0 15px;border-radius:999px;background:var(--surface);border:1px solid var(--line);transition:border-color .2s ease,background .2s ease,transform .2s ease}
.cat::before{content:"";width:5px;height:5px;margin-right:8px;border-radius:50%;background:var(--cat-accent);opacity:.9}
.cat:hover{transform:translateY(-1px);border-color:var(--cat-accent);background:color-mix(in srgb,var(--cat-accent) 10%,var(--surface))}
.cat-name{font-size:12px;font-weight:500;color:var(--ink);line-height:1;white-space:nowrap}
.cat-no,.cat-body,.cat-description,.cat-cta{display:none}

/* --------------------------------------------------------- best sellers band */
/* full-bleed tinted band that separates the carousel from the rest of the page */
#best{background:var(--tint);margin-top:70px;padding:88px 0}
#best > .section-head,#best > .rail{max-width:var(--maxw);margin-left:auto;margin-right:auto;padding-left:var(--gutter);padding-right:var(--gutter)}
/* the carousel arrows live up in the section head on the reference, not
   under the rail */
#best .rail-nav{margin-top:0}
#best .rail-btn{background:#fff}
:root[data-theme="dark"] #best .rail-btn{background:var(--surface)}

/* ------------------------------------------------------------------ p-cards */
.rail{display:flex;gap:22px;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:10px;scrollbar-width:none;-webkit-overflow-scrolling:touch;max-width:var(--maxw);margin:0 auto}
.rail::-webkit-scrollbar{display:none}
.rail-card{flex:0 0 288px;scroll-snap-align:start}
.grid-4{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:24px}
.grid-3{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
/* The card itself is transparent — only the media tile is bordered, and the
   copy sits directly on the page beneath it. */
.pcard{display:block;background:transparent;border:none;border-radius:0}
.p-media{position:relative;aspect-ratio:1/1;overflow:hidden;border-radius:12px;border:1px solid var(--line);transition:box-shadow .35s ease}
.pcard:hover .p-media{box-shadow:0 22px 44px -22px rgba(111,74,65,.45)}
/* product art is drawn from inline light gradients — dim the media layer only */
:root[data-theme="dark"] .p-media{filter:brightness(.55) saturate(.85)}
.p-a,.p-b{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;transition:opacity .4s ease,transform .4s ease}
.p-b{opacity:0;transform:scale(1.04)}
.pcard:hover .p-a{opacity:0}
.pcard:hover .p-b{opacity:1}
.bottle{width:74px;height:150px;border-radius:14px 14px 20px 20px;background:linear-gradient(160deg,rgba(255,255,255,.85),rgba(255,255,255,.35));box-shadow:0 14px 30px -14px rgba(111,74,65,.5);position:relative}
.bottle::before{content:'';position:absolute;top:-13px;left:50%;transform:translateX(-50%);width:26px;height:16px;border-radius:5px;background:var(--deep);opacity:.75}
.p-badge{position:absolute;top:14px;left:14px;background:var(--deep);color:#fff;font-size:11px;font-weight:700;letter-spacing:.04em;padding:5px 10px;border-radius:7px;z-index:3}
.p-badge.sale{background:var(--rose)}
:root[data-theme="dark"] .p-badge{color:#1F1917}
.p-wish{position:absolute;top:12px;right:12px;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.9);border:none;display:flex;align-items:center;justify-content:center;color:var(--deep);z-index:3}
.p-wish svg{width:17px;height:17px}
.p-wish.active{color:var(--rose)}
.p-bar{position:absolute;left:12px;right:12px;bottom:12px;transform:translateY(120%);transition:transform .32s cubic-bezier(.22,.61,.36,1);z-index:3}
.pcard:hover .p-bar{transform:none}
.p-bar button{width:100%;background:var(--mauve);color:#fff;border:none;border-radius:10px;padding:13px;font-size:13.5px;font-weight:600;letter-spacing:.03em;box-shadow:0 10px 24px -10px rgba(111,74,65,.7)}
.p-bar button:hover{background:var(--deep)}
:root[data-theme="dark"] .p-bar button{color:#1F1917}
.p-body{padding:16px 4px 4px}
.p-brand{font-size:10.5px;color:var(--mauve);text-transform:uppercase;letter-spacing:.2em;font-weight:600;margin-bottom:7px}
.p-title{font-size:14.5px;font-weight:500;margin:0 0 9px;min-height:39px;line-height:1.35;color:var(--ink)}
.p-rating{display:flex;align-items:center;gap:5px;font-size:12px;color:var(--muted);margin-bottom:10px}
.p-rating svg{width:13px;height:13px;color:var(--gold)}
.p-price{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap}
.p-price .now{font-weight:600;font-size:16px;color:var(--ink)}
.p-price .was{font-size:13px;color:var(--muted);text-decoration:line-through}

.rail-nav{display:flex;gap:10px;flex:0 0 auto}
.rail-btn{width:48px;height:48px;border-radius:50%;border:1px solid var(--line);background:var(--surface);display:flex;align-items:center;justify-content:center;color:var(--deep);transition:background .22s ease,border-color .22s ease}
.rail-btn:hover{background:var(--tint);border-color:var(--mauve)}
.rail-btn svg{width:18px;height:18px}

/* --------------------------------------------------------------- editorial */
.editorial{max-width:var(--maxw);margin:0 auto;background:var(--surface);border:1px solid var(--line);border-radius:20px;overflow:hidden;display:grid;grid-template-columns:1.05fr .95fr}
.editorial-media{background:url('/images/site/philosophy-ritual.png') center center/cover no-repeat;min-height:420px}
.editorial-copy{padding:64px 58px;display:flex;flex-direction:column;justify-content:center}
.editorial-copy h2{font-size:clamp(24px,3.4vw,34px);line-height:1.2;margin-bottom:18px}
.editorial-copy h2 em{font-style:italic;color:var(--mauve)}
.editorial-copy p{color:var(--body-2);line-height:1.7;margin-bottom:14px}
.editorial-copy .btn{margin-top:14px;align-self:flex-start}

/* ------------------------------------------------------------------- offers */
.offer{position:relative;border-radius:16px;padding:32px 28px;min-height:190px;display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden;color:var(--ink)}
.offer:nth-child(1){background:linear-gradient(140deg,#F6EDE7,#E9DACF)}
.offer:nth-child(2){background:linear-gradient(140deg,#F4EBE6,#E5D3C6)}
.offer:nth-child(3){background:linear-gradient(140deg,#EFE1D9,#E1CEBF)}
/* the offer tiles paint themselves; in dark mode swap the whole wash rather
   than filtering, since the copy sits directly on the tile */
:root[data-theme="dark"] .offer:nth-child(1){background:linear-gradient(140deg,#2E2724,#221C1A)}
:root[data-theme="dark"] .offer:nth-child(2){background:linear-gradient(140deg,#2A2320,#201A18)}
:root[data-theme="dark"] .offer:nth-child(3){background:linear-gradient(140deg,#332A26,#241E1C)}
.offer .tag{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.22em;color:var(--deep);margin-bottom:10px}
.offer h3{font-family:'Playfair Display',serif;font-size:22px;font-weight:500;margin-bottom:6px}
.offer p{color:var(--body-2);font-size:13.5px;margin-bottom:14px}
.offer .cta{font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--deep)}

/* --------------------------------------------------------------------- trust */
/* centred stack, not a left-aligned row — matches the reference band */
.trust-row{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:24px}
.trust-item{display:flex;flex-direction:column;align-items:center;text-align:center;gap:14px}
.trust-icon{width:56px;height:56px;border-radius:50%;background:var(--tint);display:flex;align-items:center;justify-content:center;color:var(--deep);flex:0 0 auto;transition:transform .3s ease,background .3s ease,color .3s ease}
.trust-item:hover .trust-icon{transform:translateY(-4px);background:var(--mauve);color:#fff}
:root[data-theme="dark"] .trust-item:hover .trust-icon{color:#1F1917}
.trust-icon svg{width:22px;height:22px}
.trust-item h4{font-size:14.5px;margin-bottom:3px}
.trust-item p{font-size:12.5px;color:var(--muted)}


/* ------------------------------------------------------------------- footer */
footer{background:var(--footer-bg);color:var(--footer-fg);padding:76px var(--gutter) 34px}
.foot-grid{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px;padding-bottom:40px;border-bottom:1px solid rgba(239,231,225,.14)}
.foot-brand .logo{font-family:'Playfair Display',serif;font-size:22px;font-weight:600;letter-spacing:.3em;text-transform:uppercase;display:block}
.foot-brand p{color:rgba(239,231,225,.65);font-size:13.5px;line-height:1.7;margin-top:14px;max-width:280px}
.foot-social{display:flex;gap:10px;margin-top:20px}
.foot-social a{width:34px;height:34px;border-radius:50%;border:1px solid rgba(239,231,225,.25);display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.foot-social svg{width:15px;height:15px}
.foot-col h4{font-size:13px;text-transform:uppercase;letter-spacing:.06em;margin-bottom:16px;color:rgba(239,231,225,.9)}
.foot-col a{display:block;font-size:13.5px;color:rgba(239,231,225,.68);margin-bottom:12px}
.foot-col a:hover{color:#fff}
.foot-bottom{max-width:var(--maxw);margin:0 auto;display:flex;justify-content:space-between;padding-top:24px;font-size:12px;color:rgba(239,231,225,.5);flex-wrap:wrap;gap:8px}

/* --------------------------------------------------------------------- toast */
.toast{position:fixed;bottom:28px;left:50%;transform:translate(-50%,20px);background:var(--ink);color:var(--bg);padding:13px 22px;border-radius:999px;font-size:13.5px;font-weight:500;box-shadow:0 20px 40px -14px rgba(0,0,0,.35);opacity:0;pointer-events:none;transition:opacity .3s ease,transform .3s ease;z-index:200;max-width:calc(100vw - 32px);text-align:center}
.toast.show{opacity:1;transform:translate(-50%,0)}

/* --------------------------------------------------------------- breadcrumb */
.breadcrumb{max-width:var(--maxw);margin:0 auto;padding:20px var(--gutter) 0;font-size:12.5px;color:var(--muted)}
.breadcrumb a:hover{color:var(--deep)}

/* --------------------------------------------------------------- shop layout */
.shop-hero{background:var(--shop-wash);padding:56px var(--gutter)}
.shop-hero-inner{max-width:var(--maxw);margin:0 auto}
.shop-hero h1{font-size:clamp(26px,4vw,38px);margin:10px 0 14px}
.shop-hero p{color:var(--body-2);max-width:600px;line-height:1.7}
.toolbar{max-width:var(--maxw);margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:22px var(--gutter);border-bottom:1px solid var(--line);flex-wrap:wrap;gap:14px}
.toolbar select{padding:10px 14px;border-radius:10px}
/* the filter drawer button only exists once the sidebar collapses (≤980) */
[data-filter-toggle]{display:none}
.shop-layout{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:264px 1fr;gap:36px;padding:36px var(--gutter)}
.filters{align-self:start;position:sticky;top:100px}
.filter-group{border-bottom:1px solid var(--line);padding:18px 0}
.filter-group h4{font-size:13.5px;margin-bottom:12px;display:flex;justify-content:space-between;align-items:center}
.filter-chip{display:inline-flex;align-items:center;padding:7px 13px;border-radius:999px;border:1px solid var(--line);font-size:12.5px;margin:0 6px 6px 0;background:var(--surface);color:var(--ink)}
.filter-chip.active{background:var(--ink);color:var(--bg);border-color:var(--ink)}
/* `auto-fit` collapses spare tracks, causing a one-product category to stretch
   a single card across the entire catalogue area. Fixed-width tracks keep the
   product scale consistent whether a category has one product or fifty. */
.shop-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,300px));justify-content:start;gap:24px}
.pagination{display:flex;justify-content:center;gap:8px;margin-top:40px;flex-wrap:wrap}
.pagination a,.pagination span{min-width:38px;height:38px;display:flex;align-items:center;justify-content:center;border-radius:10px;border:1px solid var(--line);font-size:13px;padding:0 6px}
.pagination .active{background:var(--ink);color:var(--bg);border-color:var(--ink)}
.empty-state{text-align:center;padding:80px 20px}
.empty-state h3{font-size:22px;margin-bottom:10px}
.empty-state p{color:var(--muted);margin-bottom:20px}

/* ------------------------------------------------------------------ product */
.pdp-main{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:1.05fr .95fr;gap:52px;padding:32px var(--gutter) 60px}
.pdp-gallery-main{aspect-ratio:1/1;border-radius:18px;overflow:hidden;position:relative;background:linear-gradient(160deg,var(--g1,#F4EBE6),var(--g2,#E7D5C9));display:flex;align-items:center;justify-content:center}
:root[data-theme="dark"] .pdp-gallery-main,
:root[data-theme="dark"] .pdp-thumbs .thumb,
:root[data-theme="dark"] .cart-item .thumb,
:root[data-theme="dark"] .qv-media{filter:brightness(.55) saturate(.85)}
.pdp-gallery-main .bottle{width:clamp(80px,14vw,120px);height:clamp(140px,24vw,210px)}
.pdp-thumbs{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap}
.pdp-thumbs .thumb{width:64px;height:64px;border-radius:10px;border:1px solid var(--line);background:linear-gradient(160deg,var(--g1,#F4EBE6),var(--g2,#E7D5C9));cursor:pointer;flex:0 0 auto}
.gallery-controls{position:absolute;right:14px;bottom:14px;z-index:2;display:flex;align-items:center;gap:8px;padding:5px 7px;background:rgba(255,255,255,.92);color:var(--ink);border:1px solid rgba(42,35,32,.12);border-radius:999px;box-shadow:0 8px 20px rgba(42,35,32,.12);font-size:12px;font-weight:600}
.gallery-nav{width:30px;height:30px;padding:0;border:0;border-radius:50%;background:var(--surface-2);color:var(--ink);font-size:26px;line-height:1;cursor:pointer}
.gallery-nav:hover{background:var(--mauve);color:#fff}
.buy-box .brand{color:var(--mauve);font-size:12.5px;font-weight:600;text-transform:uppercase;letter-spacing:.05em}
.buy-box h1{font-size:clamp(22px,3.4vw,30px);margin:8px 0 12px;line-height:1.25}
.buy-box .rating-row{display:flex;align-items:center;gap:8px;font-size:13.5px;color:var(--muted);margin-bottom:16px}
.buy-box .price-row{display:flex;align-items:baseline;gap:12px;margin-bottom:18px;flex-wrap:wrap}
.buy-box .price-row .now{font-size:clamp(21px,3vw,26px);font-weight:700}
.buy-box .price-row .was{font-size:15px;color:var(--muted);text-decoration:line-through}
.buy-box .save-chip{background:var(--rose);color:var(--on-accent);font-size:11px;font-weight:700;padding:4px 9px;border-radius:999px}
.buy-box .desc{color:var(--body-2);line-height:1.7;margin-bottom:24px}
.size-row{display:flex;gap:10px;margin-bottom:24px;flex-wrap:wrap}
.size-chip{padding:10px 16px;border-radius:10px;border:1px solid var(--line);font-size:13px;background:var(--surface);color:var(--ink)}
.size-chip.active{border-color:var(--ink);background:var(--ink);color:var(--bg)}
.qty-row{display:flex;align-items:center;gap:16px;margin-bottom:20px;flex-wrap:wrap}
.qty-stepper{display:flex;align-items:center;border:1px solid var(--line);border-radius:10px;flex:0 0 auto}
.qty-stepper button{width:38px;height:42px;background:none;border:none;font-size:16px;color:var(--ink)}
.qty-stepper input{width:42px;text-align:center;border:none;font-size:14px;background:transparent;padding:0}
.buybox-actions{display:flex;gap:12px;flex-wrap:wrap}
.buybox-actions .btn{flex:1;min-width:0}
/* the wishlist button is an icon square — it must not stretch like the CTA */
.buybox-actions .btn-outline{flex:0 0 auto;padding:14px 18px}
.pdp-trust{display:flex;gap:24px;margin-top:26px;padding-top:22px;border-top:1px solid var(--line);flex-wrap:wrap}
.pdp-trust span{font-size:12.5px;color:var(--muted);display:flex;align-items:center;gap:6px}

.pdp-tabs{max-width:var(--maxw);margin:0 auto;padding:0 var(--gutter) 60px}
.tab-nav{display:flex;gap:32px;border-bottom:1px solid var(--line);margin-bottom:32px;overflow-x:auto;scrollbar-width:none}
.tab-nav::-webkit-scrollbar{display:none}
.tab-btn{padding:14px 0;font-size:14px;font-weight:600;color:var(--muted);border-bottom:2px solid transparent;background:none;border-top:none;border-left:none;border-right:none;white-space:nowrap;flex:0 0 auto}
.tab-btn.active{color:var(--ink);border-color:var(--deep)}
.tab-pane{display:none;max-width:760px;line-height:1.8;color:var(--body-2)}
.tab-pane.active{display:block}
.tab-pane ul{margin:16px 0 0;padding-left:20px;list-style:disc}
.ingredient-chips{display:flex;flex-wrap:wrap;gap:8px;margin:16px 0}
.ingredient-chips span{background:var(--tint);color:var(--deep);padding:7px 13px;border-radius:999px;font-size:12.5px;font-weight:600}

.pdp-reviews{background:var(--surface-2);padding:60px var(--gutter)}
.pdp-reviews-inner{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:.8fr 1.2fr;gap:48px}
.rating-summary{background:var(--surface);border-radius:16px;padding:32px;text-align:center;border:1px solid var(--line);height:fit-content}
.rating-summary .big{font-size:clamp(42px,6vw,56px);font-weight:700;font-family:'Playfair Display',serif}
.bar-row{display:flex;align-items:center;gap:10px;font-size:12px;color:var(--muted);margin-top:8px}
.bar-track{flex:1;height:6px;border-radius:999px;background:var(--tint);overflow:hidden}
.bar-fill{height:100%;background:var(--gold)}
.review{padding:20px 0;border-bottom:1px solid var(--line)}
.review .rh{display:flex;justify-content:space-between;margin-bottom:8px;font-size:13px;color:var(--muted);gap:10px}
.review h5{font-size:15px;margin-bottom:6px}
.review p{color:var(--body-2);line-height:1.7;font-size:14px}
.verified{color:var(--mauve);font-weight:600;font-size:11.5px}

/* ------------------------------------------------------------------- cart */
.cart-page{max-width:900px;margin:0 auto;padding:60px var(--gutter)}
.cart-page h1{font-size:clamp(24px,4vw,32px)}
.cart-item{display:grid;grid-template-columns:88px 1fr auto;gap:16px;align-items:center;padding:20px 0;border-bottom:1px solid var(--line)}
.cart-item .thumb{width:88px;height:88px;border-radius:12px;background:linear-gradient(160deg,var(--g1,#F4EBE6),var(--g2,#E7D5C9));flex:0 0 auto}
.cart-item h4{font-size:14.5px;margin-bottom:4px}
.cart-item .brand{font-size:12px;color:var(--muted);text-transform:uppercase}
.cart-item .price{font-size:14px;font-weight:600;margin-top:6px;white-space:nowrap}
.cart-item .remove{font-size:12px;color:var(--muted);margin-top:8px;background:none;border:none;padding:0}
.cart-item .remove:hover{color:var(--rose)}
.cart-summary{max-width:400px;margin-left:auto;margin-top:30px;background:var(--surface-2);border-radius:16px;padding:24px}
.summary-row{display:flex;justify-content:space-between;font-size:13.5px;color:var(--body-2);margin-bottom:12px;gap:12px}
.summary-row.total{font-size:17px;font-weight:700;color:var(--ink);border-top:1px solid var(--line);padding-top:14px;margin-top:6px}
.cart-summary .btn{width:100%;margin-top:16px}

/* --------------------------------------------------------------- checkout */
.co-layout{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1.35fr .85fr;gap:48px;padding:50px var(--gutter)}
.co-head{max-width:1200px;margin:0 auto;padding:36px var(--gutter) 0}
.co-head h1{font-size:clamp(22px,3.4vw,28px);margin-top:10px}
.co-step{background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:28px;margin-bottom:24px}
.co-step h3{font-size:16px;margin-bottom:18px;display:flex;align-items:center;gap:10px}
.co-step .stepno{width:26px;height:26px;border-radius:50%;background:var(--tint);color:var(--deep);font-size:12.5px;font-weight:700;display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.field{margin-bottom:16px}
.field label{display:block;font-size:12.5px;font-weight:600;color:var(--body-2);margin-bottom:7px}
.field input,.field textarea,.field select{width:100%;padding:12px 14px;border-radius:10px}
.field .error{color:var(--rose);font-size:12px;margin-top:6px}
.area-cards{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.area-card{border:1px solid var(--line);border-radius:12px;padding:14px;cursor:pointer;font-size:13.5px}
.area-card input{margin-right:8px;width:auto}
.area-card.active{border-color:var(--ink);background:var(--tint)}
.pay-card{border:1px solid var(--ink);background:var(--tint);border-radius:12px;padding:16px;font-size:13.5px}
.order-summary{background:var(--surface-2);border-radius:16px;padding:24px;height:fit-content;position:sticky;top:100px}
.order-summary .oi{display:flex;justify-content:space-between;font-size:13px;margin-bottom:10px;color:var(--body-2);gap:12px}
.checkout-footnote{font-size:11.5px;color:var(--muted);margin-top:12px;text-align:center}

/* -------------------------------------------------------------- confirmation */
.confirm-page{max-width:640px;margin:0 auto;padding:90px var(--gutter);text-align:center}
.confirm-check{width:80px;height:80px;border-radius:50%;background:var(--tint);color:var(--mauve);display:flex;align-items:center;justify-content:center;margin:0 auto 24px}
.confirm-check svg{width:36px;height:36px}
.confirm-page h1{font-size:clamp(23px,4vw,30px);margin-bottom:12px}
.confirm-page > p{color:var(--body-2);line-height:1.7;margin-bottom:32px}
.order-card{background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:26px;text-align:left;margin-bottom:28px}
.order-card .num{font-family:'Playfair Display',serif;font-size:22px;margin-bottom:14px}
.cod-badge{display:inline-block;background:var(--tint);color:var(--deep);font-size:11.5px;font-weight:700;padding:5px 11px;border-radius:999px;margin-bottom:14px}
.confirm-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* ------------------------------------------------------------------- search */
.search-hero{background:var(--search-wash);padding:70px var(--gutter);text-align:center}
.search-hero h1{font-size:clamp(24px,4vw,34px);margin:10px 0 24px}
.search-bar{max-width:560px;margin:0 auto;display:flex;gap:10px}
.search-bar input{flex:1;padding:15px 20px;border-radius:999px;font-size:14px;min-width:0}
.popular-terms{margin-top:20px;display:flex;gap:8px;justify-content:center;flex-wrap:wrap;align-items:center}
.popular-terms span{font-size:12.5px;color:var(--muted)}
.popular-terms a{padding:6px 13px;border-radius:999px;border:1px solid var(--line);font-size:12.5px;background:var(--surface)}

/* --------------------------------------------------------------------- about */
.about-hero{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:1.05fr .95fr;gap:52px;padding:60px var(--gutter);align-items:center}
.about-hero h1{font-size:clamp(26px,4vw,38px);margin:10px 0 18px}
.about-hero p{color:var(--body-2);line-height:1.8}
.about-hero-media{aspect-ratio:4/3;border-radius:20px;background:radial-gradient(120% 140% at 30% 20%,var(--art-1),var(--art-2))}
.values-grid{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px;padding:20px var(--gutter) 60px}
.value-card{background:var(--surface-2);border-radius:16px;padding:28px}
.value-card h3{font-size:17px;margin-bottom:10px}
.value-card p{color:var(--body-2);line-height:1.7;font-size:13.5px}
.contact-grid{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:36px;padding:0 var(--gutter) 70px}
.contact-card{background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:32px}
.contact-card h3{font-size:17px;margin-bottom:16px}
.contact-line{display:flex;gap:10px;font-size:13.5px;color:var(--body-2);margin-bottom:12px}

/* ----------------------------------------------------------- content pages */
.page-hero{max-width:760px;margin:0 auto;padding:70px var(--gutter) 34px;text-align:center}
.page-hero h1{font-size:clamp(24px,4vw,34px);margin:10px 0 12px}
.page-hero p{color:var(--body-2);line-height:1.7}

/* Long-form copy: legal pages and the FAQ. Held to a comfortable measure
   rather than the full grid width, since these are read rather than scanned. */
.prose{max-width:760px;margin:0 auto;padding:0 var(--gutter) 80px}
.prose h2{font-size:19px;margin:34px 0 12px}
.prose h3{font-size:15.5px;margin:24px 0 8px}
.prose p{color:var(--body-2);line-height:1.8;margin-bottom:14px;font-size:14px}
.prose ul{margin:0 0 16px 20px;color:var(--body-2);line-height:1.8;font-size:14px}
.prose li{margin-bottom:7px}
.prose strong{color:var(--ink)}
.prose .updated{font-size:12.5px;color:var(--muted);margin-bottom:26px}
.prose .callout{background:var(--surface-2);border-radius:12px;padding:18px 20px;margin:22px 0}
.prose .callout p:last-child{margin-bottom:0}

/* FAQ: details/summary so it works with no JavaScript at all. */
.faq-item{border-bottom:1px solid var(--line)}
.faq-item summary{cursor:pointer;padding:18px 0;font-weight:600;font-size:14.5px;list-style:none;display:flex;justify-content:space-between;gap:16px;align-items:center}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';font-size:20px;color:var(--mauve);flex-shrink:0;line-height:1}
.faq-item[open] summary::after{content:'−'}
.faq-item .faq-body{padding:0 0 18px;color:var(--body-2);line-height:1.8;font-size:14px}
.faq-item .faq-body p{margin-bottom:12px}
.faq-item .faq-body p:last-child{margin-bottom:0}

/* ---------------------------------------------------------------- tracking */
.track-page{max-width:600px;margin:0 auto;padding:70px var(--gutter) 90px}
.track-head{text-align:center;margin-bottom:30px}
.track-head h1{font-size:clamp(23px,4vw,30px);margin:10px 0 10px}
.track-head p{color:var(--body-2);line-height:1.7}
.track-form{background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:26px}
.track-result{background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:26px;margin-top:24px}
.track-result-head{display:flex;justify-content:space-between;align-items:flex-start;gap:16px;flex-wrap:wrap}
.track-result-head .num{font-family:'Playfair Display',serif;font-size:22px}
.track-result-head .placed{font-size:12.5px;color:var(--muted);margin-top:4px}
.badge-status{display:inline-block;font-size:11.5px;font-weight:700;padding:5px 11px;border-radius:999px;background:var(--tint);color:var(--deep);white-space:nowrap}
.badge-status.is-cancelled,.badge-status.is-returned{background:color-mix(in srgb,var(--rose) 14%,transparent);color:var(--rose)}
/* Delivered, but not in full — distinct from both, since the customer is
   holding part of the order and may still be owed something. */
.badge-status.is-partial_delivered{background:color-mix(in srgb,var(--mauve) 16%,transparent);color:var(--deep)}

/* Progress rail: the line is drawn behind the dots, so completed steps read
   as a continuous path rather than four separate markers. */
.track-steps{display:flex;list-style:none;margin:26px 0 0;padding:0;position:relative}
.track-step{flex:1;text-align:center;position:relative;min-width:0}
.track-step .dot{display:block;width:14px;height:14px;border-radius:50%;background:var(--line);margin:0 auto 9px;position:relative;z-index:1;transition:background .2s ease}
.track-step .label{font-size:12px;color:var(--muted);display:block;line-height:1.4}
.track-step::before{content:'';position:absolute;top:6px;left:-50%;width:100%;height:2px;background:var(--line);z-index:0}
.track-step:first-child::before{display:none}
.track-step.is-done .dot,.track-step.is-current .dot{background:var(--mauve)}
.track-step.is-done::before,.track-step.is-current::before{background:var(--mauve)}
.track-step.is-current .dot{box-shadow:0 0 0 4px color-mix(in srgb,var(--mauve) 22%,transparent)}
.track-step.is-done .label,.track-step.is-current .label{color:var(--ink);font-weight:600}

/* Default note. The variant modifiers below carry their own ground; without
   a base one, a plain note renders as unpadded body text on the card. */
.track-note{margin-top:22px;padding:14px 16px;border-radius:12px;font-size:13px;line-height:1.6;background:var(--tint);color:var(--body-2)}
.track-note.is-off{background:color-mix(in srgb,var(--rose) 9%,transparent);color:var(--rose)}
.track-items{margin-top:26px;border-top:1px solid var(--line);padding-top:20px}
.track-items .oi{display:flex;justify-content:space-between;font-size:13px;margin-bottom:10px;color:var(--body-2);gap:12px}
.track-deliver{margin-top:18px;font-size:12.5px;color:var(--muted);line-height:1.6}
.track-help{text-align:center;margin-top:26px;font-size:13px;color:var(--muted)}
.track-help a{color:var(--mauve);font-weight:600}

@media(max-width:520px){
  .track-step .label{font-size:10.5px}
}

/* --------------------------------------------------------------- quick view */
.qv-content{display:grid;grid-template-columns:1fr 1fr;gap:24px}

/* ------------------------------------------------------------------ reveal */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}

/* ------------------------------------------------------------------- misc */
.skeleton{background:linear-gradient(100deg,var(--sk-1) 30%,var(--sk-2) 50%,var(--sk-1) 70%);background-size:900px 100%;animation:sk 1.4s linear infinite;border-radius:14px}
@keyframes sk{from{background-position:0 0}to{background-position:900px 0}}

/* ==========================================================================
   RESPONSIVE
   Layered widest → narrowest. The grids above are auto-fit, so these layers
   only handle what auto-fit can't express: the nav collapse, the two-column
   editorial/PDP splits, and the phone-specific rails.
   ========================================================================== */

/* ------------------------------------------------- big screens / 4K (≥1600) */
@media(min-width:1600px){
  :root{--maxw:1440px;--gutter:56px}
  .hero{height:680px}
  .rail-card{flex:0 0 320px}
}
@media(min-width:2000px){
  :root{--maxw:1600px}
  .hero{height:740px}
}

/* --------------------------------------------------------- laptop (≤1150) */
@media(max-width:1150px){
  :root{--gutter:32px}
  .shop-layout{grid-template-columns:230px 1fr;gap:28px}
  .pdp-main{gap:36px}
  .editorial-copy{padding:48px 40px}
}

/* --------------------------------------------- tablet landscape (≤980) */
@media(max-width:980px){
  :root{--gutter:26px}

  /* the desktop nav becomes a slide-down panel toggled by .nav-toggle */
  .main-nav{
    display:none;
    position:absolute;top:100%;left:0;right:0;
    flex-direction:column;align-items:stretch;
    gap:2px;padding:14px 20px 20px;
    background:var(--bg);border-bottom:1px solid var(--line);
    box-shadow:0 20px 40px -24px rgba(42,35,32,.4);
    max-height:calc(100vh - 100%);overflow-y:auto;
  }
  .main-nav.open{display:flex}
  .main-nav > *{width:100%}
  .main-nav a{display:block;padding:13px 4px;font-size:15px;border-bottom:1px solid var(--line)}
  .main-nav .hasmenu{padding:0;position:static}
  /* the mega menu is desktop-only hover UI — it cannot work on touch */
  .main-nav .mega{display:none}
  /* the underline animation is meaningless as a stacked list row */
  .main-nav .navlink::after{display:none}
  .nav-toggle{display:inline-flex}
  .site-header{position:sticky}
  .hdr-inner{position:relative}

  /* The theme control moves out of the cramped header into the menu panel. */
  .hdr-actions .theme-toggle{display:none}
  .main-nav .theme-row{
    display:flex;align-items:center;justify-content:space-between;
    width:100%;padding:14px 4px;margin-top:2px;
    background:none;border:none;border-top:1px solid var(--line);
    font-family:inherit;font-size:15px;color:var(--ink);cursor:pointer;
  }

  /* two-column splits collapse */
  .pdp-main,.editorial,.co-layout,.about-hero,.contact-grid,.pdp-reviews-inner,.qv-content{grid-template-columns:1fr}
  .shop-layout{grid-template-columns:1fr}
  .editorial-media{min-height:260px}

  /* sticky panels must not stick once the layout is one column */
  .filters,.order-summary{position:static}

  /* Shop filters become a togglable drawer rather than a permanent column —
     otherwise every visit starts with a screenful of filters before a product. */
  .filters{display:none;background:var(--surface);border:1px solid var(--line);border-radius:14px;padding:18px;margin-bottom:22px}
  .filters.open-mobile{display:block}
  [data-filter-toggle]{display:inline-flex}

  .foot-grid{grid-template-columns:1fr 1fr;gap:32px}
  .cart-summary{max-width:none}
}

/* ------------------------------------------------ tablet portrait (≤860) */
@media(max-width:860px){
  section{padding:44px var(--gutter)}
  /* the fixed 640px hero becomes auto so the copy can breathe on a phone */
  .hero{height:auto;min-height:0}
  .hero-ken{background-position:78% center}
  .hero-content{height:auto;padding:72px var(--gutter) 76px}
  #best{margin-top:44px;padding:56px 0}
  #categories{padding:44px var(--gutter) 12px}
  .editorial-copy{padding:40px 26px}
  .offer{min-height:0;padding:26px 22px}
  /* show ~1.2 cards so the next one peeks and the rail reads as scrollable */
  .rail-card{flex:0 0 76vw;max-width:300px}
  .confirm-page{padding:56px var(--gutter)}
  .cart-page{padding:40px var(--gutter)}
  .pdp-reviews{padding:44px var(--gutter)}
}

/* ------------------------------------------------------------ phone (≤640) */
@media(max-width:640px){
  :root{--gutter:16px}
  section{padding:36px var(--gutter)}
  #best{margin-top:32px;padding:44px 0}
  .hero-content{padding:56px var(--gutter) 60px}
  /* the rail nav sits beside the heading; at phone width it wraps under it */
  .section-head{align-items:flex-start}

  .ann-bar{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:2px 10px;line-height:1.5;padding:8px 14px;font-size:11.5px}
  .ann-bar > span{margin:0;white-space:nowrap}
  /* bullet separators strand themselves at line ends once phrases wrap */
  .ann-bar .ann-sep{display:none}

  .site-header{padding:14px var(--gutter)}
  .hdr-inner{gap:10px;flex-wrap:nowrap}
  .hdr-actions{gap:6px}
  .hdr-mark{flex:1 1 auto;min-width:0}
  /* the wide .32em tracking needs a tighter size to fit beside the icons */
  .hdr-mark .logo{font-size:16px;letter-spacing:.22em}
  .hdr-mark .tagline{display:none}
  .theme-toggle,.nav-toggle,.hdr-icon-btn{width:36px;height:36px}

  .section-head{margin-bottom:24px}
  .grid-4,.grid-3,.trust-row,.values-grid{grid-template-columns:1fr}
  /* the listing grids stay 2-up: one column turns 16 products into an endless
     scroll, which is the wrong trade for a shop page */
  .shop-grid{grid-template-columns:repeat(2,1fr);gap:22px 12px}
  .shop-grid .p-title{font-size:13px;min-height:34px}
  .shop-grid .p-bar button{font-size:12px;padding:11px 6px}
  .foot-grid{grid-template-columns:1fr;gap:28px}
  .foot-brand p{max-width:none}

  /* Category section: nine tiles in any grid is either a long scroll or nine
     cramped boxes. A single swipeable rail costs one screen-band of height and
     still exposes every category — the pattern large storefronts use. */
  #categories{padding:30px var(--gutter) 8px}
  #categories .cat-grid{
    display:flex;gap:10px;overflow-x:auto;scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;scrollbar-width:none;
    margin:0 calc(var(--gutter) * -1);padding:2px var(--gutter) 6px;
  }
  #categories .cat-grid::-webkit-scrollbar{display:none}
  #categories .cat{flex:0 0 auto;min-height:36px;padding:0 13px;scroll-snap-align:start}
  #categories .cat::before{width:4px;height:4px;margin-right:7px}
  #categories .cat-name{font-size:11.5px}

  /* hover-only affordances are unreachable on touch — always show them */
  .p-bar{transform:none}
  .cat-cta{opacity:1;transform:none}

  /* stacked cart row: thumb + copy, price on its own line */
  .cart-item{grid-template-columns:64px 1fr;gap:12px}
  .cart-item .thumb{width:64px;height:64px}
  .cart-item .price{grid-column:2;margin-top:0}

  .area-cards{grid-template-columns:1fr}
  .co-step{padding:20px 18px}
  .cart-summary,.order-summary{padding:20px 18px}
  .confirm-page{padding:44px var(--gutter)}
  .search-hero{padding:48px var(--gutter)}
  .tab-nav{gap:22px}

  /* the authored [input][button] row squeezes the button off the edge */
  .search-bar{flex-direction:column;width:100%;max-width:400px}
  .search-bar > input,.search-bar > button{width:100%;flex:0 0 auto}

  .hero-ctas .btn{flex:1 1 auto;justify-content:center}
  .buybox-actions .btn{flex:1 1 100%}
  .buybox-actions .btn-outline{flex:0 0 auto}

  /* comfortable touch targets */
  button,input,select,a.btn,.btn{min-height:44px}
  .qty-stepper input{min-height:0}
}

/* ------------------------------------------------------ small phone (≤430) */
@media(max-width:430px){
  .shop-grid{grid-template-columns:1fr}
  .toolbar{padding:16px var(--gutter)}
  .toolbar form{width:100%}
  .toolbar select{flex:1}
  .pdp-trust{gap:12px}
  .review .rh{flex-direction:column;gap:2px}
  .foot-bottom{flex-direction:column;gap:6px}
  .confirm-actions .btn{width:100%}
}

/* respect reduced motion */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001s !important;transition-duration:.001s !important;scroll-behavior:auto !important}
}

/* ==========================================================================
   Variants, galleries, promos
   ========================================================================== */

/* ------------------------------------------------------- cards & pricing */
.p-price .from{font-size:12px;color:var(--muted);margin-right:-4px}
.p-sizes{margin-top:6px;font-size:11.5px;color:var(--muted);letter-spacing:.02em}

/* Batch expiry on a card. Deliberately muted rather than alarm-coloured —
   it is disclosure, not a warning, and the discount is the headline. */
.p-expiry{margin-top:6px;font-size:11.5px;color:var(--muted);letter-spacing:.02em}
.p-badge.soldout{background:var(--muted);left:auto;right:14px;top:auto;bottom:14px}
.p-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:1}
.p-choose{
  display:block;width:100%;background:var(--mauve);color:#fff;border:none;border-radius:10px;
  padding:13px;font-size:13.5px;font-weight:600;letter-spacing:.03em;text-align:center;
  box-shadow:0 10px 24px -10px rgba(111,74,65,.7);
}
.p-choose:hover{background:var(--deep)}
.p-choose.is-disabled{background:var(--muted);box-shadow:none;cursor:not-allowed}

/* ------------------------------------------------------------ PDP: sizes */
.size-label{font-size:12.5px;font-weight:600;color:var(--muted);margin-bottom:10px;text-transform:uppercase;letter-spacing:.05em}
.size-chip{cursor:pointer;transition:border-color .18s ease,background .18s ease,color .18s ease}
.size-chip:hover:not(:disabled){border-color:var(--mauve)}
.size-chip.is-out{opacity:.45;cursor:not-allowed;text-decoration:line-through}
.size-chip .chip-note{display:block;font-size:10px;letter-spacing:.03em;text-decoration:none}

/* Same restraint as the card notice, sized for the buy box. */
.expiry-note{
  display:flex;align-items:center;gap:7px;margin:-2px 0 14px;
  font-size:12.5px;color:var(--muted);letter-spacing:.01em;
}
.expiry-note svg{flex:none;opacity:.8}

.stock-note{font-size:12.5px;color:var(--muted)}
.stock-note.is-low{color:var(--rose);font-weight:600}
.stock-note.is-out{color:var(--rose);font-weight:600}

.sale-banner{
  background:var(--rose);color:var(--on-accent);font-size:12.5px;font-weight:600;
  padding:9px 14px;border-radius:10px;margin-bottom:16px;display:inline-block;
}

/* ---------------------------------------------------------- PDP: gallery */
.pdp-gallery-main img{width:100%;height:100%;object-fit:contain;display:block;background:var(--surface)}
.pdp-thumbs .thumb{padding:0;overflow:hidden;transition:border-color .18s ease}
.pdp-thumbs .thumb img{width:100%;height:100%;object-fit:cover;display:block}
.pdp-thumbs .thumb.active{border-color:var(--ink)}
.pdp-thumbs button.thumb{cursor:pointer}

/* ------------------------------------------------------------ PDP: facts */
.pdp-facts{margin-top:24px;padding-top:20px;border-top:1px solid var(--line);display:grid;gap:10px}
.fact-row{display:grid;grid-template-columns:110px 1fr;gap:14px;font-size:13px;align-items:start}
.fact-label{color:var(--muted);text-transform:uppercase;font-size:11px;letter-spacing:.05em;padding-top:2px}
.fact-value{color:var(--body-2);line-height:1.6}

.badge-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px}
.attr-badge{
  font-size:11.5px;font-weight:600;padding:5px 11px;border-radius:999px;
  background:var(--tint);color:var(--deep);
}

.spec-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:18px}
.spec-grid dt{font-size:11px;text-transform:uppercase;letter-spacing:.05em;color:var(--muted);margin-bottom:4px}
.spec-grid dd{font-size:13.5px;color:var(--ink);margin:0}

/* ------------------------------------------------------- cart & checkout */
.cart-item .thumb{object-fit:cover}
.cart-variant{
  display:inline-block;margin-top:4px;font-size:11.5px;font-weight:600;
  padding:3px 9px;border-radius:999px;background:var(--tint);color:var(--deep);
}
.cart-unit{margin-top:6px;font-size:12.5px;color:var(--muted)}
.cart-unit .was{text-decoration:line-through;margin-left:6px;opacity:.75}
.cart-lowstock{margin-top:6px;font-size:12px;color:var(--rose);font-weight:600}

.cart-error{
  background:color-mix(in srgb,var(--rose) 12%,transparent);
  border:1px solid var(--rose);color:var(--rose);
  padding:12px 16px;border-radius:12px;font-size:13px;margin-bottom:18px;font-weight:500;
}

.summary-row.is-saving{color:var(--rose);font-weight:600}

.coupon-form{display:flex;gap:8px;margin-bottom:18px}
.coupon-form input{
  flex:1;min-width:0;padding:11px 13px;border:1px solid var(--line);border-radius:10px;
  background:var(--surface);color:var(--ink);font-size:13px;text-transform:uppercase;
}
.coupon-form input:focus{outline:none;border-color:var(--mauve)}
.coupon-form .btn{width:auto;margin-top:0;flex:0 0 auto}

.coupon-applied{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  background:var(--tint);border-radius:12px;padding:12px 14px;margin-bottom:18px;font-size:13px;
}
.coupon-applied span{color:var(--muted);margin-left:6px}
.coupon-applied button{background:none;border:none;font-size:12px;color:var(--rose);font-weight:600;padding:0;cursor:pointer}

.oi-variant{
  font-style:normal;font-size:11.5px;color:var(--muted);
  padding:2px 7px;border-radius:999px;background:var(--tint);margin:0 4px;
}
.free-ship-note{margin-top:10px;font-size:12.5px;color:var(--rose);font-weight:600}
.saved-note{margin-top:12px;font-size:13px;color:var(--rose);font-weight:600}

.qv-sizes{font-size:12px;color:var(--muted);margin-bottom:10px}

/* ------------------------------------------------------------- filters */
.filter-check{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--body-2);margin-bottom:8px;cursor:pointer}
.filter-check input{width:16px;height:16px;accent-color:var(--mauve)}

@media(max-width:640px){
  .fact-row{grid-template-columns:1fr;gap:2px}
  .coupon-form{flex-direction:column}
  .coupon-form .btn{width:100%}
}

/* ==========================================================================
   Cart drawer
   Slides in over the page so adding to the bag never costs a navigation.
   Sits above the header (50) but below the toast (200).
   ========================================================================== */
.cart-scrim{
  position:fixed;inset:0;background:rgba(0,0,0,.45);
  opacity:0;transition:opacity .25s ease;z-index:100;
}
.cart-scrim.is-open{opacity:1}

.cart-drawer{
  position:fixed;top:0;right:0;bottom:0;width:min(420px,100vw);
  display:flex;flex-direction:column;
  background:var(--surface);border-left:1px solid var(--line);
  box-shadow:-24px 0 60px -30px rgba(0,0,0,.45);
  transform:translateX(100%);transition:transform .28s cubic-bezier(.32,.72,.3,1);
  z-index:110;
}
.cart-drawer.is-open{transform:translateX(0)}

.drawer-head{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:20px 22px;border-bottom:1px solid var(--line);flex:0 0 auto;
}
.drawer-head h2{font-size:16px;margin:0;display:flex;align-items:center;gap:9px}
.drawer-count{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:22px;height:22px;padding:0 6px;border-radius:999px;
  background:var(--mauve);color:#fff;font-size:12px;font-weight:700;
}
.drawer-close{
  width:36px;height:36px;flex:0 0 auto;display:flex;align-items:center;justify-content:center;
  border:1px solid var(--line);border-radius:9px;background:transparent;color:var(--ink);
}
.drawer-close:hover{border-color:var(--mauve);color:var(--mauve)}
.drawer-close svg{width:17px;height:17px}

/* The only scrolling region, so the checkout button stays reachable. */
.drawer-body{flex:1;display:flex;flex-direction:column;min-height:0}
.drawer-items{flex:1;overflow-y:auto;padding:18px 22px;-webkit-overflow-scrolling:touch}

.drawer-item{
  display:grid;grid-template-columns:64px 1fr auto;gap:13px;
  padding:16px 0;border-bottom:1px solid var(--line);
}
.drawer-item:first-of-type{padding-top:0}
.drawer-item:last-child{border-bottom:none}
.drawer-thumb{display:block;width:64px;height:64px;border-radius:10px;overflow:hidden;flex:0 0 auto}
.drawer-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.drawer-thumb .thumb{
  display:block;width:100%;height:100%;
  background:linear-gradient(160deg,var(--g1,#F4EBE6),var(--g2,#E7D5C9));
}
.drawer-item-body{min-width:0}
.drawer-item-body .brand{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:.04em}
.drawer-item-name{display:block;font-size:13.5px;font-weight:600;color:var(--ink);margin-top:2px}
.drawer-item-name:hover{color:var(--mauve)}
.drawer-item-price{font-size:13.5px;font-weight:700;white-space:nowrap}
.drawer-expiry{margin-top:5px;font-size:11.5px;color:var(--muted)}

.drawer-item-foot{display:flex;align-items:center;gap:12px;margin-top:9px;flex-wrap:wrap}
.drawer-item-foot .qty-stepper button{width:30px;height:32px;font-size:15px}
.drawer-item-foot .qty-stepper input{width:34px;font-size:13px}
.drawer-item-foot .remove{
  font-size:12px;color:var(--muted);background:none;border:none;padding:0;text-decoration:underline;
}
.drawer-item-foot .remove:hover{color:var(--rose)}

/* Pinned below the scrolling items. */
.drawer-foot{
  flex:0 0 auto;padding:18px 22px;
  border-top:1px solid var(--line);background:var(--surface-2);
}
.drawer-foot .coupon-form{margin-bottom:14px}
.drawer-foot .summary-row{margin-bottom:9px}
.drawer-checkout{width:100%;margin-top:6px;text-align:center}
.drawer-foot-links{
  display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:12px;
}
.drawer-foot-links a,
.drawer-foot-links button{
  font-size:12.5px;color:var(--muted);background:none;border:none;padding:0;text-decoration:underline;
}
.drawer-foot-links a:hover,
.drawer-foot-links button:hover{color:var(--mauve)}

.drawer-error{
  background:rgba(200,72,72,.10);color:var(--rose);
  font-size:12.5px;font-weight:600;padding:10px 12px;border-radius:9px;margin-bottom:12px;
}

.drawer-empty{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;padding:50px 24px;text-align:center}
.drawer-empty h3{font-size:16px;margin:0}
.drawer-empty p{font-size:13px;color:var(--muted);margin:0 0 8px}

/* Locks the page behind the drawer without the layout shifting. */
body.drawer-open{overflow:hidden}

@media(max-width:480px){
  .cart-drawer{width:100vw;border-left:none}
  .drawer-items,.drawer-foot,.drawer-head{padding-left:16px;padding-right:16px}
}

@media(prefers-reduced-motion:reduce){
  .cart-drawer,.cart-scrim{transition:none}
}

/* Explains a promo discount that is smaller than the code's headline value,
   because part of the basket was already marked down. */
.coupon-note{display:block;font-size:11.5px;color:var(--muted);margin-top:2px}

/* A radio group's heading is a legend, not a label. Stripped back to look
   like the plain field labels around it. */
.field-group{border:0;padding:0;margin:0;min-width:0}
.field-group > legend{padding:0}

/* Error pages: two ways out, side by side, wrapping on a narrow screen. */
.err-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-top:18px}

/* ============================================================ site search */
/* Visible only to screen readers — labels a field the design shows with a
   placeholder and an icon. */
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

/* The search grows out of its own icon rather than dropping a panel over the
   page: the field opens where the icon already sits, and the results hang
   under it. */
.hdr-search{position:relative;display:flex;align-items:center;flex:0 0 auto}

.hdr-search-form{
  display:flex;align-items:center;
  width:0;opacity:0;visibility:hidden;overflow:hidden;
  transition:width .3s ease,opacity .2s ease,visibility .3s;
}
.hdr-search.is-open .hdr-search-form{
  width:clamp(220px,26vw,340px);opacity:1;visibility:visible;
  margin-left:8px;
}
.hdr-search-form input{
  flex:1;min-width:0;
  border:0;border-bottom:1px solid var(--line);background:transparent;color:var(--ink);
  font-family:inherit;font-size:14px;padding:7px 4px;
}
.hdr-search-form input:focus{outline:none;border-bottom-color:var(--brand)}
.hdr-search-form input::placeholder{color:var(--muted)}
/* the browser's own clear button is redundant beside our close */
.hdr-search-form input::-webkit-search-cancel-button{display:none}

.hdr-search-clear{
  flex:0 0 auto;width:26px;height:26px;margin-left:4px;
  border:0;border-radius:50%;background:transparent;color:var(--muted);
  display:inline-flex;align-items:center;justify-content:center;cursor:pointer;
}
.hdr-search-clear:hover{background:var(--tint);color:var(--deep)}
.hdr-search-clear svg{width:15px;height:15px}

/* --- results, hanging under the field */
.hdr-search-results{
  position:absolute;top:calc(100% + 14px);right:0;
  width:min(420px,calc(100vw - 32px));
  background:var(--surface);border:1px solid var(--line);border-radius:16px;
  box-shadow:var(--shadow-lg);
  padding:8px;z-index:60;
  max-height:min(70vh,520px);overflow-y:auto;overscroll-behavior:contain;
}

.search-result{
  display:flex;align-items:center;gap:12px;padding:9px 8px;border-radius:11px;
  color:inherit;
}
/* Hover and keyboard focus share one look, so arrowing through the list reads
   the same as pointing at it. */
.search-result:hover,.search-result.is-active{background:var(--surface-2)}
.search-result-thumb{
  width:46px;height:46px;border-radius:9px;flex:0 0 auto;overflow:hidden;
  background:linear-gradient(160deg,var(--g1,#F4EBE6),var(--g2,#E7D5C9));
}
.search-result-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.search-result-text{min-width:0;flex:1}
.search-result-brand{
  display:block;font-size:10.5px;text-transform:uppercase;letter-spacing:.06em;color:var(--muted);
}
.search-result-name{
  display:-webkit-box;font-size:13.5px;font-weight:600;line-height:1.3;margin-top:2px;
  overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;-webkit-box-orient:vertical;
}
.search-result-meta{display:flex;align-items:center;gap:7px;flex:0 0 auto}
.search-result-price{font-size:13.5px;font-weight:600;white-space:nowrap}
.search-result-price small{font-weight:400;color:var(--muted);font-size:11px}
.search-flag{
  font-size:10px;font-weight:600;padding:2px 7px;border-radius:999px;white-space:nowrap;
}
.search-flag.is-sale{background:var(--tint);color:var(--deep)}
.search-flag.is-out{background:rgba(200,72,72,.14);color:#C84848}

.search-all{
  display:block;text-align:center;margin-top:6px;padding:11px;
  border-top:1px solid var(--line);font-size:13px;font-weight:600;color:var(--deep);
}
.search-all:hover{background:var(--surface-2);border-radius:0 0 10px 10px}

.search-empty{padding:22px 10px;text-align:center;color:var(--muted);font-size:13.5px;line-height:1.5}
.search-empty strong{color:var(--ink)}

/* On a phone there is no room to grow sideways out of the header, so the
   field takes the row and the results span it. */
@media(max-width:860px){
  .hdr-search.is-open{position:static}
  .hdr-search.is-open .hdr-search-form{
    position:absolute;left:var(--gutter);right:var(--gutter);top:50%;
    transform:translateY(-50%);
    width:auto;margin-left:0;background:var(--header-bg);z-index:5;
  }
  .hdr-search-form input{font-size:16px}   /* 16px stops iOS zooming on focus */
  .hdr-search-results{
    left:var(--gutter);right:var(--gutter);width:auto;
    top:calc(100% + 10px);
  }
}

@media(prefers-reduced-motion:reduce){
  .hdr-search-form{transition:none}
}
