/* =========================================================
   BRONZE ERA — Design System
   Warm luxury. Cream + champagne. Gold accents only.
   ========================================================= */

:root {
  /* Backgrounds — warm, never white */
  --cream: #F7EFE0;
  --cream-soft: #FBF5E9;
  --champagne: #EADFC4;
  --champagne-deep: #DCCCA8;
  --sand: #E8DAB8;

  /* Ink — warm deep browns instead of black */
  --ink: #2C2018;
  --ink-soft: #4A372A;
  --ink-muted: #8A7560;

  /* Gold — accent only */
  --gold: #C7A35A;
  --gold-deep: #A8853F;
  --gold-soft: #E2C98E;

  /* Product accent palette (sit naturally on cream) */
  --coral: #E89B7E;
  --rose: #D9A8A0;
  --terracotta: #C97A56;
  --sage: #A8B59A;
  --sky: #A8C2D1;
  --plum: #9A7A8E;

  /* System */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --border: 1px solid rgba(168, 133, 63, 0.35);
  --border-strong: 1px solid var(--gold);
  --shadow-soft: 0 6px 28px rgba(60, 40, 20, 0.06);
  --shadow-card: 0 10px 40px rgba(60, 40, 20, 0.10);

  --font-display: "Cormorant Garamond", "Playfair Display", "Hoefler Text", Georgia, serif;
  --font-body: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tracking-wide: 0.16em;
  --tracking-mid: 0.08em;

  --container: 1240px;
  --container-narrow: 1080px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Subtle paper-grain overlay — fixed, covers viewport, sits above content but pointer-transparent */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.82rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream-soft);
}
.btn-primary:hover { background: var(--gold-deep); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold-deep);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--cream-soft); }

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: var(--cream-soft); border-color: var(--ink); }

.btn-block { width: 100%; }
.btn-lg { padding: 20px 36px; font-size: 0.88rem; }

#bundleCta {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 22px 36px;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: var(--cream-soft);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: var(--tracking-mid);
  padding: 11px 20px;
  text-transform: uppercase;
}
.announce a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 8px;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream-soft);
  border-bottom: var(--border);
  backdrop-filter: blur(8px);
}

/* Hamburger button — hidden on desktop, visible on mobile */
.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-right: 12px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.2s ease;
  border-radius: 1px;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(40, 25, 15, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 80;
}
.mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(82vw, 320px);
  background: var(--cream-soft);
  border-right: 1px solid var(--gold-soft);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 90;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 30px rgba(40, 25, 15, 0.12);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-inner {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.mobile-drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px; height: 36px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  border-radius: 999px;
}
.mobile-drawer-close:hover { background: var(--cream); }
.mobile-drawer-brand {
  font-family: "Cinzel", "Trajan Pro", var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  text-align: center;
  line-height: 1;
  margin: 16px 0 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gold-soft);
}
.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer-nav .nav-link {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(199, 163, 90, 0.15);
}
.mobile-drawer-nav .nav-link:last-child { border-bottom: none; }
.mobile-drawer-nav .nav-link.active { color: var(--gold-deep); }
.mobile-drawer-nav .nav-link.active::after { display: none; }
.mobile-drawer-cta {
  margin-top: auto;
  padding-top: 24px;
}
.mobile-drawer-cta .cart-pill {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 28px; }
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: 0.78rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}
.nav-link:hover { color: var(--gold-deep); }
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.brand {
  font-family: "Cinzel", "Trajan Pro", var(--font-display);
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
}
.brand .r,
.mobile-drawer-brand .r {
  font-family: "Cinzel Decorative", "Cinzel", var(--font-display);
  font-weight: 700;
}
.brand small,
.mobile-drawer-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.42em;
  color: var(--gold-deep);
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
}
/* Larger / more prominent footer brand mark */
.site-footer .brand {
  font-size: 2.6rem;
  color: var(--cream-soft);
}
.icon-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: var(--border);
  background: var(--cream);
  transition: all 0.2s ease;
}
.icon-btn:hover { border-color: var(--gold); background: var(--champagne); color: var(--gold-deep); }
.icon-btn svg { display: block; }

/* ============================================================
   ACCOUNT / CART POPUPS
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 25, 15, 0.45);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 90px 28px 28px;
}
.popup-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.popup {
  display: none;
  position: relative;
  background: var(--cream-soft);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  padding: 38px 32px 32px;
  box-shadow: 0 20px 50px rgba(40, 25, 15, 0.25);
  transform: translateY(-12px);
  transition: transform 0.3s ease;
}
.popup-overlay.open[data-active="account"] .popup[data-popup-content="account"],
.popup-overlay.open[data-active="cart"] .popup[data-popup-content="cart"] {
  display: block;
  transform: translateY(0);
  animation: popupIn 0.32s ease;
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.popup .eyebrow {
  margin-bottom: 8px;
}
.popup h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin: 0 0 12px;
  line-height: 1.1;
}
.popup h3 em { font-style: italic; color: var(--gold-deep); }
.popup p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin: 0 0 22px;
  line-height: 1.55;
}
.popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-muted);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  background: transparent;
}
.popup-close:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: var(--cream);
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.popup-form input {
  padding: 14px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
}
.popup-form input::placeholder { color: var(--ink-muted); }
.popup-form input:focus { outline: none; border-color: var(--gold-deep); background: var(--cream-soft); }
.popup-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.82rem;
  margin-bottom: 16px;
}
.popup-links a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.popup-links .dot { color: var(--ink-muted); }
.popup-meta {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  padding-top: 14px;
  border-top: 1px solid rgba(168, 133, 63, 0.18);
  margin-top: 6px;
}
.popup-meta a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .popup-overlay { padding: 80px 16px 16px; align-items: stretch; justify-content: center; }
  .popup { max-width: 100%; padding: 32px 22px 26px; }
}
.cart-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px 8px 14px;
  border: var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  font-weight: 600;
  background: var(--cream);
}

/* ---------- Hero (home) — full-bleed image with overlaid text ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Desktop banner — wide 16:9, bottle anchored on the right */
  background:
    url("assets/product images/home-hero-banner.png") center right / cover no-repeat,
    radial-gradient(ellipse at 70% 35%, var(--coral) 0%, var(--terracotta) 38%, #5e3a25 75%, var(--ink) 100%);
  isolation: isolate;
}
/* Mobile banner — portrait 9:16, bottle anchored center; swap the background image */
@media (max-width: 768px) {
  .hero {
    background:
      url("assets/product images/home-hero-banner-mobile.png") center center / cover no-repeat,
      radial-gradient(ellipse at 50% 35%, var(--coral) 0%, var(--terracotta) 38%, #5e3a25 75%, var(--ink) 100%);
  }
}
/* Subtle film-grain + warmth wash over the whole hero */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600'><filter id='n'><feTurbulence baseFrequency='0.9' /></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
/* Editorial gradient overlay for legibility — darker on the left where text sits */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(30, 18, 10, 0.78) 0%, rgba(30, 18, 10, 0.5) 35%, rgba(30, 18, 10, 0.15) 60%, rgba(30, 18, 10, 0.0) 80%),
    linear-gradient(180deg, rgba(30, 18, 10, 0.0) 60%, rgba(30, 18, 10, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Hero campaign bottle now lives in the banner image — ghost wordmark removed */

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 120px 28px 90px;
}

.hero-content {
  max-width: 720px;
  color: var(--cream-soft);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.98;
  margin-bottom: 26px;
  color: var(--cream-soft);
  text-shadow: 0 2px 30px rgba(20, 12, 6, 0.35);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero .eyebrow {
  color: var(--gold-soft);
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 38px;
  color: rgba(247, 239, 224, 0.88);
}
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 36px;
  font-size: 0.76rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: rgba(247, 239, 224, 0.78);
  font-weight: 600;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before {
  content: "";
  width: 12px; height: 12px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: inline-block;
}

/* Hero buttons need to sit on dark imagery */
.hero .btn-outline {
  border-color: var(--gold-soft);
  color: var(--cream-soft);
}
.hero .btn-outline:hover {
  background: var(--cream-soft);
  color: var(--ink);
  border-color: var(--cream-soft);
}

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--champagne);
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-size: 0.78rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; }
.marquee-track span::before {
  content: "✦";
  color: var(--gold-deep);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
}
.section-tight { padding: 70px 0; }
.section-cream { background: var(--cream-soft); }

