/* ============================================
   RESET & ROOT
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #faf6f0;
  --bg-tint: #f4ede1;
  --bg-card: rgba(255, 255, 255, 0.55);
  --bg-card-solid: #ffffff;
  --bg-dark: #1a0f06;
  --bg-dark-card: rgba(255, 255, 255, 0.04);
  --border: rgba(228, 88, 4, 0.12);
  --border-strong: rgba(228, 88, 4, 0.22);
  --border-light: rgba(255, 255, 255, 0.12);
  --text: #1a0f06;
  --text-dim: #6b5443;
  --text-mute: #a89886;
  --text-light: #f4ede1;
  --orange: #e45804;
  --orange-bright: #ff7728;
  --orange-deep: #b34203;
  --orange-dark: #6b2701;
  --orange-tint: rgba(228, 88, 4, 0.14);
  --orange-soft: rgba(228, 88, 4, 0.07);
  --cream: #ffe4cc;
  --gradient: linear-gradient(135deg, #6b2701 0%, #e45804 50%, #ff7728 100%);
  --serif: 'Funnel Display', 'Inter', sans-serif;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 32px;
  --container: 1240px;
  --container-narrow: 820px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv01";
  position: relative;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

em {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.01em;
}

/* ============================================
   ANIMATED BACKGROUND STAGE
   (fixed, full-viewport, behind everything)
============================================ */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-gradient {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(228, 88, 4, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 119, 40, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(255, 228, 204, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 90%, rgba(107, 39, 1, 0.18) 0%, transparent 55%);
  animation: drift 28s ease-in-out infinite alternate;
  filter: blur(40px);
  opacity: 0.85;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(3%, -2%) scale(1.06); }
  66%  { transform: translate(-2%, 3%) scale(0.96); }
  100% { transform: translate(2%, 1%) scale(1.04); }
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: normal;
  opacity: 0.7;
  will-change: transform;
}

.bg-orb-1 {
  width: 720px;
  height: 720px;
  left: -180px;
  top: -120px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  animation: orb1 26s ease-in-out infinite alternate;
}

.bg-orb-2 {
  width: 640px;
  height: 640px;
  right: -160px;
  top: 8%;
  background: radial-gradient(circle, var(--orange-bright) 0%, transparent 70%);
  animation: orb2 32s ease-in-out infinite alternate;
}

.bg-orb-3 {
  width: 580px;
  height: 580px;
  left: 25%;
  bottom: -200px;
  background: radial-gradient(circle, var(--orange-deep) 0%, transparent 70%);
  animation: orb3 38s ease-in-out infinite alternate;
  opacity: 0.4;
}

@keyframes orb1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(20px, 30px) scale(1.04); }
  100% { transform: translate(-15px, 50px) scale(0.98); }
}

@keyframes orb2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-25px, 40px) scale(1.05); }
  100% { transform: translate(15px, -20px) scale(0.99); }
}

@keyframes orb3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -25px) scale(1.03); }
  100% { transform: translate(-30px, 20px) scale(1.02); }
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================
   LAYOUT
============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 140px 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, #0c0c0e 0%, #16161a 100%);
  color: var(--text-light);
  border-radius: 32px;
  margin: 0 16px;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 119, 40, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(107, 39, 1, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: #a8a8a3;
}

