/** Shopify CDN: Minification failed

Line 534:0 Unexpected "}"

**/
/* ============================================
   WILD VEIL — VEIL MIDNIGHT STYLESHEET
   Cosmic apothecary aesthetic · Shopify-ready
   ============================================ */

:root {
  --ink: #0d0820;
  --deep: #1a0f33;
  --deepest: #080414;
  --violet: #3d2566;
  --orchid: #6b4a96;
  --gold: #e8c074;
  --gold-deep: #b8924a;
  --gold-bright: #f5d896;
  --cream: #f4ecd6;
  --cream-soft: #d4c8a8;
  --lilac: #b794d4;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --shadow-glow: 0 0 60px rgba(232, 192, 116, 0.25);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--deepest);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.01em;
  /* OS cursor restored — no custom cursor */
}
::selection { background: var(--gold); color: var(--deepest); }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { cursor: pointer; }

/* ============== ATMOSPHERE ============== */
.aurora {
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(61, 37, 102, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(107, 74, 150, 0.4) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 50% 80%, rgba(26, 15, 51, 0.7) 0%, transparent 70%),
    radial-gradient(ellipse 90% 60% at 30% 60%, rgba(183, 148, 212, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #080414 0%, #1a0f33 40%, #080414 100%);
  animation: auroraDrift 30s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  0% { transform: scale(1); filter: hue-rotate(0deg); }
  100% { transform: scale(1.12) translateY(-3%); filter: hue-rotate(15deg); }
}
#sparkleCanvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ============== NAV ============== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(180deg, rgba(8, 4, 20, 0.85), rgba(8, 4, 20, 0.2));
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(232, 192, 116, 0.1);
  transition: padding 0.3s ease;
}
nav.scrolled { padding: 0.9rem 4rem; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.4em;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.nav-logo svg { color: var(--gold); filter: drop-shadow(0 0 8px rgba(232, 192, 116, 0.5)); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-soft);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -6px; left: 50%;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transition: width 0.4s, left 0.4s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-cta {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--deepest);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  padding: 0.7rem 1.6rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(184, 146, 74, 0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245, 216, 150, 0.5); }

/* Nav cart icon (in header bar) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-cart {
  position: relative;
  background: transparent;
  border: 1px solid rgba(232, 192, 116, 0.35);
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.nav-cart:hover {
  border-color: var(--gold-bright);
  background: rgba(245, 216, 150, 0.08);
  color: var(--gold-bright);
  transform: translateY(-2px);
}
.nav-cart svg {
  width: 20px;
  height: 20px;
}
.nav-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0 6px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--deepest);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--deepest);
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(184, 146, 74, 0.4);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-cart-count.empty {
  display: none;
}
.nav-cart-count.bump {
  animation: countBump 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 900px) {
  .nav-cart { width: 38px; height: 38px; }
  .nav-cart svg { width: 18px; height: 18px; }
  .nav-actions { gap: 0.6rem; }
}
@media (max-width: 1100px) { .nav-links { gap: 1.6rem; } }
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
}

/* ============== TYPOGRAPHY ============== */
.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center { display: flex; justify-content: center; }
.eyebrow.center::after {
  content: '';
  width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: 0;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--cream), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
section { position: relative; }

/* ============== BUTTONS ============== */
.btn-primary, .btn-secondary {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-primary {
  color: var(--deepest);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 4px 30px rgba(184, 146, 74, 0.35);
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(245, 216, 150, 0.5); }
.btn-primary:hover::before { left: 100%; }
.btn-primary:disabled { opacity: 0.6; cursor: wait; transform: none; }
.btn-secondary {
  color: var(--cream);
  background: transparent;
  font-weight: 400;
  border: 1px solid rgba(232, 192, 116, 0.4);
}
.btn-secondary:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(245, 216, 150, 0.05);
  transform: translateY(-2px);
}

/* ============== HERO ============== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 9rem 4rem 4rem;
  gap: 2rem;
  position: relative;
}
.hero-text { position: relative; z-index: 3; }
.hero-eyebrow-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(245, 216, 150, 0.4);
  margin-bottom: 0.5rem;
  display: block;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream-soft);
  margin-bottom: 1.5rem;
  max-width: 480px;
  line-height: 1.5;
}
.hero-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
.hero-divider .line { height: 1px; width: 60px; background: linear-gradient(90deg, var(--gold-bright), transparent); }
.hero-divider .line.left { background: linear-gradient(90deg, transparent, var(--gold-bright)); }
.hero-divider .ornament { color: var(--gold-bright); font-size: 0.7rem; text-shadow: 0 0 10px var(--gold-bright); }
.hero-description {
  font-size: 1rem;
  color: var(--cream-soft);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ============== MEDIA STAGE — CINEMATIC PRODUCT DISPLAY ============== */
.bottle-stage {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
/* stage rim light — soft volumetric beam from above */
.bottle-stage::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse 60% 80% at 50% 30%,
    rgba(245, 216, 150, 0.08) 0%,
    rgba(183, 148, 212, 0.05) 30%,
    transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  animation: stageGlow 8s ease-in-out infinite alternate;
}
/* floor reflection — soft gold ambient pool */
.bottle-stage::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 360px;
  height: 70px;
  background: radial-gradient(ellipse,
    rgba(232, 192, 116, 0.22) 0%,
    rgba(183, 148, 212, 0.1) 40%,
    transparent 75%);
  filter: blur(30px);
  pointer-events: none;
  animation: floorBreath 8s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes stageGlow {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}
@keyframes floorBreath {
  from { opacity: 0.7; transform: translateX(-50%) scale(0.9); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.15); }
}

