:root{
  --green:#2e9e5b; --green-d:#238049; --teal:#0f766e; --ink:#1f2a2e; --muted:#5b6b70;
  --bg:#f4f9f5; --card:#fff; --line:#e3ece6; --accent:#ff7a45; --radius:14px;
  --shadow:0 6px 24px rgba(20,60,40,.08);
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:"Poppins",system-ui,sans-serif;color:var(--ink);background:var(--bg);line-height:1.6}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:0 20px}
.container.narrow{max-width:720px}
.section{padding:56px 0}
.section-title{font-size:26px;font-weight:700;text-align:center;margin-bottom:28px}
.btn{display:inline-block;border:0;border-radius:999px;padding:13px 26px;font-weight:600;font-size:15px;cursor:pointer;text-align:center;transition:.15s;font-family:inherit}
.btn-primary{background:var(--green);color:#fff}
.btn-primary:hover{background:var(--green-d)}
.btn-buy{background:var(--accent);color:#fff;width:100%;font-size:18px;padding:16px;box-shadow:var(--shadow)}
.btn-buy:hover{filter:brightness(.95)}
.btn-disabled{background:#dfe7e2;color:#8aa;cursor:default}
.stars{color:#f5a623;font-size:14px}.stars small{color:var(--muted)}

/* header */
.site-header{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:50}
.header-inner{display:flex;align-items:center;gap:20px;padding:12px 20px}
.brand{display:flex;align-items:center;gap:10px;font-weight:700}
.brand-mark{background:var(--green);color:#fff;width:34px;height:34px;border-radius:9px;display:grid;place-items:center;font-size:20px}
.brand-name{display:flex;flex-direction:column;line-height:1.1}
.brand-name em{font-style:normal;font-size:11px;font-weight:500;color:var(--muted)}
.nav{margin-left:auto;display:flex;gap:20px;font-weight:500}
.country-switch{display:flex;align-items:center;gap:6px;font-size:13px;color:var(--muted)}
.country-switch select{padding:6px 8px;border:1px solid var(--line);border-radius:8px;font-family:inherit}

/* hero */
.hero{background:linear-gradient(135deg,#eafaf0,#dff3ea);padding:56px 0;text-align:center}
.hero h1{font-size:36px;font-weight:700;max-width:760px;margin:0 auto 12px}
.hero-sub{color:var(--muted);max-width:600px;margin:0 auto 20px;font-size:17px}
.hero-badges{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.hero-badges span{background:#fff;border:1px solid var(--line);border-radius:999px;padding:8px 16px;font-size:14px;font-weight:500}

/* product grid */
.products{padding:56px 0}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:22px}
.card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;position:relative;display:flex;flex-direction:column;transition:.15s}
.card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.card-badge{position:absolute;top:12px;left:12px;background:var(--accent);color:#fff;font-weight:700;font-size:13px;padding:4px 10px;border-radius:999px;z-index:2}
.card-img{display:block;background:#f7fbf8;padding:18px}
.card-img img{height:170px;object-fit:contain;margin:0 auto}
.card-body{padding:16px;display:flex;flex-direction:column;gap:8px;flex:1}
.card-body h3{font-size:18px}
.card-tagline{color:var(--muted);font-size:14px;flex:1}
.card-price{display:flex;align-items:baseline;gap:10px}
.card-price s{color:#a7b3ae;font-size:14px}
.card-price strong{color:var(--green-d);font-size:22px}

/* product page */
.product-hero{padding:40px 0;background:#fff;border-bottom:1px solid var(--line)}
.product-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}
.product-media{background:#f7fbf8;border-radius:var(--radius);padding:24px;position:sticky;top:80px}
.product-media img{max-height:420px;margin:0 auto;object-fit:contain}
.product-buy h1{font-size:30px}
.product-tagline{color:var(--teal);font-weight:500;margin-bottom:6px}
.product-lead{margin:14px 0 12px;color:var(--ink);font-weight:500;font-size:16px}
.product-desc{margin:0 0 18px}
.product-desc p{margin-bottom:11px;color:var(--muted);font-size:15px}
.product-desc p:first-child::first-letter{font-size:1.05em;font-weight:600;color:var(--ink)}
.packages{display:flex;flex-direction:column;gap:10px;margin-bottom:16px}
.package{position:relative;display:flex;align-items:center;gap:12px;border:2px solid var(--line);border-radius:12px;padding:14px 16px;cursor:pointer}
.package.is-selected{border-color:var(--green);background:#f2fbf5}
.package input{accent-color:var(--green);width:20px;height:20px}
.package-name{font-weight:600}
.package-price{margin-left:auto;text-align:right}
.package-price s{color:#a7b3ae;font-size:13px;display:block}
.package-price strong{color:var(--green-d);font-size:20px}
.package-tag{position:absolute;top:-10px;right:14px;background:var(--green);color:#fff;font-size:11px;font-weight:600;padding:2px 10px;border-radius:999px}
.total-row{display:flex;justify-content:space-between;align-items:center;padding:12px 0;border-top:1px dashed var(--line);border-bottom:1px dashed var(--line);margin-bottom:16px;font-weight:600}
.total-row strong{font-size:24px;color:var(--green-d)}
.single-price{display:flex;align-items:center;gap:14px;margin-bottom:16px;padding:16px 20px;background:#f2fbf5;border:2px solid var(--green);border-radius:12px}
.single-price .single-badge{background:var(--accent);color:#fff;font-weight:700;font-size:15px;padding:4px 12px;border-radius:999px}
.single-price s{color:#a7b3ae;font-size:18px}
.single-price strong{color:var(--green-d);font-size:30px;margin-left:auto}
.order-form .field{width:100%;padding:14px 16px;border:1px solid #cdd8d2;border-radius:10px;font-size:16px;font-family:inherit;margin-bottom:12px}
.order-form .field:focus{outline:none;border-color:var(--green)}
.consent{display:flex;gap:10px;align-items:flex-start;font-size:13px;color:var(--muted);margin-bottom:14px}
.consent a{color:var(--green-d);text-decoration:underline}
.cod-note{text-align:center;font-size:13px;color:var(--muted);margin-top:10px}
.form-errors{background:#fff2f0;border:1px solid #ffccc4;color:#b3341f;border-radius:10px;padding:12px 14px;margin-bottom:14px;font-size:14px}
.trust-row{list-style:none;display:flex;flex-direction:column;gap:8px;margin-top:18px;font-size:14px;color:var(--muted)}
.soon-box{background:#f7fbf8;border:1px dashed var(--line);border-radius:var(--radius);padding:28px;text-align:center}
.soon-box h3{margin-bottom:8px}

/* content sections */
.benefit-list{list-style:none;max-width:640px;margin:0 auto;display:grid;gap:12px}
.benefit-list li{background:#fff;border:1px solid var(--line);border-radius:10px;padding:14px 18px;font-weight:500}
.ingredient-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.ingredient{background:#fff;border:1px solid var(--line);border-radius:12px;padding:18px}
.ingredient strong{display:block;color:var(--teal);margin-bottom:4px}
.ingredient span{font-size:14px;color:var(--muted)}
.howto .howto-text{max-width:680px;margin:0 auto;text-align:center;font-size:17px;color:var(--muted)}
/* reviews */
.reviews-section{background:#fff}
.reviews-summary{display:flex;gap:34px;align-items:center;justify-content:center;flex-wrap:wrap;max-width:640px;margin:0 auto 32px;background:#f7fbf8;border:1px solid var(--line);border-radius:var(--radius);padding:22px 28px}
.rating-score{text-align:center;line-height:1.2}
.rating-score strong{display:block;font-size:44px;color:var(--ink)}
.rating-score .stars{font-size:18px}
.rating-score span{display:block;font-size:13px;color:var(--muted);margin-top:4px}
.rating-bars{flex:1;min-width:220px;display:flex;flex-direction:column;gap:6px}
.rating-bar{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--muted)}
.rating-bar span{width:26px;color:#f5a623}
.rating-bar .bar{flex:1;height:8px;background:#e5efe8;border-radius:99px;overflow:hidden}
.rating-bar .bar i{display:block;height:100%;background:#f5a623;border-radius:99px}
.reviews-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:18px}
.review{background:#fff;border:1px solid var(--line);border-radius:12px;padding:18px;box-shadow:var(--shadow)}
.review-head{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.review .avatar{width:40px;height:40px;border-radius:50%;color:#fff;font-weight:600;display:grid;place-items:center;flex-shrink:0}
.review-who{display:flex;flex-direction:column;line-height:1.2;flex:1}
.review-who .verified{font-size:11px;color:var(--green);font-weight:500}
.review-date{font-size:12px;color:#a7b3ae;white-space:nowrap}
.review .stars{font-size:15px}
.review p{margin-top:8px;color:var(--ink);font-size:14px}
.reviews-cta{text-align:center;margin-top:28px;max-width:420px;margin-left:auto;margin-right:auto}
.reviews-cta p{font-weight:600;margin-bottom:12px}
.faq{background:#f7fbf8}
.faq-item{max-width:760px;margin:0 auto 10px;border:1px solid var(--line);border-radius:10px;padding:14px 18px}
.faq-item summary{font-weight:600;cursor:pointer}
.faq-item p{margin-top:8px;color:var(--muted)}
.ingredients{background:#fff}

/* success / legal */
.success{text-align:center}
.success-check{width:70px;height:70px;border-radius:50%;background:var(--green);color:#fff;font-size:38px;display:grid;place-items:center;margin:0 auto 18px}
.success-lead{max-width:520px;margin:0 auto 12px;color:var(--muted)}
.success-note{color:var(--muted);margin-bottom:8px}
.success-order{margin:14px 0}
.legal h1{margin-bottom:16px}.legal p{margin-bottom:12px;color:var(--muted)}
.legal h2{font-size:19px;margin:26px 0 8px;color:var(--ink)}
.legal .legal-intro{font-size:16px;color:var(--ink)}
.legal ul{margin:0 0 12px 20px;color:var(--muted)}
.legal li{margin-bottom:6px}
.legal a{color:var(--green-d);text-decoration:underline}
.legal .legal-updated{margin-top:28px;font-size:13px;color:#a7b3ae}
.consent a{color:var(--green-d);text-decoration:underline}

/* footer */
.site-footer{background:#132a20;color:#c8d8ce;padding:36px 0;margin-top:40px;font-size:14px}
.disclaimer{opacity:.8;margin-bottom:16px}
.foot-links{display:flex;gap:20px;flex-wrap:wrap;margin-bottom:12px}
.foot-links a{color:#fff}
.copy{opacity:.7}

/* sticky mobile CTA */
.sticky-cta{position:fixed;left:0;right:0;bottom:0;padding:10px 16px;background:#fff;border-top:1px solid var(--line);box-shadow:0 -4px 14px rgba(0,0,0,.06);z-index:60;display:none}

@media(max-width:860px){
  .product-grid{grid-template-columns:1fr}
  .product-media{position:static}
  .hero h1{font-size:28px}
  .nav{display:none}
  .sticky-cta{display:block}
  body{padding-bottom:74px}
}