.section-tint {
  background: linear-gradient(180deg, transparent 0%, var(--bg-tint) 30%, var(--bg-tint) 70%, transparent 100%);
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 72px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 8px 24px rgba(0, 0, 0, 0.04);
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #c4c4be;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}

h1 {
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 18px;
  text-shadow:
    0 0 30px rgba(255, 228, 204, 0.85),
    0 0 60px rgba(255, 228, 204, 0.55),
    0 2px 1px rgba(255, 255, 255, 0.4);
}

h1 em {
  color: var(--orange);
  text-shadow:
    0 0 30px rgba(255, 119, 40, 0.4),
    0 0 60px rgba(255, 119, 40, 0.25);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  margin-bottom: 18px;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.section-statement {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.25;
  color: var(--text);
  text-align: center;
  max-width: 920px;
  margin: 0 auto 80px;
  letter-spacing: -0.02em;
}

/* ============================================
   LIQUID GLASS SYSTEM
============================================ */
.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 0 0 1px rgba(0, 0, 0, 0.03),
    0 20px 50px -20px rgba(0, 0, 0, 0.12);
}

.glass-dark {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 50px -20px rgba(0, 0, 0, 0.5);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.005em;
  position: relative;
  overflow: hidden;
}

.btn-sm {
  padding: 11px 18px;
  font-size: 13px;
}

.btn-lg {
  padding: 18px 32px;
  font-size: 15px;
}

.btn-gradient {
  color: #fff;
  background: linear-gradient(135deg, #6b2701 0%, #e45804 50%, #ff7728 100%);
  background-size: 220% 120%;
  background-position: 0% 50%;
  transition: background-position 1s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  box-shadow: 0 8px 22px -6px rgba(228, 88, 4, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-gradient:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -8px rgba(255, 119, 40, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-arrow {
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-arrow {
  transform: translateX(3px) rotate(-2deg);
}

.btn-dark {
  background: var(--bg-dark);
  color: #fff;
}

.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.btn-light {
  background: #fff;
  color: var(--text);
}

.btn-light:hover {
  background: var(--bg-tint);
  transform: translateY(-1px);
}

/* ============================================
   FLOATING LIQUID GLASS NAV
============================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 20px;
  pointer-events: none;
  transition: padding 0.4s var(--ease-out);
}

.nav-logo-only {
  top: 24px;
  left: 24px;
  right: auto;
  padding: 0;
}

.nav-logo-only .brand {
  pointer-events: auto;
  display: inline-flex;
}

.nav-logo-only .kor-logo {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(28, 12, 0, 0.15));
}

@media (max-width: 600px) {
  .nav-logo-only {
    top: 18px;
    left: 18px;
  }
  .nav-logo-only .kor-logo {
    width: 72px;
  }
}

.nav-pill {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 22px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(40px) saturate(220%);
  -webkit-backdrop-filter: blur(40px) saturate(220%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(255, 255, 255, 0.2) inset,
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 20px 50px -18px rgba(107, 39, 1, 0.15);
  pointer-events: auto;
  gap: 24px;
  transition: all 0.4s var(--ease-out);
}

.nav-scrolled .nav-pill {
  padding: 8px 12px 8px 20px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 24px 48px -14px rgba(0, 0, 0, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 13px;
  color: var(--orange);
  flex-shrink: 0;
  transition: color 0.3s var(--ease-out);
}

.brand:hover {
  color: var(--orange-bright);
}

.kor-logo {
  display: block;
  height: auto;
  width: 80px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .kor-logo { width: 64px; }
}

.brand-icon {
  color: var(--text);
}

.footer .kor-logo {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 450;
  color: var(--text-dim);
  letter-spacing: -0.005em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 800px) {
  .nav-links {
    display: none;
  }
}

/* ============================================
   HERO
============================================ */
.hero {
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 30%;
}

@media (max-width: 900px) {
  .hero {
    padding: 120px 0 80px;
  }
}

/* Decorative layer (rings + mouse-trail) fades out smoothly at the bottom.
   Mask only applies to this wrapper — text/buttons in .hero-inner stay crisp. */
.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}

.hero-decoration .mouse-trail {
  position: absolute;
  inset: 0;
  pointer-events: auto;
}

/* Make sure interactive content sits above the decorative layer */
.hero-inner {
  z-index: 4 !important;
}

/* Next section stays below the faded hero edge — no peeking through */
.hero + .section,
.hero + section {
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 1280px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-ctas {
  justify-content: center;
}

/* === Asymmetric split hero composition === */
.hero-split {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "tl bottle br"
    "bot bot   bot";
  justify-content: center;
  column-gap: 0;
  row-gap: 20px;
  align-items: center;
}

.hero-corner-tl {
  grid-area: tl;
  align-self: start;
  justify-self: end;
  text-align: left;
  margin-top: 30px;
  margin-right: -60px;
  z-index: 2;
  position: relative;
}

.hero-corner-br {
  grid-area: br;
  align-self: end;
  justify-self: start;
  text-align: right;
  margin-bottom: 30px;
  margin-left: -60px;
  z-index: 2;
  position: relative;
}

.hero-bottle {
  grid-area: bottle;
  position: relative;
  justify-self: center;
  align-self: center;
  width: 360px;
  aspect-ratio: 1;
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 1;
  flex-shrink: 0;
}

.hero-bottle::before {
  content: '';
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(circle at 50% 55%, rgba(228, 88, 4, 0.5) 0%, transparent 55%),
    radial-gradient(circle at 50% 70%, rgba(107, 39, 1, 0.3) 0%, transparent 65%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: vialPulse 4.5s ease-in-out infinite alternate;
}

.hero-bottle::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 56%;
  height: 12%;
  background: radial-gradient(ellipse, rgba(28, 12, 0, 0.5) 0%, transparent 70%);
  filter: blur(20px);
  transform: translateX(-50%);
  z-index: 0;
}

.hero-bottle .hero-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  filter:
    drop-shadow(0 22px 30px rgba(28, 12, 0, 0.45))
    drop-shadow(0 6px 14px rgba(228, 88, 4, 0.32))
    drop-shadow(0 2px 4px rgba(28, 12, 0, 0.3));
}

.hero-bottom {
  grid-area: bot;
  text-align: center;
  margin-top: 32px;
}

/* Typography for the split text — matches the KOR logo font */
.hero-line {
  font-family: 'Funnel Display', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: lowercase;
  color: var(--text);
  text-shadow:
    0 0 28px rgba(255, 228, 204, 0.7),
    0 2px 1px rgba(255, 255, 255, 0.3);
}

.hero-line-sm {
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  letter-spacing: -0.015em;
  font-weight: 700;
}

.hero-line-lg {
  font-size: clamp(3.5rem, 8vw, 8rem);
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-top: 4px;
}

.hero-accent {
  color: var(--orange);
  text-shadow:
    0 0 30px rgba(228, 88, 4, 0.45),
    0 0 60px rgba(228, 88, 4, 0.22),
    0 2px 1px rgba(255, 255, 255, 0.2);
}

/* Mobile fallback — stack vertically, drop the asymmetric grid */
@media (max-width: 800px) {
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "tl"
      "bottle"
      "br"
      "bot";
    text-align: center;
    column-gap: 0;
    row-gap: 12px;
    min-height: auto;
  }
  .hero-corner-tl,
  .hero-corner-br {
    justify-self: center;
    text-align: center;
  }
  .hero-bottle {
    max-width: 220px;
    transform: rotate(-8deg);
  }
}

/* Soft outer halo */
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: -4%;
  background:
    radial-gradient(circle at 50% 55%, rgba(228, 88, 4, 0.4) 0%, transparent 55%),
    radial-gradient(circle at 50% 70%, rgba(107, 39, 1, 0.22) 0%, transparent 65%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
  animation: vialPulse 4.5s ease-in-out infinite alternate;
}

/* Tight contact shadow under the bottle */
.hero-video-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 52%;
  height: 10%;
  background: radial-gradient(ellipse, rgba(28, 12, 0, 0.4) 0%, transparent 70%);
  filter: blur(16px);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

@keyframes vialPulse {
  0%   { transform: scale(0.96); opacity: 0.55; }
  100% { transform: scale(1.05); opacity: 0.85; }
}

.hero-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  /* Drop shadow follows the actual vial silhouette via the alpha channel */
  filter:
    drop-shadow(0 16px 20px rgba(28, 12, 0, 0.32))
    drop-shadow(0 4px 10px rgba(228, 88, 4, 0.22))
    drop-shadow(0 1px 4px rgba(28, 12, 0, 0.22));
}

.hero-sub {
  text-shadow: 0 0 24px rgba(255, 228, 204, 0.6);
}

.hero-tag {
  text-shadow: 0 0 18px rgba(255, 228, 204, 0.5);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 600px at var(--mx) var(--my), rgba(255, 119, 40, 0.22) 0%, transparent 50%);
  pointer-events: none;
  transition: background 0.6s var(--ease-out);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  margin-bottom: 32px;
}

.hero-sub {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.hero-tag {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .hero-ctas .btn { flex: 1; min-width: 160px; }
}

/* === ROTATING RING ARCS (visible motion via partial border) === */
.ring {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
  will-change: transform;
}

.ring-pink {
  width: 900px;
  height: 900px;
  top: -300px;
  left: 50%;
  margin-left: -450px;
  border: 12px solid #fff;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  filter: blur(2px);
  opacity: 0.6;
  animation: ringSpin 60s linear infinite;
}

.ring-pink-glow {
  width: 900px;
  height: 900px;
  top: -300px;
  left: 50%;
  margin-left: -450px;
  border: 22px solid rgba(255, 119, 40, 0.4);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  filter: blur(24px);
  animation: ringSpin 60s linear infinite;
}

.ring-green {
  width: 1200px;
  height: 1200px;
  bottom: -700px;
  left: 50%;
  margin-left: -600px;
  border: 12px solid #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  filter: blur(2px);
  opacity: 0.5;
  animation: ringSpinReverse 80s linear infinite;
}

.ring-green-glow {
  width: 1200px;
  height: 1200px;
  bottom: -700px;
  left: 50%;
  margin-left: -600px;
  border: 22px solid rgba(255, 228, 204, 0.5);
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  filter: blur(24px);
  animation: ringSpinReverse 80s linear infinite;
}

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes ringSpinReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* === AVATAR CAROUSEL === */
.avatar-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 30px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.avatar-track {
  display: flex;
  gap: 24px;
  animation: scroll 32s linear infinite;
  width: max-content;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(28, 12, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 3px solid #fff;
  transition: transform 0.4s var(--ease-out);
  overflow: hidden;
  background: var(--bg-tint);
}

.avatar:hover {
  transform: scale(1.12) rotate(-3deg);
}

/* Vial-as-avatar (special slot in the carousel) */
.avatar-vial {
  background: linear-gradient(135deg, #2a1408 0%, #6b2701 100%);
  border-color: var(--orange);
  box-shadow:
    0 10px 30px rgba(228, 88, 4, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.avatar-vial video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .avatar {
    width: 72px;
    height: 72px;
  }
  .avatar-track {
    gap: 18px;
  }
}

/* ============================================
   REVEAL ANIMATIONS (scroll-triggered)
============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
  filter: blur(6px);
  will-change: transform, opacity;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Variants */
[data-reveal-type="left"] {
  transform: translateX(-60px);
}
[data-reveal-type="left"].revealed {
  transform: translateX(0);
}

[data-reveal-type="right"] {
  transform: translateX(60px);
}
[data-reveal-type="right"].revealed {
  transform: translateX(0);
}

[data-reveal-type="scale"] {
  transform: scale(0.85);
}
[data-reveal-type="scale"].revealed {
  transform: scale(1);
}

/* ============================================
   VALUE GRID (4-col)
============================================ */
.value-section {
  padding: 120px 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1000px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
}

.value-card {
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.5s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(228, 88, 4, 0.22),
    0 30px 70px -20px rgba(228, 88, 4, 0.3);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--text);
  transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.value-card:hover .value-icon {
  transform: rotate(-6deg) scale(1.05);
  background: linear-gradient(135deg, #fff 0%, rgba(255, 119, 40, 0.18) 100%);
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.value-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}

/* ============================================
   PROCESS (3-STEP, dark)
============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr; }
}

.process-step {
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.5s var(--ease-out);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 119, 40, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.step-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
  transition: transform 0.4s var(--ease-out);
}

.process-step:hover .step-icon {
  transform: rotate(-8deg) scale(1.05);
}

.process-step h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.process-step p {
  color: #a8a8a3;
  font-size: 14px;
  line-height: 1.6;
}

.media-frame {
  border-radius: var(--radius-lg);
  padding: 60px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.media-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 119, 40, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(107, 39, 1, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ============================================
   PROGRAMS
============================================ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 800px) {
  .program-grid { grid-template-columns: 1fr; }
}

.program-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(228, 88, 4, 0.25),
    0 36px 80px -24px rgba(228, 88, 4, 0.35);
}

.program-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e45804 0%, #6b2701 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  transition: transform 0.6s var(--ease-out);
}

.program-card:hover .program-image {
  transform: scale(1.05);
}

.program-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.15) 0%, transparent 60%);
}

.program-image-alt {
  background: linear-gradient(135deg, #ff7728 0%, #b34203 100%);
}
.program-image-c {
  background: linear-gradient(135deg, #b34203 0%, #6b2701 100%);
}
.program-image-d {
  background: linear-gradient(135deg, #ffe4cc 0%, #e45804 100%);
  color: rgba(107, 39, 1, 0.6);
}

.program-body {
  padding: 32px 30px 34px;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
  font-weight: 500;
}

.program-tag svg {
  color: var(--text);
}

.program-card h3 {
  font-size: 1.625rem;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.program-card p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.55;
}

.program-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  position: relative;
  display: inline-block;
  transition: padding 0.3s var(--ease-out);
}

.program-link:hover {
  padding-right: 8px;
}

/* ============================================
   WHAT SETS US APART
============================================ */
.apart-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1000px) {
  .apart-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .apart-grid { grid-template-columns: 1fr; }
}

.apart-card {
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all 0.5s var(--ease-out);
}

.apart-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.apart-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--text);
  transition: transform 0.4s var(--ease-out);
}

.apart-card:hover .apart-icon {
  transform: rotate(-6deg) scale(1.05);
}

.apart-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.apart-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}

/* ============================================
   FAQ
============================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.75);
}

.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease-out);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 26px 24px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================
   CTA BAND
============================================ */
.cta-band {
  padding: 160px 28px;
  text-align: center;
  background: linear-gradient(180deg, #0c0c0e 0%, #1a1a20 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  margin: 0 16px 60px;
}

.cta-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ring-pink-cta {
  width: 800px;
  height: 800px;
  top: -400px;
  left: 50%;
  transform: translateX(-50%);
  border: 14px solid rgba(255, 119, 40, 0.55);
  border-bottom-color: transparent;
  filter: blur(20px);
  animation: ringSpin 50s linear infinite;
}

.ring-green-cta {
  width: 1000px;
  height: 1000px;
  bottom: -700px;
  left: 50%;
  transform: translateX(-50%);
  border: 14px solid rgba(255, 228, 204, 0.4);
  border-top-color: transparent;
  filter: blur(24px);
  animation: ringSpinReverse 70s linear infinite;
}

.cta-band > .container {
  position: relative;
  z-index: 2;
}

.cta-band .eyebrow {
  margin-bottom: 24px;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 18px;
}

.cta-band p {
  color: #a8a8a3;
  font-size: 1.0625rem;
  margin-bottom: 36px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  padding: 80px 0 32px;
  background: rgba(246, 244, 239, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-tag {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.5;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 600px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

.footer-col p {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-col a {
  color: var(--text-dim);
}

.footer-col a:hover {
  color: var(--text);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  padding: 28px 0;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  margin-top: -1px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.trust-item svg {
  color: var(--text);
}

.footer-bottom {
  text-align: center;
}

.disclaimer {
  font-size: 12px;
  color: var(--text-mute);
  max-width: 720px;
  margin: 0 auto 18px;
  line-height: 1.6;
}

.disclaimer strong {
  color: var(--text-dim);
}

.footer-copy {
  color: var(--text-mute);
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* ============================================
   AVATAR CAROUSEL — IMAGE VARIANT
============================================ */
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.avatar-photo {
  background: var(--cream);
  padding: 0;
}

/* ============================================
   MOUSE TRAIL (hero images following cursor)
============================================ */
.mouse-trail {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.trail-img {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 28px;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6) rotate(var(--rot, 0deg));
  transform-origin: center;
  animation: trailPulse 1.4s var(--ease-out) forwards;
  box-shadow:
    0 20px 60px -10px rgba(107, 39, 1, 0.4),
    0 4px 16px -2px rgba(228, 88, 4, 0.3),
    inset 0 0 0 3px rgba(255, 255, 255, 0.6);
  will-change: transform, opacity;
}

@keyframes trailPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4) rotate(var(--rot, 0deg));
    filter: blur(8px);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05) rotate(var(--rot, 0deg));
    filter: blur(0);
  }
  45% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(var(--rot, 0deg));
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85) translateY(20px) rotate(var(--rot, 0deg));
    filter: blur(6px);
  }
}

@media (max-width: 700px) {
  .trail-img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
  }
}

/* ============================================
   QUIZ — self-prescribe flow
============================================ */
.quiz-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.quiz-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 36px 28px;
  border-radius: var(--radius-lg);
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  .quiz-card { padding: 28px 22px 22px; }
}

.quiz-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

.quiz-dot {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--border-strong);
  transition: all 0.3s var(--ease-out);
}

.quiz-dot.done {
  background: var(--orange);
}

.quiz-dot.active {
  background: var(--orange);
  width: 48px;
  box-shadow: 0 0 0 3px rgba(255, 119, 40, 0.18);
}

.quiz-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out), filter 0.32s var(--ease-out);
  will-change: opacity, transform;
}

