/* ═══════════════════════════════════════════════════════════════════════════
   WhiskyMart — Luxury Design System
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Variables ──────────────────────────────────────────────────────────── */
/* Surfaces are layered darkest -> lightest:
   --ink (page)  <  --surface (panels)  <  --surface-2 (raised)  <  --surface-3 (hover)
   Override just these six in a theme and the whole UI follows. */
:root {
  --ink:       #0d0d0d;   /* page background */
  --ink-deep:  #0b0b0b;   /* strips, summaries, boxes */
  --ink-deeper:#080808;   /* footer */
  --surface:   #0c0c0c;   /* cards, spec rows, tiles */
  --surface-2: #101010;   /* selects, raised panels */
  --surface-3: #151515;   /* hover state */
  --surface-4: #1e1e1e;   /* highest elevation */
  --char:      var(--surface-4);   /* legacy aliases */
  --char2:     var(--surface-3);

  --scrim:     0,0,0;     /* overlay/shadow base, as an rgb triplet */
  --shadow:    0,0,0;

  /* Accent and text are rgb triplets; every rgba() below derives from them,
     so a theme restates two lines instead of a dozen. */
  --gold-rgb:  212,175,55;
  --cream-rgb: 245,243,238;
  --hair-rgb:  255,255,255;

  --gold:    rgb(var(--gold-rgb));
  --gold-s:  #e7cd76;
  --gold-d:  #a9821f;
  --gold-dim:#3a3222;
  --gold-mid:#6b5a2a;
  --amber:   #c67c2a;
  --cream:   rgb(var(--cream-rgb));
  --cream60: rgba(var(--cream-rgb),.6);
  --cream40: rgba(var(--cream-rgb),.4);
  --cream25: rgba(var(--cream-rgb),.25);
  --w8:      rgba(var(--hair-rgb),.08);
  --w12:     rgba(var(--hair-rgb),.12);
  --w15:     rgba(var(--hair-rgb),.15);
  --gold16:  rgba(var(--gold-rgb),.16);
  --gold25:  rgba(var(--gold-rgb),.25);
  --gold40:  rgba(var(--gold-rgb),.40);
  --gold60:  rgba(var(--gold-rgb),.60);
  --font-d:  'Cormorant Garamond', 'Times New Roman', serif;
  --font-b:  'Inter', ui-sans-serif, system-ui, sans-serif;
  --ls-lux:  0.32em;
  --ls-wide: 0.20em;
  --ls-med:  0.16em;
  --r0:      0;
  --trans:   all .3s ease;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(var(--gold-rgb),.32); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* ─── Scrollbar ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width:10px; height:10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-dim),var(--gold-mid)); border-radius:999px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(var(--gold-mid),var(--gold)); }

/* ─── Typography ─────────────────────────────────────────────────────────── */
.display { font-family: var(--font-d); font-weight: 400; }
h1.display { font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1.05; }
h2.display { font-size: clamp(1.8rem, 3.5vw, 2.75rem); line-height: 1.1; }
h3.display { font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.15; }
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--ls-lux);
  color: rgba(var(--gold-rgb),.85);
}
.eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rule {
  display: block;
  flex: 0 0 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold { color: var(--gold); }
.gold-text {
  background: linear-gradient(100deg, #f2e2a8 0%, var(--gold) 38%, var(--gold-d) 62%, #f0dfa2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── Announce Bar ───────────────────────────────────────────────────────── */
.announce-bar {
  background: var(--char2);
  border-bottom: 1px solid var(--gold16);
  height: 34px;
  overflow: hidden;
}
.announce-bar__track { overflow: hidden; white-space: nowrap; height: 100%; }
.announce-bar__inner {
  display: inline-flex;
  align-items: center;
  height: 100%;
  gap: 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--ls-lux);
  color: rgba(var(--gold-rgb),.75);
  animation: marquee 40s linear infinite;
}
.announce-bar__inner .sep { color: var(--gold25); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Site Header ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(11,11,11,.9), transparent);
  transition: background .5s, border-color .5s;
}
.site-header.scrolled {
  background: rgba(11,11,11,.96);
  backdrop-filter: blur(16px);
  border-color: var(--w12);
}
.site-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--gold40);
  color: var(--gold);
  font-family: var(--font-d);
  font-size: 18px;
  transition: var(--trans);
}
.logo:hover .logo__icon { background: var(--gold); color: var(--ink); }
.logo__text {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: .14em;
  color: var(--cream);
}

/* Main Nav */
.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
@media(min-width:1024px) { .main-nav { display: flex; } }
.main-nav > a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--cream60);
  position: relative;
  padding: 8px 0;
  transition: color .3s;
}
.main-nav > a:hover { color: var(--gold); }
.main-nav > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.main-nav > a:hover::after { width: 100%; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop__trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--cream60);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .3s;
}
.nav-drop__trigger:hover { color: var(--gold); }
.caret { font-size: 9px; color: var(--gold40); }
.nav-drop__panel {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 240px;
  background: rgba(13,13,13,.98);
  border: 1px solid var(--gold25);
  padding: 16px;
  backdrop-filter: blur(16px);
  transition: opacity .3s, transform .3s, visibility .3s;
  z-index: 90;
}
.nav-drop:hover .nav-drop__panel {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.nav-drop__panel ul { display: flex; flex-direction: column; gap: 10px; }
.nav-drop__panel a {
  font-size: 13px;
  color: var(--cream60);
  transition: color .3s;
}
.nav-drop__panel a:hover { color: var(--gold); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--w12);
  background: none;
  cursor: pointer;
  color: var(--cream60);
  transition: var(--trans);
}
.icon-btn:hover { border-color: var(--gold40); color: var(--gold); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn__badge {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
#currency-select {
  background: transparent;
  border: 1px solid var(--w12);
  color: var(--cream60);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 8px 10px;
  cursor: pointer;
  outline: none;
  display: none;
}
@media(min-width:768px) { #currency-select { display: block; } }
#currency-select:hover { border-color: var(--gold40); color: var(--gold); }
#currency-select option { background: var(--surface-2); }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--gold40);
  background: none;
  cursor: pointer;
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 8px 12px;
  height: 40px;
  transition: var(--trans);
}
.cart-btn:hover { background: var(--gold); color: var(--ink); }
.cart-btn svg { width: 18px; height: 18px; }
.cart-btn__count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px; height: 18px;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  padding: 0 3px;
  transition: background .3s, color .3s;
}
.cart-btn:hover .cart-btn__count { background: var(--ink); color: var(--gold); }

/* Mobile burger */
.nav-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  border: 1px solid var(--w12);
  background: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span { display: block; height: 1px; background: var(--cream60); transition: var(--trans); }
@media(min-width:1024px) { .nav-burger { display: none; } }