/* The Founder's Goal — dark luxe section */
.founder-goal {
  background: linear-gradient(160deg, #2A1A0F 0%, #3E2818 45%, #5A3622 100%);
  color: var(--cream-soft);
  position: relative;
  overflow: hidden;
}
.founder-goal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(199, 163, 90, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.founder-goal .container { position: relative; z-index: 1; }
.founder-goal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.founder-goal .eyebrow {
  color: var(--gold-soft);
}
.founder-goal h2 {
  color: var(--cream-soft);
  margin-bottom: 14px;
}
.founder-goal h2 em {
  font-style: italic;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", "Cinzel", var(--font-display);
  font-weight: 500;
}
.founder-goal p {
  color: rgba(251, 245, 233, 0.78);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.founder-goal .goal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.founder-goal .goal-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(199, 163, 90, 0.18);
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform;
}
.founder-goal .goal-row.in-view {
  opacity: 1;
  transform: translateY(0);
}
.founder-goal .goal-row:last-child { border-bottom: none; }

.founder-goal .goal-marker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 78px;
}
.founder-goal .goal-marker .heart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 0.8;
  filter: drop-shadow(0 0 12px rgba(199, 163, 90, 0.25));
}
.founder-goal .goal-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--cream-soft);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  padding: 0 18px;
  line-height: 1.1;
}
.founder-goal .goal-desc {
  display: block;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(251, 245, 233, 0.78);
  font-family: var(--font-body);
}
@media (max-width: 768px) {
  .founder-goal .goal-row { grid-template-columns: 140px 1fr; gap: 18px; }
  .founder-goal .goal-marker { height: 60px; }
  .founder-goal .goal-title { font-size: 0.78rem; padding: 0 10px; }
}
.founder-goal .hero-meta {
  color: rgba(251, 245, 233, 0.6);
  border-top: 1px solid rgba(199, 163, 90, 0.18);
  padding-top: 20px;
}
.founder-goal-image {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid rgba(199, 163, 90, 0.3);
  overflow: hidden;
  background: linear-gradient(155deg, rgba(217, 168, 160, 0.85), rgba(154, 122, 142, 0.85));
}
.founder-goal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .founder-goal-grid { grid-template-columns: 1fr; gap: 40px; }
}
.section-champagne { background: var(--champagne); }

.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-head p {
  max-width: 540px;
  margin: 14px auto 0;
}

.waitlist {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 24px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist input {
  flex: 1;
  min-width: 240px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--cream-soft);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
}
.waitlist input::placeholder { color: var(--ink-muted); }
.waitlist input:focus { outline: none; border-color: var(--gold-deep); background: var(--cream); }

/* ---------- Category cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.cat-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: var(--champagne-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  transition: opacity 0.4s ease;
}
.cat-card:hover { opacity: 0.94; }
.cat-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,32,24,0.0) 50%, rgba(44, 32, 24, 0.30) 100%);
  z-index: 1;
}
.cat-card:hover .cat-cta { background: var(--cream-soft); color: var(--ink); }

.cat-1 {
  background:
    radial-gradient(ellipse at center, rgba(44, 32, 24, 0.55) 0%, rgba(44, 32, 24, 0.35) 55%, rgba(44, 32, 24, 0.45) 100%),
    linear-gradient(180deg, rgba(44, 32, 24, 0.25) 0%, rgba(44, 32, 24, 0.0) 30%, rgba(44, 32, 24, 0.0) 65%, rgba(44, 32, 24, 0.45) 100%),
    url("assets/product images/shop-card-trio.png") center / cover no-repeat;
}
.cat-2 {
  background:
    radial-gradient(ellipse at center, rgba(44, 32, 24, 0.55) 0%, rgba(44, 32, 24, 0.35) 55%, rgba(44, 32, 24, 0.45) 100%),
    linear-gradient(180deg, rgba(44, 32, 24, 0.25) 0%, rgba(44, 32, 24, 0.0) 30%, rgba(44, 32, 24, 0.0) 65%, rgba(44, 32, 24, 0.45) 100%),
    url("assets/product images/quiz-card-girl.png") center / cover no-repeat;
}

.cat-card h3 {
  position: relative; z-index: 2;
  color: var(--cream-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  font-weight: 500;
  line-height: 1.05;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(20, 12, 6, 0.25);
}
.cat-card h3 .kicker {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.cat-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--cream-soft);
  color: var(--cream-soft);
  font-size: 0.78rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* ---------- Product cards ---------- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.prod-card {
  background: var(--cream-soft);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.prod-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.prod-img {
  aspect-ratio: 1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: rgba(247, 239, 224, 0.9);
  letter-spacing: 0.15em;
}
.prod-img.t1 { background: linear-gradient(155deg, var(--coral), var(--terracotta)); }
.prod-img.t2 { background: linear-gradient(155deg, var(--sand), var(--gold-deep)); }
.prod-img.t3 { background: linear-gradient(155deg, var(--rose), var(--plum)); }
.prod-img.t4 { background: linear-gradient(155deg, var(--sage), var(--ink-soft)); }
.prod-img.t5 { background: linear-gradient(155deg, var(--sky), var(--ink-soft)); }
.prod-img.t6 { background: linear-gradient(155deg, var(--gold-soft), var(--terracotta)); }

.badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--ink);
  color: var(--gold-soft);
  font-size: 0.62rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.prod-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prod-body .stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.prod-body .stars small { color: var(--ink-muted); margin-left: 6px; letter-spacing: 0; }
.prod-body h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 4px;
  color: var(--ink);
}
.prod-body .desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.price s { color: var(--ink-muted); font-weight: 400; margin-left: 6px; }

/* ---------- Brand statement block ---------- */
.statement {
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 163, 90, 0.25), transparent 60%),
    var(--ink);
  color: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: 70px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.statement h2 { color: var(--cream-soft); position: relative; }
.statement h2 em { color: var(--gold-soft); font-style: italic; }
.statement p { color: rgba(247, 239, 224, 0.78); position: relative; }
.statement-img {
  position: relative;
  aspect-ratio: 1;
  overflow: visible;
}
.statement-img-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(155deg, var(--coral), var(--terracotta));
}
.statement-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-pin {
  position: absolute;
  background: var(--cream-soft);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(199, 163, 90, 0.55);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
/* Pin 1 — straddles the LEFT edge of the frame, anchored at upper-bottle area */
.img-pin-1 {
  top: 30%;
  right: 82%;
  transform: translateY(-50%);
}
/* Pin 2 — straddles the RIGHT edge of the frame, anchored at mousse-on-mitt area */
.img-pin-2 {
  top: 54%;
  left: 82%;
  transform: translateY(-50%);
}
/* Pin 3 — straddles the BOTTOM edge of the frame, anchored at lower skin/leg area */
.img-pin-3 {
  top: 92%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 900px) {
  .img-pin { display: none; }
  .statement { padding: 50px 32px; gap: 36px; }
}

/* ---------- Comparison (Why Bronze Era) ---------- */
.section-compare {
  background:
    linear-gradient(165deg, #8A5A30 0%, #5C3A1E 55%, #3A2412 100%);
  padding: 70px 0;
  position: relative;
  color: var(--cream-soft);
}
.section-compare::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(199, 163, 90, 0.18), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(20, 10, 4, 0.35), transparent 60%);
  pointer-events: none;
}

