/* =========================================================================
   CREAMY BELL — PREMIUM STYLESHEET
   Design language: "Melted Gold" — warm cream base, deep chocolate ink,
   strawberry/mango/berry accents pulled straight from the tub. Playfair
   Display carries the indulgent, editorial voice; Plus Jakarta Sans keeps
   the UI crisp and modern. Signature motif: the "drip" — a soft curved
   underline/divider inspired by melting ice cream, used sparingly at
   section transitions instead of generic straight rules.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root{
  /* ---------- Color tokens ---------- */
  --cream:        #FFF8EF;
  --cream-deep:   #F7E9D7;
  --cream-line:   #EADFC9;
  --paper:        #FFFDF9;

  --choc:         #3A2015;
  --choc-soft:    #5C3A28;
  --choc-mute:    #8A6A56;

  --strawberry:       #FF5D8F;
  --strawberry-deep:  #E13566;
  --strawberry-tint:  #FFE1EB;

  --mango:        #FFAE34;
  --mango-deep:   #F08A00;
  --mango-tint:   #FFEFD2;

  --berry:        #7A3E8E;
  --berry-deep:   #5B2C6B;
  --berry-tint:   #F0E3F4;

  --mint:         #4FBE93;
  --mint-tint:    #DFF6EC;

  --caramel:      #C07A3E;

  --white:        #FFFFFF;

  /* ---------- Gradients ---------- */
  --grad-hero: linear-gradient(135deg, #FFE3C7 0%, #FFD1DE 42%, #F3C9EA 78%, #DCC3F2 100%);
  --grad-choc: linear-gradient(135deg, #4A2A1B 0%, #2C160E 100%);
  --grad-berry: linear-gradient(135deg, #7A3E8E 0%, #4F2361 100%);
  --grad-mango: linear-gradient(135deg, #FFC163 0%, #FF8A3D 100%);
  --grad-mint: linear-gradient(135deg, #6BD9AC 0%, #35A67D 100%);
  --grad-strawberry: linear-gradient(135deg, #FF8FB1 0%, #E13566 100%);

  /* ---------- Type ---------- */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---------- Shape / shadow ---------- */
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 30px -12px rgba(58, 32, 21, 0.18);
  --shadow-mid:  0 20px 48px -16px rgba(58, 32, 21, 0.28);
  --shadow-deep: 0 32px 70px -20px rgba(58, 32, 21, 0.38);
  --shadow-glow-strawberry: 0 18px 40px -14px rgba(225, 53, 102, 0.45);
  --shadow-glow-mango: 0 18px 40px -14px rgba(240, 138, 0, 0.4);

  --container: 1240px;
}

/* ---------------------------------------------------------------------
   RESET
   --------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--choc);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
input, textarea, select{ font-family:inherit; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; line-height:1.08; color: var(--choc); }
p{ margin:0; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{ outline: 3px solid var(--berry); outline-offset: 3px; border-radius: 6px; }

.container{ max-width: var(--container); margin:0 auto; padding: 0 28px; }
.section{ position: relative; padding: 120px 0; }
.section--tight{ padding: 90px 0; }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body); font-weight:700; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--strawberry-deep);
  margin-bottom: 18px;
}
.eyebrow::before{ content:''; width:26px; height:2px; background: var(--strawberry-deep); border-radius:2px; }

.section-head{ max-width: 640px; margin: 0 0 56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(32px, 4.2vw, 52px); font-weight:700; }
.section-head p{ margin-top:16px; font-size:17px; line-height:1.7; color: var(--choc-soft); }

/* Drip divider — signature shape motif used between sections */
.drip-divider{ width:100%; height:70px; display:block; margin-top:-1px; }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn{
  position: relative;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-weight:700; font-size:15px; letter-spacing:0.01em;
  padding: 17px 34px; border-radius: var(--radius-pill);
  border: none; cursor:pointer; white-space:nowrap;
  transition: transform .35s cubic-bezier(.2,.9,.3,1.3), box-shadow .35s ease, background .35s ease;
  isolation:isolate; overflow:hidden;
}
.btn::after{
  content:''; position:absolute; inset:0; border-radius: inherit;
  background: radial-gradient(circle at var(--rx,50%) var(--ry,50%), rgba(255,255,255,0.45), transparent 60%);
  opacity:0; transition: opacity .4s ease; z-index:1;
}
.btn:active::after{ opacity:1; }
.btn > *{ position:relative; z-index:2; }

.btn-primary{ background: var(--grad-strawberry); color: var(--white); box-shadow: var(--shadow-glow-strawberry); }
.btn-primary:hover{ transform: translateY(-3px) scale(1.02); box-shadow: 0 26px 50px -14px rgba(225,53,102,0.55); }

.btn-dark{ background: var(--grad-choc); color: var(--cream); box-shadow: var(--shadow-mid); }
.btn-dark:hover{ transform: translateY(-3px) scale(1.02); }

.btn-outline{ background: transparent; color: var(--choc); border: 2px solid var(--choc); padding: 15px 32px; }
.btn-outline:hover{ background: var(--choc); color: var(--cream); transform: translateY(-3px); }

.btn-ghost-light{ background: rgba(255,255,255,0.16); color:#fff; border:1.5px solid rgba(255,255,255,0.55); backdrop-filter: blur(8px); padding:15px 32px; }
.btn-ghost-light:hover{ background: rgba(255,255,255,0.28); transform: translateY(-3px); }

.btn-sm{ padding: 11px 22px; font-size: 13px; }
.btn-block{ width:100%; }

/* ---------------------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------------------- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 999;
  padding: 22px 0;
  transition: all .45s cubic-bezier(.2,.8,.2,1);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; }
.site-header.is-scrolled{
  padding: 12px 0; background: rgba(255,248,239,0.86); backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 30px -14px rgba(58,32,21,0.25);
  border-bottom: 1px solid rgba(58,32,21,0.06);
}
.brand{ display:flex; align-items:center; gap:12px; font-family: var(--font-display); font-weight:800; font-size:24px; color: var(--choc); }
.brand .brand-mark{
  width:44px; height:44px; border-radius: 14px; background: var(--grad-strawberry);
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:20px; box-shadow: var(--shadow-glow-strawberry);
  flex-shrink:0;
}
.brand span{ font-style: italic; color: var(--strawberry-deep); }

.nav-links{ display:flex; align-items:center; gap:38px; }
.nav-links a{
  font-weight:600; font-size:15px; color: var(--choc-soft); position:relative; padding:6px 0;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--strawberry-deep);
  transition: width .3s ease; border-radius:2px;
}
.nav-links a:hover{ color: var(--choc); }
.nav-links a:hover::after{ width:100%; }
.nav-links a.active{ color: var(--strawberry-deep); }
.nav-links a.active::after{ width:100%; }

.nav-right{ display:flex; align-items:center; gap:18px; }
.nav-toggle{
  display:none; width:46px; height:46px; border-radius:50%; border:1.5px solid var(--cream-line);
  background: var(--paper); align-items:center; justify-content:center; flex-direction:column; gap:5px;
}
.nav-toggle span{ width:20px; height:2px; background: var(--choc); border-radius:2px; transition: all .3s ease; }
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-panel{
  position: fixed; inset: 0 0 0 auto; width:min(88vw, 380px); background: var(--cream);
  transform: translateX(100%); transition: transform .45s cubic-bezier(.2,.8,.2,1);
  z-index: 1001; padding: 110px 32px 40px; box-shadow: -30px 0 60px -20px rgba(0,0,0,0.3);
}
.mobile-panel.is-open{ transform: translateX(0); }
.mobile-panel a{ display:block; font-family: var(--font-display); font-size:26px; padding: 14px 0; border-bottom:1px solid var(--cream-line); color: var(--choc); font-weight:700; }
.mobile-overlay{ position: fixed; inset:0; background: rgba(58,32,21,0.4); backdrop-filter: blur(2px); opacity:0; pointer-events:none; transition: opacity .4s ease; z-index:1000; }
.mobile-overlay.is-open{ opacity:1; pointer-events:auto; }

/* ---------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------- */
.hero{
  position:relative; min-height: 100vh; display:flex; align-items:center;
  padding: 150px 0 90px; overflow:hidden; background: var(--grad-hero);
}
.hero::before, .hero::after{
  content:''; position:absolute; border-radius:50%; filter: blur(60px); z-index:0;
}
.hero::before{ width:480px; height:480px; background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%); top:-160px; right:-120px; }
.hero::after{ width:420px; height:420px; background: radial-gradient(circle, rgba(122,62,142,0.28), transparent 70%); bottom:-160px; left:-100px; }

.hero-grid{ position:relative; z-index:2; display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items:center; }

.hero-copy .eyebrow{ background: rgba(255,255,255,0.55); padding: 8px 18px; border-radius: var(--radius-pill); backdrop-filter: blur(6px); }
.hero-copy h1{
  font-size: clamp(42px, 5.6vw, 76px); font-weight: 800; letter-spacing:-0.01em;
  margin-bottom: 24px;
}
.hero-copy h1 em{ font-style: italic; color: var(--strawberry-deep); }
.hero-copy p.lead{ font-size: 19px; line-height:1.75; color: var(--choc-soft); max-width: 480px; margin-bottom: 34px; }

.hero-cta-row{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom: 44px; }

.trust-row{ display:flex; gap:30px; flex-wrap:wrap; }
.trust-item{ display:flex; align-items:center; gap:10px; font-weight:700; font-size:14px; color: var(--choc-soft); }
.trust-item .dot{ width:8px; height:8px; border-radius:50%; background: var(--mint); box-shadow: 0 0 0 4px var(--mint-tint); }

.hero-flavors{ display:flex; gap:14px; margin-top:38px; }
.flavor-chip{
  display:flex; align-items:center; gap:10px; background: rgba(255,255,255,0.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.7); padding: 8px 16px 8px 8px; border-radius: var(--radius-pill);
  font-weight:700; font-size:13px; box-shadow: var(--shadow-soft);
}
.flavor-chip img{ width:32px; height:32px; border-radius:50%; object-fit:cover; }

.hero-visual{ position:relative; z-index:2; }
.hero-visual-card{
  position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-deep);
  aspect-ratio: 4/5; animation: floatY 6s ease-in-out infinite;
}
.hero-visual-card img{ width:100%; height:100%; object-fit:cover; }
.hero-badge-float{
  position:absolute; background: var(--white); border-radius: 20px; padding:14px 18px; box-shadow: var(--shadow-mid);
  display:flex; align-items:center; gap:12px; animation: floatY 5s ease-in-out infinite;
}
.hero-badge-float.top{ top: -6%; left: -12%; animation-delay: .3s; }
.hero-badge-float.bottom{ bottom: 6%; right: -10%; animation-delay: .8s; }
.hero-badge-float .icon{ width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:20px; color:#fff; }
.hero-badge-float .icon.mango{ background: var(--grad-mango); }
.hero-badge-float .icon.mint{ background: var(--grad-mint); }
.hero-badge-float strong{ display:block; font-size:14px; font-family: var(--font-display); }
.hero-badge-float small{ color: var(--choc-mute); font-size:12px; font-weight:600; }

@keyframes floatY{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-16px);} }

.scroll-cue{
  position:absolute; bottom: 34px; left:50%; transform: translateX(-50%); z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:8px; color: var(--choc-soft); font-weight:700; font-size:12px; letter-spacing:.1em; text-transform:uppercase;
}
.scroll-cue .mouse{ width:26px; height:42px; border-radius: 16px; border:2px solid var(--choc-soft); position:relative; }
.scroll-cue .mouse::before{ content:''; position:absolute; top:8px; left:50%; width:4px; height:8px; background: var(--choc-soft); border-radius:2px; transform: translateX(-50%); animation: scrollDot 1.6s ease infinite; }
@keyframes scrollDot{ 0%{opacity:1; transform: translate(-50%,0);} 70%{opacity:0; transform: translate(-50%,14px);} 100%{opacity:0;} }

/* ---------------------------------------------------------------------
   FLAVOR RIBBON (marquee) — signature device
   --------------------------------------------------------------------- */
.ribbon{ background: var(--choc); padding: 22px 0; overflow:hidden; position:relative; }
.ribbon-track{ display:flex; gap:56px; width:max-content; animation: marquee 32s linear infinite; }
.ribbon-track span{ font-family: var(--font-display); font-style:italic; font-size:22px; color: var(--cream); white-space:nowrap; display:flex; align-items:center; gap:16px; }
.ribbon-track span::after{ content:'✦'; color: var(--mango); font-size:14px; }
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ---------------------------------------------------------------------
   PRODUCT CARDS / GRIDS
   --------------------------------------------------------------------- */
.card-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.card-grid.cols-3{ grid-template-columns: repeat(3,1fr); }

.product-card{
  background: var(--paper); border-radius: var(--radius-md); overflow:hidden;
  box-shadow: var(--shadow-soft); transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
  display:flex; flex-direction:column; position:relative;
}
.product-card:hover{ transform: translateY(-10px); box-shadow: var(--shadow-deep); }
.product-card .thumb{ position:relative; aspect-ratio: 1/1; overflow:hidden; }
.product-card .thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .thumb img{ transform: scale(1.12) rotate(1deg); }
.product-card .badge{
  position:absolute; top:16px; left:16px; background: var(--grad-strawberry); color:#fff; font-size:11px; font-weight:800;
  letter-spacing:.05em; text-transform:uppercase; padding:7px 14px; border-radius: var(--radius-pill); box-shadow: var(--shadow-glow-strawberry);
}
.product-card .quick-view{
  position:absolute; left:50%; bottom:16px; transform: translate(-50%,16px); opacity:0;
  transition: all .4s ease; background: var(--white); color:var(--choc); font-weight:700; font-size:13px;
  padding: 10px 22px; border-radius: var(--radius-pill); box-shadow: var(--shadow-mid); white-space:nowrap;
}
.product-card:hover .quick-view{ opacity:1; transform: translate(-50%,0); }
.product-card .info{ padding: 22px 22px 26px; display:flex; flex-direction:column; gap:8px; flex:1; }
.product-card .cat{ font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color: var(--strawberry-deep); }
.product-card h3{ font-size: 21px; }
.product-card .meta-row{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:10px; }
.product-card .price{ font-family: var(--font-display); font-weight:700; font-size:19px; color: var(--choc); }
.product-card .view-link{ font-weight:700; font-size:13px; color: var(--berry); display:flex; align-items:center; gap:6px; }

/* ---------------------------------------------------------------------
   CATEGORY TILES
   --------------------------------------------------------------------- */
.category-tiles{ display:grid; grid-template-columns: repeat(4, 1fr); gap:24px; }
.category-tile{
  position:relative; border-radius: var(--radius-md); overflow:hidden; aspect-ratio: 3/3.6;
  box-shadow: var(--shadow-soft); transition: transform .5s ease, box-shadow .5s ease;
}
.category-tile:hover{ transform: translateY(-8px); box-shadow: var(--shadow-deep); }
.category-tile img{ width:100%; height:100%; object-fit:cover; transition: transform .8s ease; }
.category-tile:hover img{ transform: scale(1.1); }
.category-tile::before{ content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(58,32,21,0.85) 0%, rgba(58,32,21,0.05) 55%); }
.category-tile .label{ position:absolute; left:20px; bottom:18px; color:#fff; z-index:2; }
.category-tile .label strong{ font-family: var(--font-display); font-size: 22px; display:block; }
.category-tile .label span{ font-size:12px; font-weight:700; color: var(--mango); text-transform:uppercase; letter-spacing:.08em; }

/* ---------------------------------------------------------------------
   BEST SELLERS — horizontal cards
   --------------------------------------------------------------------- */
.h-scroll{ display:flex; gap:24px; overflow-x:auto; padding-bottom:20px; scroll-snap-type: x mandatory; }
.h-scroll::-webkit-scrollbar{ height:8px; }
.h-scroll::-webkit-scrollbar-thumb{ background: var(--cream-line); border-radius:10px; }
.h-card{
  flex: 0 0 320px; scroll-snap-align:start; background: var(--paper); border-radius: var(--radius-md);
  overflow:hidden; box-shadow: var(--shadow-soft); display:flex; flex-direction:column;
}
.h-card .thumb{ aspect-ratio: 16/11; overflow:hidden; }
.h-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.h-card .info{ padding:20px 22px 24px; }
.h-card .rank{ font-family: var(--font-display); font-size:34px; color: var(--strawberry-tint); -webkit-text-stroke: 1.5px var(--strawberry-deep); margin-bottom:6px; }

/* ---------------------------------------------------------------------
   WHY / ICON CARDS
   --------------------------------------------------------------------- */
.feature-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:26px; }
.feature-card{
  background: var(--paper); border-radius: var(--radius-md); padding: 34px 28px; box-shadow: var(--shadow-soft);
  transition: transform .4s ease, box-shadow .4s ease;
}
.feature-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-mid); }
.feature-card .icon{ width:58px; height:58px; border-radius:18px; display:flex; align-items:center; justify-content:center; font-size:26px; color:#fff; margin-bottom:20px; }
.feature-card h3{ font-size:19px; margin-bottom:10px; }
.feature-card p{ color: var(--choc-soft); font-size:14.5px; line-height:1.65; }

.icon-strawberry{ background: var(--grad-strawberry); box-shadow: var(--shadow-glow-strawberry); }
.icon-mango{ background: var(--grad-mango); box-shadow: var(--shadow-glow-mango); }
.icon-berry{ background: var(--grad-berry); }
.icon-mint{ background: var(--grad-mint); }
.icon-choc{ background: var(--grad-choc); }

/* ---------------------------------------------------------------------
   PROMISE (dark section)
   --------------------------------------------------------------------- */
.promise{ background: var(--grad-choc); color: var(--cream); position:relative; overflow:hidden; }
.promise::before{ content:''; position:absolute; width:600px; height:600px; border-radius:50%; background: radial-gradient(circle, rgba(255,174,52,0.16), transparent 70%); top:-220px; right:-160px; }
.promise .section-head h2{ color:#fff; }
.promise .section-head p{ color: rgba(255,248,239,0.75); }
.promise-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; position:relative; z-index:2; }
.promise-card{ background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); padding:30px 26px; backdrop-filter: blur(6px); }
.promise-card .num{ font-family: var(--font-display); font-style:italic; font-size:15px; color: var(--mango); margin-bottom:14px; }
.promise-card h3{ color:#fff; font-size:20px; margin-bottom:10px; }
.promise-card p{ color: rgba(255,248,239,0.72); font-size:14px; line-height:1.65; }

.counter-row{ display:flex; gap:60px; margin-top:60px; flex-wrap:wrap; position:relative; z-index:2; }
.counter-item strong{ font-family: var(--font-display); font-size: 46px; color: var(--mango); display:block; }
.counter-item span{ font-size:13px; letter-spacing:.08em; text-transform:uppercase; color: rgba(255,248,239,0.7); font-weight:700; }

/* ---------------------------------------------------------------------
   QR SECTION
   --------------------------------------------------------------------- */
.qr-section{ background: var(--berry-tint); position:relative; overflow:hidden; }
.qr-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:60px; align-items:center; }
.qr-card{
  background: var(--paper); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-deep);
  display:flex; flex-direction:column; align-items:center; text-align:center; position:relative;
}
.qr-code-visual{
  width:180px; height:180px; border-radius:24px; background: var(--grad-berry); display:flex; align-items:center; justify-content:center;
  margin-bottom:24px; box-shadow: 0 20px 40px -14px rgba(122,62,142,0.5); position:relative;
}
.qr-code-visual svg{ width:120px; height:120px; }
.qr-scan-ring{ position:absolute; inset:-10px; border-radius:30px; border:2px dashed rgba(122,62,142,0.4); animation: spin 18s linear infinite; }
@keyframes spin{ to{ transform: rotate(360deg); } }
.qr-card h3{ font-size:22px; margin-bottom:8px; }
.qr-card p{ color: var(--choc-soft); font-size:14px; }