/* Mobile nav open */
@media(max-width:1023px) {
  .main-nav {
    position: fixed;
    top: 0; left: 0;
    width: 85vw; max-width: 320px;
    height: 100%;
    background: var(--char2);
    border-right: 1px solid var(--gold25);
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 24px 24px;
    gap: 0;
    transform: translateX(-100%);
    transition: transform .4s;
    z-index: 95;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a { border-bottom: 1px solid var(--w8); padding: 14px 0; width: 100%; }
  .nav-drop { width: 100%; }
  .nav-drop__trigger { width: 100%; border-bottom: 1px solid var(--w8); padding: 14px 0; }
  .nav-drop__panel {
    position: static;
    transform: none;
    visibility: visible;
    opacity: 1;
    width: 100%;
    border: none;
    padding: 8px 0 8px 16px;
    background: transparent;
  }
}

/* ─── Search Overlay ─────────────────────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0; z-index: 94;
}
.search-overlay[hidden] { display: none; }
.search-overlay__backdrop { position: absolute; inset: 0; background: rgba(var(--scrim),.85); backdrop-filter: blur(8px); }
.search-overlay__box {
  position: relative;
  max-width: 680px;
  margin: 120px auto 0;
  padding: 0 16px;
}
.search-overlay__form {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gold40);
  padding-bottom: 12px;
}
.search-overlay__icon { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.search-overlay__form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  color: var(--cream);
}
.search-overlay__form input::placeholder { color: var(--cream25); }
.search-overlay__form button {
  background: none; border: none; cursor: pointer;
  font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40);
}
.search-overlay__results {
  margin-top: 16px;
  max-height: 50vh;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  border-bottom: 1px solid var(--w8);
  transition: background .2s;
  cursor: pointer;
}
.search-result-item:hover { background: var(--w8); }
.search-result-item img { width: 48px; height: 60px; object-fit: cover; flex-shrink: 0; }
.search-result-item__name { font-size: 14px; color: var(--cream); }
.search-result-item__meta { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); margin-top: 2px; }

/* ─── Cart Drawer ────────────────────────────────────────────────────────── */
.cart-drawer { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.cart-drawer.open { pointer-events: auto; }
.cart-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(var(--scrim),.75);
  backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .4s;
}
.cart-drawer.open .cart-drawer__backdrop { opacity: 1; }
.cart-drawer__panel {
  position: absolute; top: 0; right: 0;
  width: 100%; max-width: 440px;
  height: 100%;
  display: flex; flex-direction: column;
  background: var(--surface-2);
  border-left: 1px solid var(--gold25);
  transform: translateX(100%);
  transition: transform .5s;
}
.cart-drawer.open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--w12);
}
.cart-drawer__shipping-bar { padding: 10px 24px; border-bottom: 1px solid var(--w12); font-size: 11px; color: var(--cream60); }
.cart-drawer__shipping-bar .ship-bar { height: 3px; background: var(--w12); margin-top: 6px; }
.cart-drawer__shipping-bar .ship-bar-fill { height: 100%; background: linear-gradient(90deg, var(--amber), var(--gold)); transition: width .6s; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-drawer__empty { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 60px 0; text-align: center; }
.empty-icon { font-size: 48px; }
.cart-item { display: flex; gap: 16px; border-bottom: 1px solid var(--w8); padding-bottom: 20px; margin-bottom: 20px; }
.cart-item__img { width: 72px; height: 90px; object-fit: cover; flex-shrink: 0; }
.cart-item__body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-item__name { font-size: 14px; color: var(--cream); }
.cart-item__meta { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); }
.cart-item__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.qty-ctrl { display: flex; align-items: center; border: 1px solid var(--w15); }
.qty-ctrl button {
  width: 30px; height: 30px;
  background: none; border: none; cursor: pointer;
  color: var(--cream60); font-size: 16px;
  transition: color .2s;
}
.qty-ctrl button:hover { color: var(--gold); }
.qty-ctrl span { min-width: 28px; text-align: center; font-size: 13px; }
.cart-item__price { font-size: 15px; color: var(--gold); white-space: nowrap; }
.cart-item__remove {
  background: none; border: none; cursor: pointer;
  font-size: 11px; color: var(--cream40); transition: color .2s; align-self: flex-start;
}
.cart-item__remove:hover { color: var(--gold); }
.cart-drawer__foot {
  border-top: 1px solid var(--w12);
  padding: 20px 24px;
}
.cart-totals { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.cart-totals dl { display: flex; justify-content: space-between; color: var(--cream60); }
.cart-totals .total { font-size: 16px; color: var(--cream); border-top: 1px solid var(--w12); padding-top: 12px; margin-top: 4px; }
.cart-totals .total span { color: var(--gold); }
.cart-footer-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

/* ─── Age Gate ───────────────────────────────────────────────────────────── */
.age-gate { position: fixed; inset: 0; z-index: 99; align-items: center; justify-content: center; }
.age-gate.visible { display: flex !important; }
.age-gate__backdrop { position: absolute; inset: 0; background: rgba(var(--scrim),.96); }
.age-gate__box {
  position: relative;
  width: 100%; max-width: 480px;
  margin: 16px;
  border: 1px solid var(--gold40);
  background: var(--ink);
  padding: 40px;
  text-align: center;
  box-shadow: 0 40px 120px -40px rgba(var(--gold-rgb),.3);
}
.age-gate__badge {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%; border: 1px solid var(--gold40);
  color: var(--gold); font-size: 18px;
  margin: 0 auto 20px;
}
.age-gate__title { font-family: var(--font-d); font-size: 2rem; margin: 12px 0; }
.age-gate__copy { font-size: 14px; color: var(--cream60); max-width: 360px; margin: 0 auto 28px; }
.age-gate__buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.age-gate__legal { font-size: 10px; color: var(--cream25); margin-top: 20px; }

/* ─── Toast ──────────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 95;
  border: 1px solid var(--gold40);
  background: rgba(30,30,30,.97);
  color: var(--gold);
  padding: 12px 28px;
  font-size: 10px; text-transform: uppercase; letter-spacing: .2em;
  pointer-events: none;
  opacity: 0; transition: opacity .3s;
  white-space: nowrap;
}
.toast.show { opacity: 1; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; border: none;
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--ls-lux);
  padding: 14px 28px;
  transition: var(--trans);
  font-family: var(--font-b);
  text-decoration: none;
}
.btn--gold {
  background: linear-gradient(100deg, var(--gold-s), var(--gold), var(--gold-d));
  color: var(--ink);
}
.btn--gold:hover { box-shadow: 0 0 36px -6px rgba(var(--gold-rgb),.65); }
.btn--outline {
  border: 1px solid var(--gold40); background: none;
  color: var(--gold);
}
.btn--outline:hover { background: rgba(var(--gold-rgb),.1); border-color: var(--gold); }
.btn--lg { padding: 16px 36px; }
.btn--sm { padding: 10px 18px; font-size: 10px; }
.btn--outline-sm { border: 1px solid var(--gold40); background: none; color: var(--gold); font-size: 10px; padding: 10px 20px; text-transform: uppercase; letter-spacing: var(--ls-lux); display: inline-block; }
.btn--add {
  border: 1px solid var(--gold40); background: none;
  color: var(--gold); font-size: 10px;
  padding: 10px 16px;
  text-transform: uppercase; letter-spacing: .2em;
  cursor: pointer; white-space: nowrap;
  transition: var(--trans);
}
.btn--add:hover { background: var(--gold); color: var(--ink); }
.btn--full { width: 100%; }
.btn--checkout {
  background: linear-gradient(100deg, var(--gold-s), var(--gold), var(--gold-d));
  color: var(--ink);
  display: block; text-align: center; width: 100%;
  padding: 16px;
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--ls-lux);
  border: none; cursor: pointer;
}
.btn--checkout:hover { box-shadow: 0 0 30px -6px rgba(var(--gold-rgb),.7); }
.btn--secondary {
  border: 1px solid var(--w15); background: none; color: var(--cream60);
  display: block; text-align: center; width: 100%;
  padding: 12px;
  font-size: 10px; text-transform: uppercase; letter-spacing: var(--ls-lux);
  cursor: pointer; transition: var(--trans);
}
.btn--secondary:hover { border-color: var(--gold40); color: var(--gold); }

/* ─── Layout Utilities ───────────────────────────────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
@media(min-width:1024px) { .container { padding: 0 32px; } }
.section { padding: 80px 0; }
.section--lg { padding: 112px 0; }
.section--dark { background: var(--ink-deep); border-top: 1px solid var(--w8); border-bottom: 1px solid var(--w8); }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media(min-width:640px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media(min-width:768px) { .grid-2 { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .grid-4 { grid-template-columns: repeat(4,1fr); gap: 24px; }
}

/* ─── Section Heading ────────────────────────────────────────────────────── */
.section-heading { margin-bottom: 48px; }
.section-heading--center { text-align: center; }
.section-heading--center .eyebrow-wrap { justify-content: center; }
.section-heading__desc { max-width: 640px; color: var(--cream60); font-size: 15px; margin-top: 14px; }
.section-heading--center .section-heading__desc { margin-left: auto; margin-right: auto; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: var(--ink);
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,1) 0%, rgba(13,13,13,.85) 50%, rgba(13,13,13,.3) 100%);
}
.hero__overlay2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(66 60 60 / 45%) 0%, transparent 20%, rgb(13 13 13 / 0%) 100%);
}
.hero__content {
  position: relative;
  max-width: 1200px;
  padding: 160px 24px 100px;
}
@media(min-width:1024px) { .hero__content { padding: 200px 32px 120px; } }
.hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero__eyebrow span { font-size: 10px; text-transform: uppercase; letter-spacing: var(--ls-lux); color: var(--gold); }
.hero__rule { display: block; width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero h1 { color: var(--cream); margin-bottom: 24px; }
.hero__sub { font-size: 17px; line-height: 1.7; color: var(--cream60); max-width: 560px; margin-bottom: 36px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 480px; border-top: 1px solid var(--w12); padding-top: 28px; }
.hero__stat dt { font-family: var(--font-d); font-size: 26px; color: var(--gold); }
.hero__stat dd { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); margin-top: 4px; }