/* orbit ring container — sits behind/around the product, slowly turning */
.media-orbit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  perspective: 2400px;
  perspective-origin: 50% 50%;
}
.orbit-ring {
  position: absolute;
  width: 75%;
  max-width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  border: 1px dashed rgba(232, 192, 116, 0.25);
}
.orbit-ring.r1 {
  animation: orbitX 60s linear infinite;
  border-color: rgba(245, 216, 150, 0.3);
  border-width: 1px;
  border-style: dashed;
}
.orbit-ring.r2 {
  width: 60%;
  max-width: 380px;
  border: 1px solid rgba(183, 148, 212, 0.18);
  animation: orbitY 50s linear infinite reverse;
  transform: rotateX(72deg);
}
.orbit-ring.r3 {
  width: 90%;
  max-width: 540px;
  border: 1px dotted rgba(232, 192, 116, 0.2);
  animation: orbitX 90s linear infinite reverse;
  transform: rotateX(15deg);
}
.orbit-ring.r1::before, .orbit-ring.r1::after {
  content: '✦';
  position: absolute;
  color: var(--gold-bright);
  font-size: 0.9rem;
  text-shadow: 0 0 12px var(--gold-bright);
}
.orbit-ring.r1::before { top: -8px; left: 50%; transform: translateX(-50%); }
.orbit-ring.r1::after { bottom: -8px; left: 50%; transform: translateX(-50%); }

/* media frame — the floating "product display" */
.media-frame {
  position: relative;
  width: 80%;
  max-width: 420px;
  aspect-ratio: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: mediaFloat 10s ease-in-out infinite, mediaBreath 13s ease-in-out infinite;
}

/* the product image — uses PNG with baked-in radial alpha mask */
.media-video,
.media-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  border-radius: 6px;
  filter:
    drop-shadow(0 40px 60px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 80px rgba(183, 148, 212, 0.4))
    drop-shadow(0 0 30px rgba(232, 192, 116, 0.15));
}

/* the radial glow halo behind the media */
.media-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(ellipse 55% 50% at 50% 50%,
    rgba(183, 148, 212, 0.5) 0%,
    rgba(232, 192, 116, 0.15) 35%,
    rgba(61, 37, 102, 0.2) 55%,
    transparent 75%);
  filter: blur(55px);
  animation: glowPulse 5s ease-in-out infinite alternate;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

/* ground shadow under the media */
.media-shadow {
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 26px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.85), transparent 70%);
  filter: blur(20px);
  animation: shadowPulse 10s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