.compare {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.compare-highlight {
  position: absolute;
  top: -42px;
  bottom: -42px;
  left: 38%;
  width: 31%;
  background: linear-gradient(180deg, #e8c98a 0%, #c7a35a 100%);
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 0;
  pointer-events: none;
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  position: relative;
  z-index: 1;
}
.compare thead th {
  padding: 18px 24px;
  text-align: center;
  vertical-align: bottom;
  border-bottom: 1px solid rgba(247, 239, 224, 0.35);
}
.compare thead th:first-child {
  text-align: left;
  vertical-align: top;
  width: 38%;
}
.compare-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  margin: 0;
  color: var(--cream-soft);
  font-weight: 500;
  text-shadow: 0 2px 18px rgba(40, 22, 10, 0.35);
}
.compare-title em { font-style: italic; color: var(--gold-soft); }
.compare-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 14px;
}
.compare-brand {
  font-family: "Cinzel", "Trajan Pro", var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
}
.compare-brand .r {
  font-family: "Cinzel Decorative", "Cinzel", var(--font-display);
  font-weight: 700;
}
.compare-others {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(247, 239, 224, 0.7);
}
.compare tbody td {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(247, 239, 224, 0.22);
  font-size: 0.95rem;
  vertical-align: middle;
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody td:first-child {
  font-family: var(--font-body);
  color: var(--cream-soft);
  font-weight: 500;
  width: 38%;
  text-shadow: 0 1px 10px rgba(40, 22, 10, 0.25);
}
.compare tbody td:nth-child(2),
.compare tbody td:nth-child(3) {
  text-align: center;
  width: 31%;
}
/* Big circular icons */
.compare .check,
.compare .cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}
.compare .check {
  background: var(--ink);
  color: var(--gold);
  border: 1px solid rgba(40, 22, 10, 0.6);
  box-shadow: 0 4px 12px rgba(40, 22, 10, 0.45);
  font-weight: 700;
}
.compare .cross {
  background: rgba(247, 239, 224, 0.15);
  color: rgba(247, 239, 224, 0.55);
  border: 1px solid rgba(247, 239, 224, 0.25);
}
/* Bronze Era column — sits on the gold highlight, so subtler dividers */
.compare tbody td:nth-child(2) {
  border-bottom-color: rgba(40, 22, 10, 0.15);
}
.compare tbody tr:last-child td:nth-child(2) { border-bottom: none; }

@media (max-width: 768px) {
  .section-compare { padding: 56px 0; }

  /* Hide the absolute-positioned highlight panel — replaced by cell backgrounds on mobile */
  .compare-highlight { display: none; }

  /* Title block stacks above the table */
  .compare thead th:first-child {
    display: block;
    padding: 0 0 22px;
    width: 100%;
    text-align: center;
    border-bottom: none;
  }
  .compare-title { font-size: 1.5rem; text-align: center; line-height: 1.2; }
  .compare-eyebrow { font-size: 0.62rem; margin-bottom: 8px; }

  /* Tighter cells */
  .compare thead th,
  .compare tbody td { padding: 11px 8px; }
  .compare tbody td { font-size: 0.82rem; }
  .compare tbody td:first-child {
    width: auto;
    font-size: 0.78rem;
    line-height: 1.3;
  }
  .compare-brand { font-size: 0.95rem; letter-spacing: 0.08em; }
  .compare-others { font-size: 0.66rem; letter-spacing: 0.12em; }

  /* Bronze Era column highlight — gold gradient on each cell, rounded ends */
  .compare thead th:nth-child(2),
  .compare tbody td:nth-child(2) {
    background: linear-gradient(180deg, #e8c98a 0%, #c7a35a 100%);
    border-bottom-color: rgba(40, 22, 10, 0.18);
  }
  .compare thead th:nth-child(2) {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }
  .compare tbody tr:last-child td:nth-child(2) {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
  }

  /* Smaller pill icons */
  .compare .check,
  .compare .cross {
    width: 28px;
    height: 28px;
    font-size: 0.82rem;
  }
}

/* ---------- Stats / proof ---------- */
.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  padding: 50px 0;
  border-top: var(--border);
  border-bottom: var(--border);
}
.proof-row .stat {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-deep);
  margin: 0;
  line-height: 1;
}
.proof-row .label {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
  font-weight: 600;
}

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--cream-soft);
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.review .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.88rem; }
.review h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.review p { color: var(--ink-soft); font-size: 0.94rem; }
.review .author {
  margin-top: 16px;
  font-size: 0.78rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.review .author span { color: var(--gold-deep); margin-left: 6px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(247, 239, 224, 0.75);
  padding: 80px 0 30px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.site-footer .brand { color: var(--cream-soft); text-align: left; font-size: 2rem; }
.site-footer .brand small { color: var(--gold-soft); }
.footer-grid h6 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(199, 163, 90, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(247, 239, 224, 0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a {
  color: rgba(247, 239, 224, 0.7);
  transition: color 0.2s ease;
}
.footer-bottom a:hover { color: var(--gold-soft); }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.pdp {
  padding: 50px 0 80px;
}
.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.gallery-main {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  border: var(--border);
  overflow: hidden;
  position: relative;
  background: linear-gradient(155deg, var(--coral), var(--terracotta));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(247,239,224, 0.92);
  font-size: 3rem;
  letter-spacing: 0.18em;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Prev/next arrows over the gallery main — clean rose gold */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(168, 133, 63, 0.35);
  background: rgba(251, 245, 233, 0.92);
  color: var(--gold-deep);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 2px 10px rgba(40, 25, 15, 0.12);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(6px);
}
.gallery-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}
.gallery-arrow:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.gallery-arrow.prev { left: 16px; }
.gallery-arrow.next { right: 16px; }
@media (max-width: 640px) {
  .gallery-arrow { width: 36px; height: 36px; }
  .gallery-arrow svg { width: 16px; height: 16px; }
  .gallery-arrow.prev { left: 10px; }
  .gallery-arrow.next { right: 10px; }
}
.gallery-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(44, 32, 24, 0.75);
  color: var(--cream-soft);
  font-size: 0.7rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 2;
  transition: all 0.2s ease;
  text-decoration: none;
}
a.gallery-tag:hover {
  background: var(--gold-deep);
  color: var(--cream-soft);
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-hero {
  background: var(--champagne);
  padding: 80px 0 60px;
  border-bottom: var(--border);
  text-align: center;
}
.article-hero .breadcrumb {
  display: inline-flex;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 18px;
}
.article-hero .breadcrumb a:hover { color: var(--gold-deep); }
.article-hero .breadcrumb span { color: var(--gold-deep); }

.article-hero .blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 16px;
}
.article-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 880px;
  margin: 0 auto 24px;
  line-height: 1.1;
}
.article-hero h1 em { font-style: italic; color: var(--gold-deep); }
.article-meta {
  display: inline-flex;
  gap: 16px;
  font-size: 0.78rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.article-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 16px;
  color: var(--gold);
}

.article-cover {
  aspect-ratio: 16/7;
  margin: 50px auto 0;
  max-width: 1100px;
  border-radius: var(--radius);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: rgba(247, 239, 224, 0.85);
}
.article-cover.c1 { background: linear-gradient(155deg, var(--coral), var(--terracotta)); }
.article-cover.c2 { background: linear-gradient(155deg, var(--sand), var(--gold)); }
.article-cover.c3 { background: linear-gradient(155deg, var(--rose), var(--plum)); }
.article-cover.c4 { background: linear-gradient(155deg, var(--sage), var(--ink-soft)); }
.article-cover.c5 { background: linear-gradient(155deg, var(--sky), var(--terracotta)); }
.article-cover.c6 { background: linear-gradient(155deg, var(--gold-soft), var(--terracotta)); }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 28px 100px;
}
.article-body p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 1.4em;
}
.article-body p.lede {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: 1.8em;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin: 2.4em 0 0.6em;
  line-height: 1.2;
}
.article-body h2 em { font-style: italic; color: var(--gold-deep); }
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 1.8em 0 0.4em;
}
.article-body ul, .article-body ol {
  padding-left: 22px;
  margin: 0 0 1.4em;
}
.article-body li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.6em;
  color: var(--ink);
}
.article-body li::marker { color: var(--gold-deep); }
.article-body strong { color: var(--ink); }
.article-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 2em 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.article-body hr {
  border: 0;
  border-top: 1px solid rgba(168, 133, 63, 0.25);
  margin: 3em auto;
  max-width: 80px;
}
.article-body a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-cta {
  background: var(--cream-soft);
  border: var(--border);
  border-radius: var(--radius);
  padding: 36px;
  margin: 40px 0;
  text-align: center;
}
.article-cta h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 10px;
}
.article-cta h4 em { font-style: italic; color: var(--gold-deep); }
.article-cta p {
  font-size: 0.96rem;
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.article-related {
  background: var(--cream-soft);
  border-top: var(--border);
  padding: 70px 0;
}
.article-related h3 {
  text-align: center;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 36px;
}
.article-related h3 em { font-style: italic; color: var(--gold-deep); }

@media (max-width: 640px) {
  .article-body { padding: 50px 20px 70px; }
  .article-body p { font-size: 1rem; }
  .article-body p.lede { font-size: 1.2rem; }
  .article-cover { aspect-ratio: 4/3; font-size: 1.3rem; }
}

/* ============================================================
   QUIZ PAGE
   ============================================================ */
.quiz {
  position: relative;
  min-height: calc(100vh - 120px);
  background: var(--cream);
  padding: 70px 0 100px;
  overflow: hidden;
}

/* Subtle warm radial wash on the page */
.quiz::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(232, 155, 126, 0.18), transparent 50%),
    radial-gradient(circle at 90% 100%, rgba(199, 163, 90, 0.15), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.quiz-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(168, 133, 63, 0.15);
  z-index: 5;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  transition: width 0.5s ease;
}