.quiz-step.exiting {
  opacity: 0;
  transform: translateY(-14px) scale(0.985);
  filter: blur(3px);
  pointer-events: none;
}

.quiz-step.entering {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  filter: blur(3px);
}

/* Stagger the option buttons on entry for a polished feel */
.quiz-step .quiz-option {
  animation: quizOptIn 0.45s var(--ease-out) backwards;
}

.quiz-step .quiz-option:nth-child(1) { animation-delay: 0.06s; }
.quiz-step .quiz-option:nth-child(2) { animation-delay: 0.10s; }
.quiz-step .quiz-option:nth-child(3) { animation-delay: 0.14s; }
.quiz-step .quiz-option:nth-child(4) { animation-delay: 0.18s; }
.quiz-step .quiz-option:nth-child(5) { animation-delay: 0.22s; }
.quiz-step .quiz-option:nth-child(6) { animation-delay: 0.26s; }

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

/* Click feedback — picked option flashes orange briefly */
.quiz-option.picked {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
  transform: scale(1.04) !important;
  box-shadow: 0 14px 30px -8px rgba(228, 88, 4, 0.5) !important;
}

.quiz-option.picked .quiz-opt-icon {
  background: #fff !important;
  color: var(--orange) !important;
  border-color: #fff !important;
}