/* therapeutic floating — gentle vertical drift with micro-tilt */
@keyframes mediaFloat {
  0%, 100% { transform: translateY(0) rotateZ(0deg); }
  50%      { transform: translateY(-22px) rotateZ(0.6deg); }
}
@keyframes mediaBreath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}
@keyframes glowPulse {
  0%   { opacity: 0.55; transform: scale(0.92); }
  100% { opacity: 1;    transform: scale(1.12); }
}
@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scaleX(1);    opacity: 0.85; }
  50%      { transform: translateX(-50%) scaleX(0.7);  opacity: 0.5; }
}
@keyframes orbitX {
  from { transform: rotateZ(0deg); }
  to { transform: rotateZ(360deg); }
}
@keyframes orbitY {
  from { transform: rotateX(72deg) rotateZ(0deg); }
  to { transform: rotateX(72deg) rotateZ(360deg); }
}
  to { transform: rotateX(72deg) rotateZ(360deg); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.hero-scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold-bright), transparent);
  position: relative;
  overflow: hidden;
  display: block;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; top: -50%;
  width: 100%; height: 50%;
  background: var(--gold-bright);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    text-align: center;
    gap: 3rem;
  }
  .hero-tagline, .hero-description { margin-left: auto; margin-right: auto; }
  .hero-divider { justify-content: center; }
  .hero-actions { justify-content: center; }
  .bottle-stage { height: 60vh; min-height: 450px; }
  .hero-scroll { display: none; }
}

/* ============== MARQUEE ============== */
.marquee {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(232, 192, 116, 0.15);
  border-bottom: 1px solid rgba(232, 192, 116, 0.15);
  background: linear-gradient(90deg, rgba(8, 4, 20, 0.6), rgba(61, 37, 102, 0.2), rgba(8, 4, 20, 0.6));
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marqueeScroll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  color: var(--cream-soft);
  display: flex;
  align-items: center;
  gap: 4rem;
}
.marquee-item::after {
  content: '✦';
  color: var(--gold-bright);
  text-shadow: 0 0 12px var(--gold-bright);
  font-size: 0.7em;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== STORY ============== */
.story {
  padding: 8rem 1.5rem;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}
.story-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.45;
  color: var(--cream);
  max-width: 900px;
  margin: 2.5rem auto;
  position: relative;
}
.story-quote::before, .story-quote::after {
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 4rem;
  line-height: 0;
  vertical-align: -0.4em;
  text-shadow: 0 0 20px rgba(245, 216, 150, 0.4);
}
.story-quote::before { content: '\201C'; margin-right: 0.2em; }
.story-quote::after { content: '\201D'; margin-left: 0.2em; }
.story-author {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 1rem;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
.pillar {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  border: 1px solid rgba(232, 192, 116, 0.15);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(61, 37, 102, 0.18), rgba(8, 4, 20, 0.3));
  backdrop-filter: blur(10px);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0.5;
}
.pillar:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 192, 116, 0.5);
  box-shadow: 0 20px 60px rgba(61, 37, 102, 0.4), var(--shadow-glow);
}
.pillar-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.5rem;
  color: var(--gold-bright);
  filter: drop-shadow(0 0 10px rgba(245, 216, 150, 0.4));
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.pillar p {
  font-size: 0.88rem;
  color: var(--cream-soft);
  line-height: 1.7;
}
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .pillars { grid-template-columns: 1fr; } }