.qr-list{ display:grid; grid-template-columns: repeat(2,1fr); gap:20px; }
.qr-list-item{ background: var(--paper); border-radius: var(--radius-sm); padding:22px 20px; box-shadow: var(--shadow-soft); display:flex; gap:14px; align-items:flex-start; }
.qr-list-item .num{ font-family: var(--font-display); font-weight:700; font-size:20px; color: var(--berry); flex-shrink:0; }
.qr-list-item h4{ font-family: var(--font-body); font-weight:800; font-size:15px; margin-bottom:4px; }
.qr-list-item p{ font-size:13px; color: var(--choc-soft); line-height:1.55; }

/* ---------------------------------------------------------------------
   REVIEWS
   --------------------------------------------------------------------- */
.review-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
.review-card{ background: var(--paper); border-radius: var(--radius-md); padding: 30px 28px; box-shadow: var(--shadow-soft); position:relative; }
.review-card .stars{ color: var(--mango-deep); font-size:15px; letter-spacing:2px; margin-bottom:14px; }
.review-card p{ font-size:15px; line-height:1.7; color: var(--choc-soft); margin-bottom:22px; font-style:italic; }
.review-person{ display:flex; align-items:center; gap:12px; }
.review-person img{ width:46px; height:46px; border-radius:50%; object-fit:cover; }
.review-person strong{ display:block; font-size:14px; }
.review-person span{ font-size:12px; color: var(--choc-mute); }

