/* =========================================================
   Aamr Vaatika — Mango Subscription page
   ========================================================= */

.variety-toggle{display:flex;justify-content:center;margin-bottom:44px;}

/* =============== Freshness promise band =============== */
.freshness-band{
  background:var(--olive-900);border-radius:var(--r-lg);color:var(--cream-100);
  padding:60px;display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;
  position:relative;overflow:hidden;
}
.freshness-band::before{
  content:"";position:absolute;bottom:-45%;left:-8%;width:520px;height:520px;border-radius:50%;
  background:radial-gradient(circle,rgba(244,191,98,0.16),transparent 65%);pointer-events:none;
}
.freshness-band > *{position:relative;}
.freshness-band h2{color:var(--white);}
.freshness-band .lead{color:rgba(255,255,255,.72);}
.fresh-compare{display:grid;gap:14px;}
.fresh-row{display:flex;align-items:center;gap:14px;background:rgba(255,255,255,.06);border-radius:var(--r-md);padding:16px 18px;}
.fresh-row svg{flex-shrink:0;}
.fresh-row.bad svg{color:#e5877a;}
.fresh-row.good svg{color:var(--mango-400);}
.fresh-row strong{display:block;font-size:.92rem;color:var(--white);}
.fresh-row span{font-size:.82rem;color:rgba(255,255,255,.6);}
@media (max-width:860px){.freshness-band{grid-template-columns:1fr;padding:40px 26px;}}