/* ============== WHY (LUXURY COMPARE) ============== */
.why {
  padding: 8rem 1.5rem;
  background: radial-gradient(ellipse at center, rgba(61, 37, 102, 0.2), transparent 70%);
}
.why-header { text-align: center; max-width: 760px; margin: 0 auto 5rem; }
.why-header p { color: var(--cream-soft); margin-top: 1.5rem; font-size: 1.05rem; line-height: 1.7; }
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.compare-col {
  padding: 3rem 2.5rem;
  border-radius: 6px;
  position: relative;
}
.compare-col.drug {
  background: linear-gradient(180deg, rgba(40, 17, 76, 0.2), rgba(8, 4, 20, 0.4));
  border: 1px solid rgba(183, 148, 212, 0.1);
  opacity: 0.85;
}
.compare-col.veil {
  background:
    radial-gradient(circle at top, rgba(232, 192, 116, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(61, 37, 102, 0.4), rgba(40, 17, 76, 0.4));
  border: 1px solid rgba(232, 192, 116, 0.4);
  box-shadow: var(--shadow-glow);
}
.compare-col.veil::before {
  content: 'WILD VEIL';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--deepest);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-weight: 700;
}
.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(245, 216, 150, 0.4);
}
.compare-col h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.compare-col .sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream-soft);
  margin-bottom: 2rem;
  display: block;
}
.compare-col ul { list-style: none; }
.compare-col li {
  font-size: 0.9rem;
  color: var(--cream-soft);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(183, 148, 212, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.55;
}
.compare-col li:last-child { border-bottom: none; }
.compare-col li svg { flex-shrink: 0; margin-top: 4px; }
.compare-col.drug li svg { color: rgba(183, 148, 212, 0.5); }
.compare-col.veil li svg { color: var(--gold-bright); }
@media (max-width: 800px) {
  .compare { grid-template-columns: 1fr; gap: 1.5rem; }
  .compare-divider { padding: 1rem 0; transform: rotate(90deg); }
}

/* ============== COLLECTION ============== */
.collection-intro {
  text-align: center;
  padding: 8rem 1.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}
.collection-intro p {
  color: var(--cream-soft);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

/* ============== SHOWCASE ============== */
.showcase {
  position: relative;
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}
.showcase.reverse { direction: rtl; }
.showcase.reverse > * { direction: ltr; }
.showcase-visual {
  position: relative;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.showcase-visual::before {
  content: '';
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle,
    rgba(107, 74, 150, 0.3) 0%,
    rgba(232, 192, 116, 0.08) 35%,
    transparent 65%);
  filter: blur(70px);
  z-index: -1;
}
.showcase-visual::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%) rotateX(80deg);
  width: 60%;
  max-width: 320px;
  height: 50px;
  background: radial-gradient(ellipse,
    rgba(232, 192, 116, 0.18) 0%,
    rgba(183, 148, 212, 0.06) 30%,
    transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  animation: floorBreath 8s ease-in-out infinite alternate;
}
.showcase-info { position: relative; z-index: 2; }
.showcase-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}
.showcase-num::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.showcase-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(245, 216, 150, 0.3);
  margin-bottom: 0.3rem;
  display: block;
}
.showcase-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: var(--cream);
  letter-spacing: 0.005em;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.showcase-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream-soft);
  margin-bottom: 1.5rem;
}
.showcase-desc {
  font-size: 1rem;
  color: var(--cream-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.benefits {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.5rem;
}
.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--cream-soft);
  line-height: 1.5;
}
.benefits li svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: var(--gold-bright);
  margin-top: 3px;
  filter: drop-shadow(0 0 6px rgba(245, 216, 150, 0.5));
}
@media (max-width: 600px) { .benefits { grid-template-columns: 1fr; } }
.actives {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.active-pill {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(232, 192, 116, 0.25);
  border-radius: 100px;
  color: var(--cream-soft);
  background: rgba(61, 37, 102, 0.2);
  font-weight: 500;
}
.showcase-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(232, 192, 116, 0.15);
  border-bottom: 1px solid rgba(232, 192, 116, 0.15);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.meta-item .label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 0.4rem;
  display: block;
}
.meta-item .value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.meta-item.price .value {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.meta-item.price .currency {
  font-size: 1rem;
  vertical-align: 0.6em;
  margin-right: 0.1em;
}
.showcase-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Product link button — bigger, more prominent (it's the primary CTA now) */
.product-link-btn {
  padding: 1.2rem 2.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
}
.product-link-btn::after {
  content: ' →';
  font-size: 1.1em;
  letter-spacing: 0;
  display: inline-block;
  transition: transform 0.3s;
}
.product-link-btn:hover::after {
  transform: translateX(4px);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(232, 192, 116, 0.3);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(8, 4, 20, 0.4);
}
.qty-control button {
  background: transparent;
  border: none;
  color: var(--gold-bright);
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.qty-control button:hover { background: rgba(232, 192, 116, 0.1); }
.qty-control input {
  width: 36px;
  background: transparent;
  border: none;
  color: var(--cream);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  outline: none;
  -moz-appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

@media (max-width: 1024px) {
  .showcase {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 2.5rem;
  }
  .showcase.reverse { direction: ltr; }
  .showcase-visual { height: 500px; order: -1; }
}

/* ============== BOTANICALS ============== */
.botanicals { padding: 8rem 1.5rem; position: relative; }
.botanicals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.botanicals-list { list-style: none; margin-top: 3rem; }
.botanicals-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(183, 148, 212, 0.12);
  align-items: start;
}
.botanicals-list li:last-child { border-bottom: none; }
.botanicals-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-bright);
  font-style: italic;
  line-height: 1;
  text-shadow: 0 0 20px rgba(245, 216, 150, 0.3);
  min-width: 60px;
}
.botanicals-list h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}
.botanicals-list p {
  font-size: 0.9rem;
  color: var(--cream-soft);
  line-height: 1.7;
}
.botanicals-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(107, 74, 150, 0.25), transparent 65%),
    linear-gradient(135deg, rgba(61, 37, 102, 0.3), rgba(8, 4, 20, 0.5));
}
.botanicals-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter:
    drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 60px rgba(183, 148, 212, 0.3));
}
.botanicals-visual:hover img { transform: scale(1.04); }
.botanicals-stamp {
  position: absolute;
  bottom: 2rem; left: 2rem;
  width: 130px; height: 130px;
  border: 1px solid rgba(245, 216, 150, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-bright);
  line-height: 1.3;
  background: rgba(8, 4, 20, 0.6);
  backdrop-filter: blur(10px);
  text-shadow: 0 0 12px rgba(245, 216, 150, 0.3);
  animation: stampSpin 30s linear infinite;
}
.botanicals-stamp::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(245, 216, 150, 0.3);
  border-radius: 50%;
}
@keyframes stampSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 900px) {
  .botanicals-grid { grid-template-columns: 1fr; gap: 3rem; }
  .botanicals { padding: 5rem 1.5rem; }
}

