*{margin:0;padding:0;box-sizing:border-box}
:root{
--gold:#D4AF37;--gold2:#FFD700;--gold-grad:linear-gradient(135deg,#C9A84C,#FFD700,#C9A84C);
--dark:#0a0700;--dark2:#100d05;--dark3:#1a1408;
--red:#8B0000;--cream:#F5F0E8;
}
html{scroll-behavior:smooth}
body{background:var(--dark);color:var(--cream);font-family:'Inter',sans-serif;overflow-x:hidden}
#particles-canvas{position:fixed;top:0;left:0;width:100%;height:100%;pointer-events:none;z-index:0}
.container{max-width:1280px;margin:0 auto;padding:0 24px;position:relative;z-index:2}
.gold-gradient-text{background:var(--gold-grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.section-label{font-family:'Cinzel',serif;font-size:12px;letter-spacing:.2em;color:var(--gold);text-transform:uppercase;margin-bottom:12px}
.section-title{font-family:'Playfair Display',serif;font-size:clamp(28px,4vw,48px);font-weight:700;color:var(--cream);line-height:1.2;margin-bottom:16px}
.section-desc{font-size:16px;color:rgba(245,240,232,.7);max-width:600px;margin:0 auto}
.section-header{text-align:center;margin-bottom:60px}

/* NAV */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1240px;
  z-index: 100;
  padding: 10px 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: rgba(255, 255, 255, 0.05); /* White glassmorphism */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15); /* White border */
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.navbar.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.08); /* White glassmorphism scrolled */
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  overflow: hidden;
}

.logo-circle.small {
  width: 32px;
  height: 32px;
}

.logo-text, .logo-circle span {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

.logo-name {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 8px;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0 auto 0 40px; /* Offset menu links to the left slightly */
}

.nav-links a {
  color: rgba(245, 240, 232, 0.8);
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  transition: .3s;
  position: relative;
  font-weight: 500;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .3s;
}

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

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

.nav-cta {
  background: linear-gradient(135deg, #FFE066 0%, #D4AF37 50%, #AA7C11 100%);
  color: #0d0803;
  border: none;
  padding: 10px 24px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FFE899 0%, #E6C24A 50%, #C59B27 100%);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: .3s;
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:100px 0 60px;
}

/* Palace/temple textured background layer */
.hero-palace-bg{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg, rgba(10,7,0,0.3) 0%, rgba(10,7,0,0.6) 100%),
    url('/assets/bradcrumb.png') center center / cover no-repeat;
  z-index:0;
}

/* Central warm glow behind product */
.hero-bg-glow{
  position:absolute;
  width:600px;height:600px;
  background:radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  top:50%;right:20%;transform:translateY(-50%);
  pointer-events:none;z-index:1;
}

/* Edge vignette */
.hero-vignette{
  position:absolute;inset:0;
  background:radial-gradient(ellipse 100% 100% at 50% 50%, transparent 60%, rgba(10,7,0,0.85) 100%);
  z-index:1;pointer-events:none;
}

/* Inner two-column grid */
.hero-inner{
  max-width:1280px;width:100%;
  margin:0 auto;padding:0 40px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  align-items:center;
  position:relative;z-index:2;
}

/* ── LEFT COLUMN ─────────────────────────── */
.hero-left{padding-right:20px;}

.hero-label{
  font-family:'Cinzel',serif;font-size:11px;letter-spacing:.22em;
  color:var(--gold);margin-bottom:18px;text-transform:uppercase;
}

.hero-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(40px,5.5vw,74px);
  font-weight:900;line-height:1.05;
  color:var(--cream);margin-bottom:20px;
  text-shadow:0 2px 40px rgba(0,0,0,.8);
}

.hero-subtitle{
  font-size:17px;color:rgba(245,240,232,.72);
  margin-bottom:32px;line-height:1.65;
}

/* Metric badges row */
.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-metric-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px 20px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-metric-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 
    0 20px 40px rgba(212, 175, 55, 0.15),
    0 15px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-metric-card:hover::before {
  opacity: 1;
}