/* ---------------------------------------------------------------------
   INSTAGRAM GALLERY
   --------------------------------------------------------------------- */
.insta-grid{ display:grid; grid-template-columns: repeat(6,1fr); gap:14px; }
.insta-item{ position:relative; aspect-ratio:1/1; border-radius:18px; overflow:hidden; box-shadow: var(--shadow-soft); }
.insta-item img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.insta-item:hover img{ transform: scale(1.15); }
.insta-item::after{ content:'♥ Instagram'; position:absolute; inset:0; background: rgba(58,32,21,0.55); color:#fff; font-weight:700; font-size:12px;
  display:flex; align-items:center; justify-content:center; opacity:0; transition: opacity .35s ease; }
.insta-item:hover::after{ opacity:1; }

/* ---------------------------------------------------------------------
   DISTRIBUTOR CTA
   --------------------------------------------------------------------- */
.distributor{ background: var(--grad-mango); border-radius: var(--radius-lg); padding: 70px 60px; position:relative; overflow:hidden; box-shadow: var(--shadow-deep); }
.distributor::before{ content:''; position:absolute; width:340px; height:340px; border-radius:50%; background: rgba(255,255,255,0.25); top:-140px; right:-60px; }
.distributor-inner{ position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.distributor h2{ font-size: clamp(28px,3.4vw,40px); color: var(--choc); max-width:520px; }
.distributor p{ color: rgba(58,32,21,0.75); margin-top:12px; max-width:480px; font-size:15px; }

/* ---------------------------------------------------------------------
   NEWSLETTER
   --------------------------------------------------------------------- */
.newsletter{ text-align:center; }
.newsletter-form{ display:flex; gap:12px; max-width:520px; margin: 30px auto 0; }
.newsletter-form input{ flex:1; padding:17px 24px; border-radius: var(--radius-pill); border:2px solid var(--cream-line); background: var(--paper); font-size:15px; }
.newsletter-form input:focus{ border-color: var(--strawberry-deep); outline:none; }

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.site-footer{ background: var(--grad-choc); color: var(--cream); padding: 90px 0 30px; position:relative; overflow:hidden; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,248,239,0.12); }
.footer-brand p{ color: rgba(255,248,239,0.65); margin: 18px 0 22px; font-size:14px; line-height:1.7; max-width:300px; }
.footer-social{ display:flex; gap:12px; }
.footer-social a{ width:40px; height:40px; border-radius:50%; background: rgba(255,248,239,0.1); display:flex; align-items:center; justify-content:center; transition: all .3s ease; }
.footer-social a:hover{ background: var(--strawberry); transform: translateY(-4px); }
.footer-col h4{ font-family: var(--font-body); font-weight:800; font-size:13px; letter-spacing:.08em; text-transform:uppercase; color: var(--mango); margin-bottom:20px; }
.footer-col a, .footer-col p{ display:block; color: rgba(255,248,239,0.72); font-size:14.5px; margin-bottom:12px; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; flex-wrap:wrap; gap:12px; }
.footer-bottom p{ font-size:13px; color: rgba(255,248,239,0.55); }
.footer-bottom-links{ display:flex; gap:22px; }
.footer-bottom-links a{ font-size:13px; color: rgba(255,248,239,0.55); }
.footer-bottom-links a:hover{ color:#fff; }

/* ---------------------------------------------------------------------
   PAGE HERO (inner pages)
   --------------------------------------------------------------------- */
.page-hero{ position:relative; padding: 190px 0 100px; background: var(--grad-hero); overflow:hidden; }
.page-hero::before{ content:''; position:absolute; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 70%); top:-140px; left:-100px; }
.page-hero .container{ position:relative; z-index:2; }
.page-hero .breadcrumb{ display:flex; gap:8px; font-size:13px; font-weight:700; color: var(--choc-soft); margin-bottom:20px; }
.page-hero .breadcrumb a:hover{ color: var(--strawberry-deep); }
.page-hero h1{ font-size: clamp(38px, 5vw, 60px); max-width: 720px; }
.page-hero p.lead{ max-width:560px; margin-top:18px; font-size:17px; color: var(--choc-soft); line-height:1.7; }