/* ============== PROMISE BANNER ============== */
.promise-banner {
  padding: 6rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(107, 74, 150, 0.3), transparent 70%),
    linear-gradient(180deg, transparent, rgba(61, 37, 102, 0.2), transparent);
  position: relative;
  overflow: hidden;
}
.promise-banner::before, .promise-banner::after {
  content: '';
  position: absolute;
  width: 80%; max-width: 600px; height: 1px;
  left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0.5;
}
.promise-banner::before { top: 2rem; }
.promise-banner::after { bottom: 2rem; }
.promise-banner-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 400;
}
.promise-banner-text em {
  background: linear-gradient(135deg, var(--gold-bright), var(--cream));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============== EARTH VOW ============== */
.sustain {
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}
.sustain-header { max-width: 700px; margin: 0 auto 4rem; }
.sustain-header p { color: var(--cream-soft); margin-top: 1.5rem; font-size: 1.05rem; }
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.sustain-card {
  padding: 2.5rem 2rem;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(61, 37, 102, 0.2), rgba(8, 4, 20, 0.4));
  border: 1px solid rgba(232, 192, 116, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.5s;
  text-align: left;
}
.sustain-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 192, 116, 0.4);
  box-shadow: var(--shadow-glow);
}
.sustain-card-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-bright), var(--cream));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}
.sustain-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.sustain-card p {
  font-size: 0.9rem;
  color: var(--cream-soft);
  line-height: 1.7;
}
@media (max-width: 900px) { .sustain-grid { grid-template-columns: 1fr; } }

/* ============== NEWSLETTER ============== */
.newsletter { padding: 8rem 1.5rem; text-align: center; }
.newsletter-inner { max-width: 700px; margin: 0 auto; }
.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form input {
  flex: 1;
  padding: 1.1rem 1.5rem;
  background: rgba(8, 4, 20, 0.5);
  border: 1px solid rgba(232, 192, 116, 0.3);
  border-radius: 100px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s;
}
.newsletter-form input::placeholder { color: var(--cream-soft); opacity: 0.6; }
.newsletter-form input:focus {
  border-color: var(--gold-bright);
  background: rgba(8, 4, 20, 0.7);
  box-shadow: 0 0 30px rgba(245, 216, 150, 0.15);
}
.newsletter-meta {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-soft);
  opacity: 0.7;
}
@media (max-width: 600px) { .newsletter-form { flex-direction: column; } }