.quiz-q-num {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 12px;
}

.quiz-q-title {
  font-family: var(--serif);
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
}

.quiz-q-sub {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 24px;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 600px) {
  .quiz-options { grid-template-columns: repeat(2, 1fr); }
}

.quiz-option {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 16px;
  cursor: pointer;
  font-family: inherit;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.25s var(--ease-out);
  text-align: center;
}

.quiz-option:hover {
  background: #fff;
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -10px rgba(228, 88, 4, 0.3);
}

.quiz-opt-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: all 0.3s var(--ease-out);
}

.quiz-option:hover .quiz-opt-icon {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 10px 20px -6px rgba(228, 88, 4, 0.5);
}

.quiz-opt-label {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.quiz-back:hover {
  background: var(--bg-card-solid);
  transform: translateX(-2px);
}

.quiz-skip {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: underline;
  margin-left: auto;
}

.quiz-skip:hover { color: var(--text); }

/* === Results view === */
.results-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto 32px;
  width: 100%;
}

.result-card {
  flex: 1 1 0;
  max-width: 420px;
  min-width: 280px;
  width: 100%;
}

/* When only one card, give it a tighter max so it doesn't stretch the row */
.results-cards .result-card:only-child {
  flex: 0 1 460px;
  max-width: 460px;
}

.shop-view-results {
  text-align: center;
}

.results-empty {
  text-align: center;
  padding: 80px 24px;
  max-width: 480px;
  margin: 0 auto;
}

.results-empty p {
  font-size: 1.125rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.5;
}

.shop-view-results .section-head {
  margin-bottom: 48px;
}