.hero-metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s ease;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-metric-card:hover .hero-metric-icon {
  background: var(--gold-grad);
  color: #000;
  border-color: var(--gold);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.hero-metric-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-metric-info strong {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-metric-info small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.metric-item{
  display:flex;align-items:center;gap:10px;
  background:rgba(212,175,55,.07);
  border:1px solid rgba(212,175,55,.2);
  padding:10px 14px;border-radius:4px;
  transition:.3s;
}
.metric-item:hover{background:rgba(212,175,55,.13);border-color:rgba(212,175,55,.5);}
.metric-icon{font-size:20px;flex-shrink:0;}
.metric-item strong{display:block;font-size:12px;color:var(--cream);font-weight:600;}
.metric-item small{font-size:10px;color:rgba(245,240,232,.5);letter-spacing:.04em;}

/* CTA buttons */
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;}
.btn-primary{
  background:var(--gold-grad);color:#000;border:none;
  padding:14px 32px;font-family:'Cinzel',serif;font-size:12px;
  font-weight:700;letter-spacing:.12em;cursor:pointer;border-radius:2px;
  transition:.3s;display:inline-flex;align-items:center;gap:8px;
}
.btn-primary:hover{box-shadow:0 0 32px rgba(212,175,55,.6);transform:translateY(-2px);}
.btn-primary.full-width{width:100%;justify-content:center;margin-top:8px}
.btn-arrow{transition:.3s}
.btn-primary:hover .btn-arrow{transform:translateX(4px)}
.btn-ghost{
  background:transparent;color:var(--gold);
  border:1px solid rgba(212,175,55,.4);
  padding:14px 24px;font-size:13px;cursor:pointer;border-radius:2px;transition:.3s;
}
.btn-ghost:hover{background:rgba(212,175,55,.1);border-color:var(--gold);}

/* ── RIGHT COLUMN ────────────────────────── */
.hero-right{
  display:flex;align-items:center;justify-content:center;
  gap:16px;position:relative;
}

/* Vertical right-side badges */
.hero-right-badges{
  display:flex;flex-direction:column;gap:12px;
  position:relative;z-index:3;
}
.right-badge{
  display:flex;align-items:center;gap:10px;
  background:rgba(10,7,0,.75);
  border:1px solid rgba(212,175,55,.3);
  padding:10px 14px;border-radius:6px;
  backdrop-filter:blur(12px);
  min-width:160px;
  transition:.3s;
  animation:badgeFloat 4s ease-in-out infinite;
}
.right-badge:nth-child(2){animation-delay:.6s}
.right-badge:nth-child(3){animation-delay:1.2s}
.right-badge:nth-child(4){animation-delay:1.8s}
.right-badge:hover{border-color:rgba(212,175,55,.7);background:rgba(20,14,0,.9);}
.rb-icon{font-size:20px;flex-shrink:0;}
.right-badge strong{display:block;font-size:11px;color:var(--gold);font-weight:600;font-family:'Cinzel',serif;}
.right-badge small{font-size:10px;color:rgba(245,240,232,.55);}

/* Product showcase (3D placeholder target) */
.product-showcase{
  position:relative;width:380px;height:520px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.product-glow-ring{
  position:absolute;width:340px;height:340px;border-radius:50%;
  border:1px solid rgba(212,175,55,.28);
  animation:pulsRing 3s ease-in-out infinite;
}
.ring2{width:440px;height:440px;border-color:rgba(212,175,55,.12);animation-delay:1.5s;}
@keyframes pulsRing{0%,100%{opacity:.5;transform:scale(1)}50%{opacity:1;transform:scale(1.03)}}

/* Marble pedestal */
.product-pedestal{
  position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;z-index:1;
}
.pedestal-top{
  width:200px;height:12px;
  background:linear-gradient(90deg,#2a1f08,#8b6914,#d4af37,#8b6914,#2a1f08);
  border-radius:4px 4px 0 0;
  box-shadow:0 -4px 20px rgba(212,175,55,.3);
}
.pedestal-base{
  width:160px;height:20px;
  background:linear-gradient(90deg,#1a1205,#6b5010,#b8962e,#6b5010,#1a1205);
  border-radius:0 0 6px 6px;
}

/* Floating feature badges */
.feature-badge{
  position:absolute;
  background:rgba(10,7,0,.88);
  border:1px solid rgba(212,175,55,.45);
  padding:8px 14px;border-radius:4px;
  font-size:12px;font-family:'Cinzel',serif;color:var(--gold);
  white-space:nowrap;backdrop-filter:blur(12px);z-index:4;
}
.fb1{top:8%;right:-15px;animation:badgeFloat 4s ease-in-out infinite;}
.fb2{top:48%;left:-10px;animation:badgeFloat 4s ease-in-out infinite .8s;}
.fb3{bottom:18%;right:-15px;animation:badgeFloat 4s ease-in-out infinite 1.5s;}
@keyframes badgeFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}

/* Mandala rotating ring (kept for depth) */
.mandala-bg{
  position:absolute;width:700px;height:700px;border-radius:50%;
  border:1px solid rgba(212,175,55,.08);
  top:50%;right:22%;transform:translate(50%,-50%);
  animation:rotateSlow 60s linear infinite;pointer-events:none;z-index:1;
}
.mandala-bg::before{
  content:'';position:absolute;width:500px;height:500px;border-radius:50%;
  border:1px solid rgba(212,175,55,.05);
  top:50%;left:50%;transform:translate(-50%,-50%);
}
@keyframes rotateSlow{to{transform:translate(50%,-50%) rotate(360deg)}}

/* Scroll indicator */
.hero-scroll{
  position:absolute;bottom:30px;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:8px;z-index:2;
}
.scroll-indicator{
  width:26px;height:40px;border:2px solid rgba(212,175,55,.4);
  border-radius:13px;display:flex;justify-content:center;padding-top:6px;
}
.scroll-dot{width:4px;height:8px;background:var(--gold);border-radius:2px;animation:scrollDot 2s ease-in-out infinite;}
@keyframes scrollDot{0%{transform:translateY(0);opacity:1}100%{transform:translateY(12px);opacity:0}}
.hero-scroll span{font-size:10px;letter-spacing:.15em;color:rgba(212,175,55,.6);}

/* Fallback product image (visible by default, only hidden in active 3D showcase) */
.fallback-product-img{
  width:100%;height:100%;object-fit:contain;
  filter:drop-shadow(0 20px 40px rgba(212,175,55,.35));
  transition:opacity .5s;
}



/* STATS */
.stats-bar{background:rgba(212,175,55,.06);border-top:1px solid rgba(212,175,55,.15);border-bottom:1px solid rgba(212,175,55,.15);padding:32px 0;position:relative;z-index:2}
.stats-container{max-width:1280px;margin:0 auto;padding:0 24px;display:flex;justify-content:space-around;align-items:center;flex-wrap:wrap;gap:24px}
.stat-item{text-align:center}
.stat-num{font-family:'Playfair Display',serif;font-size:clamp(28px,4vw,48px);font-weight:700;color:var(--gold)}
.stat-item>span{font-family:'Playfair Display',serif;font-size:clamp(24px,3vw,40px);color:var(--gold)}
.stat-item p{font-size:13px;color:rgba(245,240,232,.6);letter-spacing:.1em;margin-top:4px}
.stat-divider{width:1px;height:60px;background:rgba(212,175,55,.2)}

/* ══════════════════════════════════════════════════════════
   INGREDIENTS — 3D GLASSMORPHISM PREMIUM REDESIGN
══════════════════════════════════════════════════════════ */
.ingredients {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Layered ambient glow background */
.section-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%,   rgba(212,175,55,.07) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 100%,  rgba(139, 0, 0,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%,   rgba(212,175,55,.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating particle dust */
.section-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1px at 15% 20%, rgba(212,175,55,.3) 0%, transparent 0%),
    radial-gradient(circle 1px at 85% 75%, rgba(212,175,55,.25) 0%, transparent 0%),
    radial-gradient(circle 1.5px at 40% 60%, rgba(212,175,55,.2) 0%, transparent 0%),
    radial-gradient(circle 1px at 70% 30%, rgba(212,175,55,.15) 0%, transparent 0%),
    radial-gradient(circle 1px at 55% 85%, rgba(212,175,55,.2) 0%, transparent 0%);
  pointer-events: none;
  animation: dustFloat 8s ease-in-out infinite alternate;
}
@keyframes dustFloat {
  from { transform: translateY(0px) scale(1); opacity: 0.6; }
  to   { transform: translateY(-12px) scale(1.02); opacity: 1; }
}

/* Hero banner image */
.ingredients-hero-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 70px;
  height: 340px;
  box-shadow:
    0 30px 80px rgba(0,0,0,.5),
    0 0 0 1px rgba(212,175,55,.15),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.ing-bg-img { width:100%; height:100%; object-fit:cover; }
.ing-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,7,0,.85) 0%,
    rgba(10,7,0,.25) 45%,
    rgba(10,7,0,.7) 100%
  );
}

/* ── GRID ────────────────────────────────────────────── */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
  /* perspective gives 3D depth to scale zoom */
  perspective: 1000px;
}