/* ============== FOOTER ============== */
footer {
  padding: 4rem 4rem 2rem;
  border-top: 1px solid rgba(232, 192, 116, 0.15);
  background: linear-gradient(180deg, transparent, rgba(8, 4, 20, 0.6));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto 3rem;
}
.footer-brand .nav-logo { font-size: 1.8rem; margin-bottom: 1rem; }
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream-soft);
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
  font-size: 1.05rem;
}
.footer-col h5 {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--cream-soft);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 192, 116, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--cream-soft);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: var(--cream-soft); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold-bright); }
@media (max-width: 900px) {
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============== REVEAL (failsafe) ============== */
.reveal { opacity: 1; transform: translateY(0); }
body.js-active .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
body.js-active .reveal.visible { opacity: 1; transform: translateY(0); }
body.js-active .reveal.delay-1 { transition-delay: 0.15s; }
body.js-active .reveal.delay-2 { transition-delay: 0.3s; }
body.js-active .reveal.delay-3 { transition-delay: 0.45s; }
body.js-active .reveal.delay-4 { transition-delay: 0.6s; }

.static-sparkle {
  position: absolute;
  color: var(--gold-bright);
  font-size: 0.8rem;
  text-shadow: 0 0 12px rgba(245, 216, 150, 0.5);
  animation: twinkle 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============== STICKY CART BUTTON ============== */
.sticky-cart {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 9990;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--deepest);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(245, 216, 150, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: stickyPulse 3s ease-in-out infinite;
}
.sticky-cart:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(245, 216, 150, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.5);
}
.sticky-cart svg {
  width: 26px;
  height: 26px;
  color: var(--deepest);
}
.sticky-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  border-radius: 12px;
  padding: 0 7px;
  background: var(--deepest);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-bright);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sticky-cart-count.empty {
  display: none;
}
.sticky-cart-count.bump {
  animation: countBump 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes stickyPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 216, 150, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.4); }
  50%      { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(245, 216, 150, 0.55), inset 0 2px 4px rgba(255, 255, 255, 0.4); }
}
@keyframes countBump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}
@media (max-width: 600px) {
  .sticky-cart { width: 56px; height: 56px; bottom: 1.2rem; right: 1.2rem; }
  .sticky-cart svg { width: 22px; height: 22px; }
}

/* ============== CART DRAWER ============== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 4, 20, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9995;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, rgba(26, 15, 51, 0.98), rgba(8, 4, 20, 0.98));
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(232, 192, 116, 0.2);
  z-index: 9996;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-header {
  padding: 1.8rem 2rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(232, 192, 116, 0.15);
  flex-shrink: 0;
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.cart-drawer-title em {
  font-style: italic;
  color: var(--gold-bright);
}
.cart-drawer-close {
  background: transparent;
  border: 1px solid rgba(232, 192, 116, 0.3);
  color: var(--cream);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.cart-drawer-close:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: rotate(90deg);
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 2rem;
}
.cart-drawer-body::-webkit-scrollbar { width: 6px; }
.cart-drawer-body::-webkit-scrollbar-track { background: transparent; }
.cart-drawer-body::-webkit-scrollbar-thumb { background: rgba(232, 192, 116, 0.3); border-radius: 3px; }

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(232, 192, 116, 0.1);
  align-items: center;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  background: rgba(61, 37, 102, 0.3);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(232, 192, 116, 0.2);
}
.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.cart-item-price {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(232, 192, 116, 0.25);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(8, 4, 20, 0.5);
}
.cart-item-qty button {
  background: transparent;
  border: none;
  color: var(--gold-bright);
  width: 28px;
  height: 28px;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-qty button:hover { background: rgba(232, 192, 116, 0.1); }
.cart-item-qty .qty-num {
  min-width: 26px;
  text-align: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--cream-soft);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.3rem 0.4rem;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #ff9c9c; }
.cart-item-line-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  text-align: right;
  white-space: nowrap;
}

.cart-empty {
  padding: 4rem 1rem;
  text-align: center;
}
.cart-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  opacity: 0.4;
  color: var(--gold);
}
.cart-empty-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream-soft);
  margin-bottom: 2rem;
}

.cart-drawer-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(232, 192, 116, 0.15);
  background: rgba(8, 4, 20, 0.5);
  flex-shrink: 0;
}
.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}
.cart-drawer-subtotal-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.cart-drawer-subtotal-value {
  font-family: var(--font-display);
  font-size: 2rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cart-drawer-note {
  font-size: 0.72rem;
  color: var(--cream-soft);
  margin-bottom: 1.2rem;
  opacity: 0.75;
}
.cart-drawer-checkout {
  display: block;
  width: 100%;
  padding: 1.1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--deepest);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184, 146, 74, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.cart-drawer-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 216, 150, 0.5);
}
.cart-drawer-view-cart {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-soft);
  text-decoration: none;
  padding: 0.5rem;
  transition: color 0.2s;
}
.cart-drawer-view-cart:hover { color: var(--gold-bright); }

@media (max-width: 600px) {
  .cart-drawer { max-width: 100%; }
  .cart-drawer-header { padding: 1.5rem 1.2rem 1rem; }
  .cart-drawer-body { padding: 0.8rem 1.2rem; }
  .cart-drawer-footer { padding: 1.2rem 1.2rem 1.5rem; }
}

/* ============================================
   PRODUCT PAGE (PDP)
   ============================================ */
