/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0604;
  color: #f5f0e8;
  overflow-x: hidden;
  cursor: default;
}

/* ── Custom Cursor Glow ────────────────────── */
.cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,60,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out;
}

/* ── Scroll Progress ──────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; background: linear-gradient(90deg, #d4a03c, #e8c268, #d4a03c);
  z-index: 10000;
  transform-origin: left;
  transform: scaleX(0);
}

/* ── Navigation ───────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 4rem;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(10,6,4,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.4);
  padding: 1rem 4rem;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 3px;
  color: #d4a03c;
  text-decoration: none;
}
.logo span { color: #f5f0e8; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: #b0a898; text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: #d4a03c;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #d4a03c; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, #d4a03c, #b8862e);
  color: #0a0604 !important; padding: 0.6rem 1.8rem;
  border-radius: 50px; font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(212,160,60,0.3); }
.nav-cta::after { display: none !important; }

/* ── Hero Section ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(80,40,10,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,160,60,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(60,30,10,0.6) 0%, transparent 60%);
}

/* Floating chocolate particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212,160,60,0.15);
  animation: floatParticle 8s ease-in-out infinite;
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-80px) rotate(180deg); opacity: 0.7; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 2rem;
}
.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(212,160,60,0.4);
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: #d4a03c;
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s 0.3s ease forwards;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(50px);
  animation: fadeUp 1s 0.5s ease forwards;
}
.hero h1 .gold { color: #d4a03c; }
.hero h1 .outline {
  -webkit-text-stroke: 2px #d4a03c;
  color: transparent;
}
.hero-sub {
  font-size: 1.15rem; color: #b0a898;
  max-width: 500px; margin: 0 auto 2.5rem;
  line-height: 1.7; font-weight: 300;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s 0.7s ease forwards;
}
.hero-buttons {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s 0.9s ease forwards;
}
.btn-primary {
  background: linear-gradient(135deg, #d4a03c, #e8c268);
  color: #0a0604; padding: 1rem 3rem;
  border: none; border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(212,160,60,0.35);
}
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(212,160,60,0.4);
  color: #d4a03c; padding: 1rem 3rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: rgba(212,160,60,0.1);
  border-color: #d4a03c;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; z-index: 2;
  opacity: 0; animation: fadeUp 1s 1.2s ease forwards;
}
.scroll-indicator span {
  font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; color: #b0a898;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, #d4a03c, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Marquee ───────────────────────────────── */
