/* ============================================================
   AMBERTON & CO. - Premium Australian Whisky
   Design system + components
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root{
  /* Core palette */
  --ink:          #0C0B0A;
  --ink-800:      #131110;
  --ink-700:      #1B1817;
  --ink-600:      #262120;
  --ink-500:      #332C29;

  --cream:        #F6F1E8;
  --cream-200:    #EDE4D5;
  --cream-300:    #DED2BE;

  --amber:        #C88A32;
  --amber-bright: #E0A445;
  --amber-soft:   #EFCB86;
  --amber-deep:   #8E5A1C;

  --wood:         #6B4527;
  --wood-light:   #8C6340;

  --paper:        #FBF8F3;
  --paper-alt:    #F3EDE3;

  /* Semantic */
  --bg:           var(--paper);
  --fg:           #1A1614;
  --fg-muted:     #6E655C;
  --fg-subtle:    #948A7F;
  --line:         #E6DDCE;
  --line-strong:  #CFC2AC;

  --success:      #3F7A55;
  --danger:       #A63A2E;

  /* Type */
  --display: "Cormorant Garamond", "Hoefler Text", Garamond, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Space + shape */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --maxw: 1400px;
  --maxw-narrow: 1120px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(26,22,20,.08);
  --shadow-md: 0 2px 6px rgba(26,22,20,.10);
  --shadow-lg: 0 6px 18px rgba(26,22,20,.14);
  --shadow-gold: 0 4px 12px rgba(26,22,20,.16);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --header-h: 74px;
}

/* ---------- 2. Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
body.is-locked{ overflow:hidden; }
img,svg,video{ display:block; max-width:100%; }
button,input,select,textarea{ font:inherit; color:inherit; }
button{ background:none; border:0; cursor:pointer; padding:0; }
a{ color:inherit; text-decoration:none; }
ul,ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,h5,p,figure{ margin:0; }
table{ border-collapse:collapse; width:100%; }
:focus-visible{ outline:2px solid var(--amber); outline-offset:3px; border-radius:2px; }
::selection{ background:var(--amber-soft); color:var(--ink); }

.skip-link{
  position:absolute; left:1rem; top:-100px; z-index:9999;
  background:var(--ink); color:var(--cream); padding:.85rem 1.4rem;
  border-radius:var(--r-pill); font-size:.8125rem; letter-spacing:.08em; text-transform:uppercase;
  transition:top .3s var(--ease);
}
.skip-link:focus{ top:1rem; }
.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;
}

/* ---------- 3. Typography ---------- */
.display{ font-family:var(--display); font-weight:300; line-height:1.03; letter-spacing:-.015em; }
.d1{ font-size:clamp(2.9rem, 7.2vw, 6rem); }
.d2{ font-size:clamp(2.2rem, 4.4vw, 3.75rem); }
.d3{ font-size:clamp(1.7rem, 2.8vw, 2.5rem); }
.d4{ font-size:clamp(1.3rem, 2vw, 1.7rem); }

.eyebrow{
  display:inline-block;
  font-size:.688rem; letter-spacing:.24em; text-transform:uppercase;
  font-weight:600; color:var(--amber-deep);
}
.eyebrow--light{ color:var(--amber-soft); }
.eyebrow::before{
  content:""; display:inline-block; width:26px; height:1px;
  background:currentColor; vertical-align:middle; margin-right:.75em; opacity:.65;
}
.lede{ font-size:clamp(1rem,1.15vw,1.0625rem); color:var(--fg-muted); max-width:58ch; line-height:1.78; }
.muted{ color:var(--fg-muted); }
.tnum{ font-variant-numeric:tabular-nums; }

/* ---------- 4. Layout ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.wrap--narrow{ max-width:var(--maxw-narrow); }
.section{ padding-block:clamp(4rem,7.5vw,7rem); }
.section--tight{ padding-block:clamp(2.75rem,4.5vw,4.25rem); }
.section--dark{ background:var(--ink); color:var(--cream); }
.section--alt{ background:var(--paper-alt); }
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:2rem; flex-wrap:wrap; margin-bottom:clamp(2rem,3.2vw,3rem); }
.section-head__text{ max-width:54ch; }
.section-head h2{ margin-top:.7rem; }
.section-head p{ margin-top:.85rem; }
.section--dark .lede,.section--dark .muted{ color:rgba(246,241,232,.6); }
.hr{ height:1px; background:var(--line); border:0; }

/* ---------- 5. Buttons ---------- */
.btn{
  --btn-bg:var(--ink); --btn-fg:var(--cream); --btn-bd:var(--ink);
  position:relative; display:inline-flex; align-items:center; justify-content:center;
  gap:.6rem; padding:.9rem 1.8rem; min-height:50px;
  background:var(--btn-bg); color:var(--btn-fg);
  border:1px solid var(--btn-bd); border-radius:var(--r-pill);
  font-size:.8125rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  text-align:center; cursor:pointer; overflow:hidden; isolation:isolate;
  transition:transform .32s var(--ease), box-shadow .32s var(--ease), color .32s var(--ease), border-color .32s var(--ease);
}
.btn::after{
  content:""; position:absolute; inset:0; z-index:-1; border-radius:inherit;
  background:var(--amber);
  transform:translateY(101%); transition:transform .45s var(--ease-out);
}
.btn:hover{ color:var(--ink); border-color:transparent; transform:translateY(-2px); box-shadow:var(--shadow-gold); }
.btn:hover::after{ transform:translateY(0); }
.btn:active{ transform:translateY(0); }
.btn--gold{ --btn-bg:var(--amber); --btn-fg:var(--ink); --btn-bd:transparent; }
.btn--gold::after{ background:var(--ink); }
.btn--gold:hover{ color:var(--cream); }
.btn--ghost{ --btn-bg:transparent; --btn-fg:var(--fg); --btn-bd:var(--line-strong); }
.btn--ghost-light{ --btn-bg:transparent; --btn-fg:var(--cream); --btn-bd:rgba(246,241,232,.34); }
.btn--block{ width:100%; }
.btn--sm{ min-height:40px; padding:.55rem 1.1rem; font-size:.6875rem; }
.btn--lg{ min-height:58px; padding:1.1rem 2.3rem; }
.btn[disabled]{ opacity:.4; pointer-events:none; }

.link-underline{
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:.8125rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  padding-bottom:.35rem; border-bottom:1px solid currentColor;
  transition:gap .3s var(--ease), color .3s var(--ease);
}
.link-underline:hover{ gap:.9rem; color:var(--amber-deep); }
.section--dark .link-underline:hover{ color:var(--amber-soft); }
.link-underline svg{ width:15px; height:15px; }

.iconbtn{
  position:relative; display:inline-grid; place-items:center;
  width:42px; height:42px; border-radius:var(--r-pill); color:inherit;
  transition:background-color .3s var(--ease), color .3s var(--ease);
}
.iconbtn:hover{ background:rgba(200,138,50,.14); color:var(--amber-deep); }
.iconbtn svg{ width:20px; height:20px; }
.iconbtn__count{
  position:absolute; top:1px; right:-1px;
  min-width:18px; height:18px; padding:0 5px;
  display:grid; place-items:center;
  background:var(--amber); color:var(--ink); border-radius:var(--r-pill);
  font-size:.625rem; font-weight:700; line-height:1;
  transform:scale(0); transition:transform .35s var(--ease-out);
}
.iconbtn__count.is-on{ transform:scale(1); }
.iconbtn__count.pop{ animation:pop .5s var(--ease-out); }
@keyframes pop{ 0%{transform:scale(1)} 40%{transform:scale(1.5)} 100%{transform:scale(1)} }

/* ---------- 6. Forms ---------- */
.field{ display:block; }
.field__label{
  display:block; font-size:.688rem; letter-spacing:.16em; text-transform:uppercase;
  font-weight:600; color:var(--fg-muted); margin-bottom:.5rem;
}
.input,.select,.textarea{
  width:100%; padding:.85rem 1.05rem; min-height:50px;
  background:#fff; color:var(--fg);
  border:1px solid var(--line-strong); border-radius:var(--r-md);
  font-size:.9375rem; transition:border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.input::placeholder,.textarea::placeholder{ color:var(--fg-subtle); }
.input:focus,.select:focus,.textarea:focus{
  outline:none; border-color:var(--amber); box-shadow:0 0 0 3px rgba(200,138,50,.16);
}
.textarea{ min-height:96px; resize:vertical; padding-top:.75rem; }
.select{
  appearance:none; padding-right:2.4rem; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%236E655C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 1rem center;
}
.checkbox{ display:flex; align-items:center; gap:.7rem; cursor:pointer; font-size:.875rem; }
.checkbox input{
  appearance:none; flex:none; width:18px; height:18px;
  border:1px solid var(--line-strong); border-radius:var(--r-sm); background:#fff;
  transition:background-color .2s var(--ease), border-color .2s var(--ease);
}
.checkbox input:checked{ background:var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'%3E%3Cpath d='M1 4.6 4 7.6 10 1.4' fill='none' stroke='%23EFCB86' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px 9px no-repeat; border-color:var(--ink); }
.checkbox:hover{ color:var(--amber-deep); }
.checkbox__count{ margin-left:auto; font-size:.75rem; color:var(--fg-subtle); font-variant-numeric:tabular-nums; }

/* Brand rows are links, not checkboxes: one brand at a time, each with its
   own page. Styled to sit in the same rhythm as the checkbox facets. */
.fgroup__link{
  display:flex; align-items:center; gap:.7rem;
  padding:.15rem 0; font-size:.875rem; color:inherit;
  transition:color .2s var(--ease);
}
.fgroup__link::before{
  content:""; flex:none; width:18px; height:18px;
  border:1px solid var(--line-strong); border-radius:50%; background:#fff;
  transition:background-color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.fgroup__link:hover{ color:var(--amber-deep); }
.fgroup__link:hover::before{ border-color:var(--amber); }
.fgroup__link.is-on{ color:var(--amber-deep); font-weight:600; }
.fgroup__link.is-on::before{
  background:var(--ink); border-color:var(--ink); box-shadow:inset 0 0 0 3px #fff;
}

/* ---------- 7. Header ---------- */
.announce{
  background:var(--ink); color:rgba(246,241,232,.8);
  font-size:.75rem; letter-spacing:.1em; text-transform:uppercase;
  border-bottom:1px solid rgba(239,203,134,.14);
}
.announce__inner{ display:flex; align-items:center; justify-content:center; gap:1rem; min-height:38px; text-align:center; }
.announce b{ color:var(--amber-soft); font-weight:600; }
.announce__sep{ opacity:.35; }
@media (max-width:720px){ .announce__item--opt{ display:none; } }

.header{
  position:sticky; top:0; z-index:600;
  background:var(--paper);
  border-bottom:1px solid var(--line);
  transition:background-color .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
}
.header__inner{ display:flex; align-items:center; gap:clamp(1rem,3vw,2.5rem); min-height:var(--header-h); }
.brand{ display:inline-flex; align-items:center; gap:.7rem; flex:none; }
.brand__mark{ width:34px; height:34px; flex:none; }
.brand__text{ display:flex; flex-direction:column; line-height:1; }
.brand__name{ font-family:var(--display); font-size:1.28rem; letter-spacing:.16em; text-transform:uppercase; font-weight:500; }
.brand__sub{ font-size:.5625rem; letter-spacing:.34em; text-transform:uppercase; color:var(--fg-subtle); margin-top:.28rem; }

.nav{
  display:flex; align-items:center; gap:.1rem; margin-inline:auto;
  list-style:none; padding:0; margin-block:0;
}
.nav__item{ display:block; }
.nav__link{
  position:relative; display:flex; align-items:center; gap:.5rem; padding:.45rem .7rem;
  font-size:.8125rem; font-weight:500; letter-spacing:.09em; text-transform:uppercase;
  color:inherit; transition:color .3s var(--ease);
}
/* the bottle sits on its own tile so a white product cut-out reads the
   same on the light header and the dark overlay header */
.nav__thumb{
  flex:none; width:26px; height:34px; display:flex; align-items:center; justify-content:center;
  background:var(--cream); border-radius:var(--r-sm); padding:2px;
  border:1px solid var(--line); overflow:hidden;
  transition:border-color .3s var(--ease), transform .3s var(--ease);
}
.nav__thumb-img{ height:100%; width:auto; max-width:100%; object-fit:contain; display:block; }
.nav__link:hover .nav__thumb{ border-color:var(--amber); transform:translateY(-1px); }
.nav__link::after{
  content:""; position:absolute; left:.7rem; right:.7rem; bottom:.05rem; height:1px;
  background:currentColor; transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease-out);
}
/* the menu carries more weight now, so give it room before it collapses */
@media (max-width:1240px){
  .nav__thumb{ width:22px; height:28px; }
  .nav__link{ gap:.4rem; padding:.45rem .5rem; font-size:.75rem; letter-spacing:.06em; }
}
.nav__link:hover,.nav__link[aria-current="page"]{ color:var(--amber-deep); }
.nav__link:hover::after,.nav__link[aria-current="page"]::after{ transform:scaleX(1); }
.header__actions{ display:flex; align-items:center; gap:.15rem; flex:none; margin-left:auto; }
.header__burger{ display:none; }
@media (max-width:1024px){
  .nav{ display:none; }
  .header__burger{ display:inline-grid; }
}

/* Transparent header over hero */
.header--over{
  position:fixed; left:0; right:0; top:0;
  background:transparent; border-color:transparent; color:var(--cream);
}
.header--over .brand__sub{ color:rgba(246,241,232,.55); }
.header--over .nav__link:hover,.header--over .nav__link[aria-current="page"]{ color:var(--amber-soft); }
.header--over .nav__thumb{ border-color:rgba(246,241,232,.28); }
.header--over .nav__link:hover .nav__thumb{ border-color:var(--amber-soft); }
.header--over .iconbtn:hover{ background:rgba(246,241,232,.12); color:var(--amber-soft); }
.header--over.is-stuck{
  background:var(--ink);
  border-color:rgba(239,203,134,.14);
}
.header.is-hidden{ transform:translateY(-100%); }
.header--over{ transition:transform .45s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease); }

/* Mobile drawer nav */
.mobnav{
  position:fixed; inset:0; z-index:900; display:grid; grid-template-columns:1fr min(86vw,400px);
  visibility:hidden; pointer-events:none;
}
.mobnav.is-open{ visibility:visible; pointer-events:auto; }
.mobnav__scrim{ background:rgba(12,11,10,.55); opacity:0; transition:opacity .4s var(--ease); }
.mobnav.is-open .mobnav__scrim{ opacity:1; }
.mobnav__panel{
  background:var(--ink); color:var(--cream); padding:1.5rem var(--gutter) 2.5rem;
  display:flex; flex-direction:column; gap:.35rem; overflow-y:auto;
  transform:translateX(100%); transition:transform .5s var(--ease-out);
}
.mobnav.is-open .mobnav__panel{ transform:none; }
.mobnav__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:1.5rem; }
.mobnav__list{ list-style:none; padding:0; margin:0; }
.mobnav__link{
  display:flex; align-items:center; gap:1rem;
  padding:.75rem 0; border-bottom:1px solid rgba(246,241,232,.1);
  font-family:var(--display); font-size:1.375rem; letter-spacing:.02em;
}
.mobnav__label{ flex:1 1 auto; min-width:0; }
.mobnav__thumb{
  flex:none; width:44px; height:56px; display:flex; align-items:center; justify-content:center;
  background:var(--cream); border-radius:var(--r-sm); padding:3px;
  border:1px solid rgba(246,241,232,.14); overflow:hidden;
  transition:border-color .3s var(--ease);
}
.mobnav__thumb-img{ height:100%; width:auto; max-width:100%; object-fit:contain; display:block; }
.mobnav__link:hover{ color:var(--amber-soft); }
.mobnav__link:hover .mobnav__thumb{ border-color:var(--amber-soft); }
/* the cart row has no bottle, so keep its label flush with the others */
.mobnav__link--plain{ padding-left:calc(44px + 1rem); }
.mobnav__foot{ margin-top:auto; padding-top:2rem; font-size:.8125rem; color:rgba(246,241,232,.5); }