.pdp-hero {
  padding: 9rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .pdp-hero { padding: 7rem 1.2rem 3rem; }
  .pdp-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* PDP gallery */
.pdp-gallery {
  position: sticky;
  top: 7rem;
}
@media (max-width: 900px) {
  .pdp-gallery { position: static; }
}
.pdp-main-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(107, 74, 150, 0.25), transparent 65%),
    linear-gradient(135deg, rgba(61, 37, 102, 0.3), rgba(8, 4, 20, 0.6));
  overflow: hidden;
  animation: pdpImgFloat 8s ease-in-out infinite;
}
.pdp-main-image img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  z-index: 2;
  position: relative;
  filter:
    drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 60px rgba(183, 148, 212, 0.35));
}
.pdp-glow {
  position: absolute;
  inset: 8%;
  background: radial-gradient(ellipse 50% 45% at 50% 50%,
    rgba(183, 148, 212, 0.45) 0%,
    rgba(232, 192, 116, 0.12) 35%,
    transparent 70%);
  filter: blur(45px);
  animation: glowPulse 5s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes pdpImgFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.pdp-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.pdp-thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  border: 1px solid rgba(232, 192, 116, 0.2);
  background: rgba(8, 4, 20, 0.4);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active,
.pdp-thumb:hover {
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 216, 150, 0.2);
}

/* PDP info column */
.pdp-info {
  display: flex;
  flex-direction: column;
}
.pdp-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--cream);
  letter-spacing: 0;
  margin: 1rem 0 0.5rem;
}
.pdp-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream-soft);
  margin-bottom: 1rem;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0 1.4rem;
}
.pdp-stars {
  color: var(--gold-bright);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgba(245, 216, 150, 0.4);
}
.pdp-rating-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--cream-soft);
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.pdp-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.pdp-price .currency {
  font-size: 1rem;
  vertical-align: 0.6em;
  margin-right: 0.1em;
}
.pdp-compare-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream-soft);
  text-decoration: line-through;
  opacity: 0.6;
}
.pdp-tax-note {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: auto;
}

.pdp-description {
  color: var(--cream-soft);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 1.6rem;
}
.pdp-description p { margin-bottom: 0.8rem; }
.pdp-description p:last-child { margin-bottom: 0; }

.pdp-benefits {
  list-style: none;
  margin: 0 0 2rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(232, 192, 116, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(61, 37, 102, 0.15), rgba(8, 4, 20, 0.3));
}
.pdp-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--cream-soft);
  line-height: 1.55;
  padding: 0.45rem 0;
}
.pdp-benefits li svg {
  width: 16px;
  height: 16px;
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 6px rgba(245, 216, 150, 0.4));
}

.pdp-variants {
  margin-bottom: 1.2rem;
}
.pdp-variants label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.pdp-variant-select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(8, 4, 20, 0.5);
  border: 1px solid rgba(232, 192, 116, 0.3);
  border-radius: 100px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23e8c074' stroke-width='1.5' d='M1 1 L6 6 L11 1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  padding-right: 3rem;
}
.pdp-variant-select:focus {
  border-color: var(--gold-bright);
}

.pdp-cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.pdp-add-to-cart {
  flex: 1;
  min-width: 200px;
  padding: 1.3rem 2.4rem;
  font-size: 0.8rem;
}
.pdp-add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 192, 116, 0.12);
}
.pdp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.pdp-trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold-bright);
  opacity: 0.85;
}

.pdp-back-link {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.3s, transform 0.3s;
}
.pdp-back-link:hover {
  color: var(--gold-bright);
  transform: translateX(-3px);
}