/* ─── Trust Strip ────────────────────────────────────────────────────────── */
.trust-strip { border-top: 1px solid var(--w8); border-bottom: 1px solid var(--w8); background: var(--ink-deep); }
.trust-strip__inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(2,1fr); gap: 0; }
@media(min-width:768px) { .trust-strip__inner { grid-template-columns: repeat(4,1fr); } }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 20px 0; border-right: 1px solid var(--w8); }
.trust-item:last-child { border-right: none; }
.trust-item__icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--gold25); font-size: 16px; flex-shrink: 0; }
.trust-item__icon svg { width: 20px; height: 20px; }

/* Inline SVG icons replacing the old emoji — inherit colour, never overflow */
svg.ico { width: 20px; height: 20px; flex-shrink: 0; vertical-align: -4px; }
.why-box svg.ico, .gift-tile svg.ico, .value-card svg.ico { width: 26px; height: 26px; vertical-align: 0; }
.empty-state svg.ico, .page-404 svg.ico { width: 44px; height: 44px; vertical-align: 0; }
.trust-item p { font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: rgba(var(--cream-rgb),.85); }
.trust-item span { font-size: 11px; color: var(--cream40); }

/* ─── Product Cards ──────────────────────────────────────────────────────── */
.product-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--w8);
  background: linear-gradient(to bottom, rgba(var(--hair-rgb),.04), transparent);
  transition: transform .5s, border-color .5s, box-shadow .5s;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold40);
  box-shadow: 0 30px 70px -40px rgba(var(--gold-rgb),.55);
}
.product-card__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface-2);
}
.product-card__image a { display: block; height: 100%; }
.product-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s;
}
.product-card:hover .product-card__image img { transform: scale(1.1); }
.product-card__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.85) 0%, rgba(13,13,13,.12) 50%, transparent 100%);
}
.product-card__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 5px; z-index: 2; }
.product-card__actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(8px);
  transition: opacity .3s, transform .3s;
  z-index: 2;
}
.product-card:hover .product-card__actions { opacity: 1; transform: translateX(0); }
.product-card__soldout {
  position: absolute; inset-x: 0; bottom: 0;
  background: rgba(var(--scrim),.8);
  text-align: center; padding: 8px;
  font-size: 10px; text-transform: uppercase; letter-spacing: .25em;
  color: var(--cream60); z-index: 2;
}
.product-card__body { display: flex; flex-direction: column; gap: 10px; padding: 18px; flex: 1; }
.product-card__origin { font-size: 10px; text-transform: uppercase; letter-spacing: .22em; color: var(--gold60); }
.product-card__name { font-size: 17px; line-height: 1.25; color: var(--cream); transition: color .3s; }
.product-card:hover .product-card__name { color: var(--gold); }
.product-card__stars { display: flex; align-items: center; gap: 6px; }
.product-card__rating { font-size: 11px; color: var(--cream40); }
.product-card__spec { font-size: 11px; color: var(--cream40); }
.product-card__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; padding-top: 8px; }
.price-main { font-size: 20px; color: var(--gold); }
.price-strike { font-size: 13px; color: var(--cream40); text-decoration: line-through; }

/* Stars */
.stars { display: inline-flex; gap: 2px; }
.star { font-size: 13px; }
.star.full  { color: var(--gold); }
.star.half  { color: var(--gold); opacity: .7; }
.star.empty { color: rgba(var(--hair-rgb),.18); }

/* Badges */
.badge {
  display: inline-block; padding: 3px 8px;
  font-size: 9px; text-transform: uppercase; letter-spacing: .2em;
  border: 1px solid transparent;
}
.badge--limited { border-color: var(--gold40); background: rgba(var(--scrim),.75); color: var(--gold); }
.badge--amber   { border-color: rgba(198,124,42,.4); background: rgba(var(--scrim),.75); color: #f0b36b; }
.badge--dark    { border-color: rgba(var(--hair-rgb),.2); background: rgba(var(--scrim),.75); color: var(--cream60); }
.badge--sale    { background: var(--gold); color: var(--ink); font-weight: 700; }

/* ─── Category Cards ─────────────────────────────────────────────────────── */
.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--w8);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
  transition: border-color .4s;
  text-decoration: none;
}
.cat-card:hover { border-color: var(--gold40); }
.cat-card__bg {
  position: absolute; inset: 0;
}
.cat-card__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; transition: transform 1.4s, opacity .4s; }
.cat-card:hover .cat-card__bg img { transform: scale(1.1); opacity: .65; }
.cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 1) 0%, rgb(13 13 13 / 10%) 0%, transparent 100%);
}
.cat-card__body { position: relative; z-index: 1; }
.cat-card__name { font-family: var(--font-d); font-size: 20px; color: var(--cream); transition: color .3s; }
.cat-card:hover .cat-card__name { color: var(--gold); }
.cat-card__tag  { font-size: 11px; color: var(--cream60); margin-top: 4px; }
.cat-card__cta  { font-size: 9px; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); margin-top: 10px; opacity: 0; transition: opacity .3s; }
.cat-card:hover .cat-card__cta { opacity: 1; }