/* ---------------------------------------------------------------------
   CATALOG FILTERS
   --------------------------------------------------------------------- */
.filter-bar{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 46px; }
.filter-chip{
  padding: 12px 24px; border-radius: var(--radius-pill); background: var(--paper); border:2px solid var(--cream-line);
  font-weight:700; font-size:14px; color: var(--choc-soft); transition: all .3s ease;
}
.filter-chip:hover{ border-color: var(--strawberry-deep); color: var(--choc); }
.filter-chip.active{ background: var(--grad-strawberry); border-color:transparent; color:#fff; box-shadow: var(--shadow-glow-strawberry); }

/* ---------------------------------------------------------------------
   PRODUCT PAGE
   --------------------------------------------------------------------- */
.product-hero{ padding: 160px 0 100px; }
.product-hero-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:64px; align-items:flex-start; }
.gallery-main{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-deep); aspect-ratio: 1/1; margin-bottom:16px; }
.gallery-main img{ width:100%; height:100%; object-fit:cover; }
.gallery-thumbs{ display:flex; gap:14px; }
.gallery-thumbs button{ width:88px; height:88px; border-radius:16px; overflow:hidden; border:2px solid transparent; padding:0; background:none; }
.gallery-thumbs button.active{ border-color: var(--strawberry-deep); }
.gallery-thumbs img{ width:100%; height:100%; object-fit:cover; }