/* Tighter section padding when on the results view so the whole composition feels centered */
.section-shop:has(.shop-view-results:not([hidden])) {
  padding: 80px 0 80px;
}

@media (max-width: 900px) {
  .results-cards { gap: 14px; }
  .result-card { min-width: 240px; }
}

.result-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(0, 0, 0, 0.03),
    0 24px 50px -22px rgba(0, 0, 0, 0.1);
}

.result-pick {
  border-color: var(--orange);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 2px var(--orange),
    0 30px 60px -20px rgba(255, 119, 40, 0.4);
}

.result-pick-badge {
  position: absolute;
  top: -12px;
  left: 22px;
  background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 16px -4px rgba(228, 88, 4, 0.5);
}

.result-cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.result-name {
  font-family: var(--serif);
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 4px;
  font-weight: 500;
}

.result-dose {
  font-size: 1rem;
  color: var(--text-dim);
  font-family: var(--serif);
  font-weight: 500;
}

.result-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
  flex: 1;
}

.result-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-tint);
  border-radius: 10px;
  margin-top: 4px;
}

.result-items li {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.result-items span {
  color: var(--text-dim);
  font-weight: 400;
  font-size: 12px;
}

.result-price-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.result-price-row > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.result-strike {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

.result-add {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.result-bundle {
  background: linear-gradient(135deg, rgba(255, 228, 204, 0.7) 0%, rgba(255, 119, 40, 0.12) 100%);
}

.results-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8px;
}

/* ============================================
   BENEFIT TILES (default shop view) — kept for compatibility
============================================ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1000px) {
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .benefit-grid { grid-template-columns: 1fr; }
}

.benefit-tile {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 30px 22px 26px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.4s var(--ease-out);
  font-family: inherit;
  color: var(--text);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(0, 0, 0, 0.03),
    0 20px 50px -20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 88, 4, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(228, 88, 4, 0.3),
    0 30px 70px -20px rgba(228, 88, 4, 0.35);
}

.benefit-tile:active {
  transform: translateY(-2px) scale(0.99);
}

.benefit-emoji {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 14px;
  display: inline-block;
}

.benefit-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.benefit-blurb {
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.4;
  margin-top: 4px;
  margin-bottom: 14px;
  flex: 1;
}

.benefit-count {
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
  margin-top: auto;
}

.benefit-tile-all {
  background: linear-gradient(135deg, rgba(228, 88, 4, 0.18) 0%, rgba(255, 228, 204, 0.6) 100%);
  border-color: rgba(228, 88, 4, 0.3);
}

.benefit-tile-all .benefit-name {
  color: var(--orange-deep);
}

/* === Category back-button bar === */
.shop-back-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.shop-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.shop-back:hover {
  background: #fff;
  border-color: var(--border-strong);
  transform: translateX(-2px);
}

.shop-current-cat {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.shop-cat-head {
  margin-bottom: 40px;
}

.shop-cat-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

/* ============================================
   SHOP SECTION — vertically centered on its own page
   (used by shop.html / quiz.html / results.html where the section IS the main content)
============================================ */
.section-shop {
  padding: 100px 0 80px;
  scroll-margin-top: 80px;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-shop > .container {
  width: 100%;
}

@media (max-width: 700px) {
  .section-shop { padding: 80px 0 60px; }
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.0625rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

.section-sub-dark {
  color: #a8a8a3;
}

/* ============================================
   SHOP — product grid + cards
============================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1100px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .shop-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.4s var(--ease-out);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 0 0 1px rgba(0, 0, 0, 0.03),
    0 20px 50px -20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* Product photo at the top of every card (shop + result) */
.product-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffb37a 0%, #e45804 60%, #b34203 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover .product-photo,
.result-card:hover .product-photo {
  transform: scale(1.02);
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(28, 12, 0, 0.25));
}

/* Fallback (SVG vial graphic) for products without a photo */
.product-photo-placeholder svg {
  width: 50%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(28, 12, 0, 0.25));
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 88, 4, 0.3);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(228, 88, 4, 0.25),
    0 30px 70px -20px rgba(228, 88, 4, 0.3);
}

.product-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.product-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 600;
  background: var(--orange-soft);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--orange-tint);
}

.product-name {
  font-family: var(--serif);
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 4px;
}

.product-dose {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.product-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
  flex: 1;
  min-height: 40px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}

.product-price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--orange);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.product-price-unit {
  font-size: 12px;
  color: var(--text-mute);
  font-family: inherit;
  letter-spacing: 0.02em;
}

.product-add {
  margin-top: 4px;
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-dark);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s var(--ease-out);
  letter-spacing: -0.005em;
}

.product-add:hover {
  background: linear-gradient(135deg, #6b2701 0%, #e45804 50%, #ff7728 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(228, 88, 4, 0.5);
}

.product-add svg {
  transition: transform 0.3s var(--ease-out);
}

.product-add:hover svg {
  transform: rotate(180deg) scale(1.1);
}

/* "Added" state flash */
.product-add.added {
  background: #1ba843;
  transform: scale(1.04);
}

.product-add.added::before {
  content: '✓ Added';
}

.product-add.added .add-label,
.product-add.added .add-icon {
  display: none;
}

/* ============================================
   BUNDLES — stacked-protocol cards
============================================ */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1000px) {
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .bundle-grid { grid-template-columns: 1fr; }
}

.bundle-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.bundle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 119, 40, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 90% 100%, rgba(107, 39, 1, 0.2) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0.8;
}

.bundle-card > * { position: relative; z-index: 1; }

.bundle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 119, 40, 0.4);
  box-shadow: 0 30px 70px -20px rgba(255, 119, 40, 0.35);
}

.bundle-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.bundle-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bundle-card .product-cat {
  background: rgba(255, 119, 40, 0.18);
  color: #ffd9bf;
  border-color: rgba(255, 119, 40, 0.35);
}