/* ─── Distillery Cards ───────────────────────────────────────────────────── */
.distillery-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--surface); padding: 36px 16px;
  border-right: 1px solid var(--w8);
  text-decoration: none; transition: background .3s;
}
.distillery-card:hover { background: var(--surface-3); }
.distillery-card__mono {
  width: 64px; height: 64px;
  border-radius: 50%; border: 1px solid var(--gold25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 20px; color: rgba(var(--gold-rgb),.8);
  transition: var(--trans);
}
.distillery-card:hover .distillery-card__mono { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.distillery-card__name { font-size: 14px; text-align: center; color: var(--cream80); transition: color .3s; }
.distillery-card:hover .distillery-card__name { color: var(--gold); }
.distillery-card__sub { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); text-align: center; }

/* Article Cards */
.article-card {
  border: 1px solid var(--w8); display: flex; flex-direction: column;
  text-decoration: none; transition: transform .4s, border-color .4s;
}
.article-card:hover { transform: translateY(-6px); border-color: var(--gold40); }
.article-card__img { position: relative; height: 180px; overflow: hidden; }
.article-card__img img { width: 100%; height: 100%; object-fit: cover; opacity: .75; transition: transform 1.2s; }
.article-card:hover .article-card__img img { transform: scale(1.1); }
.article-card__topic { position: absolute; top: 10px; left: 10px; border: 1px solid var(--gold25); background: rgba(var(--scrim),.75); padding: 4px 10px; font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: var(--gold); }
.article-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-card__title { font-family: var(--font-d); font-size: 19px; line-height: 1.25; color: var(--cream); transition: color .3s; }
.article-card:hover .article-card__title { color: var(--gold); }
.article-card__exc { font-size: 13px; color: var(--cream60); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-card__meta { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); margin-top: auto; }

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonial-carousel { position: relative; max-width: 800px; margin: 0 auto; }
.testimonial-box {
  background: linear-gradient(160deg, rgba(var(--hair-rgb),.05), rgba(var(--hair-rgb),.015));
  border: 1px solid var(--gold16);
  backdrop-filter: blur(14px);
  padding: 48px 56px;
  text-align: center;
}
.testimonial-box .quote-mark { font-family: var(--font-d); font-size: 64px; color: rgba(var(--gold-rgb),.25); line-height: 1; }
.testimonial-box .quote { font-family: var(--font-d); font-size: clamp(1.1rem, 2.5vw, 1.4rem); line-height: 1.7; color: rgba(var(--cream-rgb),.88); margin-top: 8px; }
.testimonial-box .reviewer { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.testimonial-box .reviewer-name { font-size: 14px; color: var(--cream); }
.testimonial-box .reviewer-loc { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--cream40); }
.testimonial-box .reviewer-purchase { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: var(--gold80); border: 1px solid var(--gold25); padding: 4px 12px; margin-top: 8px; }
.testimonial-dots { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 28px; }
.testimonial-dot {
  height: 3px; background: rgba(var(--hair-rgb),.2);
  border: none; cursor: pointer; transition: var(--trans);
}
.testimonial-dot.active { background: var(--gold); }

/* ─── Newsletter ─────────────────────────────────────────────────────────── */
.newsletter-form { display: flex; gap: 0; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  border: 1px solid var(--w15);
  border-right: none;
  background: rgba(var(--scrim),.4);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color .3s;
}
.newsletter-form input::placeholder { color: var(--cream25); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  background: linear-gradient(100deg, var(--gold-s), var(--gold), var(--gold-d));
  border: none; padding: 14px 24px;
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--ls-lux);
  color: var(--ink); cursor: pointer; white-space: nowrap;
  transition: box-shadow .3s;
}
.newsletter-form button:hover { box-shadow: 0 0 28px -6px rgba(var(--gold-rgb),.7); }
.newsletter-form--compact input { padding: 10px 14px; font-size: 12px; }
.newsletter-form--compact button { padding: 10px 18px; font-size: 10px; }
.newsletter-msg { font-size: 11px; margin-top: 8px; }
.newsletter-msg.ok  { color: var(--gold); }
.newsletter-msg.err { color: #f87171; }

/* ─── Shop Filters ───────────────────────────────────────────────────────── */
.shop-layout { display: grid; gap: 36px; }
@media(min-width:1024px) { .shop-layout { grid-template-columns: 260px 1fr; } }
.filter-panel { }
.filter-panel__head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--w8); padding-bottom: 14px; margin-bottom: 4px; }
.filter-panel__head p { font-size: 11px; text-transform: uppercase; letter-spacing: var(--ls-lux); color: rgba(var(--cream-rgb),.8); }
.filter-panel__head a { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--gold); cursor: pointer; text-decoration: none; }
.filter-section { border-bottom: 1px solid var(--w8); padding: 16px 0; }
.filter-section__title {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; text-transform: uppercase; letter-spacing: var(--ls-lux); color: rgba(var(--gold-rgb),.85);
  cursor: pointer; padding: 0;
}
.filter-section__body { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.filter-check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--cream60); cursor: pointer; transition: color .2s; }
.filter-check:hover { color: var(--cream); }
.filter-check input { display: none; }
.filter-checkmark {
  width: 16px; height: 16px;
  border: 1px solid var(--w15);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; flex-shrink: 0; transition: var(--trans);
}
.filter-check input:checked ~ .filter-checkmark { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.price-slider { display: flex; flex-direction: column; gap: 10px; }
.price-slider input[type=range] { width: 100%; accent-color: var(--gold); }
.price-slider__labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--cream40); }
.price-slider__labels span { color: var(--gold); }
.filter-mobile-btn { display: block; width: 100%; border: 1px solid var(--gold40); background: none; color: var(--gold); padding: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: var(--ls-lux); cursor: pointer; margin-bottom: 20px; }
@media(min-width:1024px) { .filter-mobile-btn { display: none; } }
.shop-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--w8); padding-bottom: 16px; margin-bottom: 28px; }
.shop-toolbar__count { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream60); }
.shop-toolbar select {
  background: transparent; border: 1px solid var(--w15);
  color: var(--cream60); font-size: 11px; text-transform: uppercase; letter-spacing: .16em;
  padding: 10px 16px; cursor: pointer; outline: none;
  transition: var(--trans);
}
.shop-toolbar select:hover { border-color: var(--gold40); }
.shop-toolbar select option { background: var(--surface-2); }

