/* =========================
   MS HERBIQUE — FULL CSS (Clean + Premium)
   - Rhythm spacing hierarchy
   - Global micro-interactions + subtle scroll reveal classes
   - HERO right side: IMAGE-ONLY CAROUSEL (same size, no white frame)
   - Ingredients section styling
   - Footer premium upgrade
   - WhatsApp floating polish
   ========================= */

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root{
  --mint:#e6f1ea;     /* header */
  --white:#ffffff;    /* main */
  --text:#1f2d2a;
  --muted:#5f6f6a;
  --brand:#2c5f4e;
  --line:#e3ece8;

  /* ===== Premium spacing rhythm (desktop) ===== */
  --space-tight:70px;
  --space-normal:100px;
  --space-breathe:130px;
  --space-authority:140px;

  /* motion */
  --ease-premium:cubic-bezier(.2,.8,.2,1);
  --t-fast:.18s;
  --t-med:.30s;
}

/* GLOBAL */
body{
  font-family:"Poppins","Segoe UI",Arial,sans-serif;
  color:var(--text);
  background:var(--white);
}

/* =========================
   MICRO-INTERACTIONS — GLOBAL
   ========================= */

a, button, input, textarea, select,
.p-card, .best-seller, .hero-carousel, .icon-box, .ing-card, .social-link{
  transition:
    transform var(--t-med) var(--ease-premium),
    box-shadow var(--t-med) var(--ease-premium),
    background-color var(--t-med) var(--ease-premium),
    color var(--t-med) var(--ease-premium),
    border-color var(--t-med) var(--ease-premium),
    opacity var(--t-med) var(--ease-premium);
}

/* buttons: controlled lift */
.hero-btn:hover,
.best-seller__btn:hover,
.p-btn:hover,
.about .btn:hover,
.footer-join:hover,
.newsletter-form button:hover{
  transform:translateY(-2px);
}

/* images: subtle zoom on hover */
.p-media img,
.best-seller__media img,
.hero-slide img{
  transition:transform .45s var(--ease-premium);
}

.p-card:hover .p-media img,
.best-seller:hover .best-seller__media img{
  transform:scale(1.045);
}

@media (prefers-reduced-motion:reduce){
  *{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}

/* =========================
   SCROLL REVEAL — SUBTLE (JS adds .reveal)
   ========================= */

.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:
    opacity .55s var(--ease-premium),
    transform .55s var(--ease-premium);
  will-change:opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* =========================
   NAVBAR — PREMIUM
   ========================= */

.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--mint);
  border-bottom:1px solid rgba(0,0,0,.06);
  box-shadow:0 6px 24px rgba(0,0,0,.04);
  transition:all .3s ease;
}

.navbar-inner{
  max-width:1200px;
  margin:0 auto;
  padding:22px 40px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  transition:padding .3s ease;
}

.navbar.scrolled .navbar-inner{ padding:14px 40px; }

.logo img{
  height:56px;
  width:auto;
  display:block;
}

.nav-links{
  list-style:none;
  display:flex;
  justify-content:center;
  gap:34px;
}

.nav-links a{
  text-decoration:none;
  color:var(--brand);
  font-weight:500;
  font-size:14px;
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--brand);
  transition:width .25s ease;
}
.nav-links a:hover::after{ width:100%; }

.nav-social{
  display:flex;
  gap:14px;
  align-items:center;
}

.nav-social a,
.nav-social .nav-social-disabled{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  color:var(--brand);
  text-decoration:none;
  border:1px solid rgba(44,95,78,.22);
  border-radius:8px;
  background:rgba(255,255,255,.35);
}

.nav-social .nav-social-disabled{
  opacity:.55;
  cursor:default;
}

.nav-social a svg,
.nav-social .nav-social-disabled svg{
  width:16px;
  height:16px;
  display:block;
}

/* =========================
   HERO — PROMO (CAROUSEL ONLY)
   ========================= */