/* ---------- 8. Hero ---------- */
.hero{
  position:relative; min-height:min(100svh,900px);
  display:flex; align-items:center;
  background:var(--ink); color:var(--cream);
  padding-top:calc(var(--header-h) + 3rem); padding-bottom:4rem; overflow:hidden;
}
.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__bg svg{ width:100%; height:100%; }
.hero__grain{
  position:absolute; inset:0; z-index:1; pointer-events:none; opacity:.5; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}
.hero__vignette{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:radial-gradient(120% 90% at 62% 40%, transparent 20%, rgba(12,11,10,.55) 72%, rgba(12,11,10,.92) 100%);
}
.hero__inner{ position:relative; z-index:2; display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr); gap:clamp(2rem,4vw,4rem); align-items:center; width:100%; }
.hero__copy{ max-width:40ch; }
.hero h1{ margin-top:1.1rem; }
.hero h1 .em{
  font-style:italic;
  background:var(--amber-bright);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero__lede{ margin-top:1.5rem; color:rgba(246,241,232,.68); font-size:clamp(1rem,1.2vw,1.125rem); max-width:44ch; line-height:1.8; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:.9rem; margin-top:2.4rem; }
.hero__trust{ display:flex; flex-wrap:wrap; gap:1.5rem 2.25rem; margin-top:3rem; padding-top:1.75rem; border-top:1px solid rgba(246,241,232,.14); }
.hero__trust-item{ display:flex; align-items:center; gap:.6rem; font-size:.8125rem; color:rgba(246,241,232,.66); }
.hero__trust-item svg{ width:17px; height:17px; color:var(--amber-soft); flex:none; }
.hero__stage{ position:relative; display:grid; place-items:center; min-height:min(62vh,600px); }
.hero__bottle{ width:min(100%,430px); filter:drop-shadow(0 40px 60px rgba(0,0,0,.6)); }
.hero__badge{
  position:absolute; right:2%; bottom:8%;
  display:flex; flex-direction:column; gap:.2rem;
  padding:1rem 1.35rem; border-radius:var(--r-lg);
  background:#14110F; border:1px solid rgba(239,203,134,.22);
}
.hero__badge b{ font-family:var(--display); font-size:1.5rem; color:var(--amber-soft); font-weight:400; }
.hero__badge span{ font-size:.6875rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(246,241,232,.55); }
.hero__scroll{
  position:absolute; left:50%; bottom:1.75rem; z-index:3; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.6rem;
  font-size:.625rem; letter-spacing:.26em; text-transform:uppercase; color:rgba(246,241,232,.45);
}
.hero__scroll i{ display:block; width:1px; height:44px; background:linear-gradient(rgba(246,241,232,.45),transparent); }
@media (max-width:900px){
  .hero__inner{ grid-template-columns:1fr; }
  /* the copy leads on mobile; the bottle follows it */
  .hero__stage{ order:0; min-height:auto; }
  .hero__bottle{ width:min(58%,260px); }
  .hero__badge{ right:0; bottom:0; padding:.7rem 1rem; }
  .hero__trust{ gap:.9rem 1.5rem; margin-top:2.25rem; }
  .hero__scroll{ display:none; }
}

/* Hero entrance animation */
.reveal-up{ opacity:0; transform:translateY(26px); }
.hero.is-ready .reveal-up{ animation:revealUp .95s var(--ease-out) forwards; }
.hero.is-ready .reveal-up:nth-child(1){ animation-delay:.1s; }
@keyframes revealUp{ to{ opacity:1; transform:none; } }
[data-anim]{ opacity:0; transform:translateY(28px); transition:opacity .85s var(--ease-out), transform .85s var(--ease-out); }
[data-anim].is-in{ opacity:1; transform:none; }

/* ---------- 9. Ticker / trust strip ---------- */
.strip{ background:var(--ink-800); color:var(--cream); border-top:1px solid rgba(239,203,134,.1); }
.strip__inner{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(246,241,232,.08); }
.strip__item{ background:var(--ink-800); padding:1.6rem 1.25rem; display:flex; align-items:center; gap:.9rem; }
.strip__item svg{ width:24px; height:24px; color:var(--amber); flex:none; }
.strip__item b{ display:block; font-size:.875rem; font-weight:600; letter-spacing:.01em; }
.strip__item span{ font-size:.75rem; color:rgba(246,241,232,.5); }
@media (max-width:900px){ .strip__inner{ grid-template-columns:repeat(2,1fr); } }

/* ---------- 10. Category cards ---------- */
.cats{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(.75rem,1.2vw,1.15rem); }
.cat{
  position:relative; display:flex; flex-direction:column; justify-content:flex-end;
  min-height:238px; padding:1.5rem; overflow:hidden; isolation:isolate;
  border-radius:var(--r-lg); background:var(--ink-700); color:var(--cream);
  transition:transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
}
.cat:nth-child(1){ grid-column:span 2; grid-row:span 2; min-height:496px; }
.cat:nth-child(6),.cat:nth-child(7){ grid-column:span 2; }
.cat__art{ position:absolute; inset:0; z-index:-2; }
.cat__art svg{ width:100%; height:100%; object-fit:cover; transition:transform .9s var(--ease-out); }
.cat::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(12,11,10,0) 28%, rgba(12,11,10,.72) 72%, rgba(12,11,10,.94) 100%);
  transition:opacity .5s var(--ease);
}
.cat:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.cat:hover .cat__art svg{ transform:scale(1.07); }
.cat__count{
  position:absolute; top:1.1rem; right:1.1rem; z-index:1;
  padding:.3rem .7rem; border-radius:var(--r-pill);
  background:rgba(12,11,10,.5); border:1px solid rgba(239,203,134,.24);
  font-size:.6875rem; letter-spacing:.1em; color:var(--amber-soft);
}
.cat__name{ font-family:var(--display); font-size:clamp(1.35rem,2vw,1.9rem); font-weight:400; line-height:1.1; }
.cat:nth-child(1) .cat__name{ font-size:clamp(1.8rem,3vw,2.9rem); }
.cat__desc{ margin-top:.4rem; font-size:.8125rem; color:rgba(246,241,232,.6); max-width:34ch; }
.cat__go{
  display:inline-flex; align-items:center; gap:.45rem; margin-top:1rem;
  font-size:.6875rem; letter-spacing:.16em; text-transform:uppercase; color:var(--amber-soft);
  opacity:0; transform:translateY(6px); transition:opacity .4s var(--ease), transform .4s var(--ease), gap .3s var(--ease);
}
.cat:hover .cat__go{ opacity:1; transform:none; }
.cat__go svg{ width:14px; height:14px; }
@media (max-width:1024px){
  .cats{ grid-template-columns:repeat(2,1fr); }
  .cat:nth-child(1){ grid-column:span 2; grid-row:auto; min-height:300px; }
  .cat:nth-child(6),.cat:nth-child(7){ grid-column:span 2; }
}
@media (max-width:560px){
  .cats{ grid-template-columns:1fr; }
  .cat,.cat:nth-child(1){ grid-column:span 1; min-height:220px; }
}

/* ---------- 11. Product card ---------- */
/* Home shelf posted collection by collection */
.shelfcats{ display:flex; flex-direction:column; gap:clamp(2.5rem,4vw,3.75rem); }
.shelfcat__head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:1.5rem;
  padding-bottom:.85rem; margin-bottom:clamp(1.1rem,2vw,1.5rem);
  border-bottom:1px solid var(--line);
}
.shelfcat__text{ min-width:0; }
.shelfcat__name{
  font-family:var(--display); font-weight:500; letter-spacing:.01em;
  font-size:clamp(1.35rem,2.4vw,1.75rem); line-height:1.15; margin:0;
}
.shelfcat__desc{
  margin:.4rem 0 0; max-width:68ch;
  font-size:.875rem; line-height:1.6; color:var(--fg-muted);
}
.shelfcat__head .link-underline{ flex:none; white-space:nowrap; }
@media (max-width:560px){
  .shelfcat__head{ flex-direction:column; align-items:flex-start; gap:.35rem; }
}