/* ── CARD BASE ───────────────────────────────────────── */
.ingredient-card {
  /* Frosted glass base */
  background: rgba(255,255,255,.032);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);

  /* Layered borders for 3D depth */
  border: 1px solid rgba(255,255,255,.10);
  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 1px solid rgba(255,255,255,.13);

  border-radius: 20px;
  padding: 30px 22px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  z-index: 1;

  /* GPU-accelerated smooth transition */
  will-change: transform, box-shadow;
  transform-origin: center center;
  transition:
    transform .4s cubic-bezier(.34, 1.56, .64, 1),
    box-shadow .4s cubic-bezier(.25,.8,.25,1),
    border-color .3s ease,
    background .3s ease,
    z-index 0s;

  /* Multi-layer shadow for 3D lift */
  box-shadow:
    0 4px 16px rgba(0,0,0,.35),
    0 1px 0  rgba(255,255,255,.06) inset,
    0 -1px 0 rgba(0,0,0,.25) inset;

  /* Stagger animation */
  animation: cardEntrance .6s ease both;
}

/* Stagger delay on first 20 cards */
.ingredient-card:nth-child(1){animation-delay:.05s}
.ingredient-card:nth-child(2){animation-delay:.10s}
.ingredient-card:nth-child(3){animation-delay:.15s}
.ingredient-card:nth-child(4){animation-delay:.20s}
.ingredient-card:nth-child(5){animation-delay:.25s}
.ingredient-card:nth-child(6){animation-delay:.30s}
.ingredient-card:nth-child(7){animation-delay:.35s}
.ingredient-card:nth-child(8){animation-delay:.40s}
.ingredient-card:nth-child(9){animation-delay:.45s}
.ingredient-card:nth-child(10){animation-delay:.50s}
.ingredient-card:nth-child(11){animation-delay:.55s}
.ingredient-card:nth-child(12){animation-delay:.60s}
.ingredient-card:nth-child(13){animation-delay:.65s}
.ingredient-card:nth-child(14){animation-delay:.70s}
.ingredient-card:nth-child(15){animation-delay:.75s}
.ingredient-card:nth-child(16){animation-delay:.80s}
.ingredient-card:nth-child(17){animation-delay:.85s}
.ingredient-card:nth-child(18){animation-delay:.90s}
.ingredient-card:nth-child(19){animation-delay:.95s}
.ingredient-card:nth-child(20){animation-delay:1.00s}

@keyframes cardEntrance {
  from { opacity:0; transform: translateY(24px) scale(.96); }
  to   { opacity:1; transform: translateY(0)    scale(1);   }
}

/* ── GOLD GRADIENT SHIMMER LAYER (light ray sweep) ── */
.ingredient-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212,175,55,.0)  0%,
    rgba(212,175,55,.12) 40%,
    rgba(255,220,100,.06) 50%,
    rgba(212,175,55,.0)  100%
  );
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity .4s ease;
  border-radius: 20px;
  pointer-events: none;
}

/* ── INNER LIGHT STREAK (top-left shimmer) ─────────── */
.ingredient-card::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255,255,255,.08) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .6s ease;
  pointer-events: none;
}

/* ── HOVER STATE — Professional Zoom ────────────────── */
.ingredient-card:hover {
  background: rgba(255,255,255,.060);
  border-color: rgba(212,175,55,.50);
  border-top-color: rgba(212,175,55,.75);

  /* Pure zoom — no layout shift, card scales in-place */
  transform: scale(1.10);
  z-index: 10;

  /* Rich multi-layer shadow gives floating depth */
  box-shadow:
    0 0 0 1px rgba(212,175,55,.35),
    0 8px 24px rgba(0,0,0,.30),
    0 20px 48px rgba(0,0,0,.45),
    0 32px 80px rgba(212,175,55,.20),
    0 1px 0 rgba(255,255,255,.12) inset;
}
.ingredient-card:hover::before { opacity: 1; }
.ingredient-card:hover::after  { left: 130%; }