.hero.hero--promo{
  position:relative;
  padding:110px 0;
  overflow:hidden;
  background:
    linear-gradient(
      90deg,
      rgba(8,15,12,.82) 0%,
      rgba(8,15,12,.72) 35%,
      rgba(8,15,12,.45) 60%,
      rgba(8,15,12,.15) 80%,
      rgba(8,15,12,.05) 100%
    ),
    url("assets/hero-bg.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* premium grain overlay */
.hero.hero--promo::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(159,226,201,.10) 0%, rgba(0,0,0,0) 55%),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,.06) 0%, rgba(0,0,0,0) 50%);
  opacity:.35;
  pointer-events:none;
  z-index:1;
}

/* vignette */
.hero.hero--promo::after{
  content:"";
  position:absolute;
  inset:-60px;
  background:radial-gradient(
    circle at 30% 40%,
    rgba(255,255,255,.06) 0%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.65) 100%
  );
  pointer-events:none;
  z-index:1;
}

.hero-promo{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:60px;
  align-items:center;
}

/* =========================
   LEFT SIDE
   ========================= */

.hero-left{
  max-width:560px;
  padding:28px 28px 24px;
  border-radius:26px;
  background:rgba(15,22,19,.55);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 25px 70px rgba(0,0,0,.45);
  backdrop-filter:blur(12px);
}

.hero-headline{
  font-size:46px;
  line-height:1.05;
  letter-spacing:-1px;
  color:#ffffff;
  margin:0 0 16px;
  font-weight:950;
}

.hero-accent{ color:#9fe2c9; }

.hero-sub{
  margin:0 0 18px;
  color:rgba(255,255,255,.85);
  font-size:15px;
  line-height:1.6;
}

.hero-points{
  list-style:none;
  padding:0;
  margin:0 0 24px;
  display:grid;
  gap:12px;
  color:rgba(255,255,255,.88);
  font-size:14px;
}

.hero-points li{
  position:relative;
  padding-left:30px;
}

.hero-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:18px;
  height:18px;
  border-radius:999px;
  background:rgba(159,226,201,.15);
  border:1px solid rgba(159,226,201,.28);
}

.hero-points li::after{
  content:"";
  position:absolute;
  left:6px;
  top:8px;
  width:7px;
  height:4px;
  border-left:2px solid #9fe2c9;
  border-bottom:2px solid #9fe2c9;
  transform:rotate(-45deg);
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 26px;
  border-radius:999px;
  background:linear-gradient(180deg,#2c5f4e 0%,#1f4a3c 100%);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
}

.hero-badges{
  margin-top:12px;
  display:grid;
  gap:8px;
}

.hero-badge{
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(44,95,78,.18);
  font-size:13px;
  font-weight:600;
  width:fit-content;
}

/* =========================
   RIGHT SIDE — CAROUSEL (MATCH LEFT HEIGHT) + DOTS
   ========================= */

.hero-right{
  display:flex;
  justify-content:center;
  align-items:stretch; /* important: match left height */
}

/* make it visually same “weight” as the glass panel */
.hero-carousel{
  width:100%;
  max-width:560px;          /* closer to left panel width */
  height:100%;
  min-height:420px;         /* prevents short banner look */
  border-radius:26px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 25px 70px rgba(0,0,0,.35);
  background:rgba(0,0,0,.10);
}

.hero-carousel-track{
  height:100%;
  display:flex;
  transform:translateX(0);
  transition:transform .6s cubic-bezier(.2,.8,.2,1);
  will-change:transform;
}

.hero-slide{
  min-width:100%;
  height:100%;
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* subtle premium overlay */
.hero-carousel::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,0) 55%, rgba(0,0,0,.22));
  pointer-events:none;
}


/* ARROWS — left/right */
.hero-car-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.28);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  z-index:3;
  transition:
    transform .25s cubic-bezier(.2,.8,.2,1),
    background-color .25s cubic-bezier(.2,.8,.2,1),
    opacity .25s cubic-bezier(.2,.8,.2,1);
}

.hero-car-arrow:hover{
  background:rgba(0,0,0,.42);
  transform:translateY(-50%) translateY(-2px);
}

.hero-car-prev{ left:14px; }
.hero-car-next{ right:14px; }

@media (hover:hover){
  .hero-car-arrow{ opacity:.9; }
  .hero-carousel:hover .hero-car-arrow{ opacity:1; }
}