/* ─── Product Detail ─────────────────────────────────────────────────────── */
.product-detail { display: grid; gap: 48px; }
@media(min-width:1024px) { .product-detail { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.product-gallery { display: flex; flex-direction: column-reverse; gap: 16px; }
@media(min-width:640px) { .product-gallery { flex-direction: row; } }
.product-gallery__thumbs { display: flex; gap: 10px; overflow-x: auto; }
@media(min-width:640px) { .product-gallery__thumbs { flex-direction: column; overflow-x: visible; overflow-y: auto; } }
.product-gallery__thumb {
  width: 72px; height: 88px; object-fit: cover; flex-shrink: 0;
  border: 1px solid transparent; cursor: pointer; opacity: .6;
  transition: var(--trans);
}
.product-gallery__thumb.active, .product-gallery__thumb:hover { border-color: var(--gold); opacity: 1; }
.product-gallery__main { position: relative; flex: 1; overflow: hidden; }
.product-gallery__main-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; cursor: zoom-in; transition: transform .3s; }
.product-gallery__zoom-hint { position: absolute; bottom: 12px; right: 12px; border: 1px solid var(--w15); background: rgba(var(--scrim),.7); padding: 5px 12px; font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream60); pointer-events: none; }
.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-info__origin { font-size: 10px; text-transform: uppercase; letter-spacing: var(--ls-lux); color: rgba(var(--gold-rgb),.85); }
.product-info__title { font-family: var(--font-d); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.1; color: var(--cream); }
.product-info__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.product-info__stock { font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: var(--cream40); }
.product-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; }
.product-price__main { font-family: var(--font-d); font-size: 2.2rem; color: var(--gold); }
.product-price__compare { font-size: 15px; color: var(--cream40); text-decoration: line-through; }
.product-price__save { font-size: 10px; text-transform: uppercase; letter-spacing: .16em; background: rgba(var(--gold-rgb),.15); color: var(--gold); padding: 4px 10px; }
.product-specs { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--w8); }
.product-spec { background: var(--surface); padding: 12px 14px; text-align: center; border-right: 1px solid var(--w8); }
.product-spec:last-child { border-right: none; }
.product-spec dt { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); }
.product-spec dd { font-size: 14px; color: var(--cream80); margin-top: 4px; }
.buy-box { display: flex; align-items: center; gap: 12px; border: 1px solid var(--w12); background: rgba(var(--hair-rgb),.02); padding: 16px; }
.product-assurances { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--w8); padding-top: 20px; }
.product-assurance { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--cream60); }
.product-assurance span.tick { color: var(--gold); }
.product-tabs { border: 1px solid var(--w8); }
.product-tabs__nav { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--w8); }
.product-tabs__tab {
  padding: 14px 22px; font-size: 10px; text-transform: uppercase; letter-spacing: .18em;
  background: none; border: none; cursor: pointer; color: var(--cream60); position: relative;
  transition: color .3s;
}
.product-tabs__tab.active { color: var(--gold); }
.product-tabs__tab.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); }
.product-tabs__pane { padding: 36px; display: none; }
.product-tabs__pane.active { display: block; }
.tasting-notes { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
.tasting-note { border: 1px solid var(--w8); background: rgba(var(--hair-rgb),.02); padding: 24px; }
.tasting-note__icon { font-size: 28px; }
.tasting-note__title { font-family: var(--font-d); font-size: 1.4rem; color: var(--cream); margin: 12px 0 8px; }
.tasting-note__text { font-size: 13px; color: var(--cream60); line-height: 1.7; }
.flavour-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.flavour-tag { border: 1px solid var(--gold25); padding: 6px 14px; font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: rgba(var(--gold-rgb),.85); }
.spec-table { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; border: 1px solid var(--w8); }
.spec-row { background: var(--surface); padding: 14px 20px; border-bottom: 1px solid var(--w8); }
.spec-row:nth-child(odd) { border-right: 1px solid var(--w8); }
.spec-row dt { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); }
.spec-row dd { font-size: 14px; color: rgba(var(--cream-rgb),.85); margin-top: 5px; text-transform: capitalize; }
.review-item { border-bottom: 1px solid var(--w8); padding-bottom: 24px; margin-bottom: 24px; }
.review-item__head { display: flex; justify-content: space-between; align-items: flex-start; }
.review-item__verified { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: rgba(var(--gold-rgb),.8); }
.review-item__title { font-family: var(--font-d); font-size: 1.25rem; color: var(--cream); margin: 10px 0 8px; }
.review-item__body { font-size: 14px; color: var(--cream60); line-height: 1.7; }
.review-item__author { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); margin-top: 10px; }
.review-form { border: 1px solid var(--w8); background: rgba(var(--hair-rgb),.02); padding: 28px; }
.review-form h3 { font-family: var(--font-d); font-size: 1.5rem; color: var(--cream); margin-bottom: 16px; }
.star-picker { display: flex; gap: 6px; margin-bottom: 16px; }
.star-picker span { font-size: 24px; color: rgba(var(--hair-rgb),.18); cursor: pointer; transition: color .2s; }
.star-picker span.on { color: var(--gold); }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; border: 1px solid var(--w15);
  background: rgba(var(--scrim),.4); padding: 12px 16px;
  font-size: 14px; color: var(--cream); outline: none;
  transition: border-color .3s;
  font-family: inherit;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--cream25); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media(min-width:640px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 0 16px; } }

/* ─── Why Boxes ──────────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; border: 1px solid var(--w8); }
@media(min-width:1024px) { .why-grid { grid-template-columns: repeat(3,1fr); } }
.why-box {
  background: var(--surface); padding: 32px;
  position: relative; overflow: hidden;
  border-right: 1px solid var(--w8); border-bottom: 1px solid var(--w8);
  transition: background .4s;
}
.why-box:hover { background: var(--surface-3); }
.why-box__icon { width: 56px; height: 56px; border: 1px solid var(--gold25); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; transition: var(--trans); }
.why-box:hover .why-box__icon { border-color: var(--gold); background: rgba(var(--gold-rgb),.1); }
.why-box h3 { font-family: var(--font-d); font-size: 1.4rem; color: var(--cream); margin-bottom: 10px; }
.why-box p { font-size: 13px; color: var(--cream60); line-height: 1.7; }
.why-box::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); transition: width .6s; }
.why-box:hover::after { width: 100%; }

/* ─── Club Plans ─────────────────────────────────────────────────────────── */
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width:1024px) { .plans-grid { grid-template-columns: repeat(3,1fr); } }
.plan-card {
  position: relative; border: 1px solid var(--w12);
  background: var(--surface); padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .4s;
}
.plan-card:hover { transform: translateY(-6px); }
.plan-card--featured { border-color: var(--gold40); background: linear-gradient(to bottom, rgba(var(--gold-rgb),.1), transparent); }
.plan-card__badge { position: absolute; top: -11px; left: 28px; background: var(--gold); color: var(--ink); padding: 3px 12px; font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.plan-card h3 { font-family: var(--font-d); font-size: 2rem; color: var(--cream); }
.plan-card p { font-size: 14px; color: var(--cream60); }
.plan-card__price { font-family: var(--font-d); font-size: 2.8rem; color: var(--gold); }
.plan-card__price sub { font-size: 14px; color: var(--cream40); }
.plan-card ul { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--w12); padding-top: 18px; }
.plan-card li { display: flex; gap: 10px; font-size: 14px; color: var(--cream60); align-items: flex-start; }
.plan-card li span { color: var(--gold); flex-shrink: 0; }
.plan-card .plan-btn { margin-top: auto; }