.bundle-save-pill {
  background: linear-gradient(135deg, #ff7728 0%, #e45804 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 14px -4px rgba(255, 119, 40, 0.55);
  flex-shrink: 0;
}

.bundle-name {
  font-family: var(--serif);
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 4px;
}

.bundle-tagline {
  color: #ffd9bf;
  font-style: normal;
  font-weight: 500;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.4;
}

.bundle-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bundle-items li {
  font-size: 13.5px;
  color: #d8d4cc;
}

.bundle-items strong {
  color: #fff;
  font-weight: 600;
}

.bundle-why {
  font-size: 13px;
  color: #a8a8a3;
  line-height: 1.55;
}

.bundle-why strong {
  color: #ffd9bf;
  font-weight: 600;
}

.bundle-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
}

.bundle-price {
  font-family: var(--serif);
  font-size: 2.25rem;
  color: #ffd9bf;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.bundle-retail {
  font-size: 11.5px;
  color: #888;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.bundle-add {
  flex-shrink: 0;
  width: auto;
  margin-top: 0;
  padding: 12px 18px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
}

.bundle-add:hover {
  background: linear-gradient(135deg, #6b2701 0%, #e45804 50%, #ff7728 100%);
  color: #fff;
}

/* ============================================
   CART PAIRS (recommended add-ons)
============================================ */
.cart-pairs {
  margin: 16px 0 4px;
  padding: 16px 14px 14px;
  background: rgba(228, 88, 4, 0.06);
  border: 1px solid var(--orange-tint);
  border-radius: 14px;
}

.cart-pairs-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding: 0 4px;
}

.cart-pairs-head h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin: 0;
}

.cart-pairs-note {
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.cart-pairs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (max-width: 480px) {
  .cart-pairs-grid { grid-template-columns: 1fr; }
}

.pair-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px 10px;
  text-align: left;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.2s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.pair-card:hover {
  border-color: var(--orange);
  background: linear-gradient(135deg, #fff 0%, rgba(255, 228, 204, 0.5) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(228, 88, 4, 0.3);
}

.pair-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.pair-cats .product-cat {
  font-size: 9px;
  padding: 2px 6px;
  letter-spacing: 0.08em;
}

.pair-name {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.2;
}

.pair-meta {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.pair-meta strong {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 14px;
}

.pair-add-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--orange-tint);
  transition: all 0.2s var(--ease-out);
  margin-top: auto;
}

.pair-card:hover .pair-add-btn {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* ============================================
   CART SAVED INDICATOR
============================================ */
.cart-saved {
  text-align: center;
  font-size: 13px;
  color: var(--orange-deep);
  font-weight: 600;
  margin-top: 16px;
  padding: 8px 14px;
  background: var(--orange-soft);
  border-radius: 999px;
  border: 1px solid var(--orange-tint);
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s var(--ease-out);
}

.cart-saved.visible {
  opacity: 1;
  height: auto;
  padding: 8px 14px;
}

.cart-item-bundle {
  background: linear-gradient(135deg, rgba(255, 119, 40, 0.08) 0%, rgba(255, 228, 204, 0.4) 100%) !important;
  border-color: rgba(228, 88, 4, 0.2) !important;
}

.bundle-tag-mini {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: var(--orange-soft);
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  border: 1px solid var(--orange-tint);
}

/* ============================================
   FLOATING CART FAB
============================================ */
.cart-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: var(--bg-dark);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.4s var(--ease-out), background 0.3s var(--ease-out);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 20px 40px -10px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(228, 88, 4, 0.4),
    0 0 30px rgba(255, 119, 40, 0.3);
  letter-spacing: -0.005em;
}

.cart-fab.visible {
  transform: translateY(0);
  opacity: 1;
}

.cart-fab:hover {
  background: linear-gradient(135deg, #6b2701 0%, #e45804 50%, #ff7728 100%);
  transform: translateY(-2px);
}

.cart-fab-count {
  background: var(--orange);
  color: #fff;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  padding: 0 6px;
  margin-left: 4px;
}

.cart-fab-total {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--orange-bright);
  margin-left: 4px;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* ============================================
   ORDER PREVIEW + SUCCESS STATE
============================================ */
.cart-preview {
  margin: 14px 0 6px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.cart-preview summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  user-select: none;
  transition: color 0.2s var(--ease-out);
}

.cart-preview summary::-webkit-details-marker { display: none; }
.cart-preview summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  font-size: 16px;
  color: var(--orange);
}

.cart-preview[open] summary::after { content: '−'; }

.cart-preview summary:hover { color: var(--text); }

.cart-preview pre {
  margin: 0;
  padding: 0 16px 14px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
}

/* XL button — primary CTA in cart */
.btn-xl {
  padding: 20px 28px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  gap: 12px;
}

/* Success state shown after sending */
.cart-success {
  text-align: left;
  padding: 20px 18px;
  background: rgba(228, 88, 4, 0.06);
  border: 1px solid var(--orange-tint);
  border-radius: 14px;
  margin-top: 14px;
  animation: cartSuccessIn 0.4s var(--ease-out);
}

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

.cart-success-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1ba843;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cart-success h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text);
  margin-bottom: 12px;
}