/* DOTS — clickable */
.hero-car-dots{
  position:absolute;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:2;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
}

.hero-car-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.22);
  cursor:pointer;
  padding:0;
}

.hero-car-dot.is-active{
  background:rgba(255,255,255,.85);
  transform:scale(1.15);
}

/* MOBILE */
@media (max-width:900px){
  .hero-carousel{
    max-width:520px;
    min-height:320px;
    border-radius:22px;
  }

  .hero-car-arrow{
    width:42px;
    height:42px;
  }

  .hero-car-prev{ left:10px; }
  .hero-car-next{ right:10px; }
}


/* =========================
   WATERMARK
   ========================= */

.hero-watermark{
  position:absolute;
  left:-30px;
  top:0;
  height:100%;
  display:flex;
  align-items:center;
  font-size:103px;
  font-weight:900;
  letter-spacing:8px;
  white-space:nowrap;
  color:rgba(159,226,201,.08);
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  pointer-events:none;
  z-index:1;
  text-transform:lowercase;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width:900px){

  .hero.hero--promo{ padding:70px 0; }

  .hero-promo{
    grid-template-columns:1fr;
    gap:40px;
    padding:0 20px;
  }

  .hero-left{ padding:22px; }

  .hero-headline{ font-size:34px; }

  .hero-watermark{ display:none; }

  .hero-carousel{
    max-width:520px;
    border-radius:26px;
  }
}

/* =========================
   STATS
   ========================= */

.stats{
  background:#f1f7f3;
  padding:36px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.stats-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  text-align:center;
}

.stat-number{
  font-size:26px;
  font-weight:700;
  color:var(--brand);
}

.stat-label{
  font-size:13px;
  color:var(--muted);
}

/* =========================
   WHY
   ========================= */

.why{
  background:var(--white);
  padding:var(--space-authority) 40px 90px;
  text-align:center;
}

.why h2{
  font-size:34px;
  margin-bottom:12px;
  font-weight:800;
  letter-spacing:.6px;
}