.marquee-section {
  padding: 2rem 0;
  border-top: 1px solid rgba(212,160,60,0.15);
  border-bottom: 1px solid rgba(212,160,60,0.15);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 4rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 4px;
  color: rgba(212,160,60,0.25);
  display: flex; align-items: center; gap: 2rem;
}
.marquee-item .dot {
  width: 6px; height: 6px;
  background: #d4a03c; border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Section Common ───────────────────────── */
section { position: relative; }
.section-pad { padding: 8rem 4rem; }

.reveal {
  opacity: 0; transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-80px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(80px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.85);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.section-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: #d4a03c; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-desc {
  font-size: 1.05rem; color: #b0a898;
  line-height: 1.8; max-width: 500px; font-weight: 300;
}

/* ── Product Showcase (3D Cards) ──────────── */
.product-section {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(60,30,10,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(212,160,60,0.08) 0%, transparent 50%);
  position: relative;
}

/* Floating rotating product images */
.floating-product-img {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,160,60,0.1), rgba(90,53,32,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  animation: floatRotate 8s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 0;
}
.floating-product-img:nth-child(1) {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}
.floating-product-img:nth-child(2) {
  bottom: 15%;
  left: 3%;
  animation-delay: 2s;
  animation-duration: 10s;
}
@keyframes floatRotate {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) rotate(180deg) scale(1.1);
    opacity: 0.9;
  }
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}
.product-card {
  background: linear-gradient(160deg, rgba(40,25,12,0.8), rgba(20,12,6,0.9));
  border: 1px solid rgba(212,160,60,0.12);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(212,160,60,0.08);
}
.product-card::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(212,160,60,0.06), transparent 50%);
  transform: rotate(0deg);
  transition: transform 0.6s;
}
.product-card:hover::before { transform: rotate(30deg); }
.card-icon {
  width: 100px; height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
.card-icon.choco {
  background: linear-gradient(135deg, #3e2013, #5a3520);
  box-shadow: 0 10px 40px rgba(62,32,19,0.5);
}
.card-icon.peanut {
  background: linear-gradient(135deg, #6b4c2a, #8b6240);
  box-shadow: 0 10px 40px rgba(107,76,42,0.5);
}
.card-icon.dark {
  background: linear-gradient(135deg, #1a0f0a, #2d1810);
  box-shadow: 0 10px 40px rgba(26,15,10,0.5);
}
.product-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.product-card .flavor {
  color: #d4a03c; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1rem;
}
.product-card p {
  color: #b0a898; font-size: 0.9rem;
  line-height: 1.6; font-weight: 300;
}
.card-stats {
  display: flex; justify-content: center; gap: 1.5rem;
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(212,160,60,0.1);
}
.stat { text-align: center; }
.stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; color: #d4a03c;
}
.stat-label {
  font-size: 0.65rem; color: #776a5e;
  letter-spacing: 1px; text-transform: uppercase;
}

/* ── Benefits / Features ──────────────────── */
.benefits-section {
  background: linear-gradient(180deg, #0a0604, #120d08, #0a0604);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}
.benefit-list { display: flex; flex-direction: column; gap: 2rem; }
.benefit-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem;
  border-radius: 16px;
  transition: background 0.3s;
}
.benefit-item:hover {
  background: rgba(212,160,60,0.04);
}
.benefit-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,160,60,0.15), rgba(212,160,60,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.benefit-item h4 {
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 0.3rem;
}
.benefit-item p {
  font-size: 0.9rem; color: #b0a898;
  line-height: 1.6; font-weight: 300;
}

/* Nutrition visual */
.nutrition-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.nutrition-ring {
  position: relative;
  width: 320px; height: 320px;
}
.ring-svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.ring-track { fill: none; stroke: rgba(212,160,60,0.08); stroke-width: 8; }
.ring-fill {
  fill: none; stroke: #d4a03c; stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 880;
  stroke-dashoffset: 880;
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ring-fill.animated { stroke-dashoffset: 220; }
.ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.ring-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem; color: #d4a03c;
}
.ring-label {
  font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; color: #b0a898;
}
.ring-sub-stats {
  position: absolute; bottom: -3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 3rem;
}

/* ── Ingredients Horizontal Scroll ─────────── */
.ingredients-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(80,40,10,0.2) 0%, transparent 50%);
}
.horiz-scroll-wrapper {
  overflow-x: auto;
  padding: 3rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.horiz-scroll-wrapper::-webkit-scrollbar { display: none; }
.ingredient-track {
  display: flex; gap: 2rem;
  padding: 0 4rem;
  width: max-content;
}
.ingredient-card {
  flex-shrink: 0;
  width: 260px;
  background: linear-gradient(160deg, rgba(40,25,12,0.6), rgba(15,10,5,0.8));
  border: 1px solid rgba(212,160,60,0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.4s, border-color 0.4s;
}
.ingredient-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,160,60,0.3);
}
.ing-emoji {
  font-size: 3rem; margin-bottom: 1rem;
  display: block;
}
.ingredient-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.ingredient-card p {
  font-size: 0.85rem; color: #b0a898;
  line-height: 1.6; font-weight: 300;
}

/* ── Image Gallery (Scroll Pop-Up) ──────────── */
.gallery-section {
  background: linear-gradient(180deg, #0a0604, #130c06, #0a0604);
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(160deg, rgba(40,25,12,0.7), rgba(15,10,5,0.9));
  border: 1px solid rgba(212,160,60,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Start invisible & scaled down */
  opacity: 0;
  transform: scale(0.4) rotate(-15deg);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s;
}
.gallery-item.pop-visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.gallery-item:hover {
  box-shadow: 0 20px 60px rgba(212,160,60,0.15), 0 0 0 1px rgba(212,160,60,0.3);
  transform: scale(1.05) rotate(0deg) !important;
}
.gallery-item .gallery-emoji {
  font-size: 5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover .gallery-emoji {
  transform: rotate(360deg) scale(1.2);
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,6,4,0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
}
.gallery-overlay p {
  font-size: 0.8rem;
  color: #b0a898;
}
/* Stagger the pop-in delays */
.gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.2s; }
.gallery-item:nth-child(4) { transition-delay: 0.3s; }
.gallery-item:nth-child(5) { transition-delay: 0.15s; }
.gallery-item:nth-child(6) { transition-delay: 0.25s; }

/* ── Hero Spinning Product ─────────────────── */
.hero-floating-img {
  position: absolute;
  z-index: 1;
  font-size: 8rem;
  animation: heroSpin 12s linear infinite;
  filter: drop-shadow(0 0 40px rgba(212,160,60,0.3));
  opacity: 0.3;
}
.hero-floating-img.left {
  left: 6%;
  top: 30%;
}
.hero-floating-img.right {
  right: 6%;
  bottom: 25%;
  animation-direction: reverse;
  animation-duration: 15s;
}
@keyframes heroSpin {
  from { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(1.1); }
  50% { transform: rotate(180deg) scale(1); }
  75% { transform: rotate(270deg) scale(0.9); }
  to { transform: rotate(360deg) scale(1); }
}

/* ── Parallax image strip between sections ── */
.parallax-strip {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(212,160,60,0.08);
  border-bottom: 1px solid rgba(212,160,60,0.08);
  background: rgba(15,10,5,0.6);
}
.parallax-img {
  font-size: 5rem;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(40,25,12,0.8), rgba(20,12,6,0.9));
  border: 1px solid rgba(212,160,60,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(80px) rotate(10deg);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.parallax-img.pop-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}
.parallax-img:hover {
  transform: translateY(-10px) rotate(-5deg) scale(1.15) !important;
  box-shadow: 0 20px 50px rgba(212,160,60,0.2);
  border-color: rgba(212,160,60,0.4);
}
.parallax-img:nth-child(1) { transition-delay: 0s; }
.parallax-img:nth-child(2) { transition-delay: 0.1s; }
.parallax-img:nth-child(3) { transition-delay: 0.15s; }
.parallax-img:nth-child(4) { transition-delay: 0.2s; }
.parallax-img:nth-child(5) { transition-delay: 0.25s; }
.parallax-img:nth-child(6) { transition-delay: 0.3s; }
.parallax-img:nth-child(7) { transition-delay: 0.35s; }

/* Continuously rotating ring around a section */
.rotating-ring {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 2px dashed rgba(212,160,60,0.08);
  border-radius: 50%;
  animation: orbitRing 30s linear infinite;
  pointer-events: none;
}
.rotating-ring.ring-1 { top: -100px; left: -100px; }
.rotating-ring.ring-2 {
  bottom: -120px; right: -120px;
  animation-direction: reverse;
  animation-duration: 40s;
  width: 600px; height: 600px;
}
.rotating-ring .orbit-dot {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,160,60,0.2), rgba(90,53,32,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.rotating-ring .orbit-dot:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.rotating-ring .orbit-dot:nth-child(2) { top: 50%; right: 0; transform: translate(50%, -50%); }
.rotating-ring .orbit-dot:nth-child(3) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.rotating-ring .orbit-dot:nth-child(4) { top: 50%; left: 0; transform: translate(-50%, -50%); }

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

/* ── Stats Counter ────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, #1a0f08, #0a0604);
  border-top: 1px solid rgba(212,160,60,0.1);
  border-bottom: 1px solid rgba(212,160,60,0.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}
.stat-block {}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: #d4a03c;
  line-height: 1;
}
.stat-number .suffix { font-size: 0.6em; }
.stat-desc {
  font-size: 0.8rem; color: #b0a898;
  letter-spacing: 2px; text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ── Testimonials ─────────────────────────── */
.testimonials-section {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(212,160,60,0.06) 0%, transparent 50%);
}
.testimonial-carousel {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: linear-gradient(160deg, rgba(40,25,12,0.5), rgba(15,10,5,0.7));
  border: 1px solid rgba(212,160,60,0.08);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: rgba(212,160,60,0.15);
  position: absolute; top: 0.5rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem; color: #d4cfc6;
  line-height: 1.8; font-weight: 300;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a03c, #8b6b2a);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: #0a0604;
}
.author-info h5 { font-size: 0.95rem; font-weight: 600; }
.author-info span {
  font-size: 0.8rem; color: #776a5e;
}
.stars {
  color: #d4a03c; font-size: 0.85rem;
  margin-bottom: 1rem; position: relative; z-index: 1;
}

/* ── CTA Section ──────────────────────────── */
.cta-section {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212,160,60,0.1) 0%, transparent 60%);
}
.cta-section .section-title {
  max-width: 700px; margin: 0 auto 1.5rem;
}
.cta-section .section-desc {
  max-width: 550px; margin: 0 auto 3rem;
}
.cta-big-btn {
  display: inline-flex; align-items: center; gap: 1rem;
  background: linear-gradient(135deg, #d4a03c, #e8c268);
  color: #0a0604; padding: 1.2rem 3.5rem;
  border: none; border-radius: 60px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
  position: relative; overflow: hidden;
  text-decoration: none;
}
.cta-big-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.cta-big-btn:hover::before { transform: translateX(100%); }
.cta-big-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(212,160,60,0.4);
}
.cta-big-btn .arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.cta-big-btn:hover .arrow { transform: translateX(6px); }

/* ── Footer ───────────────────────────────── */
footer {
  background: #060402;
  padding: 5rem 4rem 2rem;
  border-top: 1px solid rgba(212,160,60,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .logo { font-size: 2rem; display: block; margin-bottom: 1rem; }
.footer-brand p {
  color: #776a5e; font-size: 0.9rem;
  line-height: 1.7; max-width: 280px;
}
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 2px;
  color: #d4a03c; margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  color: #776a5e; text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: #d4a03c; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212,160,60,0.06);
}
.footer-bottom p {
  font-size: 0.75rem; color: #4a4038;
}
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid rgba(212,160,60,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #776a5e; text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.social-links a:hover {
  border-color: #d4a03c; color: #d4a03c;
  transform: translateY(-3px);
}

/* ── Product Page Styles ─────────────────── */
.product-detail-section {
  padding-top: 8rem;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  position: relative;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(212,160,60,0.1) 0%, transparent 70%);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(212,160,60,0.1);
  position: relative;
}
.product-main-emoji {
  font-size: 10rem;
  animation: heroSpin 20s linear infinite;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}
.product-info-panel h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #f5f0e8;
}
.product-price-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #d4a03c;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.product-price-tag span {
  font-size: 1rem;
  color: #776a5e;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.flavor-selector {
  margin-bottom: 2rem;
}
.flavor-selector label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b0a898;
  margin-bottom: 0.8rem;
}
.flavor-options {
  display: flex;
  gap: 1rem;
}
.flavor-btn {
  background: rgba(20,12,6,0.8);
  border: 1px solid rgba(212,160,60,0.2);
  color: #f5f0e8;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.flavor-btn.active, .flavor-btn:hover {
  border-color: #d4a03c;
  background: rgba(212,160,60,0.1);
}
.quantity-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.qty-btn {
  background: rgba(212,160,60,0.2);
  border: none;
  color: #d4a03c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}
.qty-btn:hover {
  background: rgba(212,160,60,0.4);
}
.qty-input {
  background: transparent;
  border: 1px solid rgba(212,160,60,0.3);
  color: #f5f0e8;
  width: 60px;
  height: 40px;
  text-align: center;
  border-radius: 8px;
  font-size: 1.2rem;
}
.total-price-display {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #b0a898;
}
.total-price-display strong {
  color: #d4a03c;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1rem 2rem; }
  .nav-links { display: none; }
  .section-pad { padding: 5rem 2rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-carousel { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 3rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-image-container { padding: 1.5rem; }
  .product-main-emoji { font-size: 6rem; }
}