.pgrid{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:clamp(.9rem,1.5vw,1.6rem); }
.pgrid--3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
@media (max-width:1180px){ .pgrid{ grid-template-columns:repeat(3,minmax(0,1fr)); } }
@media (max-width:900px){ .pgrid,.pgrid--3{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:480px){ .pgrid,.pgrid--3{ grid-template-columns:1fr; } }

.card{
  position:relative; display:flex; flex-direction:column;
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  overflow:hidden; transition:transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease);
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--line-strong); }
.card__media{
  position:relative; display:flex; align-items:stretch; justify-content:center;
  aspect-ratio:1/1.06; padding:1.5rem;
  background:#F6F1E8;
  overflow:hidden;
}
.card__media::after{
  content:""; position:absolute; left:50%; bottom:9%; width:56%; height:14px;
  transform:translateX(-50%); border-radius:50%;
  background:none;
  transition:width .55s var(--ease-out), opacity .55s var(--ease);
}
.card:hover .card__media::after{ width:64%; opacity:.75; }
.card__bottle-link{ display:flex; align-items:center; justify-content:center; min-width:0; min-height:0; }
.card__bottle{ position:relative; z-index:1; height:100%; width:auto; max-width:100%; max-height:100%; object-fit:contain; transition:transform .6s var(--ease-out); }
.card__media--photo{ background:#FBF8F3; }
.card__media--photo::after{ opacity:.55; }
.card:hover .card__bottle{ transform:translateY(-8px) scale(1.035); }
.card__badges{ position:absolute; top:.85rem; left:.85rem; z-index:2; display:flex; flex-direction:column; align-items:flex-start; gap:.35rem; }
.badge{
  padding:.28rem .62rem; border-radius:var(--r-sm);
  font-size:.625rem; font-weight:700; letter-spacing:.13em; text-transform:uppercase;
  background:var(--ink); color:var(--cream); white-space:nowrap;
}
.badge--gold{ background:var(--amber); color:var(--ink); }
.badge--sale{ background:var(--danger); color:#fff; }
.badge--outline{ background:rgba(255,255,255,.9); color:var(--fg); border:1px solid var(--line-strong); }
.card__wish{
  position:absolute; top:.7rem; right:.7rem; z-index:2;
  width:38px; height:38px; display:grid; place-items:center; border-radius:var(--r-pill);
  background:#FFFFFF; border:1px solid var(--line);
  color:var(--fg-muted);
  transition:color .3s var(--ease), background-color .3s var(--ease), transform .3s var(--ease);
}
.card__wish svg{ width:17px; height:17px; }
.card__wish:hover{ color:var(--danger); transform:scale(1.08); }
.card__wish.is-on{ color:var(--danger); background:#fff; }
.card__wish.is-on svg{ fill:currentColor; }
.card__body{ display:flex; flex-direction:column; gap:.3rem; padding:1.15rem 1.25rem 1.35rem; flex:1; }
.card__brand{ font-size:.6875rem; letter-spacing:.16em; text-transform:uppercase; color:var(--amber-deep); font-weight:600; }
.card__name{ font-family:var(--display); font-size:1.28rem; font-weight:500; line-height:1.22; }
.card__name a:hover{ color:var(--amber-deep); }
.card__meta{ font-size:.75rem; color:var(--fg-muted); display:flex; flex-wrap:wrap; gap:.4rem; align-items:center; }
.card__meta i{ width:3px; height:3px; border-radius:50%; background:var(--line-strong); font-style:normal; }
.card__rating{ display:flex; align-items:center; gap:.4rem; margin-top:.15rem; }
.card__price{ display:flex; align-items:baseline; gap:.55rem; margin-top:.6rem; }
.price{ font-size:1.125rem; font-weight:600; letter-spacing:-.01em; font-variant-numeric:tabular-nums; }
.price--was{ font-size:.875rem; color:var(--fg-subtle); text-decoration:line-through; font-weight:400; }
.card__foot{ margin-top:auto; padding-top:.95rem; }
.card__stock{ font-size:.6875rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:.6rem; display:flex; align-items:center; gap:.4rem; }
.card__stock::before{ content:""; width:6px; height:6px; border-radius:50%; background:currentColor; }
.stock-in{ color:var(--success); }
.stock-low{ color:var(--amber-deep); }
.stock-out{ color:var(--fg-subtle); }

.stars{ display:inline-flex; gap:1px; color:var(--amber); }
.stars svg{ width:13px; height:13px; }
.stars__count{ font-size:.75rem; color:var(--fg-subtle); margin-left:.15rem; }

/* Rail (horizontal scroll on mobile) */
.rail{ display:grid; grid-auto-flow:column; grid-auto-columns:minmax(260px,1fr); gap:clamp(.9rem,1.5vw,1.6rem); }
@media (max-width:1024px){
  .rail{ overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:1rem; margin-inline:calc(var(--gutter) * -1); padding-inline:var(--gutter); }
  .rail > *{ scroll-snap-align:start; }
  .rail::-webkit-scrollbar{ height:4px; }
  .rail::-webkit-scrollbar-thumb{ background:var(--line-strong); border-radius:2px; }
}

/* ---------- 12. Flavour discovery ---------- */
.flavours{ display:grid; grid-template-columns:repeat(6,1fr); gap:.75rem; }
@media (max-width:900px){ .flavours{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:480px){ .flavours{ grid-template-columns:repeat(2,1fr); } }
.flav{
  position:relative; display:flex; flex-direction:column; align-items:center; gap:.75rem;
  padding:1.6rem 1rem; border-radius:var(--r-lg);
  background:rgba(246,241,232,.035); border:1px solid rgba(246,241,232,.12);
  color:var(--cream); text-align:center; overflow:hidden;
  transition:border-color .4s var(--ease), background-color .4s var(--ease), transform .4s var(--ease-out);
}
.flav:hover{ transform:translateY(-4px); border-color:rgba(239,203,134,.45); background:rgba(246,241,232,.06); }
.flav[aria-pressed="true"]{ border-color:var(--amber); background:rgba(200,138,50,.14); }
.flav[aria-pressed="true"]::after{
  content:""; position:absolute; inset:0; border-radius:inherit;
  box-shadow:inset 0 0 0 1px var(--amber-soft); pointer-events:none;
}
.flav__icon{ width:46px; height:46px; color:var(--amber-soft); }
.flav__name{ font-family:var(--display); font-size:1.28rem; font-weight:400; }
.flav__desc{ font-size:.6875rem; letter-spacing:.06em; color:rgba(246,241,232,.5); line-height:1.5; }
.flav-panel{ margin-top:2.5rem; min-height:120px; }
.flav-panel__head{ display:flex; align-items:baseline; justify-content:space-between; gap:1rem; flex-wrap:wrap; margin-bottom:1.5rem; }
.flav-panel .card{ background:var(--ink-700); border-color:rgba(246,241,232,.1); color:var(--cream); }
.flav-panel .card__media{ background:#1B1817; }
.flav-panel .card__media::after{ background:none; }
.flav-panel .card__name a:hover{ color:var(--amber-soft); }
.flav-panel .card__meta{ color:rgba(246,241,232,.5); }
.flav-panel .card__wish{ background:rgba(12,11,10,.62); border-color:rgba(246,241,232,.16); color:rgba(246,241,232,.7); }
.flav-panel .badge--outline{ background:rgba(12,11,10,.7); color:var(--cream); border-color:rgba(246,241,232,.24); }
.flav-panel .price--was{ color:rgba(246,241,232,.42); }
.fade-swap{ animation:fadeSwap .5s var(--ease-out); }
@keyframes fadeSwap{ from{ opacity:0; transform:translateY(14px); } }

/* ---------- 13. Australian section ---------- */
.aus{ position:relative; overflow:hidden; background:#0C0B0A; color:var(--cream); }
.aus__glow{
  position:absolute; inset:auto -10% -35% -10%; height:70%; z-index:0; pointer-events:none;
  background:none;
}
.aus__inner{ position:relative; z-index:1; }
.aus__top{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.05fr); gap:clamp(2rem,5vw,5rem); align-items:center; }
@media (max-width:900px){ .aus__top{ grid-template-columns:1fr; } }
.aus__stats{ display:flex; gap:2.5rem; flex-wrap:wrap; margin-top:2.25rem; }
.aus__stat b{ display:block; font-family:var(--display); font-size:2.5rem; font-weight:300; color:var(--amber-soft); line-height:1; }
.aus__stat span{ font-size:.6875rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(246,241,232,.5); }
.distilleries{ display:grid; grid-template-columns:repeat(2,1fr); gap:.9rem; }
@media (max-width:560px){ .distilleries{ grid-template-columns:1fr; } }
.dist{
  padding:1.5rem; border-radius:var(--r-lg);
  background:rgba(246,241,232,.04); border:1px solid rgba(246,241,232,.11);
  transition:border-color .4s var(--ease), transform .4s var(--ease-out), background-color .4s var(--ease);
}
.dist:hover{ border-color:rgba(239,203,134,.4); transform:translateY(-4px); background:rgba(246,241,232,.06); }
.dist__region{ font-size:.625rem; letter-spacing:.2em; text-transform:uppercase; color:var(--amber-soft); }
.dist__name{ font-family:var(--display); font-size:1.4rem; font-weight:400; margin-top:.45rem; }
.dist__desc{ font-size:.8125rem; color:rgba(246,241,232,.56); margin-top:.5rem; line-height:1.6; }

/* ---------- 14. Why shop / features ---------- */
.feats{ display:grid; grid-template-columns:repeat(5,1fr); gap:clamp(.85rem,1.3vw,1.4rem); }
@media (max-width:1024px){ .feats{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:640px){ .feats{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:400px){ .feats{ grid-template-columns:1fr; } }
.feat{
  padding:1.85rem 1.5rem; border-radius:var(--r-lg);
  background:#fff; border:1px solid var(--line);
  transition:transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease);
}
.feat:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--line-strong); }
.feat__icon{
  width:48px; height:48px; display:grid; place-items:center; border-radius:var(--r-md);
  background:rgba(200,138,50,.10);
  color:var(--amber-deep); margin-bottom:1.15rem;
}
.feat__icon svg{ width:24px; height:24px; }
.feat h3{ font-family:var(--display); font-size:1.28rem; font-weight:500; }
.feat p{ font-size:.8125rem; color:var(--fg-muted); margin-top:.45rem; line-height:1.65; }

/* ---------- 15. Newsletter ---------- */
.club{ position:relative; overflow:hidden; background:var(--ink); color:var(--cream); }
.club__art{ position:absolute; inset:0; z-index:0; opacity:.55; }
.club__inner{ position:relative; z-index:1; max-width:660px; margin-inline:auto; text-align:center; }
.club h2{ margin-top:.9rem; }
.club p{ margin-top:1rem; color:rgba(246,241,232,.65); }
.club__form{ display:flex; gap:.6rem; margin-top:2.25rem; }
.club__form .input{
  background:rgba(246,241,232,.06); border-color:rgba(246,241,232,.2); color:var(--cream);
  min-height:56px; border-radius:var(--r-pill); padding-inline:1.5rem;
}
.club__form .input::placeholder{ color:rgba(246,241,232,.4); }
.club__form .input:focus{ border-color:var(--amber-soft); box-shadow:0 0 0 3px rgba(239,203,134,.14); }
.club__note{ margin-top:1.1rem; font-size:.75rem; color:rgba(246,241,232,.4); }
.club__perks{ display:flex; flex-wrap:wrap; justify-content:center; gap:1rem 2rem; margin-top:2.25rem; padding-top:1.75rem; border-top:1px solid rgba(246,241,232,.12); }
.club__perk{ display:flex; align-items:center; gap:.5rem; font-size:.8125rem; color:rgba(246,241,232,.6); }
.club__perk svg{ width:16px; height:16px; color:var(--amber-soft); }
@media (max-width:560px){ .club__form{ flex-direction:column; } }
.club__done{ margin-top:2rem; padding:1.25rem; border:1px solid rgba(239,203,134,.32); border-radius:var(--r-lg); background:rgba(200,138,50,.1); color:var(--amber-soft); }

/* ---------- 16. Footer ---------- */
.footer{ background:var(--ink-800); color:rgba(246,241,232,.68); padding-top:clamp(3rem,5vw,4.5rem); }
.footer__top{ display:grid; grid-template-columns:1.5fr repeat(3,1fr); gap:clamp(2rem,3vw,3rem); padding-bottom:3rem; }
@media (max-width:900px){ .footer__top{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer__top{ grid-template-columns:1fr; } }
.footer .brand__name{ color:var(--cream); }
.footer__about{ font-size:.875rem; line-height:1.75; margin-top:1.15rem; max-width:38ch; }
.footer__social{ display:flex; gap:.5rem; margin-top:1.5rem; }
.footer__social a{
  width:40px; height:40px; display:grid; place-items:center; border-radius:var(--r-pill);
  border:1px solid rgba(246,241,232,.16); color:rgba(246,241,232,.7);
  transition:border-color .3s var(--ease), color .3s var(--ease), background-color .3s var(--ease);
}
.footer__social a:hover{ border-color:var(--amber-soft); color:var(--amber-soft); background:rgba(200,138,50,.12); }
.footer__social svg{ width:18px; height:18px; }
.footer h3{ font-size:.6875rem; letter-spacing:.2em; text-transform:uppercase; color:var(--cream); margin-bottom:1.15rem; }
.footer__links li + li{ margin-top:.7rem; }
.footer__links a{ font-size:.875rem; transition:color .25s var(--ease), padding-left .25s var(--ease); }
.footer__links a:hover{ color:var(--amber-soft); padding-left:.3rem; }
.footer__resp{
  display:flex; gap:1rem; align-items:flex-start; padding:1.35rem 1.5rem; border-radius:var(--r-lg);
  background:rgba(246,241,232,.04); border:1px solid rgba(246,241,232,.1);
  font-size:.75rem; line-height:1.65;
}
.footer__resp b{ color:var(--cream); }
.footer__resp .r18{
  flex:none; width:44px; height:44px; display:grid; place-items:center; border-radius:50%;
  border:1.5px solid var(--amber-soft); color:var(--amber-soft);
  font-weight:700; font-size:.8125rem; letter-spacing:.02em;
}
.footer__bottom{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1rem;
  padding-block:1.6rem; margin-top:2rem; border-top:1px solid rgba(246,241,232,.1);
  font-size:.75rem; color:rgba(246,241,232,.45);
}
.footer__pay{ display:flex; gap:.45rem; align-items:center; flex-wrap:wrap; }
.paychip{
  padding:.35rem .6rem; border-radius:var(--r-sm);
  border:1px solid rgba(246,241,232,.16); background:rgba(246,241,232,.05);
  font-size:.625rem; letter-spacing:.08em; text-transform:uppercase; color:rgba(246,241,232,.65);
}
.footer__legal{ display:flex; gap:1.25rem; flex-wrap:wrap; }
.footer__legal a:hover{ color:var(--amber-soft); }

/* ---------- 17. Cart drawer ---------- */
.drawer{ position:fixed; inset:0; z-index:800; display:grid; grid-template-columns:1fr min(92vw,448px); visibility:hidden; pointer-events:none; }
.drawer.is-open{ visibility:visible; pointer-events:auto; }
.drawer__scrim{ background:rgba(12,11,10,.5); opacity:0; transition:opacity .45s var(--ease); }
.drawer.is-open .drawer__scrim{ opacity:1; }
.drawer__panel{
  display:flex; flex-direction:column; background:var(--paper);
  transform:translateX(100%); transition:transform .5s var(--ease-out);
  box-shadow:-8px 0 20px rgba(12,11,10,.22);
}
.drawer.is-open .drawer__panel{ transform:none; }
.drawer__head{ display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.35rem 1.5rem; border-bottom:1px solid var(--line); }
.drawer__title{ font-family:var(--display); font-size:1.5rem; font-weight:500; }
.drawer__title span{ color:var(--fg-subtle); font-size:1rem; font-family:var(--sans); }
.drawer__ship{ padding:1rem 1.5rem; border-bottom:1px solid var(--line); background:var(--paper-alt); }
.ship-bar{ height:4px; border-radius:2px; background:var(--line-strong); overflow:hidden; margin-top:.6rem; }
.ship-bar i{ display:block; height:100%; width:0; border-radius:2px; background:var(--amber); transition:width .6s var(--ease-out); }
.drawer__body{ flex:1; overflow-y:auto; padding:1.25rem 1.5rem; }
.drawer__foot{ border-top:1px solid var(--line); padding:1.35rem 1.5rem calc(1.35rem + env(safe-area-inset-bottom)); background:#fff; }

.citem{ display:grid; grid-template-columns:76px 1fr; gap:1rem; padding-block:1.15rem; border-bottom:1px solid var(--line); }
.citem:first-child{ padding-top:0; }
.citem__media{ background:#F6F1E8; border:1px solid var(--line); border-radius:var(--r-md); display:flex; align-items:stretch; justify-content:center; padding:.5rem; aspect-ratio:76/96; }
.citem__media svg,.citem__media img{ height:100%; width:auto; max-width:100%; object-fit:contain; }
.citem__brand{ font-size:.625rem; letter-spacing:.16em; text-transform:uppercase; color:var(--amber-deep); font-weight:600; }
.citem__name{ font-family:var(--display); font-size:1.0625rem; line-height:1.25; margin-top:.15rem; }
.citem__name a:hover{ color:var(--amber-deep); }
.citem__meta{ font-size:.75rem; color:var(--fg-muted); margin-top:.2rem; }
.citem__row{ display:flex; align-items:center; justify-content:space-between; gap:.75rem; margin-top:.75rem; }
.citem__remove{ font-size:.75rem; color:var(--fg-subtle); text-decoration:underline; text-underline-offset:3px; transition:color .25s var(--ease); }
.citem__remove:hover{ color:var(--danger); }

.qty{ display:inline-flex; align-items:center; border:1px solid var(--line-strong); border-radius:var(--r-pill); background:#fff; }
.qty button{ width:34px; height:34px; display:grid; place-items:center; color:var(--fg-muted); border-radius:var(--r-pill); transition:color .25s var(--ease), background-color .25s var(--ease); }
.qty button:hover{ color:var(--ink); background:var(--paper-alt); }
.qty button[disabled]{ opacity:.35; pointer-events:none; }
.qty input{
  width:38px; height:34px; text-align:center; border:0; background:transparent;
  font-size:.875rem; font-weight:600; font-variant-numeric:tabular-nums; -moz-appearance:textfield;
}
.qty input::-webkit-outer-spin-button,.qty input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.qty--lg button{ width:44px; height:46px; }
.qty--lg input{ width:48px; height:46px; font-size:1rem; }

.totals{ display:flex; flex-direction:column; gap:.6rem; }
.totals__row{ display:flex; justify-content:space-between; font-size:.875rem; color:var(--fg-muted); }
.totals__row b{ color:var(--fg); font-weight:600; }
.totals__row--total{ padding-top:.85rem; margin-top:.35rem; border-top:1px solid var(--line); font-size:1.0625rem; color:var(--fg); }
.totals__row--total b{ font-size:1.35rem; font-family:var(--display); font-weight:500; }
.totals__row--free b{ color:var(--success); }

.empty{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:1rem; padding:3.5rem 1rem; }
.empty__icon{ width:64px; height:64px; color:var(--line-strong); }
.empty h3{ font-family:var(--display); font-size:1.5rem; font-weight:500; }
.empty p{ font-size:.875rem; color:var(--fg-muted); max-width:32ch; }

/* ---------- 18. Toast ---------- */
.toasts{ position:fixed; right:1.25rem; bottom:1.25rem; z-index:950; display:flex; flex-direction:column; gap:.6rem; pointer-events:none; }
.toast{
  display:flex; align-items:center; gap:.85rem; min-width:280px; max-width:min(92vw,380px);
  padding:.95rem 1.15rem; border-radius:var(--r-md);
  background:var(--ink); color:var(--cream); box-shadow:var(--shadow-lg);
  font-size:.875rem; pointer-events:auto;
  animation:toastIn .45s var(--ease-out);
}
.toast.is-out{ animation:toastOut .35s var(--ease) forwards; }
.toast__icon{ flex:none; width:32px; height:32px; display:grid; place-items:center; border-radius:var(--r-pill); background:rgba(200,138,50,.2); color:var(--amber-soft); }
.toast__icon svg{ width:17px; height:17px; }
.toast b{ display:block; font-weight:600; }
.toast span{ color:rgba(246,241,232,.6); font-size:.8125rem; }
@keyframes toastIn{ from{ opacity:0; transform:translateY(16px) scale(.97); } }
@keyframes toastOut{ to{ opacity:0; transform:translateX(24px); } }
@media (max-width:560px){ .toasts{ left:1rem; right:1rem; bottom:1rem; } .toast{ min-width:0; max-width:none; } }

/* ---------- 19. Age gate ---------- */
.agegate{
  position:fixed; inset:0; z-index:1000; display:grid; place-items:center;
  background:rgba(8,7,6,.94); padding:1.5rem; opacity:0; animation:fadeIn .5s var(--ease) forwards;
}
@keyframes fadeIn{ to{ opacity:1; } }
.agegate__card{
  width:min(100%,470px); text-align:center; color:var(--cream);
  padding:clamp(2rem,4vw,3rem); border-radius:var(--r-xl);
  background:#131110;
  border:1px solid rgba(239,203,134,.2); box-shadow:0 8px 24px rgba(0,0,0,.35);
  animation:agePop .6s var(--ease-out);
}
@keyframes agePop{ from{ opacity:0; transform:translateY(20px) scale(.97); } }
.agegate__card h2{ margin-top:1.25rem; }
.agegate__card p{ margin-top:.9rem; color:rgba(246,241,232,.62); font-size:.9375rem; }
.agegate__actions{ display:flex; gap:.75rem; margin-top:2rem; }
.agegate__actions .btn{ flex:1; }
.agegate__fine{ margin-top:1.5rem; font-size:.6875rem; color:rgba(246,241,232,.38); line-height:1.6; }
.agegate__deny{ font-size:.9375rem; color:var(--amber-soft); }
@media (max-width:480px){ .agegate__actions{ flex-direction:column; } }

/* ---------- 20. Shop page ---------- */
.pagehead{ background:var(--ink); color:var(--cream); padding-block:clamp(2.75rem,5vw,4.5rem); position:relative; }
.pagehead__glow{ position:absolute; inset:0; background:none; }
.pagehead__inner{ position:relative; z-index:1; }
.pagehead h1{ margin-top:.85rem; }
.pagehead p{ margin-top:1rem; color:rgba(246,241,232,.62); max-width:56ch; }
.crumbs{ display:flex; align-items:center; gap:.5rem; font-size:.75rem; color:rgba(246,241,232,.45); }
.crumbs a:hover{ color:var(--amber-soft); }
.crumbs span{ opacity:.5; }
.crumbs--dark{ color:var(--fg-subtle); }
.crumbs--dark a:hover{ color:var(--amber-deep); }

.searchbar{ position:relative; max-width:640px; margin-top:2rem; }
.searchbar__input{
  width:100%; min-height:58px; padding:1rem 3.5rem 1rem 3.25rem;
  background:rgba(246,241,232,.07); border:1px solid rgba(246,241,232,.2);
  border-radius:var(--r-pill); color:var(--cream); font-size:.9375rem;
  transition:border-color .3s var(--ease), background-color .3s var(--ease);
}
.searchbar__input::placeholder{ color:rgba(246,241,232,.42); }
.searchbar__input:focus{ outline:none; border-color:var(--amber-soft); background:rgba(246,241,232,.1); }
.searchbar__icon{ position:absolute; left:1.25rem; top:50%; transform:translateY(-50%); width:19px; height:19px; color:rgba(246,241,232,.5); pointer-events:none; }
.searchbar__clear{ position:absolute; right:1.1rem; top:50%; transform:translateY(-50%); width:30px; height:30px; display:none; place-items:center; border-radius:50%; color:rgba(246,241,232,.6); }
.searchbar__clear.is-on{ display:grid; }
.searchbar__clear:hover{ background:rgba(246,241,232,.12); color:var(--cream); }
.ac{
  position:absolute; left:0; right:0; top:calc(100% + .6rem); z-index:40;
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  box-shadow:var(--shadow-lg); overflow:hidden; display:none; max-height:min(60vh,440px); overflow-y:auto;
}
.ac.is-open{ display:block; }
.ac__group{ padding:.6rem 0; }
.ac__group + .ac__group{ border-top:1px solid var(--line); }
.ac__label{ padding:.35rem 1.1rem .5rem; font-size:.625rem; letter-spacing:.18em; text-transform:uppercase; color:var(--fg-subtle); }
.ac__item{
  display:flex; align-items:center; gap:.9rem; width:100%; text-align:left;
  padding:.6rem 1.1rem; color:var(--fg); transition:background-color .18s var(--ease);
}
.ac__item:hover,.ac__item.is-active{ background:var(--paper-alt); }
.ac__thumb{ flex:none; width:38px; height:48px; display:flex; align-items:stretch; justify-content:center; background:#F6F1E8; border:1px solid var(--line); border-radius:var(--r-sm); }
.ac__thumb svg,.ac__thumb img{ height:100%; width:auto; max-width:100%; object-fit:contain; }
.ac__name{ font-size:.875rem; font-weight:500; }
.ac__meta{ font-size:.75rem; color:var(--fg-muted); }
.ac__price{ margin-left:auto; font-size:.875rem; font-weight:600; font-variant-numeric:tabular-nums; }
.ac__term{ font-size:.875rem; }
.ac__term b{ color:var(--amber-deep); }
.ac__empty{ padding:1.5rem 1.1rem; font-size:.875rem; color:var(--fg-muted); text-align:center; }
mark{ background:rgba(200,138,50,.24); color:inherit; border-radius:2px; padding:0 1px; }

/* The filters are an off-canvas menu now, so the grid gets the full width
   at every size and the panel slides over it from the Filters button. */
.shoplayout{ display:block; }

.filters{
  position:fixed; inset:0; z-index:850;
  visibility:hidden; pointer-events:none;
}
.filters.is-open{ visibility:visible; pointer-events:auto; }
.filters__scrim{
  position:absolute; inset:0;
  background:rgba(12,11,10,.5);
  opacity:0; transition:opacity .35s var(--ease);
}
.filters.is-open .filters__scrim{ opacity:1; }
.filters__inner{
  position:relative; z-index:1;
  width:min(380px,88vw); height:100%;
  display:flex; flex-direction:column;
  background:var(--paper);
  overflow-y:auto; overscroll-behavior:contain;
  padding:1.25rem var(--gutter) 1.25rem;
  transform:translateX(-100%);
  transition:transform .42s var(--ease-out);
  box-shadow:8px 0 24px rgba(12,11,10,.18);
}
.filters.is-open .filters__inner{ transform:none; }
.filters__mobhead{ display:flex !important; }
.filters__mobfoot{ display:flex !important; }
.filters__mobhead{
  display:none; align-items:center; justify-content:space-between; gap:1rem;
  position:sticky; top:0; z-index:2; background:var(--paper);
  padding:1rem var(--gutter); margin:-1.25rem calc(var(--gutter) * -1) 1rem;
  border-bottom:1px solid var(--line);
}
/* sits at the foot of the panel, not the viewport, so it tracks the
   380px column instead of spanning the whole screen */
.filters__mobfoot{
  display:none; gap:.75rem; position:sticky; bottom:0; z-index:3; margin-top:auto;
  padding:1rem 0 calc(1rem + env(safe-area-inset-bottom));
  background:var(--paper); border-top:1px solid var(--line);
}
.filters__head{ display:flex; align-items:center; justify-content:space-between; padding-bottom:1rem; border-bottom:1px solid var(--line); margin-bottom:.5rem; }
.filters__head p{ font-size:.6875rem; letter-spacing:.2em; text-transform:uppercase; font-weight:600; margin:0; }
.fgroup{ border-bottom:1px solid var(--line); }
.fgroup__btn{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  width:100%; padding:1.1rem 0; text-align:left;
  font-size:.8125rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
}
.fgroup__btn:hover{ color:var(--amber-deep); }
.fgroup__btn svg{ width:14px; height:14px; flex:none; transition:transform .35s var(--ease); color:var(--fg-subtle); }
.fgroup[data-open="true"] .fgroup__btn svg{ transform:rotate(180deg); }
.fgroup__body{ display:none; padding-bottom:1.25rem; }
.fgroup[data-open="true"] .fgroup__body{ display:block; animation:fadeSwap .35s var(--ease-out); }
.fgroup__list{ display:flex; flex-direction:column; gap:.7rem; max-height:232px; overflow-y:auto; padding-right:.35rem; }
.fgroup__list::-webkit-scrollbar{ width:4px; }
.fgroup__list::-webkit-scrollbar-thumb{ background:var(--line-strong); border-radius:2px; }
.fgroup__more{ margin-top:.75rem; font-size:.75rem; color:var(--amber-deep); text-decoration:underline; text-underline-offset:3px; }

.range{ display:flex; flex-direction:column; gap:.9rem; }
.range__vals{ display:flex; justify-content:space-between; font-size:.8125rem; font-weight:600; font-variant-numeric:tabular-nums; }
.range__slider{ position:relative; height:26px; }
.range__track{ position:absolute; top:11px; left:0; right:0; height:3px; border-radius:2px; background:var(--line-strong); }
.range__fill{ position:absolute; top:11px; height:3px; border-radius:2px; background:var(--amber); }
.range input[type=range]{
  position:absolute; top:0; left:0; width:100%; height:26px;
  -webkit-appearance:none; appearance:none; background:none; pointer-events:none; margin:0;
}
.range input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none; pointer-events:auto; width:18px; height:18px; border-radius:50%;
  background:var(--ink); border:2px solid var(--cream); box-shadow:0 2px 6px rgba(0,0,0,.25); cursor:grab;
}
.range input[type=range]::-moz-range-thumb{
  pointer-events:auto; width:16px; height:16px; border-radius:50%;
  background:var(--ink); border:2px solid var(--cream); box-shadow:0 2px 6px rgba(0,0,0,.25); cursor:grab;
}
.swatches{ display:flex; flex-wrap:wrap; gap:.5rem; }
.swatch{
  padding:.45rem .8rem; border-radius:var(--r-pill);
  border:1px solid var(--line-strong); background:#fff;
  font-size:.75rem; transition:all .25s var(--ease);
}
.swatch:hover{ border-color:var(--amber); color:var(--amber-deep); }
.swatch[aria-pressed="true"]{ background:var(--ink); border-color:var(--ink); color:var(--cream); }
.ratefilter{ display:flex; flex-direction:column; gap:.55rem; }
.ratefilter button{ display:flex; align-items:center; gap:.6rem; padding:.4rem .55rem; border-radius:var(--r-sm); font-size:.8125rem; transition:background-color .2s var(--ease); }
.ratefilter button:hover{ background:var(--paper-alt); }
.ratefilter button[aria-pressed="true"]{ background:var(--paper-alt); font-weight:600; }

.toolbar{
  display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap;
  padding-bottom:1.25rem; margin-bottom:1.5rem; border-bottom:1px solid var(--line);
}
.toolbar__count{ font-size:.875rem; color:var(--fg-muted); }
.toolbar__count b{ color:var(--fg); }
.toolbar__right{ display:flex; align-items:center; gap:.75rem; flex-wrap:wrap; }
.toolbar__sort{ display:flex; align-items:center; gap:.6rem; }
.toolbar__sort label{ font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; color:var(--fg-muted); }
.toolbar__sort .select{ min-height:44px; padding-block:.5rem; font-size:.875rem; min-width:190px; }
.filter-toggle{ display:inline-flex; }

.chips{ display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:1.5rem; }
.chip{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.4rem .5rem .4rem .85rem; border-radius:var(--r-pill);
  background:var(--paper-alt); border:1px solid var(--line-strong); font-size:.75rem;
}
.chip button{ display:grid; place-items:center; width:18px; height:18px; border-radius:50%; color:var(--fg-muted); transition:background-color .2s var(--ease), color .2s var(--ease); }
.chip button:hover{ background:var(--ink); color:var(--cream); }
.chip svg{ width:11px; height:11px; }
.chip--clear{ background:none; border-style:dashed; color:var(--amber-deep); padding:.4rem .85rem; cursor:pointer; }
.chip--clear:hover{ border-color:var(--amber); background:rgba(200,138,50,.08); }

.noresults{ text-align:center; padding:5rem 1rem; }
.noresults h3{ font-family:var(--display); font-size:1.75rem; font-weight:500; margin-top:1rem; }
.noresults p{ margin-top:.6rem; color:var(--fg-muted); }
.pager{ display:flex; justify-content:center; margin-top:3rem; }

/* ---------- 21. Product detail ---------- */
.pdp{ display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr); gap:clamp(2rem,4vw,4.5rem); align-items:start; }
@media (max-width:980px){ .pdp{ grid-template-columns:1fr; } }
.gallery{ position:sticky; top:calc(var(--header-h) + 1.5rem); display:grid; grid-template-columns:84px minmax(0,1fr); gap:1rem; }
@media (max-width:980px){ .gallery{ position:static; } }
@media (max-width:560px){ .gallery{ grid-template-columns:1fr; } }
.gallery__thumbs{ display:flex; flex-direction:column; gap:.6rem; }
@media (max-width:560px){ .gallery__thumbs{ flex-direction:row; order:2; overflow-x:auto; } }
.gthumb{
  aspect-ratio:1/1.15; display:flex; align-items:stretch; justify-content:center; padding:.5rem; flex:none; width:84px;
  background:#F6F1E8;
  border:1px solid var(--line); border-radius:var(--r-md); overflow:hidden;
  transition:border-color .3s var(--ease), transform .3s var(--ease);
}
.gthumb svg,.gthumb img{ height:100%; width:auto; max-width:100%; object-fit:contain; }
.gthumb:hover{ border-color:var(--line-strong); transform:translateY(-2px); }
.gthumb[aria-pressed="true"]{ border-color:var(--ink); box-shadow:0 0 0 1px var(--ink); }
.gmain{
  position:relative; display:flex; align-items:stretch; justify-content:center; padding:clamp(1.5rem,4vw,3rem);
  aspect-ratio:1/1.08; border-radius:var(--r-lg); border:1px solid var(--line); overflow:hidden;
  background:#F6F1E8;
}
.gmain__inner{ display:flex; align-items:center; justify-content:center; min-height:0; animation:fadeSwap .5s var(--ease-out); }
.gmain__inner svg{ height:100%; width:auto; filter:drop-shadow(0 26px 34px rgba(26,22,20,.22)); }
.gmain__inner img{ height:100%; width:auto; max-width:100%; object-fit:contain; }
.gmain--photo{ background:#FBF8F3; }
.gmain__badges{ position:absolute; top:1.15rem; left:1.15rem; display:flex; flex-direction:column; gap:.4rem; align-items:flex-start; }
.gmain__zoom{ position:absolute; right:1.15rem; bottom:1.15rem; display:flex; align-items:center; gap:.45rem; font-size:.6875rem; letter-spacing:.14em; text-transform:uppercase; color:var(--fg-subtle); }
.gmain__zoom svg{ width:15px; height:15px; }

.pdp__brand{ font-size:.75rem; letter-spacing:.2em; text-transform:uppercase; color:var(--amber-deep); font-weight:600; }
.pdp h1{ margin-top:.7rem; }
.pdp__sub{ display:flex; flex-wrap:wrap; align-items:center; gap:.6rem; margin-top:.9rem; font-size:.875rem; color:var(--fg-muted); }
.pdp__sub i{ width:3px; height:3px; border-radius:50%; background:var(--line-strong); }
.pdp__rating{ display:flex; align-items:center; gap:.6rem; margin-top:1.1rem; }
.pdp__rating a{ font-size:.8125rem; color:var(--fg-muted); text-decoration:underline; text-underline-offset:3px; }
.pdp__rating a:hover{ color:var(--amber-deep); }
.pdp__price{ display:flex; align-items:baseline; gap:.85rem; flex-wrap:wrap; margin-top:1.5rem; }
.pdp__price .price{ font-size:2.15rem; font-family:var(--display); font-weight:500; letter-spacing:-.01em; }
.pdp__price .price--was{ font-size:1.125rem; }
.pdp__save{ padding:.25rem .6rem; border-radius:var(--r-sm); background:rgba(166,58,46,.1); color:var(--danger); font-size:.6875rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.pdp__tax{ font-size:.75rem; color:var(--fg-subtle); margin-top:.35rem; }
.pdp__desc{ margin-top:1.5rem; font-size:.9375rem; line-height:1.8; color:var(--fg-muted); }
.pdp__stock{ display:flex; align-items:center; gap:.5rem; margin-top:1.5rem; font-size:.8125rem; letter-spacing:.08em; text-transform:uppercase; }
.pdp__stock::before{ content:""; width:7px; height:7px; border-radius:50%; background:currentColor; box-shadow:0 0 0 3px color-mix(in srgb, currentColor 22%, transparent); }
.pdp__buy{ display:flex; flex-wrap:wrap; gap:.75rem; margin-top:1.5rem; align-items:stretch; }
.pdp__buy .btn{ flex:1; min-width:150px; }
.pdp__wish{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  min-height:50px; padding:0 1.25rem; border:1px solid var(--line-strong); border-radius:var(--r-pill);
  font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; font-weight:600;
  transition:all .3s var(--ease);
}
.pdp__wish svg{ width:17px; height:17px; }
.pdp__wish:hover{ border-color:var(--danger); color:var(--danger); }
.pdp__wish.is-on{ color:var(--danger); border-color:var(--danger); background:rgba(166,58,46,.06); }
.pdp__wish.is-on svg{ fill:currentColor; }
.pdp__assur{ display:flex; flex-direction:column; gap:.75rem; margin-top:1.85rem; padding-top:1.75rem; border-top:1px solid var(--line); }
.pdp__assur li{ display:flex; align-items:center; gap:.7rem; font-size:.8125rem; color:var(--fg-muted); }
.pdp__assur svg{ width:17px; height:17px; color:var(--amber-deep); flex:none; }

.notes{ display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
@media (max-width:760px){ .notes{ grid-template-columns:1fr; } }
.note{
  padding:1.6rem; border-radius:var(--r-lg); background:#fff; border:1px solid var(--line);
  transition:border-color .4s var(--ease), transform .4s var(--ease-out);
}
.note:hover{ border-color:var(--line-strong); transform:translateY(-3px); }
.note__icon{ width:44px; height:44px; display:grid; place-items:center; border-radius:50%; background:rgba(200,138,50,.11); color:var(--amber-deep); }
.note__icon svg{ width:22px; height:22px; }
.note h3{ font-family:var(--display); font-size:1.28rem; font-weight:500; margin-top:1rem; }
.note__label{ font-size:.625rem; letter-spacing:.2em; text-transform:uppercase; color:var(--fg-subtle); margin-top:.25rem; }
.note p{ font-size:.9375rem; line-height:1.75; color:var(--fg-muted); margin-top:.85rem; }

.profile{ display:flex; flex-direction:column; gap:1rem; }
.pbar{ display:grid; grid-template-columns:76px minmax(0,1fr) 34px; gap:1rem; align-items:center; }
.pbar__name{ font-size:.8125rem; letter-spacing:.06em; }
.pbar__track{ height:6px; border-radius:3px; background:var(--line); overflow:hidden; }
.pbar__fill{ display:block; height:100%; border-radius:3px; background:var(--amber); width:0; transition:width 1.1s var(--ease-out); }
.pbar__val{ font-size:.75rem; color:var(--fg-subtle); text-align:right; font-variant-numeric:tabular-nums; }

.spectable tr{ border-bottom:1px solid var(--line); }
.spectable tr:last-child{ border-bottom:0; }
.spectable th,.spectable td{ padding:.95rem 0; text-align:left; font-size:.9375rem; vertical-align:top; }
.spectable th{ width:44%; font-weight:500; color:var(--fg-muted); font-size:.8125rem; letter-spacing:.08em; text-transform:uppercase; }
.spectable td{ font-weight:500; }
.spectable td{ overflow-wrap:anywhere; }
.spectable td a{ word-break:break-all; }

.reviews{ display:grid; grid-template-columns:300px minmax(0,1fr); gap:clamp(2rem,4vw,3.5rem); align-items:start; }
@media (max-width:860px){ .reviews{ grid-template-columns:1fr; } }
.revsum{ padding:1.85rem; border-radius:var(--r-lg); background:var(--paper-alt); border:1px solid var(--line); position:sticky; top:calc(var(--header-h) + 1.5rem); }
@media (max-width:860px){ .revsum{ position:static; } }
.revsum__score{ font-family:var(--display); font-size:3.75rem; line-height:1; font-weight:400; }
.revsum__of{ font-size:1rem; color:var(--fg-subtle); }
.revsum__count{ font-size:.8125rem; color:var(--fg-muted); margin-top:.65rem; }
.revbars{ display:flex; flex-direction:column; gap:.5rem; margin-top:1.5rem; }
.revbar{ display:grid; grid-template-columns:38px minmax(0,1fr) 30px; gap:.7rem; align-items:center; font-size:.75rem; color:var(--fg-muted); }
.revbar__track{ height:5px; border-radius:3px; background:var(--line-strong); overflow:hidden; }
.revbar__fill{ display:block; height:100%; background:var(--amber); border-radius:3px; }
.review{ padding-block:1.75rem; border-bottom:1px solid var(--line); }
.review:first-child{ padding-top:0; }
.review__head{ display:flex; align-items:center; gap:.9rem; flex-wrap:wrap; }
.review__avatar{
  width:42px; height:42px; flex:none; display:grid; place-items:center; border-radius:50%;
  background:var(--ink-700); color:var(--amber-soft);
  font-family:var(--display); font-size:1.05rem;
}
.review__who b{ font-size:.9375rem; font-weight:600; }
.review__who span{ display:block; font-size:.75rem; color:var(--fg-subtle); }
.review__verified{ display:inline-flex; align-items:center; gap:.3rem; font-size:.6875rem; letter-spacing:.08em; text-transform:uppercase; color:var(--success); }
.review__verified svg{ width:13px; height:13px; }
.review__date{ margin-left:auto; font-size:.75rem; color:var(--fg-subtle); }
.review h3{ font-family:var(--display); font-size:1.2rem; font-weight:500; margin-top:1rem; }
.review p{ font-size:.9375rem; line-height:1.75; color:var(--fg-muted); margin-top:.5rem; }

.tabs{ display:flex; gap:.25rem; border-bottom:1px solid var(--line); overflow-x:auto; margin-bottom:2.5rem; }
.tabs button{
  position:relative; padding:1rem 1.25rem; white-space:nowrap;
  font-size:.8125rem; font-weight:600; letter-spacing:.09em; text-transform:uppercase; color:var(--fg-muted);
  transition:color .3s var(--ease);
}
.tabs button::after{ content:""; position:absolute; left:1.25rem; right:1.25rem; bottom:-1px; height:2px; background:var(--ink); transform:scaleX(0); transition:transform .35s var(--ease-out); }
.tabs button:hover{ color:var(--fg); }
.tabs button[aria-selected="true"]{ color:var(--fg); }
.tabs button[aria-selected="true"]::after{ transform:scaleX(1); }
.tabpanel[hidden]{ display:none; }
.tabpanel{ animation:fadeSwap .45s var(--ease-out); }

/* ---------- 22. Cart page ---------- */
.cartlayout{ display:grid; grid-template-columns:minmax(0,1fr) 372px; gap:clamp(1.5rem,3vw,3rem); align-items:start; }
@media (max-width:960px){ .cartlayout{ grid-template-columns:1fr; } }
.cartcard{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; }
.cartcard__head{ display:flex; align-items:center; justify-content:space-between; padding:1.25rem 1.5rem; border-bottom:1px solid var(--line); }
.cartcard__head h2{ font-size:.75rem; letter-spacing:.18em; text-transform:uppercase; font-weight:600; }
.cartrow{ display:grid; grid-template-columns:112px minmax(0,1fr) auto; gap:1.5rem; padding:1.5rem; border-bottom:1px solid var(--line); align-items:start; }
.cartrow:last-child{ border-bottom:0; }
@media (max-width:620px){
  .cartrow{ grid-template-columns:88px minmax(0,1fr); gap:1rem; }
  .cartrow__price{ grid-column:2; text-align:left !important; }
}
.cartrow__media{ display:flex; align-items:stretch; justify-content:center; padding:.75rem; aspect-ratio:1/1.18; background:#F6F1E8; border:1px solid var(--line); border-radius:var(--r-md); }
.cartrow__media svg,.cartrow__media img{ height:100%; width:auto; max-width:100%; object-fit:contain; }
.cartrow__price{ text-align:right; }
.cartrow__unit{ font-size:.75rem; color:var(--fg-subtle); margin-top:.2rem; }
.summary{ position:sticky; top:calc(var(--header-h) + 1.25rem); background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:1.6rem; }
.summary h2{ font-size:.75rem; letter-spacing:.18em; text-transform:uppercase; font-weight:600; margin-bottom:1.35rem; }
.promo{ display:flex; gap:.5rem; margin-block:1.35rem; }
.promo .input{ min-height:46px; }
.promo__msg{ font-size:.75rem; margin-top:-.85rem; margin-bottom:1.15rem; }
.promo__msg.ok{ color:var(--success); }
.promo__msg.err{ color:var(--danger); }
.estimator{ margin-block:1.35rem; padding-block:1.35rem; border-block:1px solid var(--line); }
.estimator .select{ min-height:46px; }
.summary__secure{ display:flex; align-items:center; justify-content:center; gap:.5rem; margin-top:1rem; font-size:.75rem; color:var(--fg-subtle); }
.summary__secure svg{ width:14px; height:14px; }
.giftnote{ margin-top:1.25rem; }
.giftnote summary{ cursor:pointer; font-size:.8125rem; color:var(--amber-deep); list-style:none; display:flex; align-items:center; gap:.5rem; }
.giftnote summary::-webkit-details-marker{ display:none; }
.giftnote summary svg{ width:15px; height:15px; }
.giftnote[open] summary{ margin-bottom:.85rem; }

.steps{ display:flex; align-items:center; gap:.75rem; flex-wrap:wrap; font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; color:var(--fg-subtle); margin-bottom:2rem; }
.steps b{ color:var(--fg); font-weight:600; }
.steps i{ width:22px; height:1px; background:var(--line-strong); }

/* ---------- 23. Misc ---------- */
.pill-row{ display:flex; flex-wrap:wrap; gap:.5rem; }
.pill{
  padding:.4rem .85rem; border-radius:var(--r-pill);
  background:var(--paper-alt); border:1px solid var(--line);
  font-size:.75rem; color:var(--fg-muted);
}
.pill--gold{ background:rgba(200,138,50,.1); border-color:rgba(200,138,50,.28); color:var(--amber-deep); }
.split{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:clamp(2rem,4vw,4rem); align-items:center; }
@media (max-width:860px){ .split{ grid-template-columns:1fr; } }
.card-plain{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(1.5rem,2.5vw,2.25rem); }
.mt-1{ margin-top:.5rem; } .mt-2{ margin-top:1rem; } .mt-3{ margin-top:1.5rem; } .mt-4{ margin-top:2rem; }

/* ---------- 24. Large-catalogue additions ---------- */
.fgroup__search{ min-height:40px; padding:.5rem .8rem; font-size:.8125rem; margin-bottom:.85rem; }
.fgroup__list{ max-height:266px; }

.comingsoon{ text-align:center; padding:clamp(3rem,7vw,5.5rem) 1rem; max-width:60ch; margin-inline:auto; }
.comingsoon__icon{
  display:inline-grid; place-items:center; width:64px; height:64px; margin-bottom:1.5rem;
  border-radius:50%; background:rgba(200,138,50,.10); color:var(--amber-deep);
}
.comingsoon__icon svg{ width:30px; height:30px; }
.comingsoon .lede{ margin-inline:auto; }

/* Placeholder collection cards */
.cat__photo{
  position:absolute; right:-6%; bottom:-4%; z-index:-1; height:78%; width:auto;
  object-fit:contain; opacity:.92; filter:drop-shadow(0 24px 34px rgba(0,0,0,.55));
  transition:transform .9s var(--ease-out);
  pointer-events:none;
}
.cat:hover .cat__photo{ transform:translateY(-8px) scale(1.05); }
.cat:nth-child(1) .cat__photo{ height:70%; right:2%; }
@media (max-width:560px){ .cat__photo{ height:66%; right:-10%; } }
.hero__bottle-img{ width:100%; height:auto; max-height:min(62vh,600px); object-fit:contain; }
.cat--soon{ opacity:.92; }
.cat--soon .cat__art svg{ filter:grayscale(.55) brightness(.72); }
.cat--soon:hover .cat__art svg{ filter:grayscale(.3) brightness(.8); }
.cat__soon{
  position:absolute; top:1.1rem; left:1.1rem; z-index:1;
  padding:.3rem .7rem; border-radius:var(--r-pill);
  background:rgba(12,11,10,.62); border:1px solid rgba(246,241,232,.28);
  font-size:.625rem; letter-spacing:.16em; text-transform:uppercase; color:var(--cream);
}

/* PDP: tasting notes not published by the producer */
.note--empty{ background:var(--paper-alt); border-style:dashed; }
.note--empty p{ font-style:italic; }

/* ============================================================
   25. Photography-first product cards
   Real product shots sit on plain white inside a bordered frame
   - no tinted placeholder wash, no fake drop shadow.
   ============================================================ */
.card{ background:#fff; border:1px solid var(--line-strong); }
.card:hover{ border-color:var(--ink-500); box-shadow:var(--shadow-md); }

.card__media--photo{
  background:#fff;
  border-bottom:1px solid var(--line);
  padding:1.15rem;
}
.card__media--photo::after{ display:none; }
.card__media--photo .card__bottle{ height:100%; width:100%; object-fit:contain; }
.card:hover .card__media--photo .card__bottle{ transform:translateY(-4px) scale(1.03); }

/* framed thumbnails everywhere else */
.citem__media,.cartrow__media,.ac__thumb,.gthumb{ background:#fff; }
.gmain--photo{ background:#fff; }
.gmain{ border:1px solid var(--line-strong); }
.gthumb{ border-color:var(--line-strong); }
.cartrow__media,.citem__media{ border-color:var(--line-strong); }

/* Collection cards: dynamic fill so the grid never leaves a hole */
.cat:nth-child(6),.cat:nth-child(7){ grid-column:auto; }
.cat--wide{ grid-column:span 2; }
@media (max-width:560px){ .cat--wide{ grid-column:span 1; } }

/* ============================================================
   26. Light hero
   Plain, shallow ground so both the headline and the bottle
   photograph read clearly.
   ============================================================ */
.hero--light{
  background:#F6F1E8;
  color:var(--fg);
}
.hero--light .hero__bg,
.hero--light .hero__vignette{ display:none; }
.hero--light .hero__grain{ opacity:.16; mix-blend-mode:multiply; }
.hero--light .eyebrow--light{ color:var(--amber-deep); }
.hero--light .hero__lede{ color:var(--fg-muted); }
.hero--light h1 .em{
  background:var(--amber);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero--light .btn--ghost-light{ --btn-fg:var(--fg); --btn-bd:var(--line-strong); }
.hero--light .btn--ghost-light:hover{ --btn-fg:var(--ink); }
.hero--light .hero__trust{ border-top-color:var(--line-strong); }
.hero--light .hero__trust-item{ color:var(--fg-muted); }
.hero--light .hero__trust-item svg{ color:var(--amber-deep); }
.hero--light .hero__scroll{ color:var(--fg-subtle); }
.hero--light .hero__scroll i{ background:linear-gradient(var(--line-strong),transparent); }

/* header sitting over the light hero */
.header--over.header--over-light{ color:var(--fg); }
.header--over-light .brand__sub{ color:var(--fg-subtle); }
.header--over-light .nav__link:hover,
.header--over-light .nav__link[aria-current="page"]{ color:var(--amber-deep); }
.header--over-light .iconbtn:hover{ background:rgba(200,138,50,.14); color:var(--amber-deep); }
.header--over-light.is-stuck{
  background:var(--paper); border-color:var(--line);
}

/* ---------- Hero product card (clickable) ---------- */
.hero__product{
  display:flex; flex-direction:column; width:min(100%,420px);
  background:#fff; border:1px solid var(--line-strong); border-radius:var(--r-lg);
  overflow:hidden; box-shadow:var(--shadow-md);
  transition:transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s var(--ease);
}
.hero__product:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--ink-500); }
.hero__product-media{
  position:relative; display:flex; align-items:center; justify-content:center;
  aspect-ratio:1/1; padding:1.5rem; background:#fff; border-bottom:1px solid var(--line);
}
.hero__product-media img,.hero__product-media svg{
  height:100%; width:100%; object-fit:contain;
  transition:transform .6s var(--ease-out);
}
.hero__product:hover .hero__product-media img{ transform:scale(1.04); }
.hero__product-flag{
  position:absolute; top:.9rem; left:.9rem;
  padding:.3rem .7rem; border-radius:var(--r-sm);
  background:var(--amber); color:var(--ink);
  font-size:.625rem; font-weight:700; letter-spacing:.13em; text-transform:uppercase;
}
.hero__product-info{ display:flex; flex-direction:column; gap:.25rem; padding:1.15rem 1.35rem 1.35rem; }
.hero__product-brand{ font-size:.6875rem; letter-spacing:.18em; text-transform:uppercase; color:var(--amber-deep); font-weight:700; }
.hero__product-name{ font-family:var(--display); font-size:1.3rem; font-weight:500; line-height:1.22; color:var(--fg); }
.hero__product-meta{ font-size:.75rem; color:var(--fg-muted); }
.hero__product-row{ display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-top:.6rem; }
.hero__product-price{ font-size:1.35rem; font-weight:600; letter-spacing:-.01em; font-variant-numeric:tabular-nums; color:var(--fg); }
.hero__product-cta{
  display:inline-flex; align-items:center; gap:.4rem;
  font-size:.6875rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--amber-deep);
  transition:gap .3s var(--ease);
}
.hero__product:hover .hero__product-cta{ gap:.8rem; }
.hero__product-cta svg{ width:14px; height:14px; }
@media (max-width:900px){ .hero__product{ width:min(100%,320px); margin-inline:auto; } }

/* ---------- Jim Beam house section ---------- */
.house{ background:#0C0B0A; color:var(--cream); position:relative; overflow:hidden; }
.house__glow{
  position:absolute; inset:auto -10% -40% -10%; height:75%; z-index:0; pointer-events:none;
  background:none;
}
.house__inner{ position:relative; z-index:1; }
.house__top{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.05fr); gap:clamp(2rem,5vw,5rem); align-items:center; }
@media (max-width:900px){ .house__top{ grid-template-columns:1fr; } }
.house__stats{ display:flex; gap:2.5rem; flex-wrap:wrap; margin-top:2.25rem; }
.house__stat b{ display:block; font-family:var(--display); font-size:2.5rem; font-weight:300; color:var(--amber-soft); line-height:1; }
.house__stat span{ font-size:.6875rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(246,241,232,.5); }
.house .card{ background:#fff; border-color:transparent; }

/* ============================================================
   27. Checkout payment (IGET-style)
   ============================================================ */
.paymethods{ display:flex; flex-direction:column; gap:.6rem; margin-top:1rem; }
.paymethod{
  display:flex; align-items:flex-start; gap:.9rem;
  padding:1rem 1.15rem; cursor:pointer;
  background:#fff; border:1px solid var(--line-strong); border-radius:var(--r-md);
  transition:border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.paymethod:hover{ border-color:var(--amber); }
.paymethod input{
  appearance:none; flex:none; width:18px; height:18px; margin-top:.15rem;
  border:1px solid var(--line-strong); border-radius:50%; background:#fff;
  transition:background-color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.paymethod.is-on{ border-color:var(--ink); box-shadow:0 0 0 1px var(--ink); background:rgba(200,138,50,.05); }
.paymethod.is-on input{ background:var(--ink); border-color:var(--ink); box-shadow:inset 0 0 0 3px #fff; }
.paymethod__body{ display:flex; flex-direction:column; gap:.2rem; }
.paymethod__body b{ font-size:.9375rem; font-weight:600; }
.paymethod__body span{ font-size:.8125rem; color:var(--fg-muted); line-height:1.5; }

.paydetails{
  margin-top:1.25rem; padding:1.35rem 1.5rem;
  background:rgba(200,138,50,.07); border:1px solid rgba(200,138,50,.28); border-radius:var(--r-md);
  animation:fadeSwap .35s var(--ease-out);
}
.paydetails h3{ font-family:var(--display); font-size:1.28rem; font-weight:500; }
.paydetails p{ font-size:.875rem; line-height:1.7; color:var(--fg-muted); margin-top:.85rem; }
.paydetails--contact{ background:var(--paper-alt); border-color:var(--line-strong); }
.paydetails--crypto{ background:rgba(63,122,85,.07); border-color:rgba(63,122,85,.28); }
.paydetails__list{ margin:1.15rem 0 0; display:flex; flex-direction:column; gap:.65rem; }
.paydetails__list > div{ display:grid; grid-template-columns:150px minmax(0,1fr); gap:1rem; align-items:baseline; }
.paydetails__list dt{ font-size:.8125rem; color:var(--fg-muted); }
.paydetails__list dd{ margin:0; font-size:.9375rem; font-weight:600; word-break:break-word; }
@media (max-width:520px){ .paydetails__list > div{ grid-template-columns:1fr; gap:.15rem; } }

.proof{ margin-top:1.5rem; }
.proof__drop{
  display:flex; align-items:center; gap:1rem; cursor:pointer;
  padding:1.15rem 1.25rem; border:1.5px dashed var(--line-strong); border-radius:var(--r-md);
  background:#fff; transition:border-color .25s var(--ease), background-color .25s var(--ease);
}
.proof__drop:hover{ border-color:var(--amber); background:rgba(200,138,50,.04); }
.proof__drop.is-filled{ border-style:solid; border-color:var(--success); background:rgba(63,122,85,.06); }
.proof__icon{ flex:none; display:grid; place-items:center; width:38px; height:38px; border-radius:var(--r-pill); background:rgba(200,138,50,.14); color:var(--amber-deep); }
.proof__drop.is-filled .proof__icon{ background:rgba(63,122,85,.14); color:var(--success); }
.proof__icon svg{ width:19px; height:19px; }
.proof__text{ display:flex; flex-direction:column; gap:.15rem; min-width:0; }
.proof__text b{ font-size:.9375rem; font-weight:600; }
.proof__text span{ font-size:.8125rem; color:var(--fg-muted); }

/* Order summary lines */
.osum{ display:flex; flex-direction:column; gap:.9rem; margin-bottom:1.35rem; }
.osum__row{ display:grid; grid-template-columns:52px minmax(0,1fr) auto; gap:.85rem; align-items:center; }
.osum__media{
  position:relative; display:flex; align-items:center; justify-content:center;
  width:52px; height:64px; padding:.3rem;
  background:#fff; border:1px solid var(--line-strong); border-radius:var(--r-sm);
}
.osum__media img,.osum__media svg{ height:100%; width:100%; object-fit:contain; }
.osum__qty{
  position:absolute; top:-7px; right:-7px;
  min-width:20px; height:20px; padding:0 5px;
  display:grid; place-items:center; border-radius:var(--r-pill);
  background:var(--ink); color:var(--cream); font-size:.6875rem; font-weight:700;
}
.osum__name{ font-size:.8125rem; line-height:1.45; }
.osum__price{ font-size:.875rem; font-weight:600; }

/* ============================================================
   28. SEO content blocks
   ============================================================ */
.seo-body{
  max-width:78ch; margin-inline:auto;
  padding-block:clamp(2.5rem,5vw,4rem);
}
.seo-body--shop{ border-top:1px solid var(--line); margin-top:clamp(2.5rem,5vw,4rem); }
.seo-body h1,.seo-body h2,.seo-body h3{ font-family:var(--display); font-weight:500; line-height:1.2; }
.seo-body h1{ font-size:clamp(1.9rem,3.6vw,2.9rem); margin-bottom:1.25rem; letter-spacing:-.015em; }
.seo-body h2{ font-size:clamp(1.4rem,2.4vw,1.95rem); margin-top:2.25rem; margin-bottom:.85rem; }
.seo-body h3{ font-size:clamp(1.15rem,1.8vw,1.4rem); margin-top:1.85rem; margin-bottom:.6rem; }
.seo-body p{ font-size:.9375rem; line-height:1.8; color:var(--fg-muted); margin-bottom:1rem; }
.seo-body p strong{ color:var(--fg); font-weight:600; }
.seo-body a{ color:var(--amber-deep); text-decoration:underline; text-underline-offset:3px; text-decoration-thickness:1px; }
.seo-body a:hover{ color:var(--ink); }
.seo-list{ margin:.5rem 0 1.25rem; display:flex; flex-direction:column; gap:.6rem; }
.seo-list li{ font-size:.9375rem; line-height:1.7; color:var(--fg-muted); padding-left:1.1rem; position:relative; }
.seo-list li::before{ content:""; position:absolute; left:0; top:.7em; width:5px; height:5px; border-radius:50%; background:var(--amber); }

.seo-spec{ margin:1.75rem 0; padding:1.5rem; background:var(--paper-alt); border:1px solid var(--line); border-radius:var(--r-lg); }
.seo-spec h3{ margin-top:0; margin-bottom:.85rem; font-size:1.1rem; }
.seo-spec .spectable th{ width:52%; }
.seo-spec .spectable th,.seo-spec .spectable td{ padding:.7rem 0; font-size:.875rem; }

.seo-links{ margin:1.75rem 0; }
.seo-links h3{ margin-top:0; }
.seo-links ul{ display:flex; flex-wrap:wrap; gap:.5rem; }
.seo-links li a{
  display:inline-block; padding:.45rem .9rem; border-radius:var(--r-pill);
  background:var(--paper-alt); border:1px solid var(--line);
  font-size:.8125rem; color:var(--fg); text-decoration:none;
  transition:border-color .25s var(--ease), color .25s var(--ease), background-color .25s var(--ease);
}
.seo-links li a:hover{ border-color:var(--amber); color:var(--amber-deep); background:rgba(200,138,50,.07); }
.seo-links--out li a::after{ content:" \2197"; opacity:.55; }
.seo-note{ font-size:.75rem; color:var(--fg-subtle); margin-top:.75rem; }

.seo-faq{ max-width:78ch; margin-inline:auto; padding-block:clamp(2rem,4vw,3rem); }
.seo-faq h2{ font-family:var(--display); font-weight:500; margin-bottom:1.5rem; }
.seo-faq__list{ display:flex; flex-direction:column; }
.seo-faq__item{ border-bottom:1px solid var(--line); }
.seo-faq__item summary{
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
  padding:1.15rem 0; cursor:pointer; list-style:none;
  font-size:1.0625rem; font-weight:500; color:var(--fg);
  transition:color .25s var(--ease);
}
.seo-faq__item summary::-webkit-details-marker{ display:none; }
.seo-faq__item summary:hover{ color:var(--amber-deep); }
.seo-faq__item summary i{
  flex:none; position:relative; width:14px; height:14px;
}
.seo-faq__item summary i::before,.seo-faq__item summary i::after{
  content:""; position:absolute; background:var(--amber-deep); transition:transform .3s var(--ease);
}
.seo-faq__item summary i::before{ left:0; top:6px; width:14px; height:2px; }
.seo-faq__item summary i::after{ left:6px; top:0; width:2px; height:14px; }
.seo-faq__item[open] summary i::after{ transform:scaleY(0); }
.seo-faq__item p{ font-size:.9375rem; line-height:1.8; color:var(--fg-muted); padding-bottom:1.35rem; margin:0; }
.seo-faq--dark{ color:var(--cream); }
.seo-faq--dark .seo-faq__item{ border-bottom-color:rgba(246,241,232,.14); }
.seo-faq--dark .seo-faq__item summary{ color:var(--cream); }
.seo-faq--dark .seo-faq__item p{ color:rgba(246,241,232,.62); }

/* Footer SEO */
.footer__seo{ font-size:.8125rem; line-height:1.7; color:rgba(246,241,232,.62); }
.footer__seo strong{ color:var(--cream); }
.footer__seo a{ color:var(--amber-soft); text-decoration:underline; text-underline-offset:2px; }
.footer__out{ display:flex; flex-wrap:wrap; gap:.4rem 1rem; margin-top:1rem; font-size:.75rem; }
.footer__out a{ color:rgba(246,241,232,.55); }
.footer__out a:hover{ color:var(--amber-soft); }

/* ============================================================
   29. Product gallery - photography only, framed
   ============================================================ */
.gallery--single{ grid-template-columns:minmax(0,1fr); }
.gmain{
  border:1px solid var(--line-strong);
  border-radius:var(--r-lg);
  background:#fff;
  aspect-ratio:1/1;
  padding:clamp(1.75rem,4vw,3.25rem);
}
.gmain--photo{ background:#fff; }
.gmain__inner img{ height:100%; width:100%; object-fit:contain; }
.gmain__inner svg{ filter:none; }
.gthumb{
  border:1px solid var(--line-strong);
  background:#fff;
  aspect-ratio:1/1;
  padding:.55rem;
}
.gthumb[aria-pressed="true"]{ border-color:var(--ink); box-shadow:0 0 0 1px var(--ink); }
.gmain__badges{ top:1rem; left:1rem; }

/* Product card: photo sits in its own framed cell */
.card{ border-color:var(--line-strong); }
.card__media,.card__media--photo{
  background:#fff;
  border-bottom:1px solid var(--line-strong);
  padding:1.25rem;
  aspect-ratio:1/1;
}
.card__media::after{ display:none; }
.card__bottle{ height:100%; width:100%; object-fit:contain; }

/* Framed thumbnails everywhere the product appears */
.citem__media,.cartrow__media,.ac__thumb,.osum__media,.hero__product-media{
  background:#fff;
  border-color:var(--line-strong);
}

/* ============================================================
   30. Collection cards - rebuilt
   Was: a coloured SVG backdrop with the product photo floated
   over it and the text sitting on top of both, which overlapped
   and left the copy unreadable.
   Now: the same framed-product treatment as a product card - 
   photo on plain white in its own bordered cell, copy in a
   separate block underneath. Nothing overlaps anything.
   ============================================================ */
.cats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:clamp(.9rem,1.5vw,1.5rem);
}
@media (max-width:1180px){ .cats{ grid-template-columns:repeat(3,minmax(0,1fr)); } }
@media (max-width:860px){ .cats{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:460px){ .cats{ grid-template-columns:1fr; } }

/* every card is equal - no bento spans, no gap-filling hacks */
.cat,
.cat:nth-child(1),
.cat:nth-child(6),
.cat:nth-child(7),
.cat--wide{
  grid-column:auto;
  grid-row:auto;
  min-height:0;
}

.cat{
  position:relative;
  display:flex;
  flex-direction:column;
  padding:0;
  overflow:hidden;
  isolation:auto;
  background:#fff;
  color:var(--fg);
  border:1px solid var(--line-strong);
  border-radius:var(--r-lg);
  transition:transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease);
}
.cat:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--ink-500); }

/* the coloured placeholder scene and its scrim are gone */
.cat__art{ display:none; }
.cat::before{ display:none; }

.cat__media{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:1/0.92;
  padding:1.35rem;
  background:#fff;
  border-bottom:1px solid var(--line-strong);
}
.cat__photo{
  position:static;
  height:100%;
  width:100%;
  max-width:100%;
  object-fit:contain;
  opacity:1;
  filter:none;
  transition:transform .55s var(--ease-out);
}
.cat:hover .cat__photo{ transform:translateY(-4px) scale(1.04); }
.cat__media svg{ height:100%; width:auto; }

.cat__count{
  position:absolute;
  top:.8rem;
  right:.8rem;
  z-index:1;
  padding:.28rem .62rem;
  border-radius:var(--r-pill);
  background:var(--paper-alt);
  border:1px solid var(--line-strong);
  font-size:.625rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--fg-muted);
}

.cat__body{
  display:flex;
  flex-direction:column;
  gap:.35rem;
  flex:1;
  padding:1.1rem 1.25rem 1.3rem;
}
.cat__name,
.cat:nth-child(1) .cat__name{
  font-family:var(--display);
  font-size:1.35rem;
  font-weight:500;
  line-height:1.2;
  color:var(--fg);
}
.cat__desc{
  margin-top:0;
  max-width:none;
  font-size:.8125rem;
  line-height:1.6;
  color:var(--fg-muted);
  /* keep every card's copy to the same depth so the grid stays even */
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.cat__go{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  margin-top:auto;
  padding-top:.9rem;
  opacity:1;
  transform:none;
  font-size:.6875rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--amber-deep);
  transition:gap .3s var(--ease);
}
.cat:hover .cat__go{ opacity:1; transform:none; gap:.85rem; }

/* neutralise the leftovers from the old overlay-style card */
.cat{ justify-content:flex-start; }
.cat--soon .cat__art svg,
.cat--soon:hover .cat__art svg{ filter:none; }
.cat__soon{ top:.8rem; left:.8rem; background:var(--paper-alt); border-color:var(--line-strong); color:var(--fg-muted); }


/* ============================================================
   31. Header in normal flow
   The homepage header used to be position:fixed over the hero,
   which overlapped the content beneath it. It now sits in the
   document flow directly under the announcement bar and sticks
   on scroll like every other page.
   ============================================================ */
.hero--light{
  padding-top:clamp(2.5rem,5vw,4.5rem);
  padding-bottom:clamp(2.5rem,5vw,4.5rem);
  min-height:0;
}
.hero--light .hero__inner{ align-items:center; }
@media (max-width:900px){
  .hero--light{ padding-top:clamp(2rem,5vw,3rem); }
}

/* The old overlay card floated this photo behind the card with z-index:-1.
   It is a flex item now, so that z-index still applied and hid it behind the
   white background. Reset the positioning leftovers explicitly. */
.cat__photo{
  z-index:auto;
  right:auto;
  bottom:auto;
  left:auto;
  top:auto;
  pointer-events:auto;
  opacity:1;
  filter:none;
}

/* The product H1 carries the brand as well as the expression, since the full
   product name is the page's target keyword. The brand keeps its eyebrow look. */
.pdp__h1{ margin-top:0; }
.pdp__h1-brand{
  display:block;
  margin-bottom:.5rem;
  font-family:var(--sans);
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--amber-deep);
}

/* ============================================================
   32. Brand lockup
   Tall letterspaced serif wordmark in gold, beside the shield.
   Original artwork - deliberately not the producer's own marks.
   ============================================================ */
.brand{ gap:.85rem; }
.brand__mark{ width:38px; height:42px; }

.brand__name{
  font-size:1.42rem;
  font-weight:400;
  letter-spacing:.2em;
  line-height:1;
  background:#C8862F;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  /* the gradient needs a solid fallback wherever background-clip is unsupported */
  -webkit-text-fill-color:transparent;
}
@supports not ((-webkit-background-clip:text) or (background-clip:text)){
  .brand__name{ color:var(--amber-deep); -webkit-text-fill-color:currentColor; }
}

.brand__sub{
  font-size:.5625rem;
  font-weight:600;
  letter-spacing:.42em;
  margin-top:.42rem;
  color:var(--amber-deep);
  opacity:.85;
}

/* on the dark footer the same lockup sits on black, as intended */
.footer .brand__name{ color:transparent; }
.footer .brand__sub{ color:var(--amber-soft); opacity:.75; }

@media (max-width:520px){
  .brand__mark{ width:32px; height:35px; }
  .brand__name{ font-size:1.15rem; letter-spacing:.16em; }
  .brand__sub{ letter-spacing:.34em; }
}

/* ============================================================
   33. Mobile bottom navigation
   Home / Collections / Cart, fixed within thumb reach. Hidden on
   desktop, where the header nav already covers it.
   ============================================================ */
.botnav{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:700;
  display:none;
  grid-template-columns:repeat(3,1fr);
  background:var(--paper);
  border-top:1px solid var(--line-strong);
  padding-bottom:env(safe-area-inset-bottom);
  box-shadow:0 -2px 8px rgba(12,11,10,.10);
}
@media (max-width:1024px){ .botnav{ display:grid; } }

.botnav__item{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.3rem;
  min-height:60px;
  padding:.5rem .35rem;
  color:var(--fg-muted);
  font-size:.625rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  background:none;
  border:0;
  cursor:pointer;
  transition:color .25s var(--ease);
}
.botnav__item svg{ width:21px; height:21px; stroke-width:1.5; }
.botnav__item:hover,
.botnav__item.is-on{ color:var(--amber-deep); }
.botnav__item.is-on::before{
  content:"";
  position:absolute;
  top:0; left:50%;
  width:26px; height:2px;
  transform:translateX(-50%);
  background:var(--amber);
  border-radius:0 0 2px 2px;
}
.botnav__count{
  position:absolute;
  top:.45rem;
  right:calc(50% - 22px);
  min-width:17px; height:17px;
  padding:0 4px;
  display:grid; place-items:center;
  background:var(--amber); color:var(--ink);
  border-radius:var(--r-pill);
  font-size:.5625rem; font-weight:700; line-height:1; letter-spacing:0;
  transform:scale(0);
  transition:transform .3s var(--ease-out);
}
.botnav__count.is-on{ transform:scale(1); }

/* keep the last of the page clear of the bar */
@media (max-width:1024px){
  body{ padding-bottom:calc(60px + env(safe-area-inset-bottom)); }
  .toasts{ bottom:calc(72px + env(safe-area-inset-bottom)); }
  .filters__mobfoot{ padding-bottom:calc(1rem + 60px + env(safe-area-inset-bottom)); }
}

/* ---------- Collections sheet ---------- */
.catsheet{
  position:fixed; inset:0; z-index:820;
  display:flex; align-items:flex-end;
  visibility:hidden; pointer-events:none;
}
.catsheet.is-open{ visibility:visible; pointer-events:auto; }
.catsheet__scrim{
  position:absolute; inset:0;
  background:rgba(12,11,10,.5);
  opacity:0;
  transition:opacity .35s var(--ease);
}
.catsheet.is-open .catsheet__scrim{ opacity:1; }
.catsheet__panel{
  position:relative;
  width:100%;
  max-height:82vh;
  display:flex; flex-direction:column;
  background:var(--paper);
  border-radius:var(--r-xl) var(--r-xl) 0 0;
  border-top:1px solid var(--line-strong);
  box-shadow:0 -6px 18px rgba(12,11,10,.30);
  transform:translateY(100%);
  transition:transform .42s var(--ease-out);
  padding-bottom:env(safe-area-inset-bottom);
}
.catsheet.is-open .catsheet__panel{ transform:none; }
.catsheet__head{
  position:relative;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:1.5rem var(--gutter) .9rem;
  border-bottom:1px solid var(--line);
}
.catsheet__grab{
  position:absolute; top:.6rem; left:50%;
  width:38px; height:4px;
  transform:translateX(-50%);
  background:var(--line-strong);
  border-radius:2px;
}
.catsheet__list{ overflow-y:auto; padding:.5rem var(--gutter) 1.25rem; }
.catsheet__link{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:.95rem .25rem;
  border-bottom:1px solid var(--line);
  transition:color .25s var(--ease), padding-left .25s var(--ease);
}
.catsheet__link:last-child{ border-bottom:0; }
.catsheet__link:hover{ color:var(--amber-deep); padding-left:.5rem; }
.catsheet__name{ font-family:var(--display); font-size:1.2rem; font-weight:500; }
.catsheet__count{
  font-size:.6875rem; font-weight:600; letter-spacing:.1em;
  color:var(--fg-subtle); font-variant-numeric:tabular-nums;
}
.catsheet__link--all{ margin-top:.35rem; }
.catsheet__link--all .catsheet__name{ color:var(--amber-deep); }

/* ============================================================
   34. Official brand logo slot
   /assets/brand-logo.png is the Johnnie Walker Striding Man over the
   wordmark, black on transparent. It replaces the shield and the text
   lockup, since the asset already carries the name. Falls back to the
   shield when the file is absent. The logo is a tall format so it gets
   more height than the old shield; on dark surfaces (the overlay header
   and the footer) it is inverted to white.
   ============================================================ */
.brand__logo{
  height:56px;
  width:auto;
  max-width:min(210px,46vw);
  object-fit:contain;
  display:block;
  transition:filter .4s var(--ease);
}
.brand--haslogo .brand__text{ display:none; }
.header--over:not(.header--over-light) .brand__logo{ filter:invert(1); }
.footer .brand__logo{ height:64px; filter:invert(1); }
@media (max-width:520px){ .brand__logo{ height:46px; } .footer .brand__logo{ height:56px; } }

/* ============================================================
   35. Shop menu
   The Shop entry carries a caret and drops the collections beneath it.
   Hover and keyboard focus only, no script, so it cannot get stuck open.
   ============================================================ */
.nav__item--drop{ position:relative; }
.nav__caret{ display:inline-flex; margin-left:.1rem; transition:transform .25s var(--ease); }
.nav__caret svg{ width:14px; height:14px; }
.nav__item--drop:hover .nav__caret,
.nav__item--drop:focus-within .nav__caret{ transform:rotate(180deg); }

.nav__drop{
  position:absolute; top:100%; left:50%; z-index:620;
  min-width:268px; padding:.5rem;
  background:var(--paper); color:var(--fg);
  border:1px solid var(--line); border-radius:var(--r-md);
  box-shadow:var(--shadow-lg);
  opacity:0; visibility:hidden; pointer-events:none;
  transform:translateX(-50%) translateY(4px);
  transition:opacity .22s var(--ease), transform .22s var(--ease-out), visibility .22s;
}
.nav__item--drop:hover .nav__drop,
.nav__item--drop:focus-within .nav__drop{
  opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);
}
/* keeps the pointer from falling through the gap under the link */
.nav__item--drop::after{ content:""; position:absolute; top:100%; left:0; right:0; height:10px; }

.nav__droplist{ list-style:none; margin:0; padding:0; max-height:min(70vh,460px); overflow-y:auto; }
.nav__droplist a{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:.6rem .7rem; border-radius:var(--r-sm);
  font-size:.875rem; letter-spacing:0; text-transform:none; color:var(--fg);
  transition:background-color .18s var(--ease), color .18s var(--ease);
}
.nav__droplist a:hover{ background:var(--paper-alt); color:var(--amber-deep); }
.nav__dropcount{ font-size:.75rem; color:var(--fg-subtle); font-variant-numeric:tabular-nums; }
.nav__dropall{ border-top:1px solid var(--line); margin-top:.3rem; padding-top:.7rem !important; font-weight:600; }

/* ---------- the same menu inside the mobile drawer ---------- */
.mobnav__drop summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; gap:1rem;
}
.mobnav__drop summary::-webkit-details-marker{ display:none; }
.mobnav__caret{ display:inline-flex; flex:none; transition:transform .25s var(--ease); }
.mobnav__caret svg{ width:18px; height:18px; }
.mobnav__drop[open] .mobnav__caret{ transform:rotate(180deg); }
.mobnav__sublist{ list-style:none; margin:0 0 .6rem; padding:.2rem 0 0 calc(44px + 1rem); }
.mobnav__sublist a{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:.6rem 0; font-size:.9375rem;
  color:rgba(246,241,232,.72);
  border-bottom:1px solid rgba(246,241,232,.07);
}
.mobnav__sublist li:last-child a{ border-bottom:0; font-weight:600; color:var(--amber-soft); }
.mobnav__sublist a:hover{ color:var(--amber-soft); }
.mobnav__subcount{ font-size:.75rem; color:rgba(246,241,232,.45); font-variant-numeric:tabular-nums; }

/* ============================================================
   37. Live chat launcher
   Floating WhatsApp button, bottom right on every page.
   ============================================================ */
.chatw__fab{
  position:fixed; right:1.25rem; bottom:1.25rem; z-index:890;
  display:inline-flex; align-items:center; gap:.55rem;
  min-height:52px; padding:.8rem 1.3rem;
  background:#25D366; color:#fff;
  border:1px solid #1DA851; border-radius:var(--r-pill);
  font-size:.8125rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  box-shadow:0 4px 14px rgba(12,11,10,.28);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.chatw__fab:hover{ background:#1DA851; color:#fff; transform:translateY(-2px); box-shadow:0 6px 18px rgba(12,11,10,.32); }
.chatw__fab svg{ width:22px; height:22px; flex:none; }

/* order confirmations were parked in the same corner; sit them above it */
.toasts{ bottom:calc(1.25rem + 64px); }

@media (max-width:1024px){
  /* clear the fixed bottom nav */
  .chatw__fab{ bottom:calc(60px + 1rem + env(safe-area-inset-bottom)); }
  .toasts{ bottom:calc(60px + 1rem + 64px + env(safe-area-inset-bottom)); }
}
@media (max-width:560px){
  .chatw__fablabel{ display:none; }   /* icon-only on phones */
  .chatw__fab{ width:52px; height:52px; justify-content:center; padding:0; }
  .toasts{ left:1rem; right:1rem; }
}

/* ============================================================
   36. Small-screen overflow guards
   Nothing on the page may widen the document past the viewport.
   The trust strip drops to one column on the narrowest phones, long
   unbreakable strings (email addresses, licence numbers) are allowed
   to wrap, and the lede links added for SEO inherit their text colour.
   ============================================================ */
@media (max-width:380px){ .strip__inner{ grid-template-columns:1fr; } }
.footer p,.footer a,.footer span{ overflow-wrap:anywhere; }
.lede a{ color:inherit; text-decoration:underline; text-underline-offset:3px; text-decoration-thickness:1px; text-decoration-color:var(--amber); }
.lede a:hover{ color:var(--amber-deep); }
.section--dark .lede a:hover{ color:var(--amber-soft); }
.mobnav__foot p{ overflow-wrap:anywhere; }

/* ============================================================
   37. Range explorer (types, formats and kinds)
   One card per label, bottle size and kind of the house range,
   rendered by home.js from live catalogue counts. Reuses the dark
   .dist card so it sits with the house section above it.
   ============================================================ */
.jwrange{ display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:.9rem; margin-top:1.25rem; }
.jwrange__title{ margin-top:clamp(2.25rem,4vw,3.25rem); }
.jwrange__title:first-of-type{ margin-top:clamp(1.5rem,3vw,2.5rem); }
.jwrange__card{ display:block; color:inherit; text-decoration:none; }
.jwrange__card .dist__name{ font-size:1.2rem; }
.jwrange__meta{ margin-top:.85rem; font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; color:var(--amber-soft); }
@media (max-width:520px){ .jwrange{ grid-template-columns:1fr 1fr; gap:.6rem; } .jwrange__card .dist__desc{ display:none; } }
@media (max-width:360px){ .jwrange{ grid-template-columns:1fr; } }