/* Orb ring spins faster on card hover */
.ingredient-card:hover .ing-icon-wrap::before {
  animation-duration: 1.2s;
  border-top-color: rgba(212,175,55,1);
  border-right-color: rgba(212,175,55,.6);
}

/* ── ICON ORB ────────────────────────────────────────── */
.ing-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating outer ring */
.ing-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(212,175,55,.6);
  border-right-color: rgba(212,175,55,.3);
  animation: orbSpin 4s linear infinite;
  pointer-events: none;
}
/* Inner glow ring */
.ing-icon-wrap::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.15);
  pointer-events: none;
}
@keyframes orbSpin { to { transform: rotate(360deg); } }

.ing-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;

  /* Layered sphere illusion */
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255,255,255,.12) 0%,
    rgba(212,175,55,.10) 40%,
    rgba(10,7,0,.6) 100%
  );
  border: 1px solid rgba(212,175,55,.30);
  box-shadow:
    0 8px 24px rgba(0,0,0,.45),
    inset 0 2px 4px rgba(255,255,255,.10),
    inset 0 -2px 4px rgba(0,0,0,.30),
    0 0 0 4px rgba(212,175,55,.06);
  transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s ease;
  position: relative;
  z-index: 1;
}

.ingredient-card:hover .ing-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow:
    0 12px 32px rgba(212,175,55,.40),
    inset 0 2px 6px rgba(255,255,255,.15),
    inset 0 -3px 6px rgba(0,0,0,.40),
    0 0 20px rgba(212,175,55,.25);
  border-color: rgba(212,175,55,.60);
}

/* ── TEXT ────────────────────────────────────────────── */
.ingredient-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 9px;
  letter-spacing: .03em;
  text-shadow: 0 1px 8px rgba(212,175,55,.30);
  transition: color .3s ease;
}
.ingredient-card:hover h3 {
  color: #FFE680;
  text-shadow: 0 2px 16px rgba(212,175,55,.50);
}

.ingredient-card p {
  font-size: 12.5px;
  color: rgba(245,240,232,.58);
  line-height: 1.55;
  margin-bottom: 14px;
  transition: color .3s ease;
}
.ingredient-card:hover p { color: rgba(245,240,232,.80); }

/* ── BADGE ───────────────────────────────────────────── */
.ing-badge {
  display: inline-block;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.28);
  border-top-color: rgba(212,175,55,.50);
  color: var(--gold);
  font-size: 9.5px;
  font-family: 'Cinzel', serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 2px 8px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.06);
  transition: all .3s ease;
}
.ingredient-card:hover .ing-badge {
  background: rgba(212,175,55,.18);
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 4px 12px rgba(212,175,55,.25), inset 0 1px 0 rgba(255,255,255,.08);
  color: #FFE680;
}

/* BENEFITS */
.benefits{padding:100px 0;background:rgba(212,175,55,.03);position:relative;z-index:2}
.benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:auto auto;gap:20px}
.benefit-card{background:rgba(212,175,55,.08);border:1px solid rgba(212,175,55,.25);border-radius:8px;padding:32px;transition:.4s}
.benefit-card:hover{border-color:rgba(212,175,55,.55);transform:translateY(-6px);box-shadow:0 20px 50px rgba(212,175,55,.2)}
.benefit-card.large-card{grid-column:span 1;grid-row:span 2}
.benefit-icon{font-size:40px;margin-bottom:16px;display:block}
.benefit-icon-large{font-size:60px;margin-bottom:20px;display:block}
.benefit-card h3{font-family:'Playfair Display',serif;font-size:20px;color:var(--gold);margin-bottom:12px}
.benefit-card p{font-size:14px;color:rgba(245,240,232,.7);line-height:1.6}
.benefit-meter{margin-top:20px}
.meter-label{font-size:12px;color:rgba(245,240,232,.6);margin-bottom:8px;letter-spacing:.1em}
.meter-bar{background:rgba(212,175,55,.1);border-radius:4px;height:6px;margin-bottom:6px}
.meter-fill{height:100%;background:var(--gold-grad);border-radius:4px;width:0;transition:width 1.5s ease}
.meter-bar+span{font-size:12px;color:var(--gold)}

/* ABOUT */
.about{padding:100px 0;position:relative;overflow:hidden;z-index:2}
.about-bg-glow{position:absolute;width:500px;height:500px;background:radial-gradient(circle,rgba(212,175,55,.08) 0%,transparent 70%);top:50%;right:0;transform:translateY(-50%);pointer-events:none}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.about-text{font-size:16px;color:rgba(245,240,232,.75);line-height:1.8;margin-bottom:32px}
.about-features{display:flex;flex-direction:column;gap:16px}
.about-feature{display:flex;gap:16px;align-items:flex-start}
.check-icon{width:28px;height:28px;background:var(--gold-grad);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;color:#000;flex-shrink:0;margin-top:2px}
.about-feature strong{display:block;color:var(--cream);font-size:15px;margin-bottom:4px}
.about-feature p{font-size:13px;color:rgba(245,240,232,.6)}
.about-card-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.mini-card{background:rgba(212,175,55,.06);border:1px solid rgba(212,175,55,.15);border-radius:8px;padding:24px;text-align:center;transition:.3s}
.mini-card.gold{background:rgba(212,175,55,.12);border-color:rgba(212,175,55,.35)}
.mini-card:hover{transform:translateY(-4px);border-color:rgba(212,175,55,.5)}
.mini-card span{font-size:28px;display:block;margin-bottom:8px}
.mini-card strong{display:block;font-size:14px;color:var(--gold);margin-bottom:4px}
.mini-card small{font-size:11px;color:rgba(245,240,232,.55)}
.mandala-decoration{position:absolute;width:300px;height:300px;border-radius:50%;border:1px solid rgba(212,175,55,.1);top:50%;right:0;transform:translateY(-50%);animation:rotateSlow 40s linear infinite;pointer-events:none}

/* SHOP */
.shop {
  padding: 80px 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139, 0, 0, 0.1) 0%, transparent 60%);
  position: relative;
  z-index: 2;
}

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