.product-info .cat-tag{ display:inline-block; background: var(--strawberry-tint); color: var(--strawberry-deep); font-weight:800; font-size:12px; letter-spacing:.08em; text-transform:uppercase; padding:8px 16px; border-radius: var(--radius-pill); margin-bottom:18px; }
.product-info h1{ font-size: clamp(34px, 4vw, 48px); margin-bottom:14px; }
.product-info .tagline{ font-size:17px; color: var(--berry); font-style:italic; font-family: var(--font-display); margin-bottom:18px; }
.product-info .desc{ color: var(--choc-soft); line-height:1.75; font-size:15.5px; margin-bottom:28px; }
.spec-row{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:30px; }
.spec-pill{ background: var(--paper); border:1.5px solid var(--cream-line); border-radius: var(--radius-sm); padding:12px 18px; }
.spec-pill span{ display:block; font-size:11px; text-transform:uppercase; letter-spacing:.06em; color: var(--choc-mute); font-weight:700; }
.spec-pill strong{ font-family: var(--font-display); font-size:16px; }
.product-info .price-row{ display:flex; align-items:center; gap:20px; margin-bottom:30px; }
.product-info .price-row .price{ font-family: var(--font-display); font-size:34px; font-weight:700; }
.product-cta-row{ display:flex; gap:14px; margin-bottom:30px; }
.share-row{ display:flex; align-items:center; gap:14px; }
.share-row a{ width:38px; height:38px; border-radius:50%; background: var(--cream-deep); display:flex; align-items:center; justify-content:center; font-size:14px; transition: all .3s ease; }
.share-row a:hover{ background: var(--strawberry); color:#fff; }

.detail-tabs{ display:flex; gap:8px; border-bottom: 2px solid var(--cream-line); margin-bottom: 34px; flex-wrap:wrap; }
.detail-tab-btn{ padding: 14px 26px; font-weight:700; font-size:14.5px; color: var(--choc-mute); background:none; border:none; position:relative; }
.detail-tab-btn.active{ color: var(--strawberry-deep); }
.detail-tab-btn.active::after{ content:''; position:absolute; left:0; right:0; bottom:-2px; height:2px; background: var(--strawberry-deep); }
.detail-panel{ display:none; }
.detail-panel.active{ display:block; animation: fadeUp .5s ease; }

.nutrition-table{ width:100%; border-collapse:collapse; }
.nutrition-table tr{ border-bottom:1px solid var(--cream-line); }
.nutrition-table td{ padding: 14px 4px; font-size:14.5px; }
.nutrition-table td:last-child{ text-align:right; font-weight:800; font-family: var(--font-display); }

.info-list dt{ font-weight:800; font-size:13px; text-transform:uppercase; letter-spacing:.05em; color: var(--choc-mute); margin-top:20px; }
.info-list dd{ margin:6px 0 0; font-size:15px; color: var(--choc-soft); line-height:1.65; }

.qr-mini{ display:flex; align-items:center; gap:16px; background: var(--berry-tint); border-radius: var(--radius-md); padding:20px 24px; margin-top:20px; }
.qr-mini .icon{ width:52px; height:52px; border-radius:14px; background: var(--grad-berry); display:flex; align-items:center; justify-content:center; color:#fff; font-size:22px; flex-shrink:0; }

/* ---------------------------------------------------------------------
   ABOUT PAGE
   --------------------------------------------------------------------- */
.about-hero-img{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-deep); aspect-ratio: 21/9; margin-top:50px; }
.about-hero-img img{ width:100%; height:100%; object-fit:cover; }
.about-story{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:60px; align-items:center; }
.about-story img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-mid); }
.value-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }

/* ---------------------------------------------------------------------
   CONTACT PAGE
   --------------------------------------------------------------------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:flex-start; }
.contact-form{ background: var(--paper); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-mid); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; margin-bottom:18px; }
.form-group{ display:flex; flex-direction:column; gap:8px; }
.form-group label{ font-weight:700; font-size:13px; color: var(--choc-soft); }
.form-group input, .form-group textarea{ padding:14px 18px; border-radius:14px; border:2px solid var(--cream-line); background: var(--cream); font-size:14.5px; }
.form-group input:focus, .form-group textarea:focus{ border-color: var(--strawberry-deep); outline:none; }
.contact-info-card{ background: var(--grad-berry); border-radius: var(--radius-lg); padding:44px; color:#fff; box-shadow: var(--shadow-deep); margin-bottom:24px; }
.contact-info-card .item{ display:flex; gap:16px; margin-bottom:24px; }
.contact-info-card .item:last-child{ margin-bottom:0; }
.contact-info-card .item .icon{ width:44px; height:44px; border-radius:12px; background: rgba(255,255,255,0.16); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.map-placeholder{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-soft); aspect-ratio: 16/10; background: var(--cream-deep); display:flex; align-items:center; justify-content:center; color: var(--choc-mute); font-weight:700; position:relative; }
.map-placeholder::before{ content:''; position:absolute; inset:0; background-image: linear-gradient(rgba(58,32,21,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(58,32,21,0.05) 1px, transparent 1px); background-size: 34px 34px; }

/* ---------------------------------------------------------------------
   MISC PAGES (privacy / terms / 404)
   --------------------------------------------------------------------- */