.why-text{
  max-width:720px;
  margin:0 auto 40px;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.icons{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:1050px;
  margin:0 auto;
}

.icon-box{
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px 22px;
  min-height:260px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.icon-box img{
  width:96px;
  height:96px;
  object-fit:contain;
}

.icon-box h4{
  font-size:18px;
  margin-top:12px;
  line-height:1.2;
  font-weight:800;
}

.icon-box p{
  font-size:14px;
  color:var(--muted);
  max-width:240px;
  text-align:center;
  line-height:1.6;
}

/* =========================
   ABOUT
   ========================= */

#about ul{ margin-bottom:20px; }

.about{
  background:#ffffff;
  padding:var(--space-breathe) 0;
}

.about-content{
  max-width:1200px;
  margin:0 auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:80px;
  align-items:center;
}

.about-text h2{
  font-size:42px;
  font-weight:800;
  letter-spacing:.6px;
  color:#7ea392;
  margin-bottom:22px;
}

.about-text p{
  max-width:520px;
  font-size:15px;
  line-height:1.75;
  color:var(--muted);
  margin-bottom:32px;
}

.about-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.about .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 22px;
  border-radius:999px;
  font-family:inherit;
  font-size:13px;
  font-weight:700;
  letter-spacing:.4px;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  box-shadow:0 14px 35px rgba(0,0,0,.08);
  min-width:160px;
}

.about .btn-buy{
  background:#7ea392;
  color:#ffffff;
}
.about .btn-buy:hover{
  background:#6c8f7f;
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.about .btn-outline{
  background:transparent;
  color:#2f2f2f;
  border-color:rgba(47,47,47,.3);
  box-shadow:none;
}
.about .btn-outline:hover{
  background:rgba(47,47,47,.06);
  transform:translateY(-2px);
}

.about-image{
  display:flex;
  justify-content:center;
}

.about-image-box{
  background:#eef6f1;
  border-radius:22px;
  padding:28px;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.about-image-box img{
  width:100%;
  max-width:420px;
  height:auto;
  display:block;
  border-radius:14px;
}

/* =========================
   PRODUCTS
   ========================= */

.products{
  background:#f5f7f6;
  padding:var(--space-normal) 0 70px;
}

.products .container{
  max-width:1200px;
  margin:0 auto;
  padding:0 40px;
}

.products__title{
  text-align:center;
  font-weight:800;
  letter-spacing:.6px;
  color:var(--brand);
  margin-bottom:34px;
  font-size:22px;
}

/* Best seller */
.best-seller{
  margin:0 auto 28px;
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:24px;
  align-items:stretch;
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
}

.best-seller__media{
  background:#f3f8f5;
  min-height:260px;
}

.best-seller__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.best-seller__body{
  padding:22px 22px 18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.best-seller__badge{
  width:fit-content;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(44,95,78,.12);
  border:1px solid rgba(44,95,78,.22);
  color:var(--brand);
  font-weight:800;
  font-size:12px;
}

.best-seller__title{
  margin:0;
  font-size:22px;
  font-weight:850;
  line-height:1.15;
  color:var(--text);
}

.best-seller__points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
  color:var(--muted);
  font-size:12.5px;
  line-height:1.4;
}

.best-seller__points li{
  position:relative;
  padding-left:28px;
}
.best-seller__points li::before{
  content:"";
  position:absolute;
  left:0;
  top:1px;
  width:18px;
  height:18px;
  border-radius:999px;
  background:rgba(44,95,78,.12);
  border:1px solid rgba(44,95,78,.25);
}
.best-seller__points li::after{
  content:"";
  position:absolute;
  left:6px;
  top:7px;
  width:7px;
  height:4px;
  border-left:2px solid var(--brand);
  border-bottom:2px solid var(--brand);
  transform:rotate(-45deg);
}

.best-seller__bottom{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-top:10px;
}

.best-seller__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  white-space:nowrap;
  min-width:120px;
}
.best-seller__btn:hover{ background:#244c3e; }

.best-seller__price{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(44,95,78,.10);
  border:1px solid rgba(44,95,78,.18);
  color:var(--brand);
  font-weight:900;
  white-space:nowrap;
}
.best-seller__cur{ font-size:11px; }
.best-seller__val{ font-size:16px; }

/* grid */
.products__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:26px;
  align-items:stretch;
}

/* product cards */
.p-card{
  background:#ffffff;
  border:1px solid rgba(44,95,78,.14);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 14px 42px rgba(0,0,0,.07);
  display:flex;
  flex-direction:column;
  height:100%;
}

.p-card::before{
  content:"";
  display:block;
  height:1px;
  background:linear-gradient(
    90deg,
    rgba(159,226,201,0),
    rgba(159,226,201,.55),
    rgba(159,226,201,0)
  );
  opacity:.35;
}

.p-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 70px rgba(0,0,0,.12);
  border-color:rgba(44,95,78,.22);
}

.p-media{
  background:#f3f8f5;
  aspect-ratio:16 / 10;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.p-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.p-body{
  padding:16px 16px 14px;
  display:flex;
  flex-direction:column;
  flex:1;
  gap:10px;
}

.p-title{
  font-size:17px;
  font-weight:750;
  color:var(--text);
  line-height:1.15;
  margin:0;
}

.p-points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
  color:var(--muted);
  font-size:12.5px;
  line-height:1.4;
}

.p-points li{
  position:relative;
  padding-left:28px;
}
.p-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:1px;
  width:18px;
  height:18px;
  border-radius:999px;
  background:rgba(44,95,78,.12);
  border:1px solid rgba(44,95,78,.25);
}
.p-points li::after{
  content:"";
  position:absolute;
  left:6px;
  top:7px;
  width:7px;
  height:4px;
  border-left:2px solid var(--brand);
  border-bottom:2px solid var(--brand);
  transform:rotate(-45deg);
}

.p-bottom{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:6px;
}