.shop-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 
    0 25px 50px rgba(212, 175, 55, 0.2),
    0 20px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.shop-card.featured {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 
    0 20px 50px rgba(212, 175, 55, 0.15),
    0 15px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.shop-card.featured:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 
    0 25px 60px rgba(212, 175, 55, 0.25),
    0 20px 45px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pack-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: #000;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.pack-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}

.pack-bottle {
  font-size: 32px;
  margin-bottom: 10px;
}

.shop-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 6px;
}

.pack-capsules {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.pack-price {
  margin-bottom: 18px;
}

.price-old {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  margin-right: 8px;
}

.price-new {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
}

.pack-features {
  list-style: none;
  text-align: left;
  margin-top: auto;
  margin-bottom: 20px;
  width: 100%;
}

.pack-features li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.shop-card .btn-primary {
  width: 100%;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.trust-item span {
  font-size: 20px;
}

/* CONTACT */
.contact{padding:100px 0}
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:80px;align-items:start}
.contact-item{display:flex;gap:16px;align-items:flex-start;margin-bottom:24px}
.contact-item span{font-size:28px}
.contact-item strong{display:block;color:var(--gold);font-size:14px;margin-bottom:4px}
.contact-item p{font-size:15px;color:rgba(245,240,232,.8)}
.social-links{display:flex;gap:12px;margin-top:24px}
.social-link{width:40px;height:40px;border:1px solid rgba(212,175,55,.3);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--gold);text-decoration:none;font-size:12px;font-weight:700;transition:.3s}
.social-link:hover{background:var(--gold-grad);color:#000;border-color:var(--gold)}
.contact-form{background:rgba(212,175,55,.05);border:1px solid rgba(212,175,55,.15);border-radius:12px;padding:40px}
.form-group{margin-bottom:20px}
.form-group input,.form-group textarea{width:100%;background:transparent;border:none;border-bottom:1px solid rgba(212,175,55,.3);color:var(--cream);font-family:'Inter',sans-serif;font-size:15px;padding:12px 0;outline:none;transition:.3s}
.form-group input::placeholder,.form-group textarea::placeholder{color:rgba(245,240,232,.4)}
.form-group input:focus,.form-group textarea:focus{border-bottom-color:var(--gold);box-shadow:0 4px 0 -3px rgba(212,175,55,.3)}
.form-group textarea{resize:vertical;min-height:100px}

/* FOOTER */
.footer {
  padding: 80px 0 30px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  background-image: linear-gradient(to bottom, rgba(13, 8, 3, 0.65) 0%, rgba(10, 6, 2, 0.85) 100%), url('/assets/footer.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: glowPulse 8s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.3; transform: translateX(-50%) scale(0.9); }
  100% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex-shrink: 0;
}

.footer-logo-circle:hover {
  transform: rotate(360deg) scale(1.05);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

.footer-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-logo .brand-name {
  font-size: 20px;
  margin-top: 0;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 26px;
}

.newsletter {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 360px;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--cream);
  padding: 12px 14px;
  font-size: 13.5px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.newsletter button {
  background: linear-gradient(135deg, #FFE566 0%, #D4AF37 50%, #B8860B 100%);
  color: #0d0803;
  border: none;
  padding: 12px 24px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.12em;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  text-transform: uppercase;
}

.newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, #FFF0A0 0%, #E6C432 50%, #C5960D 100%);
}

.footer-links h4 {
  font-family: 'Cinzel', serif;
  font-size: 13.5px;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: '→';
  font-size: 10px;
  color: var(--gold);
  opacity: 0;
  width: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(6px);
}

.footer-links a:hover::before {
  opacity: 1;
  width: 12px;
  margin-right: 6px;
}

.footer-bottom {
  text-align: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* AOS - removed: elements visible by default, JS handles reveal */

.mobile-only {
  display: none !important;
}

/* MOBILE */
@media(max-width:768px){
.mobile-only {
  display: list-item !important;
}

/* Hamburger active transformation to form X */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 7, 0, 0.45);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  margin: 0;
  gap: 20px;
}

.nav-links.open {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* Drawer panel background and borders */
.nav-links::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 290px;
  height: 100%;
  background: rgba(16, 13, 5, 0.98);
  border-left: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  z-index: -1;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links.open::before {
  transform: translateX(0);
}

.nav-links li {
  width: 100%;
  max-width: 290px;
  text-align: left;
  padding-left: 36px;
  transform: translateX(30px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.nav-links.open li {
  transform: translateX(0);
  opacity: 1;
}

/* Sequential Stagger delay */
.nav-links.open li:nth-child(1) { transition-delay: 0.08s; }
.nav-links.open li:nth-child(2) { transition-delay: 0.12s; }
.nav-links.open li:nth-child(3) { transition-delay: 0.16s; }
.nav-links.open li:nth-child(4) { transition-delay: 0.20s; }
.nav-links.open li:nth-child(5) { transition-delay: 0.24s; }
.nav-links.open li:nth-child(6) { transition-delay: 0.28s; }
.nav-links.open li:nth-child(7) { transition-delay: 0.32s; }
.nav-links.open li:nth-child(8) { transition-delay: 0.36s; }
.nav-links.open li:nth-child(9) { transition-delay: 0.40s; }

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 19px !important;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.nav-links a::after {
  display: none !important; /* Hide original desktop underline effect */
}

.nav-links a::before {
  content: '✦';
  font-size: 11px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
  transform: translateX(6px);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.nav-links a:hover::before {
  transform: scale(1.3) rotate(45deg);
}

.hamburger {
  display: flex;
  z-index: 100;
}
.nav-cta {
  display: none;
}
/* Hero mobile */
.hero-inner{grid-template-columns:1fr;text-align:center;gap:40px;padding:0 20px}
.hero-left{padding-right:0}
.hero-metrics {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hero-metric-card {
  padding: 10px 12px;
  border-radius: 12px;
  gap: 8px;
}
.hero-metric-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.hero-metric-icon svg {
  width: 15px;
  height: 15px;
}
.hero-metric-info strong {
  font-size: 11.5px;
  line-height: 1.2;
}
.hero-metric-info small {
  font-size: 9.5px;
  line-height: 1.2;
}
.metric-item{justify-content:center}
.hero-actions{justify-content:center}
.hero-right{flex-direction:column;align-items:center}
.hero-right-badges{display:none}
.product-showcase{width:280px;height:360px}
.fb1,.fb2,.fb3{display:none}
/* Sections */
.benefits-grid{grid-template-columns:1fr}
.benefit-card.large-card{grid-column:auto;grid-row:auto}
.about-grid{grid-template-columns:1fr;gap:40px}
.contact-grid{grid-template-columns:1fr;gap:40px}
.shop-grid{grid-template-columns:1fr}
.footer-grid {
  grid-template-columns: 1fr 1fr;
  gap: 32px 16px;
}
.footer-brand {
  grid-column: span 2;
}
.newsletter button {
  padding: 12px 16px;
  font-size: 10px;
}
.ingredients-grid{grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:14px}
.ingredient-card{padding:22px 16px 18px;border-radius:16px}
.ing-icon{width:52px;height:52px;font-size:22px}
.ing-icon-wrap{width:52px;height:52px}
.stat-divider{display:none}
.mandala-decoration{display:none}
}

/* 3D and Spline styling */
#canvas-3d-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.bottle-placeholder {
  width: 280px;
  height: 380px;
  margin: 0 auto;
  opacity: 1;
}
.bottle-placeholder-ing {
  width: 250px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.bottle-placeholder-benefits {
  width: 200px;
  height: 250px;
  margin: 20px auto 0;
  opacity: 1;
}
.bottle-placeholder-shop {
  width: 170px;
  height: 200px;
  margin: 0 auto 12px;
  opacity: 1;
}
.product-showcase-container {
  width: 100%;
  height: 350px;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8), 0 15px 45px rgba(0, 0, 0, 0.6);
  transition: border-color 0.4s, transform 0.4s;
}
.product-showcase-container:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-5px);
}
.showcase-product-img {
  max-height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
  animation: floatProduct 4s ease-in-out infinite;
  z-index: 2;
}
.showcase-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--gold-grad);
  filter: blur(80px);
  opacity: 0.3;
  border-radius: 50%;
  z-index: 1;
}
@keyframes floatProduct {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}
@media (max-width: 768px) {
  .bottle-placeholder {
    width: 200px;
    height: 260px;
  }
  .bottle-placeholder-ing {
    width: 160px;
    height: 200px;
  }
  .bottle-placeholder-benefits {
    width: 150px;
    height: 180px;
  }
  .bottle-placeholder-shop {
    width: 150px;
    height: 180px;
  }
  .spline-container {
    height: 280px;
  }
}

.logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.fallback-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.35));
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