/* ─── Gift Tiles ─────────────────────────────────────────────────────────── */
.gift-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; border: 1px solid var(--w8); }
@media(min-width:1024px) { .gift-grid { grid-template-columns: repeat(3,1fr); } }
.gift-tile {
  background: var(--surface); padding: 28px;
  border-right: 1px solid var(--w8); border-bottom: 1px solid var(--w8);
  text-decoration: none; display: flex; flex-direction: column; gap: 8px;
  transition: background .3s;
}
.gift-tile:hover { background: var(--surface-3); }
.gift-tile__icon { font-size: 28px; margin-bottom: 4px; }
.gift-tile__title { font-family: var(--font-d); font-size: 1.2rem; color: var(--cream); transition: color .3s; }
.gift-tile:hover .gift-tile__title { color: var(--gold); }
.gift-tile__copy { font-size: 12px; color: var(--cream50); line-height: 1.6; }

/* ─── Education ──────────────────────────────────────────────────────────── */
.article-hero {
  position: relative; min-height: 46vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.article-hero__bg { position: absolute; inset: 0; }
.article-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.article-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--ink) 0%, rgba(13,13,13,.75) 50%, rgba(13,13,13,.4) 100%); }
.article-hero__content { position: relative; max-width: 720px; padding: 0 24px 48px; }

/* ─── Cart / Checkout Page ───────────────────────────────────────────────── */
.cart-page { display: grid; gap: 40px; }
@media(min-width:1024px) { .cart-page { grid-template-columns: 1.5fr 1fr; } }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table td { padding: 20px 0; border-bottom: 1px solid var(--w8); vertical-align: middle; }
.cart-table .prod-img { width: 72px; height: 90px; object-fit: cover; }
.cart-table .prod-name { font-size: 15px; color: var(--cream); }
.cart-table .prod-meta { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); margin-top: 4px; }
.cart-table .remove-btn { background: none; border: none; cursor: pointer; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); transition: color .2s; padding: 0; }
.cart-table .remove-btn:hover { color: var(--gold); }
.order-summary { border: 1px solid var(--w12); background: var(--ink-deep); padding: 28px; }
.order-summary h2 { font-family: var(--font-d); font-size: 1.5rem; color: var(--cream); margin-bottom: 20px; }
.order-summary-rows { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.order-summary-row { display: flex; justify-content: space-between; color: var(--cream60); }
.order-summary-row.total { font-size: 17px; color: var(--cream); border-top: 1px solid var(--w12); padding-top: 14px; margin-top: 6px; }
.order-summary-row.total span { color: var(--gold); }
.checkout-section { border: 1px solid var(--w12); background: var(--ink-deep); padding: 28px; margin-bottom: 20px; }
.checkout-section h2 { font-family: var(--font-d); font-size: 1.5rem; color: var(--cream); margin-bottom: 20px; }

/* ─── Quick View Modal ───────────────────────────────────────────────────── */
#quick-view { position: fixed; inset: 0; z-index: 92; display: flex; align-items: center; justify-content: center; padding: 16px; }
#quick-view[hidden] { display: none; }
#quick-view__backdrop { position: absolute; inset: 0; background: rgba(var(--scrim),.8); backdrop-filter: blur(6px); }
#quick-view__box {
  position: relative; z-index: 1;
  width: 100%; max-width: 840px;
  border: 1px solid var(--gold25);
  background: var(--surface-2);
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 120px -40px rgba(var(--scrim),1);
}
#quick-view__close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; z-index: 2;
  background: rgba(var(--scrim),.6); border: 1px solid var(--w15);
  color: var(--cream60); cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
#quick-view__close:hover { border-color: var(--gold); color: var(--gold); }
#quick-view__inner { display: grid; }
@media(min-width:640px) { #quick-view__inner { grid-template-columns: 1fr 1fr; } }
#quick-view__img { aspect-ratio: 1; overflow: hidden; }
#quick-view__img img { width: 100%; height: 100%; object-fit: cover; }
#quick-view__body { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
#quick-view__loading { padding: 80px; text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: .2em; color: var(--cream40); }

/* ─── Live Chat ──────────────────────────────────────────────────────────── */
.chat-bubble {
  position: fixed; bottom: 24px; right: 24px; z-index: 93;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--gold40);
  background: var(--surface-3); padding: 0 20px;
  height: 52px;
  font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--gold);
  cursor: pointer; transition: var(--trans);
}
.chat-bubble:hover { background: var(--gold); color: var(--ink); }
.chat-bubble .ping { position: relative; width: 8px; height: 8px; }
.chat-bubble .ping span { position: absolute; inset: 0; border-radius: 50%; background: #4ade80; }
.chat-bubble .ping span:first-child { animation: ping 1.4s cubic-bezier(0,0,.2,1) infinite; opacity: .6; }
@keyframes ping { 75%,100% { transform: scale(2); opacity: 0; } }
.chat-panel {
  position: fixed; bottom: 88px; right: 24px; z-index: 93;
  width: min(92vw, 360px);
  border: 1px solid var(--gold25);
  background: var(--surface);
  display: flex; flex-direction: column;
  height: 500px;
  box-shadow: 0 40px 100px -30px rgba(var(--scrim),1);
}
.chat-panel__head { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--w12); padding: 14px 18px; }
.chat-panel__avatar { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gold40); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--font-d); font-size: 18px; }
.chat-panel__status { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: #4ade80; }
.chat-panel__body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.chat-msg { max-width: 90%; }
.chat-msg--user { align-self: flex-end; }
.chat-msg__bubble { padding: 10px 14px; font-size: 13px; line-height: 1.6; }
.chat-msg--bot .chat-msg__bubble { border: 1px solid var(--w12); background: rgba(var(--hair-rgb),.03); color: var(--cream70); }
.chat-msg--user .chat-msg__bubble { background: rgba(var(--gold-rgb),.15); color: var(--cream); }
.chat-suggestion { border: 1px solid var(--w12); padding: 8px 12px; font-size: 12px; color: var(--cream60); text-decoration: none; display: flex; justify-content: space-between; gap: 10px; margin-top: 6px; transition: border-color .2s, color .2s; }
.chat-suggestion:hover { border-color: var(--gold40); color: var(--gold); }
.chat-panel__prompts { display: flex; flex-wrap: wrap; gap: 6px; border-top: 1px solid var(--w12); padding: 10px 14px; }
.chat-prompt { border: 1px solid var(--w12); background: none; padding: 5px 10px; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; color: var(--cream40); cursor: pointer; transition: var(--trans); }
.chat-prompt:hover { border-color: var(--gold); color: var(--gold); }
.chat-panel__input { display: flex; border-top: 1px solid var(--w12); }
.chat-panel__input input { flex: 1; background: none; border: none; padding: 12px 14px; font-size: 14px; color: var(--cream); outline: none; }
.chat-panel__input input::placeholder { color: var(--cream30); }
.chat-panel__input button { background: none; border: none; padding: 0 14px; font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); cursor: pointer; }