.quiz-step {
  display: none;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px 0;
  animation: stepFadeIn 0.45s ease both;
}
.quiz-step.active { display: block; }

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-counter {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 18px;
}

.quiz-step h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin-bottom: 18px;
}
.quiz-step h1 em { font-style: italic; color: var(--gold-deep); }
.quiz-step h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  margin-bottom: 14px;
}
.quiz-lead {
  font-size: 1.08rem;
  max-width: 580px;
  margin: 0 auto 30px;
}
.quiz-sub {
  font-size: 0.96rem;
  max-width: 540px;
  margin: 0 auto 38px;
  color: var(--ink-muted);
}
.quiz-meta {
  margin-top: 26px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  justify-content: center;
}

.quiz-options {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.quiz-options.grid-2 { grid-template-columns: repeat(2, 1fr); }
.quiz-options.grid-3 { grid-template-columns: repeat(3, 1fr); }
.quiz-options.grid-5 { grid-template-columns: repeat(5, 1fr); }

.quiz-option {
  background: var(--cream-soft);
  border: 1px solid rgba(168, 133, 63, 0.3);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.quiz-option:hover {
  border-color: var(--gold);
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.quiz-option.active {
  border-color: var(--gold-deep);
  border-width: 2px;
  background: var(--champagne);
  box-shadow: var(--shadow-card);
}
.quiz-option .swatch {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
  margin-bottom: 8px;
  border: 1px solid rgba(168, 133, 63, 0.2);
}
.quiz-option .opt-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.1;
}
.quiz-option .opt-desc {
  font-size: 0.86rem;
  color: var(--ink-muted);
  line-height: 1.4;
}
.quiz-option.text-only {
  padding: 32px 26px;
}

/* Skin tone swatches */
.sw-fair { background: linear-gradient(135deg, #f6dfc3, #ebc7a4); }
.sw-light { background: linear-gradient(135deg, #ebc7a4, #d4a47a); }
.sw-medium { background: linear-gradient(135deg, #c89570, #a8714a); }
.sw-olive { background: linear-gradient(135deg, #b58655, #8a5d34); }
.sw-deep { background: linear-gradient(135deg, #6e4423, #3e2613); }

/* Loader */
.quiz-loading { padding: 80px 0; }
.loader {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(168, 133, 63, 0.25);
  border-top-color: var(--gold-deep);
  animation: spin 0.9s linear infinite;
  margin: 0 auto 32px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Result */
.quiz-result h1 { margin-bottom: 12px; }

.result-card {
  background: var(--cream-soft);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  text-align: left;
  margin: 40px auto 60px;
  max-width: 820px;
  box-shadow: var(--shadow-soft);
}
.result-shade {
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px;
  color: var(--cream-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px rgba(20, 12, 6, 0.4);
  border: 1px solid rgba(168, 133, 63, 0.4);
}
.result-shade.shade-light { background: linear-gradient(155deg, #e8c8a0, #c9925e); }
.result-shade.shade-medium { background: linear-gradient(155deg, #c9925e, #8b5a33); }
.result-shade.shade-deep { background: linear-gradient(155deg, #8b5a33, #4a2a18); }

.result-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(168, 133, 63, 0.18);
  align-items: baseline;
}
.result-row:last-child { border-bottom: none; }
.result-label {
  font-size: 0.7rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.result-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.25;
}

.routine-head {
  text-align: center;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 50px 0 26px;
}
.routine-head em { font-style: italic; color: var(--gold-deep); }

.routine-list {
  list-style: none;
  counter-reset: r;
  padding: 0;
  margin: 0 auto 60px;
  max-width: 760px;
  text-align: left;
}
.routine-list li {
  counter-increment: r;
  background: var(--cream-soft);
  border: var(--border);
  border-radius: var(--radius);
  padding: 22px 26px 22px 80px;
  position: relative;
  margin-bottom: 12px;
}
.routine-list li::before {
  content: counter(r, decimal-leading-zero);
  position: absolute;
  left: 26px; top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-deep);
  line-height: 1;
}
.routine-list li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.routine-list li p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.result-cta {
  background: var(--ink);
  color: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.result-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(199, 163, 90, 0.25), transparent 60%);
}
.result-cta > * { position: relative; }
.result-cta h3 {
  color: var(--cream-soft);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.result-cta h3 em { font-style: italic; color: var(--gold-soft); }
.result-cta p {
  color: rgba(247, 239, 224, 0.85);
  max-width: 500px;
  margin: 0 auto 22px;
}

@media (max-width: 1024px) {
  .quiz-options.grid-5 { grid-template-columns: repeat(3, 1fr); }
  .quiz-options.grid-3 { grid-template-columns: repeat(2, 1fr); }
  .result-card { grid-template-columns: 1fr; padding: 24px; }
  .result-shade { max-width: 240px; margin: 0 auto; }
  .result-row { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 640px) {
  .quiz-options.grid-5,
  .quiz-options.grid-3,
  .quiz-options.grid-2 { grid-template-columns: 1fr; }
  .quiz-step h1 { font-size: 2.4rem; }
  .quiz { padding: 40px 0 80px; }
  .result-cta { padding: 36px 24px; }
}

/* ============================================================
   INGREDIENTS PAGE
   ============================================================ */
.ing-hero {
  background: var(--champagne);
  padding: 90px 0 60px;
  text-align: center;
  border-bottom: var(--border);
}
.ing-hero h1 em { font-style: italic; color: var(--gold-deep); }
.ing-hero p { max-width: 600px; margin: 18px auto 0; }

.ing-toc {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.ing-toc a {
  border: var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.74rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  background: var(--cream-soft);
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s;
}
.ing-toc a:hover { border-color: var(--gold); background: var(--cream); }

.ing-group {
  margin-bottom: 70px;
}
.ing-group-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(168, 133, 63, 0.25);
}
.ing-group-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}
.ing-group-head h2 em { font-style: italic; color: var(--gold-deep); }
.ing-group-head .lead { margin: 0; color: var(--ink-soft); }

.ing-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ing-item {
  position: relative;
  isolation: isolate;
  border: var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.2s ease;
  background-color: var(--champagne-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream-soft);
}
/* Warm darkening overlay for legibility — image still reads through */
.ing-item::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(44, 32, 24, 0.10) 0%, rgba(44, 32, 24, 0.35) 45%, rgba(20, 12, 6, 0.78) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}
.ing-item > * { position: relative; z-index: 2; }
.ing-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.ing-item:hover::before { opacity: 0.85; }

.ing-item h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 4px;
  color: var(--cream-soft);
  text-shadow: 0 2px 16px rgba(20, 12, 6, 0.4);
}
.ing-item .latin {
  font-size: 0.7rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.ing-item p {
  font-size: 0.92rem;
  margin: 0;
  color: rgba(247, 239, 224, 0.92);
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(20, 12, 6, 0.4);
}

/* Placeholder gradients while real photos aren't provided yet.
   When a real image loads at the .ing-item background-image,
   it will sit on top of these and override them visually. */
.ing-item.ph-1 { background-image: linear-gradient(155deg, #5a3a6e, #2a1c2c); }
.ing-item.ph-2 { background-image: linear-gradient(155deg, #c97a56, #5e3a25); }
.ing-item.ph-3 { background-image: linear-gradient(155deg, #8a2c4a, #3b1424); }
.ing-item.ph-4 { background-image: linear-gradient(155deg, #4a3360, #1f1530); }
.ing-item.ph-5 { background-image: linear-gradient(155deg, #6e3a5a, #2a1620); }
.ing-item.ph-6 { background-image: linear-gradient(155deg, #2a4f6a, #122838); }
.ing-item.ph-7 { background-image: linear-gradient(155deg, #d6a57a, #6a4a2c); }
.ing-item.ph-8 { background-image: linear-gradient(155deg, #486a3a, #1d2c18); }
.ing-item.ph-9 { background-image: linear-gradient(155deg, #b8a070, #4d3e22); }
.ing-item.ph-10 { background-image: linear-gradient(155deg, #6a4a2c, #2c1d0e); }
.ing-item.ph-11 { background-image: linear-gradient(155deg, #c7a35a, #6a4a1c); }
.ing-item.ph-12 { background-image: linear-gradient(155deg, #8a6a48, #3a2818); }
.ing-item.ph-13 { background-image: linear-gradient(155deg, #c8a68a, #6e4a32); }
.ing-item.ph-14 { background-image: linear-gradient(155deg, #d4b890, #7a5a3a); }
.ing-item.ph-15 { background-image: linear-gradient(155deg, #c9c9c9, #565666); }
.ing-item.ph-16 { background-image: linear-gradient(155deg, #ddc88a, #6e5a2a); }
.ing-item.ph-17 { background-image: linear-gradient(155deg, #c98a4a, #5a3618); }
.ing-item.ph-18 { background-image: linear-gradient(155deg, #d5a554, #6e4a16); }
.ing-item.ph-19 { background-image: linear-gradient(155deg, #d49050, #6c3818); }
.ing-item.ph-20 { background-image: linear-gradient(155deg, #f0c560, #7a4a18); }
.ing-item.ph-21 { background-image: linear-gradient(155deg, #8a1c2a, #2a0a12); }
.ing-item.ph-22 { background-image: linear-gradient(155deg, #4a6a3a, #1a2a14); }
.ing-item.ph-23 { background-image: linear-gradient(155deg, #e8d68a, #8a6a1c); }
.ing-item.ph-24 { background-image: linear-gradient(155deg, #4a2a18, #1a0a04); }
.ing-item.ph-25 { background-image: linear-gradient(155deg, #f0e0c8, #a88858); }
.ing-item.ph-26 { background-image: linear-gradient(155deg, #c8d4e0, #4a5a6a); }
.ing-item.ph-27 { background-image: linear-gradient(155deg, #d8c8a8, #6e5a3a); }

@media (max-width: 1024px) {
  .ing-group-head { grid-template-columns: 1fr; gap: 16px; }
  .ing-list { grid-template-columns: 1fr; }
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .gallery-thumbs { grid-template-columns: repeat(7, 1fr); gap: 6px; }
}
@media (max-width: 640px) {
  .gallery-thumbs { grid-template-columns: repeat(7, 1fr); gap: 5px; }
}
.thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  border: var(--border);
  cursor: pointer;
  transition: border-color 0.2s ease;
  overflow: hidden;
  padding: 0;
  background: var(--cream-soft);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb.active { border-color: var(--gold); border-width: 2px; }

.pdp-info h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 8px;
}
.pdp-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.pdp-stars small {
  color: var(--ink-muted);
  letter-spacing: var(--tracking-mid);
  font-size: 0.72rem;
  text-transform: uppercase;
  margin-left: 10px;
  font-weight: 600;
}

.pdp-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.pdp-bullets li::before {
  content: "✦";
  color: var(--gold-deep);
}

/* PDP bundle picker — BASED-style stacked option cards */
.bundle-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.bundle-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--cream-soft);
  border: 1.5px solid rgba(199, 163, 90, 0.25);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.bundle-card:hover { border-color: var(--gold); }
.bundle-card.active {
  border-color: var(--gold);
  border-width: 2px;
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(199, 163, 90, 0.12);
}
.bundle-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--champagne);
  flex-shrink: 0;
}
.bundle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bundle-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.bundle-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.bundle-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.35;
}
.bundle-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: help;
  width: fit-content;
  margin-top: 2px;
  border-bottom: 1px dashed rgba(168, 133, 63, 0.5);
  padding-bottom: 1px;
}
.bundle-trigger-icon {
  font-size: 0.85rem;
  line-height: 1;
}
.bundle-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background: var(--ink);
  color: var(--cream-soft);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-radius: 8px;
  width: max-content;
  max-width: 260px;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(40, 25, 15, 0.25);
}
.bundle-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 18px;
  border: 6px solid transparent;
  border-top-color: var(--ink);
}
.bundle-tooltip-heart {
  display: inline-block;
  color: var(--gold-soft);
  margin-right: 4px;
  font-size: 0.85rem;
  line-height: 1;
}
.bundle-tooltip-row {
  display: block;
  padding: 3px 0;
}
.bundle-tooltip-row + .bundle-tooltip-row {
  margin-top: 2px;
}
.bundle-trigger:hover .bundle-tooltip,
.bundle-trigger:focus .bundle-tooltip,
.bundle-trigger:focus-within .bundle-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.bundle-tags {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.bundle-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(199, 163, 90, 0.15);
  color: var(--gold-deep);
}
.bundle-pricing {
  text-align: right;
  flex-shrink: 0;
}
.bundle-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.bundle-price-was {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-decoration: line-through;
  margin-top: 2px;
}
.bundle-ribbon {
  align-self: center;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: -22px;
  margin-top: 2px;
  position: relative;
  z-index: 2;
  width: fit-content;
}
.ribbon-popular { background: var(--ink); color: var(--cream-soft); }
.ribbon-best { background: var(--gold); color: var(--ink); }
@media (max-width: 480px) {
  .bundle-card { grid-template-columns: 52px 1fr auto; gap: 12px; padding: 12px; }
  .bundle-thumb { width: 52px; height: 52px; }
  .bundle-name { font-size: 0.92rem; }
  .bundle-desc { font-size: 0.72rem; }
  .bundle-tag { font-size: 0.58rem; padding: 2px 6px; }
  .bundle-price { font-size: 0.95rem; }
}

.shade-block {
  background: var(--cream-soft);
  border: var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 16px;
}
.shade-block .label {
  font-size: 0.7rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.shade-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.shade {
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.82rem;
  text-align: center;
  cursor: pointer;
  background: var(--cream);
  transition: all 0.2s ease;
}
.shade .swatch {
  display: block;
  width: 100%;
  height: 24px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.shade.active { border-color: var(--gold); background: var(--champagne); }
.shade:hover { border-color: var(--gold); }
.shade-light .swatch { background: linear-gradient(135deg, #E8C8A0, #D6A57A); }
.shade-medium .swatch { background: linear-gradient(135deg, #C9925E, #A87044); }
.shade-deep .swatch { background: linear-gradient(135deg, #8B5A33, #5A3621); }

.pdp-cta {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}
.pdp-cta .price {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0;
}
.pdp-cta .price s { font-family: var(--font-body); font-size: 1.05rem; }

.unlock-banner {
  background: var(--champagne);
  border: var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.85rem;
  text-align: center;
  color: var(--ink-soft);
}
.unlock-banner strong { color: var(--gold-deep); }

.icons-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  text-align: center;
}
.icon-item {
  border: var(--border);
  border-radius: var(--radius);
  padding: 16px 10px;
  background: var(--cream-soft);
}
.icon-item .ic {
  font-size: 1.4rem; color: var(--gold-deep);
  margin-bottom: 6px;
}
.icon-item .t {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}

/* Ingredients section */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ing {
  position: relative;
  aspect-ratio: 1.25;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream-soft);
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform;
}
.ing.in-view {
  opacity: 1;
  transform: translateY(0);
}
.ing::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(28,18,12,0.85));
}
.ing > * { position: relative; z-index: 1; }
.ing h5 { color: var(--cream-soft); font-size: 1.05rem; margin: 0 0 4px; font-family: var(--font-display); hyphens: none; word-break: normal; overflow-wrap: normal; }
.ing p { color: rgba(247, 239, 224, 0.8); font-size: 0.82rem; margin: 0; hyphens: none; word-break: normal; overflow-wrap: break-word; }
.ing-1 { background: linear-gradient(155deg, var(--terracotta), var(--ink-soft)); }
.ing-2 { background: linear-gradient(155deg, var(--sage), #5a6a4f); }
.ing-3 { background: linear-gradient(155deg, var(--gold-soft), var(--gold-deep)); }
.ing-4 { background: linear-gradient(155deg, var(--coral), var(--terracotta)); }
.ing-5 { background: linear-gradient(155deg, var(--rose), var(--plum)); }
.ing-6 { background: linear-gradient(155deg, var(--sand), var(--gold)); }
.ing-7 { background: linear-gradient(155deg, var(--sky), #5a7686); }
.ing-8 { background: linear-gradient(155deg, var(--gold-soft), var(--terracotta)); }

.feature-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

/* ============================================================
   FAQ — PDP accordion
   ============================================================ */
.faq-section {
  background: linear-gradient(180deg, #e8d6b8 0%, #c8ad84 100%);
  position: relative;
}
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(247, 239, 224, 0.35), transparent 60%);
  pointer-events: none;
}
.faq-section .container { position: relative; z-index: 1; }
.faq-section .section-head { text-align: center; margin-bottom: 36px; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(199, 163, 90, 0.28);
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform;
}
.faq-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
.faq-item:first-child {
  border-top: 1px solid rgba(199, 163, 90, 0.28);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--gold-deep);
  font-weight: 300;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 4px 24px;
  max-width: 660px;
}
.faq-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.faq-body p:last-child { margin-bottom: 0; }
.faq-body ul {
  margin: 8px 0 0;
  padding: 0 0 0 18px;
  list-style: none;
}
.faq-body ul li {
  position: relative;
  padding-left: 14px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.faq-body ul li::before {
  content: "✦";
  position: absolute;
  left: -4px;
  top: 0;
  color: var(--gold-deep);
  font-size: 0.7rem;
}
.faq-body ul li:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .faq-item summary { font-size: 1.15rem; padding: 22px 4px; gap: 16px; }
  .faq-body p { font-size: 0.95rem; }
  .faq-body ul li { font-size: 0.95rem; }
  .faq-icon { width: 28px; height: 28px; font-size: 1.4rem; }
}

.feature-pair .ing { aspect-ratio: 2.2; }
.feature-pair .ing h5 { font-size: 1.4rem; }

/* Delivery panel */
.delivery {
  background: var(--cream-soft);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.delivery h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.delivery .panel {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 14px;
}
.delivery .panel .head {
  font-size: 0.78rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.delivery-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.delivery-rows div {
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.88rem;
}
.delivery-rows div small {
  display: block;
  color: var(--ink-muted);
  font-size: 0.75rem;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-hero {
  background: var(--champagne);
  padding: 90px 0 70px;
  text-align: center;
  border-bottom: var(--border);
}
.blog-hero h1 em { font-style: italic; color: var(--gold-deep); }
.blog-hero p { max-width: 580px; margin: 16px auto 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--cream-soft);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.blog-img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(247, 239, 224, 0.85);
  letter-spacing: 0.1em;
}
.blog-img.b1 { background: linear-gradient(155deg, var(--coral), var(--terracotta)); }
.blog-img.b2 { background: linear-gradient(155deg, var(--sand), var(--gold)); }
.blog-img.b3 { background: linear-gradient(155deg, var(--rose), var(--plum)); }
.blog-img.b4 { background: linear-gradient(155deg, var(--sage), var(--ink-soft)); }
.blog-img.b5 { background: linear-gradient(155deg, var(--sky), var(--terracotta)); }
.blog-img.b6 { background: linear-gradient(155deg, var(--gold-soft), var(--terracotta)); }

.blog-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-size: 0.68rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 10px;
  line-height: 1.2;
}
.blog-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.blog-meta {
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(168, 133, 63, 0.18);
  padding-top: 14px;
}
.blog-meta a { color: var(--gold-deep); }

.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
  background: var(--cream-soft);
}
.featured-post .blog-img { aspect-ratio: auto; min-height: 460px; font-size: 2rem; }
.featured-post .blog-body { padding: 50px; justify-content: center; }
.featured-post h3 { font-size: 2rem; }

/* Blog topics list */
.topics {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.topic {
  border: var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.78rem;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  background: var(--cream-soft);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.topic:hover, .topic.active { border-color: var(--gold); background: var(--champagne); color: var(--ink); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 28px; }
  .pdp-grid { grid-template-columns: 1fr; gap: 30px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-post { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .statement { padding: 50px 32px; grid-template-columns: 1fr; }
  .proof-row { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 900px) {
  .hamburger { display: inline-flex; }
  .nav-left { display: none; }
  .nav { grid-template-columns: auto 1fr auto; padding: 14px 18px; }
  .nav-right { gap: 8px; }
  .nav-right .cart-pill { display: none; }
  .nav-right .icon-btn { width: 36px; height: 36px; }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .prod-grid, .blog-grid, .reviews { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; gap: 14px; }
  .ing { aspect-ratio: 1.7 / 1; padding: 20px; }
  .ing h5 { font-size: 1.15rem; }
  .ing p { font-size: 0.88rem; line-height: 1.45; }
  .pdp-bullets { gap: 5px; margin-bottom: 16px; }
  .pdp-bullets li { font-size: 0.82rem; gap: 8px; line-height: 1.3; }
  .compare { padding: 28px 18px; }
  .compare th { font-size: 1.2rem; }
  .delivery-rows { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .brand { font-size: 1.5rem; }
  .brand small { font-size: 0.42rem; letter-spacing: 0.36em; }
}

/* ============================================================
   SMART CART DRAWER (Rebuy-style)
   ============================================================ */
.cart-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(28, 18, 12, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 9000;
  backdrop-filter: blur(2px);
}
.cart-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 460px;
  max-width: 100vw;
  background: var(--cream-soft);
  z-index: 9001;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(28, 18, 12, 0.25);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-inner { display: flex; flex-direction: column; height: 100%; }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px 18px;
  border-bottom: 1px solid rgba(199, 163, 90, 0.25);
}
.cart-drawer-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.cart-drawer-count {
  display: inline-block;
  margin-left: 4px;
  color: var(--gold-deep);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.cart-drawer-close {
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
  padding: 4px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.cart-drawer-close:hover { background: rgba(199, 163, 90, 0.15); }
.cart-shipping {
  padding: 16px 26px 14px;
  background: var(--cream);
  border-bottom: 1px solid rgba(199, 163, 90, 0.18);
}
.cart-shipping:empty { display: none; }
.cart-shipping-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.cart-shipping-label strong { color: var(--ink); font-weight: 700; }
.cart-shipping-track {
  height: 6px;
  background: rgba(199, 163, 90, 0.18);
  border-radius: 999px;
  overflow: hidden;
}
.cart-shipping-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep));
  transition: width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-scroll { flex: 1; overflow-y: auto; padding: 0 26px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty-icon { font-size: 2rem; color: var(--gold-deep); margin-bottom: 14px; }
.cart-empty h4 {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--ink); margin: 0 0 10px; font-weight: 500;
}
.cart-empty p { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 22px; }
.cart-items { padding: 18px 0 4px; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(199, 163, 90, 0.18);
  position: relative;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-thumb {
  width: 72px; height: 88px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(199, 163, 90, 0.2);
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 500; color: var(--ink); margin-bottom: 2px;
}
.cart-item-desc { font-size: 0.74rem; color: var(--ink-muted); margin-bottom: 10px; line-height: 1.4; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cart-item-price { font-size: 0.95rem; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.cart-qty {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(199, 163, 90, 0.45);
  border-radius: 999px;
  background: var(--cream);
  overflow: hidden;
}
.cart-qty-btn {
  width: 28px; height: 28px;
  font-size: 0.95rem; color: var(--ink);
  background: none;
  transition: background 0.2s ease;
}
.cart-qty-btn:hover { background: rgba(199, 163, 90, 0.18); }
.cart-qty-num { min-width: 24px; text-align: center; font-size: 0.85rem; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--ink); }
.cart-item-remove {
  position: absolute; top: 14px; right: 0;
  width: 24px; height: 24px;
  font-size: 1.1rem; line-height: 1;
  color: var(--ink-muted);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.cart-item-remove:hover { color: var(--ink); background: rgba(199, 163, 90, 0.15); }
.cart-crosssell { padding: 22px 0 16px; }
.cart-crosssell:empty { display: none; }
.cart-crosssell-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.cart-crosssell-head h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); margin: 0; font-weight: 500; }
.cart-crosssell-head span { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.cart-crosssell-list { display: flex; flex-direction: column; gap: 10px; }
.cart-crosssell-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--cream);
  border: 1px solid rgba(199, 163, 90, 0.25);
  border-radius: 12px;
}
.cart-crosssell-thumb { width: 56px; height: 64px; border-radius: 8px; overflow: hidden; background: var(--champagne); }
.cart-crosssell-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-crosssell-name { font-family: var(--font-display); font-size: 0.92rem; font-weight: 500; color: var(--ink); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.cart-crosssell-badge { font-family: var(--font-body); font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--ink); background: var(--gold); padding: 2px 7px; border-radius: 999px; }
.cart-crosssell-desc { font-size: 0.7rem; color: var(--ink-muted); margin: 2px 0 4px; }
.cart-crosssell-price { font-size: 0.82rem; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.cart-crosssell-price s { color: var(--ink-muted); font-weight: 400; margin-left: 6px; }
.cart-crosssell-add {
  align-self: stretch;
  padding: 8px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.cart-crosssell-add:hover { background: var(--gold); color: var(--ink); }
.cart-discount { padding: 14px 0 22px; }
.cart-discount details {
  background: var(--cream);
  border: 1px solid rgba(199, 163, 90, 0.25);
  border-radius: 10px;
}
.cart-discount summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.cart-discount summary::-webkit-details-marker { display: none; }
.cart-discount-toggle { font-size: 1.1rem; color: var(--gold-deep); transition: transform 0.25s ease; font-weight: 300; }
.cart-discount details[open] .cart-discount-toggle { transform: rotate(45deg); }
.cart-discount-form { display: flex; gap: 8px; padding: 0 14px 14px; }
.cart-discount-form input {
  flex: 1; padding: 10px 14px;
  border: 1px solid rgba(199, 163, 90, 0.4);
  border-radius: 999px;
  background: var(--cream-soft);
  font-family: var(--font-body);
  font-size: 0.85rem; color: var(--ink);
}
.cart-discount-form button {
  padding: 10px 18px;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: var(--cream-soft); background: var(--ink); border-radius: 999px;
  transition: background 0.2s ease;
}
.cart-discount-form button:hover { background: var(--gold-deep); }
.cart-drawer-foot {
  padding: 18px 26px 24px;
  border-top: 1px solid rgba(199, 163, 90, 0.25);
  background: var(--cream-soft);
}
.cart-drawer-foot:empty { display: none; }
.cart-subtotal-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.cart-subtotal-row span { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); font-weight: 700; }
.cart-subtotal-row strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.cart-subtotal-note { font-size: 0.7rem; color: var(--ink-muted); margin-bottom: 14px; }
.cart-checkout-btn { font-size: 0.85rem !important; font-weight: 700 !important; letter-spacing: 0.14em !important; }
.cart-continue {
  display: block; margin: 12px auto 0;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: var(--ink-muted);
  text-decoration: underline; text-underline-offset: 4px;
  transition: color 0.2s ease;
}
.cart-continue:hover { color: var(--ink); }
.icon-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold-deep);
  color: var(--cream-soft);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 540px) {
  .cart-drawer { width: 100vw; }
  .cart-drawer-head, .cart-shipping, .cart-scroll, .cart-drawer-foot { padding-left: 18px; padding-right: 18px; }
}

/* ============================================================
   CHECKOUT PAGE — Shopify-style two-column layout
   ============================================================ */
.checkout-body { background: var(--cream); min-height: 100vh; }
.checkout-header {
  border-bottom: 1px solid rgba(199, 163, 90, 0.25);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: var(--cream-soft);
}
.checkout-header .brand {
  font-size: 1.6rem;
  justify-self: center;
  white-space: nowrap;
}
.checkout-header .brand small { font-size: 0.48rem; }
.checkout-back {
  justify-self: start;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: var(--ink-muted);
  transition: color 0.2s ease;
}
.checkout-back:hover { color: var(--gold-deep); }
.checkout-trust {
  justify-self: end;
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.checkout-trust .lock { color: var(--gold-deep); }
.checkout-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  padding: 50px 40px;
}
.checkout-form-col { padding-right: 20px; }
.checkout-summary-col {
  background: var(--cream-soft);
  border: 1px solid rgba(199, 163, 90, 0.22);
  border-radius: 16px;
  padding: 32px 32px 28px;
  align-self: start;
  position: sticky;
  top: 30px;
}
.checkout-section { margin-bottom: 36px; }
.checkout-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.checkout-section-head h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); margin: 0; font-weight: 500; }
.checkout-section-head a { font-size: 0.75rem; color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.checkout-express { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.checkout-express button {
  height: 50px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: opacity 0.2s ease;
}
.checkout-express button:hover { opacity: 0.88; }
.express-shoppay { background: #5a31f4; color: #fff; }
.express-applepay { background: #000; color: #fff; }
.express-gpay { background: #fff; color: #3c4043; border: 1px solid rgba(0, 0, 0, 0.15); }
.checkout-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 28px 0 22px;
  color: var(--ink-muted);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}
.checkout-divider::before,
.checkout-divider::after { content: ""; flex: 1; height: 1px; background: rgba(199, 163, 90, 0.3); }
.checkout-field { display: block; margin-bottom: 14px; }
.checkout-field label {
  display: block;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 700;
  margin-bottom: 6px;
}
.checkout-field input,
.checkout-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(199, 163, 90, 0.35);
  border-radius: 8px;
  background: var(--cream-soft);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.checkout-field input:focus,
.checkout-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 163, 90, 0.18);
}
.checkout-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout-field-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; }
.checkout-checkbox {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 8px 0 4px;
}
.checkout-checkbox input { width: auto; margin: 0; }
.shipping-options { display: flex; flex-direction: column; gap: 8px; }
.shipping-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgba(199, 163, 90, 0.35);
  border-radius: 10px;
  background: var(--cream-soft);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.shipping-option:has(input:checked) {
  border-color: var(--gold);
  background: var(--champagne);
  box-shadow: 0 0 0 2px rgba(199, 163, 90, 0.2);
}
.shipping-option-label { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--ink); }
.shipping-option-label input { width: 18px; height: 18px; accent-color: var(--gold-deep); }
.shipping-option-label small { display: block; color: var(--ink-muted); font-size: 0.74rem; margin-top: 2px; }
.shipping-option-price { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.summary-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 16px;
  display: block;
}
.summary-items {
  display: flex; flex-direction: column;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(199, 163, 90, 0.25);
  margin-bottom: 18px;
}
.summary-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center; }
.summary-item-thumb {
  position: relative;
  width: 56px; height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(199, 163, 90, 0.25);
}
.summary-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.summary-item-thumb .qty-bubble {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--ink); color: var(--cream-soft);
  font-size: 0.66rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--cream-soft);
}
.summary-item-name { font-family: var(--font-display); font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.summary-item-desc { font-size: 0.72rem; color: var(--ink-muted); margin-top: 2px; }
.summary-item-price { font-size: 0.92rem; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.summary-promo { display: flex; gap: 8px; margin-bottom: 18px; }
.summary-promo input {
  flex: 1; padding: 12px 14px;
  border: 1px solid rgba(199, 163, 90, 0.35);
  border-radius: 8px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem; color: var(--ink);
}
.summary-promo button {
  padding: 12px 20px;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: var(--ink); background: var(--cream);
  border: 1px solid rgba(199, 163, 90, 0.45);
  border-radius: 8px;
  transition: background 0.2s ease;
}
.summary-promo button:hover { background: var(--champagne); }
.summary-totals {
  padding: 14px 0;
  border-top: 1px solid rgba(199, 163, 90, 0.25);
  border-bottom: 1px solid rgba(199, 163, 90, 0.25);
  margin-bottom: 14px;
}
.summary-row { display: flex; align-items: baseline; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; color: var(--ink-soft); }
.summary-row span:first-child { color: var(--ink-muted); }
.summary-row strong { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.summary-total-row {
  font-family: var(--font-display);
  font-size: 1.5rem !important;
  padding-top: 14px !important;
  margin-top: 6px !important;
  border-top: 1px solid rgba(199, 163, 90, 0.25);
}
.summary-total-row span { color: var(--ink) !important; font-weight: 500; letter-spacing: 0.04em; }
.summary-total-row strong { font-size: 1.7rem; }
.checkout-pay-btn { width: 100%; font-size: 0.95rem !important; font-weight: 700 !important; letter-spacing: 0.14em !important; margin-top: 20px; }
.checkout-fineprint { font-size: 0.7rem; color: var(--ink-muted); text-align: center; margin-top: 16px; line-height: 1.5; }
.checkout-fineprint a { color: var(--gold-deep); text-decoration: underline; }
.checkout-empty {
  max-width: 420px;
  margin: 80px auto;
  text-align: center;
  padding: 50px 30px;
  background: var(--cream-soft);
  border: 1px solid rgba(199, 163, 90, 0.25);
  border-radius: 16px;
}
.checkout-empty h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--ink); margin: 0 0 12px; font-weight: 500; }
.checkout-empty h2 em { font-style: italic; color: var(--gold-deep); }
.checkout-footer {
  border-top: 1px solid rgba(199, 163, 90, 0.22);
  padding: 22px 28px;
  text-align: center;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 600;
}
.checkout-footer a { color: var(--gold-deep); margin: 0 10px; }
@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 30px; padding: 30px 20px; }
  .checkout-summary-col { position: static; order: -1; padding: 24px 22px; }
  .checkout-form-col { padding-right: 0; }
  .checkout-header { padding: 18px 18px; gap: 12px; }
  .checkout-header .brand { font-size: 1.3rem; }
  .checkout-back { font-size: 0.66rem; letter-spacing: 0.12em; }
  .checkout-trust { display: none; }
  .checkout-header { grid-template-columns: 1fr auto 1fr; }
  .checkout-express { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL PAGES — shipping/returns, privacy, terms
   ============================================================ */
.legal-hero {
  padding: 70px 0 28px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 12px 0 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.legal-hero h1 em { font-style: italic; color: var(--gold-deep); }
.legal-hero .updated {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.legal-hero .lead {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}
.legal-toc {
  max-width: 760px;
  margin: 36px auto 56px;
  background: var(--cream-soft);
  border: 1px solid rgba(199, 163, 90, 0.25);
  border-radius: 12px;
  padding: 24px 28px;
}
.legal-toc h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 14px;
  font-weight: 700;
}
.legal-toc ol {
  padding: 0; margin: 0;
  list-style: none;
  columns: 2;
  column-gap: 30px;
}
.legal-toc li {
  margin-bottom: 6px;
  font-size: 0.88rem;
  break-inside: avoid;
}
.legal-toc a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.legal-toc a:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }
.legal-content {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 90px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 50px 0 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  scroll-margin-top: 100px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h2 .num {
  display: inline-block;
  margin-right: 12px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  margin: 26px 0 8px;
  font-weight: 500;
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul,
.legal-content ol { padding-left: 22px; margin: 0 0 16px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--ink); }
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content .placeholder {
  background: rgba(199, 163, 90, 0.18);
  color: var(--ink);
  padding: 1px 7px;
  border-radius: 4px;
  font-style: italic;
  font-weight: 600;
  font-size: 0.9em;
}
.legal-content hr {
  border: none;
  border-top: 1px solid rgba(199, 163, 90, 0.25);
  margin: 50px 0;
}
.legal-contact-card {
  background: var(--cream-soft);
  border: 1px solid rgba(199, 163, 90, 0.3);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
}
.legal-contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 500;
}
.legal-contact-card p { margin: 0; font-size: 0.95rem; }
@media (max-width: 640px) {
  .legal-toc ol { columns: 1; }
  .legal-content h2 { font-size: 1.3rem; }
}