body.threejs-loaded #3d-bottle-showcase .fallback-product-img {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

/* PREMIUM SHOWCASE SECTION CSS */
.premium-showcase-sec {
  padding: 140px 0;
  background: 
    linear-gradient(to bottom, rgba(10, 7, 0, 0.85) 0%, rgba(10, 7, 0, 0.4) 30%, rgba(10, 7, 0, 0.4) 70%, rgba(10, 7, 0, 0.85) 100%),
    url('/assets/bradcrumb.png') no-repeat center center / cover,
    var(--dark2);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

/* Glassmorphism Main Card */
.showcase-glass-card {
  position: relative;
  width: 580px; /* Collapsed width: thumbnails + 3D bottle */
  height: 680px;
  margin: 0 auto;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.05); /* White glassmorphism */
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid rgba(255, 255, 255, 0.15); /* White border */
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.75), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 40px;
  transition: width 0.7s cubic-bezier(0.25, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.showcase-glass-card:hover {
  width: 1040px; /* Expanded width: thumbnails + 3D bottle + actions card */
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 60px 120px rgba(255, 255, 255, 0.05), 0 40px 90px rgba(0, 0, 0, 0.85);
}

.showcase-card-body {
  display: flex;
  width: 100%;
  height: calc(100% - 90px); /* Leaves space for bottom metrics bar */
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

/* LEFT COLUMN: Thumbnails */
.showcase-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 70px;
  flex-shrink: 0;
  align-items: center;
}

.thumb-item {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12); /* White border */
  background: rgba(255, 255, 255, 0.03); /* White glass */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thumb-item img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.thumb-item.active, .thumb-item:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.thumb-scroll-arrow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cream);
  width: 32px;
  height: 24px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.thumb-scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(2px);
}