/* ─── About / Misc ───────────────────────────────────────────────────────── */
.distillery-hero { position: relative; min-height: 52vh; display: flex; align-items: flex-end; overflow: hidden; }
.distillery-hero__bg { position: absolute; inset: 0; }
.distillery-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.distillery-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--ink) 0%, rgba(13,13,13,.7) 50%, rgba(13,13,13,.4) 100%); }
.distillery-hero__content { position: relative; max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 24px 56px; }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; border: 1px solid var(--w8); }
@media(min-width:768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-box { background: var(--surface); padding: 28px; text-align: center; border-right: 1px solid var(--w8); }
.stat-box dt { font-family: var(--font-d); font-size: 2rem; color: var(--gold); }
.stat-box dd { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); margin-top: 6px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--cream40); }
.page-hero { position: relative; min-height: 46vh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,13,13,1), rgba(13,13,13,.8) 50%, rgba(13,13,13,.3) 100%); }
.page-hero__overlay2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,.9) 0%, transparent 60%); }
.page-hero__content { position: relative; max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 24px 56px; }
.faq-groups { display: flex; flex-direction: column; gap: 44px; }
.faq-group-title { font-size: 11px; text-transform: uppercase; letter-spacing: var(--ls-lux); color: rgba(var(--gold-rgb),.85); margin-bottom: 16px; }
.faq-items { border: 1px solid var(--w8); }
.faq-item details { padding: 0; }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; cursor: pointer; font-size: 15px; color: var(--cream); }
.faq-item summary .faq-icon { color: var(--gold); font-size: 20px; transition: transform .3s; }
.faq-item details[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item details p { padding: 0 24px 18px; font-size: 14px; line-height: 1.75; color: var(--cream60); }
.faq-item { border-bottom: 1px solid var(--w8); }
.faq-item:last-child { border-bottom: none; }
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-d); font-size: 1.5rem; color: var(--cream); margin: 32px 0 10px; }
.legal-content p { font-size: 15px; line-height: 1.85; color: var(--cream60); }
.contact-grid { display: grid; gap: 32px; }
@media(min-width:1024px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-channel { background: var(--surface); padding: 24px; border-bottom: 1px solid var(--w8); }
.contact-channel:last-child { border-bottom: none; }
.contact-channel__title { font-size: 10px; text-transform: uppercase; letter-spacing: var(--ls-lux); color: rgba(var(--gold-rgb),.8); }
.contact-channel__value { font-family: var(--font-d); font-size: 1.2rem; color: var(--cream); margin: 6px 0 2px; }
.contact-channel__note { font-size: 11px; color: var(--cream40); }
.success-box { border: 1px solid var(--gold25); background: linear-gradient(to bottom, rgba(var(--gold-rgb),.1), transparent); padding: 48px; text-align: center; }
.success-box__icon { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--gold40); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; }
.order-stages { display: flex; flex-wrap: wrap; gap: 16px; margin: 24px 0; }
.order-stage { flex: 1; min-width: 100px; }
.order-stage__bar { height: 3px; background: var(--w12); margin-bottom: 8px; }
.order-stage__bar.active { background: var(--gold); }
.order-stage__label { font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.order-stage__label.active { color: var(--gold); }
.order-item-row { display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--w8); padding: 16px 0; }
.order-item-row img { width: 56px; height: 70px; object-fit: cover; flex-shrink: 0; }
.order-item-row__name { font-size: 14px; color: var(--cream); flex: 1; }
.order-item-row__price { color: var(--gold); font-size: 14px; white-space: nowrap; }
.limited-slider { display: grid; gap: 40px; }
@media(min-width:1024px) { .limited-slider { grid-template-columns: 1fr 1fr; align-items: center; } }
.limited-slider__img { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--gold25); background: var(--surface); }
.limited-slider__img img { width: 100%; height: 100%; object-fit: cover; }
.limited-slider__counter { position: absolute; bottom: 20px; left: 20px; font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--cream40); }
.limited-slider__nav { position: absolute; bottom: 20px; right: 20px; display: flex; gap: 8px; }
.limited-slider__nav button { width: 40px; height: 40px; border: 1px solid rgba(var(--hair-rgb),.2); background: rgba(var(--scrim),.6); color: var(--cream70); cursor: pointer; font-size: 16px; transition: var(--trans); }
.limited-slider__nav button:hover { border-color: var(--gold); color: var(--gold); }
.limited-slider__info { display: flex; flex-direction: column; gap: 20px; }
.limited-slider__thumbs { display: flex; gap: 10px; overflow-x: auto; }
.limited-slider__thumb { width: 60px; height: 76px; object-fit: cover; border: 1px solid transparent; cursor: pointer; opacity: .55; flex-shrink: 0; transition: var(--trans); }
.limited-slider__thumb.active, .limited-slider__thumb:hover { border-color: var(--gold); opacity: 1; }

/* ─── Track Order ────────────────────────────────────────────────────────── */
.track-box { border: 1px solid var(--w12); background: var(--ink-deep); padding: 32px; }

/* ─── Wishlist ───────────────────────────────────────────────────────────── */
.wishlist-grid { display: grid; gap: 20px; }
@media(min-width:640px) { .wishlist-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .wishlist-grid { grid-template-columns: repeat(3,1fr); } }
.wish-card { display: flex; gap: 16px; border: 1px solid var(--w8); padding: 18px; transition: border-color .3s; }
.wish-card:hover { border-color: var(--gold40); }
.wish-card img { width: 80px; height: 100px; object-fit: cover; flex-shrink: 0; }
.wish-card__body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.wish-card__origin { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--gold60); }
.wish-card__name { font-family: var(--font-d); font-size: 16px; line-height: 1.25; color: var(--cream); }
.wish-card__name:hover { color: var(--gold); }
.wish-card__price { font-size: 17px; color: var(--gold); }
.wish-card__actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }

/* ─── Site Footer ────────────────────────────────────────────────────────── */
.site-footer { margin-top: 80px; border-top: 1px solid var(--gold25); background: var(--ink-deeper); }
.site-footer__inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.site-footer > .site-footer__inner { padding-top: 56px; padding-bottom: 40px; display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width:768px) { .site-footer > .site-footer__inner { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.site-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.site-footer__brand p { font-size: 14px; color: var(--cream60); max-width: 340px; line-height: 1.7; }
.social-links { display: flex; gap: 8px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--w12); font-size: 14px; color: var(--cream60); transition: var(--trans); text-decoration: none; }
.social-links a:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.footer-newsletter { margin-top: 8px; }
.site-footer__col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: var(--ls-lux); color: rgba(var(--gold-rgb),.85); margin-bottom: 18px; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.site-footer__col a { font-size: 14px; color: var(--cream60); text-decoration: none; transition: color .3s; }
.site-footer__col a:hover { color: var(--gold); }
.site-footer__trust { border-top: 1px solid var(--w8); border-bottom: 1px solid var(--w8); padding: 28px 0; }
.trust-badges { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width:768px) { .trust-badges { grid-template-columns: repeat(3,1fr); } }
.trust-badge { display: flex; align-items: center; gap: 14px; }
.trust-badge > span { font-size: 22px; width: 44px; height: 44px; border: 1px solid var(--gold25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-badge p { font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: rgba(var(--cream-rgb),.85); }
.trust-badge span.note { font-size: 11px; color: var(--cream40); display: block; margin-top: 2px; }
.site-footer__bottom { padding: 20px 0; }
.site-footer__bottom .site-footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 0; }
.payment-methods { display: flex; flex-wrap: wrap; gap: 8px; }
.payment-methods span { border: 1px solid var(--w12); padding: 5px 12px; font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream40); }
.age-notice { display: flex; align-items: center; gap: 12px; border: 1px solid var(--gold25); padding: 8px 14px; }
.age-badge { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold40); color: var(--gold); font-size: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.age-notice p { font-size: 10px; color: var(--cream40); max-width: 280px; }
.copyright { text-align: center; font-size: 11px; color: var(--cream40); padding: 16px 24px 20px; }
.wish-btn.btn--wish-active { color: var(--gold) !important; }

/* ─── Responsive Adjustments ─────────────────────────────────────────────── */
@media(max-width:639px) {
  .product-tabs__tab { padding: 10px 14px; font-size: 9px; }
  .product-tabs__pane { padding: 20px 16px; }
  .spec-table { grid-template-columns: 1fr; }
  .spec-row:nth-child(odd) { border-right: none; }
  .buy-box { flex-wrap: wrap; }
  .why-grid { grid-template-columns: 1fr; }
  .gift-grid { grid-template-columns: 1fr; }
}

/* ─── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp .6s cubic-bezier(.22,1,.36,1) both; }

/* ═══════════════════════════════════════════════════════════════════════════
   THEMES
   Set the palette with data-theme on <html> (config.php -> SITE_THEME).
   Leave it unset for the original near-black. Each theme only restates the
   surface ramp and the scrim, so nothing else in this file has to change.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Espresso Oak — warm dark brown. Reads as cask wood; gold sits naturally on it. */
[data-theme="espresso"] {
  --ink:       #14100b;
  --ink-deep:  #100c08;
  --ink-deeper:#0c0906;
  --surface:   #181209;
  --surface-2: #1d160d;
  --surface-3: #251c11;
  --surface-4: #2f2416;
  --scrim:     12,8,4;
  --gold-dim:  #3d3320;
  --gold-mid:  #715e2b;
  --amber:     #cb8331;
}

/* Midnight Cask — deep blue-black. Cooler and more modern; gold pops hardest here. */
[data-theme="midnight"] {
  --ink:       #0b111c;
  --ink-deep:  #080d16;
  --ink-deeper:#060a11;
  --surface:   #0d1420;
  --surface-2: #111a29;
  --surface-3: #172234;
  --surface-4: #203047;
  --scrim:     3,6,12;
  --gold-dim:  #2d3345;
  --gold-mid:  #6a5c33;
  --amber:     #c9863a;
}

/* Bottle Green — dark green glass. Distinctive without being loud. */
[data-theme="bottle-green"] {
  --ink:       #0b1310;
  --ink-deep:  #08100c;
  --ink-deeper:#060c09;
  --surface:   #0d1712;
  --surface-2: #111d17;
  --surface-3: #16261e;
  --surface-4: #1d3128;
  --scrim:     4,10,7;
  --gold-dim:  #2c3a2c;
  --gold-mid:  #62623a;
  --amber:     #c58a33;
}

/* Oxblood Cellar — deep wine red-black. Richest of the set; use sparingly. */
[data-theme="oxblood"] {
  --ink:       #150b0d;
  --ink-deep:  #110809;
  --ink-deeper:#0d0607;
  --surface:   #190d10;
  --surface-2: #1f1114;
  --surface-3: #28171b;
  --surface-4: #341f24;
  --scrim:     10,4,5;
  --gold-dim:  #3c2c26;
  --gold-mid:  #74532f;
  --amber:     #c9762f;
}

/* Graphite — softer neutral than pure black; least risky change of all. */
[data-theme="graphite"] {
  --ink:       #16161a;
  --ink-deep:  #121216;
  --ink-deeper:#0e0e12;
  --surface:   #1a1a1f;
  --surface-2: #1f1f25;
  --surface-3: #26262d;
  --surface-4: #31313a;
  --scrim:     8,8,10;
  --gold-dim:  #34322b;
  --gold-mid:  #6b6142;
}

/* ─── Warm palettes ───────────────────────────────────────────────────────
   These keep a real surface ramp instead of one flat brown: the page ground
   stays deep, and the browns step upward for sections and cards. That is what
   preserves depth and keeps accent contrast above 7:1.
   ───────────────────────────────────────────────────────────────────────── */

/* Cognac & Bone — deep roasted brown, brass accent, bone-white text.
   Closest to a warm brown storefront without losing legibility. */
[data-theme="cognac"] {
  --ink:       #241708;
  --ink-deep:  #1c1206;
  --ink-deeper:#150d04;
  --surface:   #2c1d0c;
  --surface-2: #35240f;
  --surface-3: #402c14;
  --surface-4: #4d361a;
  --scrim:     18,11,4;
  --gold-rgb:  224,171,69;
  --cream-rgb: 246,237,224;
  --hair-rgb:  255,238,208;
  --gold-s:    #f0c877;
  --gold-d:    #b07f26;
  --gold-dim:  #4a3a1c;
  --gold-mid:  #8a6a2c;
  --amber:     #d98a35;
}

/* Tobacco & Verdigris — brown ground with an oxidised-copper accent instead
   of gold. The most distinctive of the set; nothing else on the web looks
   quite like it. */
[data-theme="verdigris"] {
  --ink:       #211a11;
  --ink-deep:  #191309;
  --ink-deeper:#130f07;
  --surface:   #282015;
  --surface-2: #31281a;
  --surface-3: #3b3121;
  --surface-4: #493d2a;
  --scrim:     14,11,7;
  --gold-rgb:  143,208,186;
  --cream-rgb: 240,233,220;
  --hair-rgb:  226,240,232;
  --gold-s:    #b3e2d2;
  --gold-d:    #5d9c88;
  --gold-dim:  #2c3a35;
  --gold-mid:  #4d7a6c;
  --amber:     #d9a45c;
}

/* Walnut & Rose Copper — softer, warmer accent than yellow gold.
   Reads modern-luxury rather than traditional. */
[data-theme="copper"] {
  --ink:       #22150f;
  --ink-deep:  #1a0f0b;
  --ink-deeper:#140b08;
  --surface:   #2a1b14;
  --surface-2: #332118;
  --surface-3: #3e291e;
  --surface-4: #4c3427;
  --scrim:     16,9,6;
  --gold-rgb:  231,154,118;
  --cream-rgb: 244,232,224;
  --hair-rgb:  255,232,220;
  --gold-s:    #f2b598;
  --gold-d:    #b26f4f;
  --gold-dim:  #46302a;
  --gold-mid:  #8a5a45;
  --amber:     #dd8a5c;
}

/* Amber on Char — warm charcoal-brown ground, bright amber accent.
   The most conservative warm option; nearest to your original. */
[data-theme="amber-char"] {
  --ink:       #171310;
  --ink-deep:  #120f0c;
  --ink-deeper:#0d0b09;
  --surface:   #1d1815;
  --surface-2: #241e19;
  --surface-3: #2d251f;
  --surface-4: #392f27;
  --scrim:     10,8,6;
  --gold-rgb:  237,164,63;
  --cream-rgb: 245,240,232;
  --hair-rgb:  255,244,228;
  --gold-s:    #f6c47c;
  --gold-d:    #b97a22;
  --gold-dim:  #3c3122;
  --gold-mid:  #7a5f2c;
  --amber:     #e08a2e;
}