.cart-success ol {
  list-style: none;
  counter-reset: stp;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-success ol li {
  counter-increment: stp;
  font-size: 13.5px;
  color: var(--text-dim);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.cart-success ol li::before {
  content: counter(stp);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-success ol li strong {
  color: var(--orange-deep);
  font-weight: 700;
}

#cartCopyAgain {
  margin-top: 4px;
}

/* ============================================
   SHIPPING ADDRESS FORM (inside cart modal)
============================================ */
.ship-form {
  margin: 14px 0 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.ship-form.shake {
  animation: shake 0.5s var(--ease-out);
  border-color: var(--orange) !important;
  background: rgba(228, 88, 4, 0.08);
}

.ship-form h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.ship-form input,
.ship-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  font-family: inherit;
  font-size: 13.5px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.ship-form input::placeholder { color: var(--text-mute); }

.ship-form input:focus,
.ship-form select:focus {
  border-color: var(--orange);
  background: #fff;
}

.ship-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b5443' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}

.ship-row {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.8fr;
  gap: 8px;
}

@media (max-width: 480px) {
  .ship-row { grid-template-columns: 1fr 1fr; }
  .ship-row input:last-child { grid-column: span 2; }
}

.ship-state-warning {
  margin: 4px 0 0;
  padding: 10px 12px;
  background: rgba(228, 88, 4, 0.1);
  border: 1px solid rgba(228, 88, 4, 0.25);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.45;
}

.ship-note {
  margin: 2px 0 0;
  font-size: 11.5px;
  color: var(--text-mute);
  letter-spacing: 0.01em;
}

/* Footer "Ships to US addresses only" line */
.footer-ships-us {
  margin-top: 6px;
  font-size: 12px;
  color: var(--orange-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* "Why Venmo / Zelle?" subtle expandable inside success state */
.why-venmo {
  margin: 4px 0 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  font-size: 12.5px;
}

.why-venmo summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  font-weight: 500;
  color: var(--text-dim);
  user-select: none;
  transition: color 0.2s var(--ease-out);
}

.why-venmo summary::-webkit-details-marker { display: none; }
.why-venmo summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  color: var(--orange);
}
.why-venmo[open] summary::after { content: '−'; }
.why-venmo summary:hover { color: var(--text); }

.why-venmo p {
  margin: 0;
  padding: 0 14px 12px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ============================================
   CART HOW-TO (3-step preview before send)
============================================ */
.cart-howto {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 16px 0 4px;
}

.cart-howto-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
}

.cart-howto-step span {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
}

.cart-howto-step strong {
  color: var(--orange-deep);
  font-weight: 700;
}

/* Bump animation when items added */
.cart-fab.bump {
  animation: cartBump 0.5s var(--ease-out);
}

@keyframes cartBump {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.06); }
}

/* ============================================
   CART MODAL
============================================ */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cart-modal.open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.cart-modal.open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: var(--bg);
  border-radius: 28px 28px 0 0;
  padding: 0;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 -20px 60px rgba(20, 10, 5, 0.25);
  overflow: hidden;
}

.cart-panel-head {
  padding: 24px 28px 14px;
  flex-shrink: 0;
}

.cart-panel-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 4px 28px 8px;
}

.cart-panel .cart-actions {
  flex-shrink: 0;
  padding: 16px 28px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  box-shadow: 0 -8px 18px -10px rgba(20, 10, 5, 0.08);
}

/* Cart-items no longer needs its own scroll — the panel body handles it */
.cart-items {
  max-height: none !important;
}

/* Global safety: HTML hidden attribute MUST hide, even when CSS specificity competes */
[hidden] { display: none !important; }

@media (min-width: 700px) {
  .cart-modal { align-items: center; }
  .cart-panel {
    border-radius: 28px;
    max-height: 82vh;
    transform: translateY(40px) scale(0.96);
    opacity: 0;
    transition: transform 0.5s var(--ease-out), opacity 0.3s var(--ease-out);
  }
}

.cart-modal.open .cart-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.cart-panel-head h3 {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.cart-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease-out);
}

.cart-close:hover {
  background: var(--bg-tint);
  border-color: var(--border-strong);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 40vh;
  margin: 0 -6px;
  padding: 0 6px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cart-item-info {
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.cart-item-meta {
  font-size: 12px;
  color: var(--text-dim);
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.cart-qty button {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s var(--ease-out);
}

.cart-qty button:hover {
  background: var(--orange-soft);
}

.cart-qty-num {
  min-width: 26px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.cart-item-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: 500;
  min-width: 60px;
  text-align: right;
}

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-mute);
}

.cart-empty p {
  font-size: 14px;
  max-width: 240px;
}

.cart-modal.empty .cart-empty { display: flex; }
.cart-modal.empty .cart-items,
.cart-modal.empty .cart-notes-block,
.cart-modal.empty .cart-total-row,
.cart-modal.empty .cart-actions { display: none; }

.cart-notes-block {
  margin-top: 18px;
}

.cart-notes-block label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.cart-notes-block textarea {
  width: 100%;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.cart-notes-block textarea:focus {
  border-color: var(--orange);
  background: #fff;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 20px 0 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cart-total-amt {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--orange);
  font-weight: 500;
}

.cart-actions { text-align: center; }

.btn-full { width: 100%; }

.cart-venmo-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
}

.cart-venmo-note strong { color: var(--orange-deep); }

/* ============================================
   TOAST
============================================ */
.toast {
  position: fixed;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--bg-dark);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-out);
  z-index: 300;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(228, 88, 4, 0.3);
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================
   RESEARCH-USE-ONLY BANNER (top, persistent)
============================================ */
.ruo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: linear-gradient(135deg, #2a1408 0%, #1a0f06 100%);
  color: #ffd9bf;
  font-size: 12px;
  letter-spacing: 0.01em;
  font-weight: 500;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 119, 40, 0.25);
}

.ruo-banner svg {
  color: var(--orange-bright);
  flex-shrink: 0;
}

.ruo-banner strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .ruo-banner {
    font-size: 11px;
    padding: 7px 14px;
  }
  .ruo-banner svg { display: none; }
}

/* Push nav (and everything fixed top) down to clear the banner */
.nav { top: 48px; }

@media (max-width: 600px) {
  .nav { top: 42px; }
}

/* ============================================
   AGE / RESEARCH VERIFICATION GATE
============================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.age-gate.open {
  opacity: 1;
  pointer-events: auto;
}

.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 0, 0.88);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.age-gate-panel {
  position: relative;
  max-width: 560px;
  width: calc(100% - 32px);
  background: var(--bg);
  border-radius: 28px;
  padding: 36px 38px 32px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 0 0 1px rgba(228, 88, 4, 0.18),
    0 40px 100px rgba(0, 0, 0, 0.5);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.5s var(--ease-out);
  max-height: 92vh;
  overflow-y: auto;
}

.age-gate.open .age-gate-panel {
  transform: scale(1) translateY(0);
}

.age-gate-logo {
  width: 90px;
  height: auto;
  margin-bottom: 18px;
}

.age-gate-panel .eyebrow {
  margin-bottom: 16px;
}

.age-gate-panel h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.age-gate-lede {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.age-gate-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 18px 20px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-tint);
  border-radius: 14px;
}

.age-gate-list li {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
  padding-left: 24px;
  position: relative;
}

.age-gate-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.55;
}

/* The 'strong' tags inside list items are KOR brand emphasis — don't let
   them break line flow like flex items did. They flow inline naturally now. */