.prose{ max-width: 780px; }
.prose h2{ font-size: 26px; margin: 40px 0 16px; }
.prose p, .prose li{ color: var(--choc-soft); line-height:1.8; font-size:15.5px; margin-bottom:14px; }
.prose ul{ padding-left:20px; list-style:disc; }

.error-page{ min-height: 90vh; display:flex; align-items:center; justify-content:center; text-align:center; background: var(--grad-hero); padding-top:100px; }
.error-page .code{ font-family: var(--font-display); font-size: clamp(100px,18vw,220px); font-weight:800; color: var(--white); -webkit-text-stroke: 3px var(--strawberry-deep); line-height:1; }

/* ---------------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
   --------------------------------------------------------------------- */
[data-reveal]{ opacity:0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible{ opacity:1; transform: translateY(0); }
[data-reveal="fade"]{ transform:none; }
[data-reveal].delay-1{ transition-delay:.1s; }
[data-reveal].delay-2{ transition-delay:.2s; }
[data-reveal].delay-3{ transition-delay:.3s; }
[data-reveal].delay-4{ transition-delay:.4s; }

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

/* Sticky mobile CTA */
.sticky-cta{
  display:none; position: fixed; bottom:0; left:0; right:0; z-index: 900;
  background: var(--paper); padding: 14px 20px; box-shadow: 0 -12px 30px -14px rgba(58,32,21,0.3);
  align-items:center; justify-content:space-between; gap:14px;
}

/* Quick view modal */
.modal-overlay{ position:fixed; inset:0; background: rgba(58,32,21,0.55); backdrop-filter: blur(4px); z-index:1200; opacity:0; pointer-events:none; transition: opacity .35s ease; display:flex; align-items:center; justify-content:center; padding:24px; }
.modal-overlay.is-open{ opacity:1; pointer-events:auto; }
.modal-box{ background: var(--paper); border-radius: var(--radius-lg); max-width: 760px; width:100%; overflow:hidden; display:grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow-deep); transform: translateY(24px) scale(.97); transition: transform .35s ease; max-height:88vh; }
.modal-overlay.is-open .modal-box{ transform: translateY(0) scale(1); }
.modal-box img{ height:100%; object-fit:cover; }
.modal-close{ position:absolute; top:20px; right:20px; width:40px; height:40px; border-radius:50%; background:#fff; box-shadow: var(--shadow-soft); border:none; font-size:18px; z-index:5; }
.modal-body{ padding:36px; position:relative; overflow-y:auto; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1080px){
  .card-grid{ grid-template-columns: repeat(2,1fr); }
  .category-tiles{ grid-template-columns: repeat(2,1fr); }
  .feature-grid{ grid-template-columns: repeat(2,1fr); }
  .promise-grid{ grid-template-columns: repeat(2,1fr); }
  .review-grid{ grid-template-columns: repeat(2,1fr); }
  .insta-grid{ grid-template-columns: repeat(3,1fr); }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; max-width:420px; margin:0 auto; }
  .about-story, .contact-grid, .qr-grid, .product-hero-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .section{ padding: 80px 0; }
  .card-grid, .card-grid.cols-3{ grid-template-columns: 1fr 1fr; gap:16px; }
  .category-tiles{ grid-template-columns: 1fr 1fr; }
  .feature-grid, .promise-grid, .review-grid{ grid-template-columns: 1fr; }
  .insta-grid{ grid-template-columns: repeat(3,1fr); gap:8px; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap:36px; }
  .distributor-inner{ flex-direction:column; text-align:center; }
  .modal-box{ grid-template-columns:1fr; }
  .modal-box img{ max-height:220px; }
  .sticky-cta{ display:flex; }
  body{ padding-bottom: 78px; }
  .hero-badge-float{ display:none; }
  .qr-list{ grid-template-columns:1fr; }
}