.p-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  line-height:1;
  white-space:nowrap;
  min-width:108px;
}
.p-btn:hover{ background:#244c3e; }

.p-price{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(44,95,78,.10);
  border:1px solid rgba(44,95,78,.16);
  color:var(--brand);
  font-weight:800;
  white-space:nowrap;
  min-width:78px;
}

.p-price-currency{ font-size:10px; font-weight:800; }
.p-price-value{ font-size:15px; font-weight:900; }

/* =========================
   KEY INGREDIENTS
   ========================= */

.ingredients{
  background:#ffffff;
  padding:110px 0 70px;
}

.ingredients .container{
  max-width:1200px;
  margin:0 auto;
  padding:0 40px;
}

.ingredients-head{
  text-align:center;
  margin-bottom:32px;
}

.ingredients-title{
  font-size:30px;
  font-weight:800;
  letter-spacing:.6px;
  color:var(--text);
  margin-bottom:10px;
}

.ingredients-sub{
  max-width:560px;
  margin:0 auto;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.ingredients-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}

.ing-card{
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px 18px;
  text-align:left;
  box-shadow:0 12px 34px rgba(0,0,0,.06);
}

.ing-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 46px rgba(0,0,0,.09);
  border-color:rgba(44,95,78,.22);
}

.ing-ico{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:var(--brand);
  background:rgba(44,95,78,.10);
  border:1px solid rgba(44,95,78,.16);
  margin-bottom:12px;
}

.ing-ico svg{
  width:22px;
  height:22px;
  display:block;
}

.ing-card h3{
  font-size:16px;
  font-weight:800;
  color:var(--text);
  margin-bottom:8px;
}

.ing-card p{
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}

/* =========================
   NEWSLETTER
   ========================= */

.newsletter{
  background:var(--white);
  padding:60px 40px 90px;
}

.newsletter-inner{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:70px;
  align-items:center;
}

.newsletter-image{
  background:#f3f8f5;
  border-radius:16px;
  padding:26px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.newsletter-image img{
  width:140px;
  height:auto;
  display:block;
}

.newsletter-content h3{
  font-size:32px;
  font-weight:600;
  color:#4f8f7b;
  margin-bottom:12px;
}

.newsletter-content p{
  font-size:14px;
  color:var(--muted);
  margin-bottom:26px;
  max-width:420px;
}

.newsletter-form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  max-width:420px;
}

.newsletter-form input{
  height:44px;
  padding:0 14px;
  border-radius:10px;
  border:1px solid var(--line);
  font-family:inherit;
}

.newsletter-form button{
  height:44px;
  padding:0 20px;
  border-radius:10px;
  border:0;
  background:#6f9e86;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

/* =========================
   FOOTER — PREMIUM
   ========================= */

.footer{
  background:#dcebe4;
  border-top:1px solid rgba(44,95,78,.25);
  color:var(--muted);
  padding:90px 40px 28px;
  position:relative;
}

.footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background:linear-gradient(
    90deg,
    rgba(44,95,78,0),
    rgba(44,95,78,.35),
    rgba(44,95,78,0)
  );
}

.footer-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1.2fr;
  gap:64px;
  align-items:start;
}

.footer-col{
  font-size:13.5px;
  line-height:1.85;
}

.footer-tagline{
  color:var(--text);
  font-weight:600;
  margin-bottom:16px;
}

.footer-social{
  display:flex;
  gap:14px;
  align-items:center;
  margin-top:8px;
}

.social-link{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  color:var(--brand);
  text-decoration:none;
  border:1px solid rgba(44,95,78,.25);
  border-radius:10px;
  background:rgba(255,255,255,.55);
  transition:background .2s ease, transform .2s ease, color .2s ease, border-color .2s ease;
}

.social-link:hover{
  background:var(--brand);
  color:#ffffff;
  transform:translateY(-2px);
  border-color:rgba(44,95,78,.35);
}

.social-link svg{
  width:16px;
  height:16px;
  display:block;
}

.footer-heading{
  color:var(--text);
  font-weight:700;
  margin-bottom:16px;
  letter-spacing:.4px;
}

.footer-links,
.footer-contact{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.footer-links a{
  color:rgba(31,45,42,.72);
  text-decoration:none;
  transition:color .2s ease, transform .2s ease;
}

.footer-links a:hover{
  color:var(--brand);
  transform:translateX(4px);
}

.footer-contact li{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:10px;
  align-items:start;
}

.footer-contact a{
  color:rgba(31,45,42,.72);
  text-decoration:none;
  transition:color .2s ease;
}

.footer-contact a:hover{ color:var(--brand); }

.c-ico{
  color:var(--brand);
  margin-top:2px;
}

.c-ico svg{
  width:18px;
  height:18px;
  display:block;
}

.footer-note{
  margin:0 0 14px;
  color:rgba(31,45,42,.70);
}

.footer-form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:center;
}