/* PDP — WHY THIS PRODUCT */
.pdp-features {
  padding: 6rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  background: radial-gradient(ellipse at center, rgba(61, 37, 102, 0.2), transparent 70%);
}
.pdp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .pdp-features-grid { grid-template-columns: 1fr; }
}
.pdp-feature {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(232, 192, 116, 0.15);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(61, 37, 102, 0.18), rgba(8, 4, 20, 0.3));
  backdrop-filter: blur(10px);
  transition: all 0.5s;
}
.pdp-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 192, 116, 0.4);
  box-shadow: var(--shadow-glow);
}
.pdp-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.4rem;
  color: var(--gold-bright);
  filter: drop-shadow(0 0 10px rgba(245, 216, 150, 0.4));
}
.pdp-feature-icon svg { width: 100%; height: 100%; }
.pdp-feature h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.pdp-feature p {
  font-size: 0.9rem;
  color: var(--cream-soft);
  line-height: 1.7;
}

/* PDP — RITUAL */
.pdp-ritual {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.pdp-ritual-inner {
  text-align: center;
}
.pdp-ritual-steps {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 950px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 800px) {
  .pdp-ritual-steps { grid-template-columns: 1fr; gap: 2rem; }
}
.pdp-ritual-steps li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.pdp-step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.pdp-ritual-steps h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.pdp-ritual-steps p {
  font-size: 0.9rem;
  color: var(--cream-soft);
  line-height: 1.7;
}

/* PDP — RELATED */
.pdp-related {
  padding: 6rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  background: radial-gradient(ellipse at top, rgba(61, 37, 102, 0.2), transparent 60%);
}
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .pdp-related-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.pdp-related-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(232, 192, 116, 0.15);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(61, 37, 102, 0.18), rgba(8, 4, 20, 0.3));
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-align: center;
}
.pdp-related-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 192, 116, 0.5);
  box-shadow: var(--shadow-glow);
}
.pdp-related-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  background:
    radial-gradient(ellipse at center, rgba(107, 74, 150, 0.25), transparent 65%),
    linear-gradient(135deg, rgba(61, 37, 102, 0.3), rgba(8, 4, 20, 0.5));
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pdp-related-img img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(183, 148, 212, 0.3));
  transition: transform 0.5s;
}
.pdp-related-card:hover .pdp-related-img img {
  transform: scale(1.04);
}
.pdp-related-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.pdp-related-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.8rem;
}
.pdp-related-link {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  transition: color 0.3s;
}
.pdp-related-card:hover .pdp-related-link {
  color: var(--gold-bright);
}

/* PDP — STICKY ADD TO CART (mobile-first) */
.pdp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9985;
  background: linear-gradient(180deg, rgba(8, 4, 20, 0.85), rgba(8, 4, 20, 0.97));
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(232, 192, 116, 0.25);
  padding: 0.8rem 1rem;
  display: none;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pdp-sticky-bar.visible {
  transform: translateY(0);
}
@media (max-width: 900px) {
  .pdp-sticky-bar { display: flex; }
}
.pdp-sticky-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pdp-sticky-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-sticky-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-bright);
}
.pdp-sticky-price .currency {
  font-size: 0.7em;
  vertical-align: 0.4em;
}
.pdp-sticky-add {
  padding: 0.9rem 1.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============== CART TOAST ============== */
.cart-toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, rgba(61, 37, 102, 0.97), rgba(8, 4, 20, 0.97));
  border: 1px solid rgba(232, 192, 116, 0.5);
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  color: var(--cream);
  z-index: 9999;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow), 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateX(150%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: 340px;
  min-width: 280px;
}
.cart-toast.show { transform: translateX(0); }
.cart-toast-msg {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.8rem;
  color: var(--cream);
}
.cart-toast-msg::before {
  content: '✦';
  color: var(--gold-bright);
  margin-right: 0.5em;
}
.cart-toast-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.cart-toast-actions a {
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 100px;
  font-weight: 600;
  flex: 1;
  text-align: center;
  transition: all 0.3s;
}
.cart-toast-actions .view {
  color: var(--cream);
  border: 1px solid rgba(232, 192, 116, 0.4);
}
.cart-toast-actions .view:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.cart-toast-actions .checkout {
  color: var(--deepest);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
}
.cart-toast-actions .checkout:hover { transform: translateY(-1px); }
@media (max-width: 600px) {
  .cart-toast { right: 1rem; left: 1rem; top: 1rem; max-width: none; }
}