.age-gate-list li strong {
  color: var(--orange-deep);
  font-weight: 700;
  white-space: normal;
}

.age-gate-list strong {
  color: var(--orange-deep);
}

.age-gate-list a {
  color: var(--orange-deep);
  text-decoration: underline;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.age-gate-leave {
  font-size: 12.5px;
  color: var(--text-mute);
  text-decoration: underline;
}

.age-gate-leave:hover {
  color: var(--text-dim);
}

.age-gate-fine {
  font-size: 11px;
  color: var(--text-mute);
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ============================================
   PRODUCT CARD — research-only label
============================================ */
.product-card::after {
  content: 'RUO';
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  background: rgba(0, 0, 0, 0.04);
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* ============================================
   CART DISCLAIMER CHECKBOX
============================================ */
.cart-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 4px;
  padding: 14px 16px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-tint);
  border-radius: 12px;
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.cart-disclaimer:hover {
  border-color: rgba(228, 88, 4, 0.35);
}

.cart-disclaimer input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.cart-disclaimer strong {
  color: var(--orange-deep);
  font-weight: 700;
}

.cart-disclaimer.shake {
  animation: shake 0.5s var(--ease-out);
  border-color: var(--orange) !important;
  background: rgba(255, 119, 40, 0.12);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* ============================================
   DISCLAIMERS BAND (before footer)
============================================ */
.disclaimers-band {
  padding: 140px 0 80px;
  /* Fade from transparent at the top into the tint — gives a soft handoff from the hero */
  background: linear-gradient(180deg, transparent 0%, rgba(244, 237, 225, 0) 0%, var(--bg-tint) 140px, var(--bg-tint) 100%);
  border-top: none;
  border-bottom: 1px solid var(--border);
  position: relative;
  margin-top: -120px;
  z-index: 1;
}

/* The first section after the hero gets a top fade so the boundary dissolves */
.hero + .section,
.hero + .disclaimers-band {
  margin-top: -120px;
  padding-top: 160px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 80px, var(--bg) 100%);
}

.hero + .disclaimers-band {
  background: linear-gradient(180deg, transparent 0%, rgba(244, 237, 225, 0) 60px, var(--bg-tint) 160px, var(--bg-tint) 100%);
}

.disclaimers-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.disclaimers-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.disclaimers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .disclaimers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .disclaimers-grid { grid-template-columns: 1fr; }
}

.disclaimer-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disclaimer-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-tint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-deep);
  margin-bottom: 6px;
}

.disclaimer-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0;
}

.disclaimer-card p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
}

.disclaimer-card p strong {
  color: var(--text);
  font-weight: 600;
}

.disclaimer-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 1080px;
  margin: 0 auto;
}

.disclaimer-block p strong {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.disclaimer-block a {
  color: var(--orange-deep);
  text-decoration: underline;
}

/* ============================================
   PREFERS REDUCED MOTION
============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ============================================
   MOBILE OPTIMIZATION REFINEMENTS
   Final overrides — must come after all other rules
============================================ */
@media (max-width: 600px) {
  /* Compact the persistent banner so it doesn't eat half the viewport */
  .ruo-banner {
    line-height: 1.3;
    padding: 6px 12px;
  }

  /* Push the fixed logo nav clearly below the (now compact) banner */
  .nav-logo-only { top: 80px; }

  /* Hero: fit within a portrait phone viewport */
  .hero { padding: 112px 0 40px; }
  .hero-split { row-gap: 6px; }
  .hero-bottle { max-width: 190px; }
  .hero-bottom { margin-top: 12px; }
  .hero-tag { margin-bottom: 14px; }
  .hero-ctas { gap: 10px; flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }

  /* Inner pages (shop/quiz/results): push content below the fixed logo so the
     back-pill doesn't collide with it */
  .section-shop,
  .section-shop:has(.shop-view-results:not([hidden])) { padding-top: 132px; }

  /* Keep the floating cart FAB from hiding bottom-of-page content */
  body { padding-bottom: 96px; }

  /* Slim the FAB on mobile so it eats less screen */
  .cart-fab {
    bottom: 16px;
    right: 16px;
    left: 16px;
    justify-content: center;
    padding: 12px 18px;
  }
}

@media (max-width: 380px) {
  /* The very smallest phones (320–380px): tighten further */
  .hero { padding: 108px 0 32px; }
  .hero-bottle { max-width: 160px; }
  .hero-line-lg { font-size: clamp(2.4rem, 13vw, 3.6rem); }
  .hero-line-sm { font-size: clamp(2rem, 9vw, 3rem); }
}

/* ===================================================== */
/* OUT OF STOCK                                          */
/* ===================================================== */
.product-add.oos-btn {
  background: #e7ded2;
  color: #968b7a;
  border-color: transparent;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}
.product-add.oos-btn .add-label { letter-spacing: 0.02em; }

#oosOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#oosOverlay.open { display: flex; }
#oosOverlay .oos-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 4, 0.62);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
#oosOverlay .oos-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 384px;
  background: #faf6f0;
  border-radius: 22px;
  padding: 34px 28px 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  animation: oosPop 0.24s ease;
}
@keyframes oosPop {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
#oosOverlay .oos-icon { font-size: 42px; line-height: 1; margin-bottom: 10px; }
#oosOverlay h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: #1a0f06;
}
#oosOverlay .oos-msg {
  margin: 0 0 24px;
  font-size: 15.5px;
  line-height: 1.5;
  color: #5b5043;
}
#oosOverlay .oos-close {
  appearance: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #e45804 0%, #ff7728 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(228, 88, 4, 0.35);
  transition: filter 0.15s ease, transform 0.15s ease;
}
#oosOverlay .oos-close:hover { filter: brightness(1.05); transform: translateY(-1px); }