/* CENTER COLUMN: Product & Pedestal */
.showcase-visual-wrapper {
  flex-grow: 1;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.showcase-pedestal {
  position: absolute;
  bottom: 85px; /* Shifted up to sit directly underneath the bottle */
  left: 50%;
  transform: translateX(-50%);
  width: 310px;
  height: 52px;
  background: radial-gradient(ellipse at 50% 25%, rgba(68, 55, 34, 0.4) 0%, rgba(20, 15, 8, 0.9) 70%);
  border-top: 2.5px solid #d4af37; /* Gold ring border */
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 6px solid #000000; /* 3D side depth shadow */
  border-radius: 50%;
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.9), 
    0 0 35px rgba(212, 175, 55, 0.2),
    inset 0 3px 8px rgba(255, 255, 255, 0.12);
  z-index: 1;
}

.bottle-placeholder-showcase {
  width: 280px;
  height: 380px;
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateY(-20px);
}

/* RIGHT COLUMN: Actions Card */
.showcase-actions-card {
  width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(212, 175, 55, 0.04) 100%
  );
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.28); /* Top shimmer highlight */
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(212, 175, 55, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: width 0.7s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.4s ease, transform 0.7s cubic-bezier(0.25, 1, 0.3, 1);
  transform: translateX(45px);
  position: relative;
}

/* On hover, slide in and size up actions card */
.showcase-glass-card:hover .showcase-actions-card {
  width: 440px;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.actions-card-inner {
  width: 440px;
  padding: 24px 26px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.actions-badge {
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #FFD700;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 18px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
  50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

.actions-brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-align: left;
  background: linear-gradient(135deg, #FFE566 0%, #D4AF37 45%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.actions-subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
}

.actions-price-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-align: left;
}

.price-current {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-was {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.price-savings {
  font-size: 10px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

.actions-description {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
  max-height: 70px;
  overflow-y: auto;
  padding-right: 6px;
  text-align: left;
}

.actions-description::-webkit-scrollbar {
  width: 4px;
}
.actions-description::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 2px;
}
.actions-description::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.25);
  border-radius: 2px;
}
.actions-description::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.45);
}

/* Feature Icons Row */
.features-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 0;
  gap: 4px;
}

.feature-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  cursor: pointer;
}

.feature-icon-item .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.03) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 17px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-icon-item:hover .icon-circle {
  border-color: rgba(212, 175, 55, 0.7);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.08) 100%);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.feature-icon-item .icon-label {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Buttons */
.actions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.action-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cream);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

/* Shimmer sweep effect on hover */
.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.action-btn:hover::before {
  left: 150%;
}

.action-btn .btn-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.action-btn .btn-arrow {
  margin-left: auto;
  opacity: 0.5;
  font-size: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* BUY NOW — premium gold */
.buy-now-btn {
  background: linear-gradient(135deg, #FFE566 0%, #D4AF37 40%, #B8860B 100%);
  border: none;
  color: #1a0e00;
  font-weight: 800;
  font-size: 13px;
  box-shadow:
    0 8px 24px rgba(212, 175, 55, 0.35),
    0 2px 6px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
  padding: 12px 18px;
  border-radius: 12px;
}

.buy-now-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 36px rgba(212, 175, 55, 0.5),
    0 4px 10px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.35);
  background: linear-gradient(135deg, #FFF0A0 0%, #E6C432 40%, #C5960D 100%);
}

.buy-now-btn:hover .btn-arrow {
  transform: translateX(5px);
  opacity: 1;
}

/* ADD TO CART — elegant glass */
.add-to-cart-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.add-to-cart-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* VIEW PACK — minimal ghost */
.view-btn {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  padding: 12px 22px;
}

.view-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255,255,255,0.85);
  transform: translateY(-1px);
}

.action-btn:hover .btn-icon {
  transform: scale(1.2);
}

/* BOTTOM ROW: Metrics Bar */
.showcase-metrics-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  box-sizing: border-box;
}

.showcase-metrics-bar .metric-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex: 1 !important;
  justify-content: center !important;
  height: 48px !important; /* Forces uniform height on all items */
  transition: none !important;
}

.showcase-metrics-bar .metric-item:hover {
  background: transparent !important;
  border-color: transparent !important;
}

.metric-icon {
  font-size: 20px;
  color: var(--gold);
  opacity: 0.85;
}

.metric-info {
  text-align: left;
}

.metric-info h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0 0 2px 0;
}

.metric-info p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.metric-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
}

/* Responsive Overrides */
@media(max-width: 1120px) {
  .showcase-glass-card:hover {
    width: 960px;
  }
  .showcase-actions-card:hover .showcase-actions-card {
    width: 380px;
  }
  .actions-card-inner {
    width: 380px;
    padding: 25px;
  }
}

@media(max-width: 768px) {
  .premium-showcase-sec {
    padding: 85px 0;
    overflow: hidden;
  }
  
  .showcase-glass-card {
    width: 100%;
    max-width: 380px;
    height: auto;
    padding: 30px 20px;
    border-radius: 24px;
  }
  
  .showcase-glass-card:hover {
    width: 100%;
    max-width: 380px;
  }
  
  .showcase-card-body {
    flex-direction: column;
    height: auto;
  }
  
  .showcase-thumbnails {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
    gap: 12px;
  }
  
  .thumb-item {
    width: 50px;
    height: 50px;
  }
  
  .thumb-scroll-arrow {
    display: none;
  }
  
  .showcase-visual-wrapper {
    height: 340px;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }
  
  .showcase-pedestal {
    bottom: 20px; /* Shifted up on mobile to sit directly under the bottle */
    width: 230px;
    height: 38px;
    z-index: 1;
  }

  .bottle-placeholder-showcase {
    width: 210px;
    height: 290px;
    transform: translateY(0);
    z-index: 2;
  }

  .showcase-actions-card {
    position: static;
    width: 100% !important;
    opacity: 1;
    transform: none !important;
    pointer-events: auto;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 10px;
  }
  
  .actions-card-inner {
    width: 100%;
    padding: 0;
  }
  
  .actions-badge {
    align-self: center;
  }
  
  .actions-brand, .actions-subtitle, .actions-price-wrapper {
    text-align: center;
    justify-content: center;
  }
  
  .features-row {
    margin-bottom: 20px;
    padding: 12px 0;
  }
  
  .action-btn {
    justify-content: center;
  }
  
  .showcase-metrics-bar {
    display: none; /* Hide bottom metrics on mobile to keep page clean */
  }
}

