
:root{
  --bg:#f6f2ea;
  --bg-soft:#fbf8f2;
  --panel:#fffdf9;
  --line:#e4dccf;
  --line-soft:#eee7db;
  --text:#101010;
  --muted:#686158;
  --muted-2:#7a7368;
  --gold:#f2bf1d;
  --gold-deep:#d6a100;
  --gold-soft:#fff4cd;
  --shadow:0 18px 40px rgba(16,16,16,.06);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:12px;
  --shell:1240px;
  --panel-accent:#f6dfac;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height:1.5;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button, select{font:inherit}
.shell{width:min(var(--shell), calc(100% - 40px)); margin:0 auto}

.announce-bar{
  background:#f0c84d;
  border-bottom:1px solid rgba(16,16,16,.08);
}
.announce-inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  color:#111;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.announce-inner span{position:relative}
.announce-inner span:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-16px;
  top:50%;
  width:1px;
  height:14px;
  background:rgba(16,16,16,.14);
  transform:translateY(-50%);
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(246,242,234,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(16,16,16,.06);
}
.header-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand img{height:38px; width:auto}
.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
}
.main-nav a{
  font-size:15px;
  font-weight:700;
  color:#171717;
}
.main-nav a:hover{color:var(--gold-deep)}
.header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 18px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.03em;
}
.header-cta:hover{background:var(--gold); color:#111}

.hero{padding:42px 0 28px}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(520px, 580px);
  gap:28px;
  align-items:center;
}
.kicker{
  color:#be8a00;
  font-size:12px;
  line-height:1;
  font-weight:800;
  letter-spacing:.11em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.hero h1, .section-head h2, .featured-content h2{
  margin:0;
  color:#111;
  letter-spacing:-.055em;
  font-weight:800;
}
.hero h1{
  font-size:clamp(48px, 7vw, 82px);
  line-height:.95;
  max-width:650px;
}
.hero h1 em,
.section-head h2 em{
  font-style:normal;
  color:var(--gold-deep);
}
.hero-lead{
  margin:20px 0 0;
  max-width:570px;
  color:var(--muted);
  font-size:21px;
  line-height:1.58;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.btn{
  min-height:54px;
  padding:0 22px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid transparent;
  font-size:14px;
  font-weight:800;
  letter-spacing:.01em;
}
.btn-primary{
  background:var(--gold);
  color:#111;
  border-color:#e0ad13;
}
.btn-primary:hover{background:#111;color:#fff;border-color:#111}
.btn-secondary{
  background:#fff;
  color:#111;
  border-color:#d7cfbf;
}
.btn-secondary:hover{border-color:#111;background:#111;color:#fff}

.hero-proof{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:22px;
  margin-top:28px;
}
.hero-review-stack{
  display:flex;
  align-items:center;
}
.hero-review-stack span{
  width:38px;height:38px;border-radius:50%;
  background:#111;color:#fff;
  display:grid;place-items:center;
  font-size:12px;font-weight:800;
  border:2px solid var(--bg);
  margin-left:-8px;
}
.hero-review-stack span:first-child{margin-left:0}
.hero-proof-item{
  padding-left:22px;
  border-left:1px solid var(--line);
}
.hero-proof-item strong{
  display:block;
  font-size:17px;
  line-height:1.2;
  font-weight:800;
}
.hero-proof-item small{
  display:block;
  margin-top:4px;
  color:var(--muted-2);
  font-size:13px;
}

.hero-visual{
  position:relative;
  min-height:670px;
  padding:30px 26px 0;
  border-radius:var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(242,191,29,.18), transparent 40%),
    linear-gradient(180deg, #fffdf8 0%, #f4efe4 100%);
  border:1px solid var(--line);
  overflow:hidden;
}
.hero-glow{
  position:absolute;
  inset:auto auto 120px 50%;
  transform:translateX(-50%);
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(242,191,29,.18) 0%, rgba(242,191,29,0) 70%);
}
.hero-stack{
  position:relative;
  height:500px;
}
.pouch{
  position:absolute;
  bottom:0;
  object-fit:contain;
  filter:drop-shadow(0 20px 30px rgba(16,16,16,.10));
}
.pouch-left{left:0;width:245px;transform:translateY(20px)}
.pouch-center{left:50%;transform:translateX(-50%);width:315px;z-index:2}
.pouch-right{right:0;width:245px;transform:translateY(16px)}

.hero-stat-rail{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  background:rgba(255,255,255,.72);
}
.hero-stat{
  min-height:96px;
  padding:18px 18px 16px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:8px;
}
.hero-stat:not(:last-child){border-right:1px solid var(--line)}
.hero-stat strong{font-size:18px;line-height:1.05;font-weight:800}
.hero-stat span{font-size:13px;color:var(--muted);line-height:1.35}

.ingredient-strip{padding:0 0 20px}
.ingredient-grid{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  background:#fff;
}
.ingredient-box{
  min-height:84px;
  padding:16px 18px;
}
.ingredient-box:not(:last-child){border-right:1px solid var(--line)}
.ingredient-box strong{
  display:block;
  font-size:20px;
  line-height:1;
  font-weight:800;
}
.ingredient-box span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
}
.ingredient-box.accent{background:var(--gold-soft)}

.section{padding:32px 0}
.section-head{
  margin-bottom:26px;
}
.section-head h2{
  font-size:clamp(34px, 4.2vw, 58px);
  line-height:.98;
}
.section-head-split{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(300px, 460px);
  gap:28px;
  align-items:end;
}
.section-side-copy{
  color:var(--muted);
  font-size:17px;
  line-height:1.72;
}
.mini-facts{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:18px;
}
.mini-facts span{
  position:relative;
  color:#4d4840;
  font-size:13px;
  font-weight:700;
}
.mini-facts span:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-8px;
  top:50%;
  width:1px;height:14px;background:var(--line);
  transform:translateY(-50%);
}

.concept-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.concept-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  border:1px solid var(--line);
  border-radius:26px;
  background:var(--panel);
  overflow:hidden;
}
.concept-number{
  position:absolute;
  top:18px; left:18px;
  width:48px; height:48px;
  border-radius:16px;
  background:var(--gold-soft);
  color:#111;
  display:grid; place-items:center;
  font-weight:800;
}
.concept-visual{
  min-height:320px;
  display:flex; align-items:center; justify-content:center;
  padding:54px 18px 20px;
  background:linear-gradient(180deg, #fffdf8 0%, #f7f1e4 100%);
}
.clean-bottle{background:linear-gradient(180deg, #fff 0%, #f4f4f1 100%)}
.warm-mango{background:linear-gradient(180deg, #fffaf0 0%, #f4e8d0 100%)}
.concept-visual img{
  max-width:88%;
  max-height:250px;
  object-fit:contain;
}
.concept-copy{
  padding:22px 22px 24px;
}
.concept-kicker{
  color:#be8a00;
  font-size:12px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.concept-copy h3{
  margin:10px 0 8px;
  font-size:24px;
  line-height:1.1;
  letter-spacing:-.03em;
  font-weight:800;
}
.concept-copy p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}

.featured-shell{
  display:grid;
  grid-template-columns:minmax(420px, .9fr) minmax(0, 1fr);
  gap:0;
  border:1px solid var(--line);
  border-radius:32px;
  overflow:hidden;
  background:var(--panel);
  box-shadow:var(--shadow);
}
.featured-image-panel{
  background:
    radial-gradient(circle at 60% 24%, var(--panel-accent) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #fffcf6 0%, #f6f1e6 100%);
  padding:38px 28px 26px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:720px;
  border-right:1px solid var(--line);
}
.featured-image-wrap{
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.featured-image-wrap img{
  max-width:100%;
  max-height:500px;
  object-fit:contain;
  filter:drop-shadow(0 22px 30px rgba(16,16,16,.10));
}
.featured-image-note{
  display:grid;
  gap:8px;
  padding:18px 20px;
  border-radius:20px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(16,16,16,.08);
}
.featured-image-note span{
  color:#8b7f63;
  font-size:12px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.featured-image-note strong{
  font-size:22px;
  line-height:1.15;
  letter-spacing:-.03em;
}

.featured-content{
  padding:34px 34px 30px;
}
.featured-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.rating-chip{
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid #ead390;
  background:#fff8df;
  color:#b68000;
  display:inline-flex;
  align-items:center;
  font-size:12px;
  font-weight:800;
}
.featured-content h2{
  margin-top:14px;
  font-size:56px;
  line-height:.95;
}
.featured-summary{
  margin:18px 0 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}
.featured-bullets{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px 16px;
  margin-top:22px;
}
.featured-bullets span{
  color:#242424;
  font-size:15px;
  font-weight:600;
}
.selector-block{margin-top:24px}
.selector-label,
.control-label{
  display:block;
  margin-bottom:10px;
  color:#111;
  font-size:12px;
  line-height:1;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.swatch-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.flavour-swatch{
  min-height:44px;
  padding:0 16px;
  border:1px solid #d9d1c3;
  border-radius:999px;
  background:#fff;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:700;
  color:#111;
  cursor:pointer;
}
.flavour-swatch .dot{
  width:12px;height:12px;border-radius:50%;
  flex:0 0 12px;
  border:1px solid rgba(16,16,16,.08);
}
.flavour-swatch.pear .dot{background:#b8d63a}
.flavour-swatch.mango .dot{background:#efa008}
.flavour-swatch.berry .dot{background:#df2f59}
.flavour-swatch.active{
  border-color:#e0ad13;
  background:#fff8e5;
  box-shadow:inset 0 0 0 1px #e0ad13;
}

.purchase-options{
  display:grid;
  gap:12px;
  margin-top:22px;
}
.purchase-row{
  position:relative;
  display:grid;
  grid-template-columns:24px minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  min-height:88px;
  padding:18px 20px;
  border:1px solid #ddd5c7;
  border-radius:18px;
  background:#fff;
  cursor:pointer;
}
.purchase-row.selected{
  border-color:#e0ad13;
  background:#fffdf7;
  box-shadow:inset 0 0 0 1px #e0ad13;
}
.purchase-row input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.purchase-radio{
  width:20px;height:20px;border-radius:50%;
  border:1.5px solid #d6c8a7;
  background:#fffefb;
  position:relative;
}
.purchase-row.selected .purchase-radio{
  border-color:#e0ad13;
  background:#fff9e7;
}
.purchase-row.selected .purchase-radio::after{
  content:"";
  position:absolute;
  top:50%;left:50%;
  width:8px;height:8px;border-radius:50%;
  transform:translate(-50%, -50%);
  background:#e0ad13;
}
.purchase-text strong{
  display:block;
  font-size:17px;
  line-height:1.2;
  font-weight:800;
}
.purchase-text small{
  display:block;
  margin-top:6px;
  color:var(--muted-2);
  font-size:13px;
}
.purchase-price{
  text-align:right;
}
.purchase-price strong{
  display:block;
  font-size:18px;
  line-height:1.1;
  font-weight:800;
}
.purchase-price small{
  display:block;
  margin-top:4px;
  color:#9a9185;
  font-size:11px;
}
.best-tag{
  position:absolute;
  top:-11px; left:20px;
  min-height:22px;
  padding:0 10px;
  border-radius:999px;
  background:var(--gold);
  color:#111;
  display:inline-flex;
  align-items:center;
  font-size:9px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.purchase-controls{
  display:grid;
  grid-template-columns:170px 136px minmax(0,1fr);
  gap:12px;
  align-items:end;
  margin-top:18px;
}
.control select{
  width:100%;
  height:56px;
  padding:0 42px 0 16px;
  border:1px solid #d7d0c3;
  border-radius:14px;
  background-color:#fff;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 24px,
    calc(100% - 14px) 24px;
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
  appearance:none;
  font-size:14px;
  font-weight:700;
}
.qty-control{
  height:56px;
  display:grid;
  grid-template-columns:42px 52px 42px;
  border:1px solid #d7d0c3;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}
.qty-control button{
  border:0;
  background:#fff;
  font-size:24px;
  cursor:pointer;
}
.qty-control button:disabled{opacity:.4; cursor:not-allowed}
.qty-control span{
  display:grid;
  place-items:center;
  border-left:1px solid #ece6db;
  border-right:1px solid #ece6db;
  font-size:15px;
  font-weight:800;
}
.purchase-btn{
  width:100%;
}
.secure-note{
  margin-top:12px;
  color:var(--muted-2);
  font-size:12px;
  text-align:center;
}

.how-it-works .steps-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.step-card{
  min-height:200px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:24px;
  background:var(--panel);
}
.step-badge{
  width:44px;height:44px;
  border-radius:14px;
  background:var(--gold-soft);
  display:grid;place-items:center;
  font-weight:800;
}
.step-icon{
  margin-top:22px;
  color:#bf8a00;
  font-size:30px;
  line-height:1;
  font-weight:700;
}
.step-card h3{
  margin:22px 0 8px;
  font-size:28px;
  line-height:1.05;
  letter-spacing:-.03em;
  font-weight:800;
}
.step-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.65;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.product-card{
  position:relative;
  display:flex;
  flex-direction:column;
  border:1px solid var(--line);
  border-radius:26px;
  background:var(--panel);
  overflow:hidden;
  min-height:100%;
}
.featured-product{
  border-color:#ead390;
  box-shadow:var(--shadow);
}
.pill-popular{
  position:absolute;
  top:16px; right:16px;
  min-height:26px;
  padding:0 12px;
  border-radius:999px;
  background:#111;
  color:#fff;
  display:inline-flex;
  align-items:center;
  font-size:9px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.product-visual{
  min-height:300px;
  display:flex; align-items:center; justify-content:center;
  padding:26px 24px 12px;
  background:linear-gradient(180deg, #fffdf8 0%, #f7f3ea 100%);
  border-bottom:1px solid var(--line-soft);
}
.product-visual img{
  max-width:86%;
  max-height:260px;
  object-fit:contain;
}
.product-copy{
  padding:22px 22px 12px;
}
.product-meta{
  display:flex;
  align-items:center;
  gap:8px;
  color:#7a7368;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.meta-dot{
  width:8px;height:8px;border-radius:50%;
  flex:0 0 8px;
}
.pear-dot{background:#b7d43b}
.mango-dot{background:#ec9d07}
.berry-dot{background:#de3058}
.product-copy h3{
  margin:14px 0 10px;
  font-size:30px;
  line-height:1.05;
  letter-spacing:-.045em;
  font-weight:800;
}
.product-copy p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}
.product-footer{
  margin-top:auto;
  padding:18px 22px 22px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}
.product-price strong{
  display:block;
  font-size:28px;
  line-height:1;
  font-weight:800;
}
.product-price small{
  display:block;
  margin-top:8px;
  color:#7a7368;
  font-size:12px;
}
.product-price small b{color:#111}
.mini-btn{
  min-width:124px;
  height:46px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid #d7cfbf;
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:800;
}
.mini-btn.primary{
  background:var(--gold);
  border-color:#e0ad13;
}
.mini-btn:hover{background:#111;color:#fff;border-color:#111}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.testimonial-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:24px;
  background:var(--panel);
}
.stars{
  color:#e0ad13;
  font-size:14px;
  letter-spacing:.15em;
}
.testimonial-card p{
  margin:16px 0 20px;
  color:#2c2c2c;
  font-size:17px;
  line-height:1.7;
}
.testimonial-card strong{font-size:15px}

.faq-shell{
  border:1px solid var(--line);
  border-radius:28px;
  background:var(--panel);
  padding:28px;
}
.faq-list details{
  border-top:1px solid var(--line-soft);
  padding:18px 0;
}
.faq-list details:first-child{border-top:0; padding-top:0}
.faq-list summary{
  cursor:pointer;
  list-style:none;
  font-size:18px;
  font-weight:800;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list p{
  margin:12px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}

.site-footer{
  padding:24px 0 48px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .9fr;
  gap:24px;
  padding:26px 0 0;
  border-top:1px solid var(--line);
}
.footer-logo{height:34px; width:auto}
.site-footer h4{
  margin:0 0 12px;
  font-size:14px;
  font-weight:800;
}
.site-footer a,
.site-footer p{
  display:block;
  margin:0 0 10px;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

@media (max-width: 1180px){
  .hero-grid,
  .featured-shell,
  .section-head-split{
    grid-template-columns:1fr;
  }
  .hero-visual{min-height:auto}
  .hero-stack{height:420px}
  .hero-stat-rail,
  .ingredient-grid,
  .steps-grid,
  .product-grid,
  .concept-grid,
  .testimonial-grid{
    grid-template-columns:repeat(2, 1fr);
  }
  .featured-image-panel{
    min-height:auto;
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .featured-image-wrap{min-height:360px}
  .purchase-controls{
    grid-template-columns:1fr 1fr;
  }
  .purchase-btn{
    grid-column:1 / -1;
  }
  .footer-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}
@media (max-width: 760px){
  .shell{width:min(var(--shell), calc(100% - 24px))}
  .announce-inner{
    gap:12px;
    font-size:9px;
    min-height:34px;
  }
  .announce-inner span:not(:last-child)::after{display:none}
  .site-header{position:relative}
  .header-inner{
    min-height:68px;
    flex-wrap:wrap;
    justify-content:space-between;
    padding:12px 0;
  }
  .main-nav{
    width:100%;
    order:3;
    justify-content:flex-start;
    gap:20px;
    overflow:auto;
    padding-bottom:6px;
  }
  .header-cta{
    height:40px;
    padding:0 14px;
    font-size:12px;
  }
  .hero{padding:24px 0 18px}
  .hero-grid{gap:18px}
  .hero h1{font-size:48px}
  .hero-lead{font-size:17px}
  .hero-proof{gap:14px}
  .hero-proof-item{padding-left:0;border-left:0}
  .hero-visual{
    padding:20px 16px 16px;
    border-radius:24px;
  }
  .hero-stack{height:300px}
  .pouch-left,.pouch-right{width:150px}
  .pouch-center{width:190px}
  .hero-stat-rail,
  .ingredient-grid,
  .steps-grid,
  .product-grid,
  .concept-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }
  .hero-stat:not(:last-child),
  .ingredient-box:not(:last-child){border-right:0;border-bottom:1px solid var(--line)}
  .section{padding:22px 0}
  .section-head{margin-bottom:18px}
  .section-head h2{font-size:34px}
  .section-side-copy{font-size:15px}
  .concept-visual{min-height:250px}
  .concept-copy h3{font-size:22px}
  .featured-shell{border-radius:24px}
  .featured-image-panel,
  .featured-content{padding:20px 18px}
  .featured-content h2{font-size:40px}
  .featured-summary{font-size:16px}
  .featured-bullets{grid-template-columns:1fr}
  .purchase-row{
    grid-template-columns:22px minmax(0,1fr);
  }
  .purchase-price{
    grid-column:2;
    text-align:left;
  }
  .purchase-controls{
    grid-template-columns:1fr;
  }
  .product-copy h3{font-size:24px}
  .product-footer{
    flex-direction:column;
    align-items:stretch;
  }
  .mini-btn{width:100%}
  .faq-shell{padding:20px}
  .footer-grid{grid-template-columns:1fr}
}



/* =========================================================
   V27 — FAQ + FULL SHOPIFY-STYLE FOOTER
   ========================================================= */

.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* FAQ */
.faq.section{
  padding-top:34px !important;
  padding-bottom:34px !important;
}

.faq-shell-v2{
  padding:34px 36px !important;
  border-radius:30px !important;
  background:
    radial-gradient(circle at 8% 5%, rgba(242,191,29,.10), rgba(242,191,29,0) 28%),
    linear-gradient(180deg,#fffdf8 0%,#fbf7ef 100%) !important;
  border:1px solid #e4dccf !important;
}

.faq-layout{
  display:grid;
  grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr);
  gap:60px;
  align-items:start;
}

.faq-intro-v2{
  position:sticky;
  top:112px;
}

.faq-intro-v2 h2{
  margin:0;
  color:#111;
  font-size:48px;
  line-height:.98;
  letter-spacing:-.05em;
  font-weight:800;
}

.faq-intro-v2 > p{
  max-width:380px;
  margin:18px 0 0;
  color:#675f56;
  font-size:15px;
  line-height:1.7;
}

.faq-contact-link{
  margin-top:24px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#111;
  font-size:13px;
  font-weight:700;
}

.faq-contact-link span{
  color:#c69000;
}

.faq-list-v2{
  border-top:1px solid #e4dccf;
}

.faq-list-v2 details{
  padding:0 !important;
  border:0 !important;
  border-bottom:1px solid #e4dccf !important;
}

.faq-list-v2 summary{
  position:relative;
  min-height:72px;
  padding:22px 54px 22px 0;
  display:flex;
  align-items:center;
  cursor:pointer;
  list-style:none;
  color:#111;
  font-size:16px;
  line-height:1.35;
  font-weight:800;
}

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

.faq-toggle{
  position:absolute;
  right:0;
  top:50%;
  width:34px;
  height:34px;
  transform:translateY(-50%);
  border:1px solid #d9d0bf;
  border-radius:50%;
  background:#fff;
  transition:background .18s ease, border-color .18s ease, transform .18s ease;
}

.faq-toggle::before,
.faq-toggle::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:12px;
  height:1.5px;
  border-radius:2px;
  background:#111;
  transform:translate(-50%,-50%);
}

.faq-toggle::after{
  transform:translate(-50%,-50%) rotate(90deg);
  transition:opacity .16s ease, transform .16s ease;
}

.faq-list-v2 details[open] .faq-toggle{
  background:#f2bf1d;
  border-color:#e0ad13;
}

.faq-list-v2 details[open] .faq-toggle::after{
  opacity:0;
  transform:translate(-50%,-50%) rotate(0deg);
}

.faq-list-v2 details > p{
  max-width:740px;
  margin:-4px 0 22px !important;
  padding:0 54px 0 0;
  color:#675f56;
  font-size:14px;
  line-height:1.7;
}

/* Footer */
.site-footer-v2{
  margin-top:0;
  padding:0 0 26px;
  background:#121210;
  color:#fff;
}

.footer-newsletter-band{
  border-bottom:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(90deg, rgba(242,191,29,.10), rgba(242,191,29,0) 42%),
    #171714;
}

.footer-newsletter-grid{
  min-height:190px;
  padding-top:34px;
  padding-bottom:34px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(400px,.86fr);
  gap:48px;
  align-items:center;
}

.footer-eyebrow{
  margin-bottom:10px;
  color:#f2bf1d;
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.footer-newsletter-copy h3{
  margin:0;
  max-width:650px;
  color:#fff;
  font-size:34px;
  line-height:1.05;
  letter-spacing:-.04em;
  font-weight:800;
}

.footer-newsletter-form{
  display:grid;
  gap:10px;
}

.newsletter-field{
  min-height:58px;
  padding:5px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  background:rgba(255,255,255,.06);
}

.newsletter-field input{
  min-width:0;
  padding:0 14px;
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  font-size:14px;
}

.newsletter-field input::placeholder{
  color:rgba(255,255,255,.48);
}

.newsletter-field button{
  min-width:152px;
  border:0;
  border-radius:10px;
  background:#f2bf1d;
  color:#111;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
}

.newsletter-field button:hover{
  background:#fff;
}

.footer-newsletter-form small{
  color:rgba(255,255,255,.45);
  font-size:10px;
}

.footer-main{
  padding-top:46px;
  padding-bottom:42px;
  display:grid;
  grid-template-columns:1.35fr repeat(3,.72fr) .95fr;
  gap:38px;
}

.footer-logo{
  height:38px !important;
  width:auto !important;
  filter:none;
}

.footer-brand-copy{
  max-width:300px;
  margin:18px 0 0 !important;
  color:rgba(255,255,255,.62) !important;
  font-size:13px !important;
  line-height:1.7 !important;
}

.footer-socials{
  display:flex;
  gap:8px;
  margin-top:22px;
}

.footer-socials a{
  width:38px;
  height:38px;
  margin:0 !important;
  border:1px solid rgba(255,255,255,.16);
  border-radius:50%;
  display:grid !important;
  place-items:center;
  color:#fff !important;
  font-size:10px !important;
  font-weight:800;
}

.footer-socials a:hover{
  border-color:#f2bf1d;
  background:#f2bf1d;
  color:#111 !important;
}

.footer-link-column h4,
.footer-proof-column h4{
  margin:0 0 18px !important;
  color:#fff !important;
  font-size:12px !important;
  line-height:1;
  font-weight:800 !important;
  letter-spacing:.10em;
  text-transform:uppercase;
}

.footer-link-column a{
  margin:0 0 12px !important;
  color:rgba(255,255,255,.62) !important;
  font-size:13px !important;
  line-height:1.4 !important;
  transition:color .16s ease;
}

.footer-link-column a:hover{
  color:#f2bf1d !important;
}

.footer-proof-list{
  display:grid;
  gap:12px;
}

.footer-proof-list span{
  display:flex;
  align-items:flex-start;
  gap:9px;
  color:rgba(255,255,255,.68);
  font-size:12px;
  line-height:1.45;
}

.footer-proof-list i{
  width:20px;
  height:20px;
  flex:0 0 20px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(242,191,29,.16);
  color:#f2bf1d;
  font-style:normal;
  font-size:10px;
  font-weight:800;
}

.footer-bottom{
  min-height:64px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.footer-bottom-left{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  color:rgba(255,255,255,.44);
  font-size:10px;
}

.footer-bottom-left a{
  color:rgba(255,255,255,.44);
}

.footer-bottom-left a:hover{
  color:#fff;
}

.footer-payments{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.footer-payments span{
  min-height:28px;
  padding:0 9px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:6px;
  display:inline-flex;
  align-items:center;
  color:rgba(255,255,255,.72);
  font-size:9px;
  font-weight:800;
}

@media(max-width:1050px){
  .faq-layout{
    grid-template-columns:1fr;
    gap:28px;
  }

  .faq-intro-v2{
    position:relative;
    top:auto;
  }

  .footer-newsletter-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .footer-main{
    grid-template-columns:1.2fr repeat(2,1fr);
  }

  .footer-proof-column{
    grid-column:auto;
  }
}

@media(max-width:760px){
  .faq.section{
    padding-top:24px !important;
    padding-bottom:24px !important;
  }

  .faq-shell-v2{
    padding:24px 20px !important;
    border-radius:22px !important;
  }

  .faq-intro-v2 h2{
    font-size:36px;
  }

  .faq-list-v2 summary{
    min-height:66px;
    padding:18px 48px 18px 0;
    font-size:15px;
  }

  .faq-toggle{
    width:32px;
    height:32px;
  }

  .faq-list-v2 details > p{
    padding-right:44px;
    font-size:13px;
  }

  .footer-newsletter-grid{
    min-height:auto;
    padding-top:28px;
    padding-bottom:28px;
  }

  .footer-newsletter-copy h3{
    font-size:28px;
  }

  .newsletter-field{
    grid-template-columns:1fr;
    gap:6px;
    padding:6px;
  }

  .newsletter-field input{
    min-height:46px;
  }

  .newsletter-field button{
    min-height:46px;
    width:100%;
  }

  .footer-main{
    grid-template-columns:repeat(2,1fr);
    gap:30px 22px;
    padding-top:34px;
    padding-bottom:30px;
  }

  .footer-brand-column{
    grid-column:1 / -1;
  }

  .footer-proof-column{
    grid-column:1 / -1;
  }

  .footer-bottom{
    align-items:flex-start;
    flex-direction:column;
    gap:16px;
  }
}

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

  .footer-brand-column,
  .footer-proof-column{
    grid-column:auto;
  }

  .footer-payments{
    gap:6px;
  }
}



/* =========================================================
   V28 — SHOPIFY-STYLE HEADER ICONS + LIGHTER HEADER SURFACE
   ========================================================= */

:root{
  --header-bg: rgba(255, 253, 248, .92);
  --header-line: rgba(16,16,16,.08);
}

/* Give header a slightly different tone than the body */
.site-header{
  background: var(--header-bg) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid var(--header-line) !important;
  box-shadow: 0 8px 22px rgba(16,16,16,.03);
}

.header-inner{
  min-height: 82px !important;
}

.shopify-actions{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
}

.header-icon-btn{
  position:relative !important;
  width:46px !important;
  height:46px !important;
  border:1px solid #ddd6c8 !important;
  border-radius:50% !important;
  background:#fffdfa !important;
  color:#111 !important;
  display:grid !important;
  place-items:center !important;
  padding:0 !important;
  cursor:pointer !important;
  transition:background .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease !important;
}

.header-icon-btn svg{
  width:20px !important;
  height:20px !important;
  display:block !important;
}

.header-icon-btn:hover{
  border-color:#e0ad13 !important;
  background:#fff8e6 !important;
  transform:translateY(-1px) !important;
  box-shadow:0 8px 18px rgba(16,16,16,.05) !important;
}

.header-icon-btn:focus-visible{
  outline:2px solid #111 !important;
  outline-offset:3px !important;
}

.cart-btn .cart-count{
  position:absolute !important;
  top:-3px !important;
  right:-2px !important;
  min-width:19px !important;
  height:19px !important;
  padding:0 5px !important;
  border-radius:999px !important;
  background:#f2bf1d !important;
  color:#111 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:9px !important;
  line-height:1 !important;
  font-weight:800 !important;
  border:1px solid rgba(16,16,16,.06) !important;
}

/* Keep nav and icons balanced without overcrowding */
.main-nav{
  margin-left:auto !important;
  margin-right:10px !important;
}

@media (max-width: 760px){
  .header-inner{
    min-height:68px !important;
    row-gap:12px !important;
  }

  .shopify-actions{
    gap:8px !important;
  }

  .header-icon-btn{
    width:40px !important;
    height:40px !important;
  }

  .header-icon-btn svg{
    width:18px !important;
    height:18px !important;
  }

  .cart-btn .cart-count{
    min-width:17px !important;
    height:17px !important;
    font-size:8px !important;
    top:-2px !important;
    right:-1px !important;
  }

  .main-nav{
    width:100% !important;
    order:3 !important;
    margin:0 !important;
  }
}



/* =========================================================
   V29 — CENTER THE COMPLETE HEADER MENU
   ========================================================= */

@media (min-width: 761px){
  .header-inner{
    display:grid !important;
    grid-template-columns:1fr auto 1fr !important;
    align-items:center !important;
    gap:24px !important;
  }

  .brand{
    justify-self:start !important;
  }

  .main-nav{
    justify-self:center !important;
    margin-left:0 !important;
    margin-right:0 !important;
    justify-content:center !important;
    flex-wrap:nowrap !important;
    white-space:nowrap !important;
  }

  .header-actions{
    justify-self:end !important;
  }
}



/* =========================================================
   V30 — TOP BAR + INGREDIENT GRID EDGE / BORDER FIX
   ========================================================= */

/* top utility bar */
.utility-bar{
  background:linear-gradient(90deg, #141311 0%, #1b1915 100%);
  color:#f7f2e7;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.utility-inner{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.utility-left,
.utility-right{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.utility-link,
.utility-meta{
  color:rgba(255,255,255,.86) !important;
  font-size:11px;
  line-height:1;
  font-weight:700;
  letter-spacing:.02em;
}

.utility-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.utility-link:hover{
  color:#f2bf1d !important;
}

.utility-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#f2bf1d;
  box-shadow:0 0 0 4px rgba(242,191,29,.12);
  flex:0 0 8px;
}

.utility-dot.whatsapp{
  background:#74c66a;
  box-shadow:0 0 0 4px rgba(116,198,106,.14);
}

.utility-pill{
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  background:rgba(242,191,29,.12);
  border:1px solid rgba(242,191,29,.22);
  color:#f7f2e7;
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.utility-sep{
  width:1px;
  height:14px;
  background:rgba(255,255,255,.12);
}

/* header should sit under the utility bar visually */
.site-header{
  top:0 !important;
  z-index:15 !important;
}

/* ingredient rail fixes */
.ingredient-strip{
  padding-top:0 !important;
}

.ingredient-strip .shell{
  padding-left:0 !important;
  padding-right:0 !important;
}

.ingredient-grid{
  width:100% !important;
  border:1px solid var(--line) !important;
  border-radius:22px !important;
  overflow:hidden !important;
  background:#fffdf8 !important;
  box-shadow:none !important;
}

.ingredient-box{
  border:0 !important;
  border-right:1px solid var(--line) !important;
  margin:0 !important;
}

.ingredient-box:last-child{
  border-right:0 !important;
}

.ingredient-box.accent{
  background:#f8f1da !important;
}

@media (max-width: 760px){
  .utility-inner{
    min-height:auto;
    padding-top:10px;
    padding-bottom:10px;
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }

  .utility-left,
  .utility-right{
    gap:10px;
  }

  .utility-pill{
    min-height:24px;
    padding:0 10px;
    font-size:9px;
  }

  .utility-link,
  .utility-meta{
    font-size:10px;
  }

  .utility-sep{
    display:none;
  }

  .ingredient-strip .shell{
    padding-left:14px !important;
    padding-right:14px !important;
  }

  .ingredient-grid{
    grid-template-columns:repeat(2, 1fr) !important;
  }

  .ingredient-box{
    border-right:1px solid var(--line) !important;
    border-bottom:1px solid var(--line) !important;
  }

  .ingredient-box:nth-child(2n){
    border-right:0 !important;
  }

  .ingredient-box:nth-last-child(-n+2){
    border-bottom:0 !important;
  }
}



/* =========================================================
   V31 — SINGLE TOP BAR WITH EMAIL + WHATSAPP ICONS
   ========================================================= */

.utility-bar-single{
  background:linear-gradient(90deg, #141311 0%, #1d1a16 100%) !important;
  color:#f7f2e7 !important;
  border-bottom:1px solid rgba(255,255,255,.06) !important;
}

.utility-bar-single .utility-inner{
  min-height:46px !important;
  display:grid !important;
  grid-template-columns:1fr auto 1fr !important;
  align-items:center !important;
  gap:18px !important;
}

.utility-bar-single .utility-left{
  display:flex !important;
  align-items:center !important;
  gap:16px !important;
  justify-self:start !important;
  flex-wrap:wrap !important;
}

.utility-bar-single .utility-center{
  justify-self:center !important;
}

.utility-bar-single .utility-right{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  justify-self:end !important;
  flex-wrap:wrap !important;
}

.utility-bar-single .utility-link,
.utility-bar-single .utility-meta{
  color:rgba(255,255,255,.88) !important;
  font-size:11px !important;
  line-height:1 !important;
  font-weight:700 !important;
  letter-spacing:.02em !important;
}

.utility-bar-single .utility-link{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
}

.utility-bar-single .utility-link:hover{
  color:#f2bf1d !important;
}

.utility-icon{
  width:15px !important;
  height:15px !important;
  color:#f2bf1d !important;
  flex:0 0 15px !important;
  display:block !important;
}

.utility-bar-single .utility-pill{
  min-height:28px !important;
  padding:0 13px !important;
  border-radius:999px !important;
  display:inline-flex !important;
  align-items:center !important;
  background:rgba(242,191,29,.12) !important;
  border:1px solid rgba(242,191,29,.22) !important;
  color:#f7f2e7 !important;
  font-size:10px !important;
  font-weight:800 !important;
  letter-spacing:.08em !important;
  text-transform:uppercase !important;
}

.utility-bar-single .utility-sep{
  width:1px !important;
  height:14px !important;
  background:rgba(255,255,255,.14) !important;
}

@media (max-width: 980px){
  .utility-bar-single .utility-inner{
    grid-template-columns:1fr !important;
    justify-items:start !important;
    gap:10px !important;
    min-height:auto !important;
    padding-top:10px !important;
    padding-bottom:10px !important;
  }

  .utility-bar-single .utility-left,
  .utility-bar-single .utility-center,
  .utility-bar-single .utility-right{
    justify-self:start !important;
  }

  .utility-bar-single .utility-right{
    gap:10px !important;
  }
}

@media (max-width: 760px){
  .utility-bar-single .utility-link,
  .utility-bar-single .utility-meta{
    font-size:10px !important;
  }

  .utility-bar-single .utility-pill{
    min-height:24px !important;
    padding:0 10px !important;
    font-size:9px !important;
  }

  .utility-bar-single .utility-sep{
    display:none !important;
  }

  .utility-bar-single .utility-left,
  .utility-bar-single .utility-right{
    gap:10px !important;
  }
}


/* =========================================================
   V32 — SINGLE TOP BAR + EDGE-TO-EDGE HERO STATS
   ========================================================= */

/* ---- one clean top utility bar ---- */
.utility-bar-single{
  background:linear-gradient(90deg, #141311 0%, #1c1916 100%) !important;
  color:#f7f2e7 !important;
  border-bottom:1px solid rgba(255,255,255,.06) !important;
}

.utility-inner.utility-inner-textonly{
  min-height:42px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:20px !important;
}

.utility-inner.utility-inner-textonly .utility-left,
.utility-inner.utility-inner-textonly .utility-right{
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  flex-wrap:wrap !important;
}

.utility-inner.utility-inner-textonly .utility-link,
.utility-inner.utility-inner-textonly .utility-meta{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  color:rgba(255,255,255,.88) !important;
  font-size:11px !important;
  line-height:1 !important;
  font-weight:700 !important;
  letter-spacing:.02em !important;
}

.utility-inner.utility-inner-textonly .utility-link:hover{
  color:#f2bf1d !important;
}

.utility-inner.utility-inner-textonly .utility-icon{
  width:15px !important;
  height:15px !important;
  color:#f2bf1d !important;
  flex:0 0 15px !important;
}

.utility-inner.utility-inner-textonly .utility-sep{
  width:1px !important;
  height:14px !important;
  background:rgba(255,255,255,.14) !important;
}

/* hide any old center pill if still present from previous versions */
.utility-center,
.utility-pill{
  display:none !important;
}

/* ---- edge-to-edge stats row with one clean border ---- */
.ingredient-strip{
  padding-top:0 !important;
}

.ingredient-strip .shell{
  max-width:none !important;
  width:100% !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

.ingredient-grid{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  display:grid !important;
  grid-template-columns:repeat(6, minmax(0, 1fr)) !important;
  border:1px solid var(--line) !important;
  border-radius:0 !important;
  overflow:hidden !important;
  background:#fffdf8 !important;
  box-shadow:none !important;
}

.ingredient-box{
  margin:0 !important;
  padding:18px 18px 16px !important;
  min-height:104px !important;
  border:0 !important;
  border-right:1px solid var(--line) !important;
  border-radius:0 !important;
  box-shadow:none !important;
  background:transparent !important;
}

.ingredient-box:last-child{
  border-right:0 !important;
}

.ingredient-box.accent{
  background:#f8f1da !important;
}

@media (max-width: 980px){
  .utility-inner.utility-inner-textonly{
    min-height:auto !important;
    padding-top:10px !important;
    padding-bottom:10px !important;
    align-items:flex-start !important;
    flex-direction:column !important;
  }

  .utility-inner.utility-inner-textonly .utility-left,
  .utility-inner.utility-inner-textonly .utility-right{
    gap:10px !important;
  }
}

@media (max-width: 760px){
  .utility-inner.utility-inner-textonly .utility-link,
  .utility-inner.utility-inner-textonly .utility-meta{
    font-size:10px !important;
  }

  .utility-inner.utility-inner-textonly .utility-sep{
    display:none !important;
  }

  .ingredient-strip .shell{
    padding-left:0 !important;
    padding-right:0 !important;
  }

  .ingredient-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }

  .ingredient-box{
    min-height:88px !important;
    border-right:1px solid var(--line) !important;
    border-bottom:1px solid var(--line) !important;
  }

  .ingredient-box:nth-child(2n){
    border-right:0 !important;
  }

  .ingredient-box:nth-last-child(-n+2){
    border-bottom:0 !important;
  }
}



/* =========================================================
   V33 — CORRECT STATS FIX
   Screenshot target: 5-in-1 / 10g / 300g / 3 flavours
   ========================================================= */

/* Restore the INGREDIENT row below the hero to its normal contained layout */
.ingredient-strip{
  padding:0 0 20px !important;
}

.ingredient-strip .shell{
  width:min(var(--shell), calc(100% - 40px)) !important;
  max-width:var(--shell) !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

.ingredient-grid{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  display:grid !important;
  grid-template-columns:repeat(6, 1fr) !important;
  border:1px solid var(--line) !important;
  border-radius:20px !important;
  overflow:hidden !important;
  background:#fff !important;
}

.ingredient-box{
  min-height:84px !important;
  padding:16px 18px !important;
  border:0 !important;
  border-right:1px solid var(--line) !important;
  border-bottom:0 !important;
  background:transparent !important;
}

.ingredient-box:last-child{
  border-right:0 !important;
}

.ingredient-box.accent{
  background:var(--gold-soft) !important;
}

/* EXACT HERO STATS FROM USER SCREENSHOT */
.hero-visual{
  padding-bottom:0 !important;
}

/*
  Hero visual already has its own outer border.
  Stretch the stat rail through the horizontal padding,
  and let the hero visual supply the outside left/right/bottom border.
*/
.hero-stat-rail{
  width:calc(100% + 52px) !important;
  margin-left:-26px !important;
  margin-right:-26px !important;
  margin-bottom:0 !important;
  margin-top:22px !important;

  display:grid !important;
  grid-template-columns:repeat(4, minmax(0,1fr)) !important;

  border:0 !important;
  border-top:1px solid var(--line) !important;
  border-radius:0 !important;
  overflow:hidden !important;

  background:rgba(255,255,255,.74) !important;
  box-shadow:none !important;
}

.hero-stat{
  min-width:0 !important;
  min-height:108px !important;
  padding:20px 18px 18px !important;
  margin:0 !important;
  border:0 !important;
  background:transparent !important;

  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  gap:7px !important;
}

/* internal dividers only — no duplicated exterior border */
.hero-stat:not(:last-child){
  border-right:1px solid var(--line) !important;
}

.hero-stat strong{
  font-size:19px !important;
  line-height:1.05 !important;
  font-weight:800 !important;
}

.hero-stat span{
  max-width:120px !important;
  color:var(--muted) !important;
  font-size:13px !important;
  line-height:1.35 !important;
}

/* mobile: keep rail inside panel cleanly */
@media(max-width:760px){
  .ingredient-strip .shell{
    width:min(var(--shell), calc(100% - 24px)) !important;
  }

  .ingredient-grid{
    grid-template-columns:repeat(2,1fr) !important;
  }

  .ingredient-box{
    border-right:1px solid var(--line) !important;
    border-bottom:1px solid var(--line) !important;
  }

  .ingredient-box:nth-child(2n){
    border-right:0 !important;
  }

  .ingredient-box:nth-last-child(-n+2){
    border-bottom:0 !important;
  }

  .hero-stat-rail{
    width:calc(100% + 32px) !important;
    margin-left:-16px !important;
    margin-right:-16px !important;
    grid-template-columns:repeat(2,1fr) !important;
  }

  .hero-stat{
    min-height:88px !important;
    border-right:1px solid var(--line) !important;
    border-bottom:1px solid var(--line) !important;
  }

  .hero-stat:nth-child(2n){
    border-right:0 !important;
  }

  .hero-stat:nth-last-child(-n+2){
    border-bottom:0 !important;
  }
}


/* =========================================================
   V34 — HERO 4 STATS TOUCH BOTTOM EDGE
   ========================================================= */

.hero-visual{
  display:flex !important;
  flex-direction:column !important;
  justify-content:flex-end !important;
  padding:30px 26px 0 !important;
}

.hero-stack{
  margin-bottom:0 !important;
}

.hero-stat-rail{
  align-self:stretch !important;
  width:calc(100% + 52px) !important;
  margin:18px -26px -1px !important;  /* slight overlap to visually lock into bottom border */
  border:0 !important;
  border-top:1px solid var(--line) !important;
  border-radius:0 !important;
  background:rgba(255,255,255,.82) !important;
  overflow:hidden !important;
  box-shadow:none !important;
}

.hero-stat{
  min-height:110px !important;
  padding:22px 18px 20px !important;
  margin:0 !important;
  border:0 !important;
  border-right:1px solid var(--line) !important;
  background:transparent !important;
}

.hero-stat:last-child{
  border-right:0 !important;
}

@media (max-width:760px){
  .hero-visual{
    padding:20px 16px 0 !important;
  }

  .hero-stat-rail{
    width:calc(100% + 32px) !important;
    margin:16px -16px -1px !important;
  }

  .hero-stat{
    min-height:92px !important;
    padding:18px 14px 16px !important;
    border-right:1px solid var(--line) !important;
    border-bottom:1px solid var(--line) !important;
  }

  .hero-stat:nth-child(2n){
    border-right:0 !important;
  }

  .hero-stat:nth-last-child(-n+2){
    border-bottom:0 !important;
  }
}


/* =========================================================
   V35 — MAKE PURCHASE BUTTON MATCH OTHER YELLOW BUTTONS
   ========================================================= */
.purchase-btn{
  width:100%;
  background:var(--gold) !important;
  color:#111 !important;
  border:1px solid #e0ad13 !important;
  box-shadow:none !important;
}

.purchase-btn:hover{
  filter:brightness(.98);
}

.purchase-btn:disabled{
  opacity:1 !important;
}