.footer-input{
  height:44px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid rgba(44,95,78,.25);
  background:rgba(255,255,255,.85);
  outline:none;
  font-family:inherit;
  color:var(--text);
}

.footer-join{
  height:44px;
  padding:0 18px;
  border-radius:12px;
  border:0;
  background:var(--brand);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}

.footer-join:hover{
  background:#244c3e;
  transform:translateY(-2px);
}

.footer-bottom{
  max-width:1200px;
  margin:42px auto 0;
  padding-top:22px;
  border-top:1px solid rgba(44,95,78,.22);
  text-align:center;
  font-size:13px;
  color:rgba(31,45,42,.62);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width:1100px){
  .products__grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width:980px){
  .footer-inner{
    grid-template-columns:1fr 1fr;
    gap:28px;
  }
}

@media (max-width:900px){
  :root{
    --space-tight:56px;
    --space-normal:80px;
    --space-breathe:96px;
    --space-authority:110px;
  }

  .navbar-inner{
    grid-template-columns:1fr;
    gap:16px;
    padding:18px 20px;
    justify-items:center;
  }

  .nav-links{ justify-content:center; }
  .nav-social{ justify-content:center; }

  .icons{ grid-template-columns:1fr; }

  .about-content{
    grid-template-columns:1fr;
    gap:40px;
    padding:0 20px;
    text-align:center;
  }

  .about-text h2{ font-size:34px; }

  .about-actions{
    flex-direction:column;
    align-items:center;
  }

  .stats-inner{
    grid-template-columns:repeat(2,1fr);
    padding:0 20px;
  }

  .best-seller{ grid-template-columns:1fr; }
  .best-seller__media{ min-height:220px; }

  .newsletter{
    padding:54px 20px 80px;
  }

  .newsletter-inner{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }

  .newsletter-form{
    margin:0 auto;
    grid-template-columns:1fr;
  }

  .newsletter-form button{ width:100%; }

  .ingredients{
    padding:90px 0 56px;
  }
  .ingredients .container{ padding:0 20px; }
  .ingredients-grid{
    grid-template-columns:1fr;
    gap:14px;
  }
}

@media (max-width:560px){
  .products .container{ padding:0 34px; }
  .products__grid{ grid-template-columns:1fr; }

  .footer{ padding:52px 20px 20px; }
  .footer-inner{ grid-template-columns:1fr; }

  .footer-form{ grid-template-columns:1fr; }
  .footer-join{ width:100%; }
}

/* =========================
   FLOATING WHATSAPP — POLISHED
   ========================= */

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:50px;
  height:50px;
  background:#25D366;
  color:#ffffff;
  border-radius:50%;
  display:grid;
  place-items:center;
  box-shadow:
    0 8px 20px rgba(0,0,0,.25),
    0 0 0 0 rgba(37,211,102,.45);
  transition:
    transform .25s var(--ease-premium),
    box-shadow .25s var(--ease-premium);
  z-index:999;
}

.whatsapp-float:hover{
  transform:translateY(-3px);
  box-shadow:
    0 14px 28px rgba(0,0,0,.28),
    0 0 18px 4px rgba(37,211,102,.35);
}

.whatsapp-float svg{
  width:22px;
  height:22px;
}

/* tooltip */
.whatsapp-float::after{
  content:"Chat with us";
  position:absolute;
  right:62px;
  bottom:50%;
  transform:translateY(50%) translateX(6px);
  background:#1f2d2a;
  color:#fff;
  font-size:12px;
  padding:6px 10px;
  border-radius:6px;
  opacity:0;
  pointer-events:none;
  white-space:nowrap;
  transition:opacity .25s ease, transform .25s ease;
}

.whatsapp-float:hover::after{
  opacity:1;
  transform:translateY(50%) translateX(0);
}

/* prevent overlays from blocking clicks */
.hero, .navbar{ pointer-events:auto; }