/* Premium Glassmorphism Modal */
.product-details-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 7, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.product-details-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-glass-card {
  width: 90%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
  box-sizing: border-box;
}

.product-details-modal.active .modal-glass-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: rotate(90deg);
}

.modal-content-wrapper {
  text-align: left;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FFE566 0%, #D4AF37 45%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.modal-desc-heading {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.modal-desc-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-height: 250px;
  overflow-y: auto;
  padding-right: 12px;
}

/* Custom scrollbar for modal description */
.modal-desc-text::-webkit-scrollbar {
  width: 6px;
}
.modal-desc-text::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
}
.modal-desc-text::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 3px;
}
.modal-desc-text::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}




/* ════════════════════════════════════════════════════════
   BOTTLE CAP OPENING ANIMATION SYSTEM
   ════════════════════════════════════════════════════════ */

/* Scene wrapper */
.bottle-cap-scene {
  width: 100%;
  height: 100%;
  perspective: 900px;
  position: relative;
}

/* ── CAP OVERLAY ─────────────────────────────────────── */
.bottle-cap-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  width: 44%;
  height: 27%;
  z-index: 10;
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  transform: translateX(-50%) translateY(0px) rotateX(0deg);
  filter: drop-shadow(0 8px 20px rgba(212,175,55,0.6));
}

.cap-body {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  border-radius: 8px 8px 4px 4px;
  overflow: hidden;
}

.cap-top-ring {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22%;
  background: linear-gradient(180deg, #FFE88A 0%, #D4AF37 45%, #A07820 100%);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
}

.cap-mid {
  position: absolute;
  top: 22%; left: 0; right: 0; bottom: 16%;
  background: linear-gradient(180deg, #C9A030 0%, #8B6010 50%, #C9A030 100%);
  box-shadow: inset 2px 0 6px rgba(0,0,0,0.3), inset -2px 0 6px rgba(0,0,0,0.3);
}

.cap-knurl {
  position: absolute;
  top: 25%; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,220,100,0.6) 30%, rgba(255,255,200,0.9) 50%, rgba(255,220,100,0.6) 70%, transparent 100%);
  z-index: 2;
}
.cap-knurl.two  { top: 50%; }
.cap-knurl.three{ top: 72%; }

.cap-emblem {
  position: absolute;
  bottom: 18%; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 14px; font-weight: 700;
  color: rgba(255,230,130,0.85);
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  letter-spacing: 0.1em; z-index: 3;
}

.cap-glow-base {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 16%;
  background: linear-gradient(180deg, #8B6010 0%, #5A3D05 100%);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* ── LIGHT RAYS ──────────────────────────────────────── */
.cap-rays-container {
  position: absolute;
  top: 13%; left: 50%;
  width: 0; height: 0;
  z-index: 9; opacity: 0;
  pointer-events: none;
}

.cap-ray {
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: linear-gradient(to top, rgba(255,220,50,0) 0%, rgba(255,220,50,0.9) 60%, rgba(255,255,200,1) 100%);
  transform-origin: bottom center;
  transform: rotate(var(--deg));
  border-radius: 1px;
  filter: blur(1px);
}

/* ── STEAM WISPS ─────────────────────────────────────── */
.cap-steam-container {
  position: absolute;
  top: 8%; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 90px;
  z-index: 8; pointer-events: none; opacity: 0;
}

.steam-wisp {
  position: absolute;
  bottom: 0;
  width: 12px; height: 40px;
  border-radius: 50% 50% 40% 40%;
  background: radial-gradient(ellipse, rgba(255,220,100,0.5) 0%, transparent 70%);
  filter: blur(4px);
  animation: steamRise 2.4s ease-in-out infinite;
}
.steam-wisp.w1 { left: 8px;  animation-delay: 0s;   width: 10px; height: 35px; }
.steam-wisp.w2 { left: 25px; animation-delay: 0.4s; width: 14px; height: 45px; }
.steam-wisp.w3 { left: 42px; animation-delay: 0.8s; width: 10px; height: 30px; }

@keyframes steamRise {
  0%   { transform: translateY(0) scaleX(1); opacity: 0; }
  25%  { opacity: 0.8; }
  75%  { opacity: 0.4; }
  100% { transform: translateY(-60px) scaleX(1.5); opacity: 0; }
}

/* ── PARTICLE CONTAINER ──────────────────────────────── */
.cap-particles-container {
  position: absolute;
  top: 13%; left: 50%;
  width: 0; height: 0;
  z-index: 9; pointer-events: none;
}

.cap-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

/* ── GLOW HALO after cap open ────────────────────────── */
.bottle-placeholder-showcase.cap-revealed .fallback-product-img {
  filter: drop-shadow(0 0 35px rgba(255,215,0,0.55)) drop-shadow(0 20px 40px rgba(212,175,55,0.45));
  transition: filter 0.9s ease;
}

@keyframes revealRingPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.04); }
}

