/* ============================================
   FRESHLY FRUITS — STYLESHEET
   Separated from HTML for maintainability
   ============================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  /* Colors */
  --green: #3a7d44;
  --green-light: #6ab04c;
  --green-pale: #e8f5e9;
  --green-fresh: #8bc34a;
  --orange: #f57c00;
  --cream: #fdfaf4;
  --dark: #1a2e1a;
  --text: #2c3e2c;
  --muted: #6b7c6b;
  --error: #d32f2f;
  --error-bg: #ffebee;
  --success: #2e7d32;
  --success-bg: #e8f5e9;

  /* Typography */
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'DM Sans', sans-serif;

  /* Spacing */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 28px rgba(0,0,0,.11);
  --shadow-lg: 0 18px 44px rgba(0,0,0,.1);
  --shadow-green: 0 30px 80px rgba(58,125,68,.2);
}

/* ---------- BASE ---------- */
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; }
.page { display: none; }
.page.active { display: block; }

/* ---------- HEADER ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: rgba(253,250,244,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(58,125,68,.1);
  padding: 0 5vw;
}
.nav-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-fresh), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.logo-text {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}
nav ul { display: flex; list-style: none; gap: 24px; }
nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
nav a:hover { color: var(--green); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  background: white;
  border: 1.5px solid rgba(58,125,68,.3);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.cart-btn:hover { background: var(--green); color: white; border-color: var(--green); }
.cart-count {
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  transition: transform .2s;
}
.cart-count.bump { transform: scale(1.4); }

/* ══ NETFLIX HERO ══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('assets/banner.webp');
  background-size: cover;
  background-position: center 30%;
  animation: bgZoom 20s ease-in-out infinite alternate;
}
@keyframes bgZoom {
  0%   { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.12) translateX(-2%); }
}
.hero-gradient-left {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg,
    rgba(10,15,10,1) 0%, rgba(10,15,10,.92) 20%,
    rgba(10,15,10,.75) 40%, rgba(10,15,10,.3) 65%, transparent 85%);
}
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; height: 50%;
  background: linear-gradient(to top, rgba(10,15,10,1) 0%, rgba(10,15,10,.4) 50%, transparent 100%);
}
.hero-gradient-top {
  position: absolute; top: 0; left: 0; right: 0; z-index: 1; height: 30%;
  background: linear-gradient(to bottom, rgba(10,15,10,.75) 0%, transparent 100%);
}
.hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 80% 100% at 70% 50%, rgba(58,125,68,.1) 0%, transparent 60%);
}
.grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
#hero-canvas { position: absolute; inset: 0; z-index: 4; pointer-events: none; opacity: .5; }
.fruit-p {
  position: absolute; font-size: var(--sz, 2rem); pointer-events: none; z-index: 3;
  opacity: 0; animation: fruitRise var(--rise, 7s) var(--dl, 0s) ease-in infinite;
  left: var(--x, 10%); filter: drop-shadow(0 4px 8px rgba(0,0,0,.4));
}
@keyframes fruitRise {
  0%   { opacity: 0; transform: translateY(120px) rotate(0deg) scale(.5); }
  10%  { opacity: .6; }
  80%  { opacity: .3; }
  100% { opacity: 0; transform: translateY(-140px) rotate(var(--rot, 20deg)) scale(1.1); }
}
.hero-content {
  position: relative; z-index: 10;
  padding: 90px 5vw 80px;
  max-width: 680px; width: 100%;
}
.hero .hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: 7px 18px 7px 10px;
  font-size: 12px; color: rgba(255,255,255,.9); font-weight: 600;
  margin-bottom: 28px; backdrop-filter: blur(12px);
  opacity: 0; animation: slideDown .7s .2s cubic-bezier(.34,1.56,.64,1) forwards;
}
.hero .badge-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #4caf50; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(76,175,80,.3); animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--fd);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900; line-height: 1.0;
  color: white; letter-spacing: -2px; margin-bottom: 22px;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line-inner {
  display: block; transform: translateY(110%);
  animation: lineReveal .9s cubic-bezier(.16,1,.3,1) forwards;
}
.hero h1 .line:nth-child(1) .line-inner { animation-delay: .3s; }
.hero h1 .line:nth-child(2) .line-inner { animation-delay: .5s; }
.hero h1 em {
  color: #8bc34a; font-style: italic; position: relative; display: inline-block;
}
.hero h1 em::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, #6ab04c, #8bc34a); border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  animation: drawLine .7s 1.3s ease forwards;
}
@keyframes drawLine { to { transform: scaleX(1); } }
@keyframes lineReveal { to { transform: translateY(0); } }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .hero-sub {
  font-size: 17px; line-height: 1.8; color: rgba(255,255,255,.72);
  max-width: 500px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp .7s 1s ease forwards;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.hero .hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp .7s 1.1s ease forwards;
}
.hero .hero-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; padding: 7px 16px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.88); cursor: default; backdrop-filter: blur(8px);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.hero .hero-pill:hover {
  background: var(--green); border-color: var(--green); color: white;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 24px rgba(58,125,68,.45);
}
.pill-icon { transition: transform .3s; }
.hero .hero-pill:hover .pill-icon { transform: rotate(15deg) scale(1.25); }
.hero .hero-btns {
  display: flex; gap: 14px; align-items: center;
  opacity: 0; animation: fadeUp .7s 1.2s ease forwards;
}
.hero .btn-primary {
  background: white; color: var(--dark); border: none;
  padding: 16px 36px; border-radius: 999px;
  font-family: var(--fb); font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  position: relative; overflow: hidden;
}
.hero .btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(58,125,68,.15), transparent);
  transform: skewX(-20deg); animation: shimmer 2.5s 1.8s ease infinite;
}
@keyframes shimmer { 0% { left: -100%; } 100% { left: 200%; } }
.hero .btn-primary:hover {
  background: var(--green); color: white;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(58,125,68,.5);
}
.btn-arrow {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(26,46,26,.12);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.hero .btn-primary:hover .btn-arrow { transform: translateX(5px) scale(1.2); }
.hero .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px; color: white;
  font-size: 14px; font-weight: 600; text-decoration: none;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 999px; padding: 15px 26px; cursor: pointer;
  font-family: var(--fb); transition: all .25s; backdrop-filter: blur(8px);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5);
  transform: translateY(-3px);
}
.play-ic {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.hero .btn-ghost:hover .play-ic { background: white; color: var(--dark); transform: scale(1.15); }
.trust-strip {
  display: flex; align-items: center; gap: 20px; margin-top: 36px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s 1.4s ease forwards;
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  background: linear-gradient(135deg, #8bc34a, #3a7d44);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: white; margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3); transition: transform .2s;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-text strong { font-size: 14px; font-weight: 700; color: white; display: block; }
.trust-text span   { font-size: 12px; color: rgba(255,255,255,.55); }
.trust-stars { color: #f5c518; font-size: 13px; letter-spacing: 1px; }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }
.trust-stat strong {
  font-family: var(--fd); font-size: 20px; font-weight: 900;
  color: #8bc34a; display: block;
}
.trust-stat span { font-size: 11px; color: rgba(255,255,255,.5); }
.hero-cards {
  position: absolute; right: 5vw; top: 50%; transform: translateY(-50%);
  z-index: 10; display: flex; flex-direction: column; gap: 14px;
  opacity: 0; animation: slideLeft .8s .8s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateY(-50%) translateX(40px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.info-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(20px); border-radius: 16px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; cursor: default; min-width: 200px;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.info-card:hover {
  background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.28);
  transform: translateX(-6px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.info-card:nth-child(1) { animation: floatCard 4s ease-in-out infinite; }
.info-card:nth-child(2) { animation: floatCard 4s 1.3s ease-in-out infinite; }
.info-card:nth-child(3) { animation: floatCard 4s 2.6s ease-in-out infinite; }
.info-card:nth-child(4) { animation: floatCard 4s .65s ease-in-out infinite; }
@keyframes floatCard {
  0%,100% { transform: translateX(0) translateY(0); }
  50%      { transform: translateX(0) translateY(-8px); }
}
.ic-emoji { font-size: 28px; flex-shrink: 0; }
.ic-title { font-size: 14px; font-weight: 700; color: white; }
.ic-sub   { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 2px; }
.ic-live  {
  width: 8px; height: 8px; border-radius: 50%; background: #4caf50;
  margin-left: auto; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(76,175,80,.25); animation: pulse 1.5s infinite;
}
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn .7s 2.2s forwards; cursor: pointer;
}
.scroll-hint span { font-size: 10px; color: rgba(255,255,255,.45); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; }
.scroll-mouse {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.25); border-radius: 11px;
  position: relative;
}
.scroll-wheel {
  width: 4px; height: 8px; background: #8bc34a; border-radius: 2px;
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  animation: scrollW 1.5s ease-in-out infinite;
}
@keyframes scrollW { 0% { top: 5px; opacity: 1; } 100% { top: 18px; opacity: 0; } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .hero-cards { display: none; }
  .hero-content { max-width: 100%; padding: 100px 5vw 80px; }
}
@media (max-width: 600px) {
  .hero .hero-btns { flex-direction: column; align-items: stretch; }
  .hero .btn-primary, .hero .btn-ghost { justify-content: center; }
  .trust-divider { display: none; }
}






/* ---------- STATS ---------- */
.stats { background: var(--dark); padding: 48px 5vw; }
.stats-in {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  text-align: center;
}
.stat-n {
  font-family: var(--fd);
  font-size: 42px;
  font-weight: 900;
  color: var(--green-fresh);
  letter-spacing: -1px;
  display: block;
}
.stat-l { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ---------- SECTION COMMON ---------- */
.sec { padding: 90px 5vw; }
.si { max-width: 1200px; margin: auto; }
.stag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.stit {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.ssub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
}

/* ---------- PACKAGING ---------- */
.pkg-sec {
  background: linear-gradient(145deg, #edf7ed 0%, #fdfaf4 60%, #fff8ee 100%);
  padding: 90px 5vw;
}
.pkg-in {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.pkg-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkg-circle {
  width: 440px; height: 440px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 12px rgba(58,125,68,.06), 0 0 0 24px rgba(58,125,68,.04), 0 30px 80px rgba(58,125,68,.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 4px solid rgba(58,125,68,.12);
}
.pkg-circle img {
  width: 120%; height: 120%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}
.pkg-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px dashed rgba(58,125,68,.2);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pkg-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 11px 16px;
  box-shadow: 0 6px 22px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.pbg-1 { top: 16px; left: -28px; animation: float 4s ease-in-out infinite; }
.pbg-2 { bottom: 28px; right: -28px; animation: float 4s 1.5s ease-in-out infinite; }
.pbg-3 { top: 50%; left: -36px; transform: translateY(-50%); animation: float 4s .8s ease-in-out infinite; }
.pkg-badge-icon { font-size: 22px; }
.pkg-badge-sub { font-size: 11px; color: var(--muted); font-weight: 400; }
.pkg-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.pkg-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.pkg-feat:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.pkg-feat-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.pkg-feat-title { font-weight: 600; font-size: 14px; color: var(--dark); }
.pkg-feat-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }







/* ── Product Card — Hover Animation & Polish ───────────────── */


/* ── Menu Section Header ─────────────────────────────────────── */
.menu-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Section tag (small label above title) ───────────────────── */
.stag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

/* ── Section title ────────────────────────────────────────────── */
.stit {
  font-family: var(--fd);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}

/* ── Filter tabs container ────────────────────────────────────── */
.ftabs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 4px; /* align baseline with title */
}

/* ── Individual filter tab ────────────────────────────────────── */
.ftab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--fb);
  border: 1.5px solid rgba(0,0,0,.1);
  background: white;
  cursor: pointer;
  color: var(--muted);
  transition: all .22s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* ripple layer */
.ftab::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  opacity: 0;
  transform: scale(0);
  border-radius: inherit;
  transition: transform .3s ease, opacity .3s ease;
  z-index: 0;
}

.ftab span {
  position: relative;
  z-index: 1;
}

/* hover state */
.ftab:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* active / selected state */
.ftab.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  transform: translateY(-1px);
}

.ftab.active:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}

/* click press */
.ftab:active {
  transform: scale(.95) translateY(0);
  box-shadow: none;
}

/* ── Product grid ─────────────────────────────────────────────── */
.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

/* ── Responsive breakpoints ───────────────────────────────────── */
@media (max-width: 900px) {
  .menu-hd {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .ftabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    /* hide scrollbar but keep scrollable */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .ftabs::-webkit-scrollbar {
    display: none;
  }

  .ftab {
    flex-shrink: 0; /* prevent tabs from squishing */
  }
}

@media (max-width: 600px) {
  .pgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stit {
    font-size: 24px;
  }
}

@media (max-width: 360px) {
  .pgrid {
    grid-template-columns: 1fr;
  }
}




.pcard {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), 
              box-shadow .3s ease;
  position: relative;
  cursor: pointer;
}

.pcard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color .25s ease;
  pointer-events: none;
  z-index: 1;
}

.pcard:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,.10), 
              0 4px 12px rgba(0,0,0,.06);
}

.pcard:hover::before {
  border-color: var(--green);
}

/* ── Image — zoom on hover ──────────────────────────────────── */
.pimg {
  width: 100%;
  height: 195px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--green-pale);
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}

.pcard:hover .pimg {
  transform: scale(1.07);
}

/* ── Card body ──────────────────────────────────────────────── */
.pbody {
  padding: 16px 18px 18px;
}

/* ── Category tag ────────────────────────────────────────────── */
.pcat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
  transition: letter-spacing .2s ease;
}

.pcard:hover .pcat {
  letter-spacing: .14em;
}

/* ── Product name ─────────────────────────────────────────────── */
.pname {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.3;
}

/* ── Description ──────────────────────────────────────────────── */
.pdesc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ── Weight selector ──────────────────────────────────────────── */
.weight-selector {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}

.wbtn {
  flex: 1;
  padding: 5px 0;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--fb);
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: var(--radius-full);
  background: white;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
}

.wbtn:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(var(--green-rgb, 90,160,50), .06);
}

.wbtn.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* ── Price + per-unit ─────────────────────────────────────────── */
.pfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pprice {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}

.pprice .old {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 5px;
  font-weight: 400;
}

.price-per {
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
  transition: color .2s;
}

.pcard:hover .price-per {
  color: var(--green);
}


/* ── Add button ──────────────────────────────────────────────── */
.addbtn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s cubic-bezier(.34,1.56,.64,1),
              box-shadow .2s;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.addbtn:hover {
  background: var(--dark);
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

.addbtn:active {
  transform: scale(.92);
}

/* ── Sale tag ────────────────────────────────────────────────── */
.sale-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

/* ── Grid ─────────────────────────────────────────────────────── */
.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

/* ── Card fade-in on filter ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}






/* ---------- WHY US ---------- */
.why-sec { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-vis { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; }
.why-vis img { width: 100%; height: 100%; object-fit: cover; }
.why-overlay {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  gap: 16px;
}
.wo-item { text-align: center; flex: 1; }
.wo-num { font-family: var(--fd); font-size: 26px; font-weight: 900; color: var(--green); }
.wo-lbl { font-size: 11px; color: var(--muted); }
.why-feats { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.why-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .2s;
}
.why-feat:hover { transform: translateX(5px); }
.wf-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.wf-ti { font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 3px; }
.wf-de { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ---------- SUBSCRIPTIONS ---------- */
.sub-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.sub-card {
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  border: 1.5px solid rgba(0,0,0,.08);
  position: relative;
  transition: all .3s;
  background: var(--cream);
}
.sub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.sub-card.feat { background: var(--green); border-color: var(--green); }
.sub-card.feat .spl, .sub-card.feat .spr { color: white; }
.sub-card.feat .sppe, .sub-card.feat .spd { color: rgba(255,255,255,.72); }
.sub-card.feat .sfi { color: rgba(255,255,255,.88); }
.sub-card.feat .ck { color: #b8f5a0; }
.poptag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.spl { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.spr { font-family: var(--fd); font-size: 44px; font-weight: 900; color: var(--dark); line-height: 1; }
.sppe { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.spd { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,.07); padding-bottom: 20px; }
.sub-card.feat .spd { border-color: rgba(255,255,255,.18); }
.sflist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.sfi { font-size: 13px; color: var(--text); display: flex; align-items: center; gap: 9px; }
.ck { color: var(--green); font-weight: 700; }
.subbtn {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: all .2s;
  font-family: var(--fb);
  background: none;
  color: var(--green);
}
.subbtn:hover { background: var(--green); color: white; }
.sub-card.feat .subbtn { background: white; color: var(--green); border-color: white; }
.sub-card.feat .subbtn:hover { background: var(--dark); color: white; border-color: var(--dark); }

/* ---------- HOW IT WORKS ---------- */
.how-sec { background: white; }
.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
  margin-top: 52px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 34px; left: 13%; right: 13%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-pale), var(--green), var(--green-pale));
}
.step { text-align: center; position: relative; }
.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
  position: relative;
  z-index: 1;
}
.step-ti { font-weight: 700; font-size: 14px; color: var(--dark); margin-bottom: 7px; }
.step-de { font-size: 12px; color: var(--muted); line-height: 1.65; }

/* ---------- REVIEWS ---------- */
.rev-sec { background: var(--dark); }
.rev-sec .stit { color: white; }
.rev-sec .stag { color: var(--green-fresh); }
.rev-sec .ssub { color: rgba(255,255,255,.48); }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.rev-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.rev-stars { color: #ffd600; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.rev-text { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.72); margin-bottom: 20px; font-style: italic; }
.rev-user { display: flex; align-items: center; gap: 11px; }
.rev-ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.rev-nm { font-weight: 600; font-size: 13px; color: white; }
.rev-loc { font-size: 11px; color: rgba(255,255,255,.38); }

/* ---------- PROMO BANNER ---------- */
.promo-wrap { padding: 50px 5vw; background: white; }
.promo-box {
  background: linear-gradient(135deg, #2d5a1b, #3a7d44 50%, #6ab04c);
  max-width: 1200px;
  margin: auto;
  border-radius: 28px;
  padding: 70px 55px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  position: relative;
  overflow: hidden;
}
.promo-box::before {
  content: '🍃';
  position: absolute;
  top: -15px; right: 200px;
  font-size: 110px;
  opacity: .11;
  transform: rotate(-18deg);
}
.promo-tit {
  font-family: var(--fd);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 12px;
}
.promo-sub { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.65; }
.promo-btn {
  background: white;
  color: var(--green);
  border: none;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.promo-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.18); }

/* ---------- FAQ ---------- */
.faq-sec { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: start; margin-top: 52px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-md);
  background: white;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.faq-q:hover { color: var(--green); }
.faq-arr { font-size: 16px; transition: transform .22s; color: var(--green); flex-shrink: 0; }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.72;
  transition: max-height .3s, padding .2s;
}
.faq-item.open .faq-a { max-height: 180px; padding: 0 20px 16px; }
.faq-item.open .faq-arr { transform: rotate(180deg); }
.contact-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid rgba(0,0,0,.06);
}
.contact-box h4 { font-family: var(--fd); font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.c-row { display: flex; align-items: center; gap: 11px; margin-bottom: 11px; font-size: 13px; color: var(--muted); }
.c-ico {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
footer { background: var(--dark); color: white; padding: 70px 5vw 36px; }
.foot-in { max-width: 1200px; margin: auto; }
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 36px;
}
.foot-brand .logo-text { color: var(--green-fresh); }
.foot-desc { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.75; margin: 14px 0 22px; max-width: 260px; }
.soc-links { display: flex; gap: 9px; }
.soc-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  color: white;
  transition: background .2s;
}
.soc-btn:hover { background: var(--green); }
.foot-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.36);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-col a { font-size: 13px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.foot-col a:hover { color: white; }
.foot-bot { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 10px; }

/* ---------- CART SIDEBAR ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-panel {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: 400px;
  background: white;
  z-index: 401;
  transform: translateX(100%);
  transition: transform .32s;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,.12);
}
.cart-panel.open { transform: translateX(0); }
.cp-head {
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cp-head h3 { font-family: var(--fd); font-size: 20px; font-weight: 700; color: var(--dark); }
.cp-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted); line-height: 1; padding: 4px; }
.cp-close:hover { color: var(--dark); }
.cp-items { flex: 1; overflow-y: auto; padding: 18px 20px; }
.ci {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.ci-img {
  width: 56px; height: 56px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--green-pale);
  flex-shrink: 0;
}
.ci-info { flex: 1; min-width: 0; }
.ci-nm { font-weight: 600; font-size: 13px; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ci-pr { font-size: 12px; color: var(--muted); margin-top: 1px; }
.ci-qty { display: flex; align-items: center; gap: 8px; margin-top: 7px; }
.qb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-pale);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .15s;
}
.qb:hover { background: var(--green); color: white; }
.qn { font-size: 13px; font-weight: 700; min-width: 18px; text-align: center; }
.ci-rm { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 17px; padding: 3px; flex-shrink: 0; transition: color .15s; }
.ci-rm:hover { color: var(--error); }
.empty-cart { text-align: center; padding: 50px 20px; color: var(--muted); }
.empty-cart-ic { font-size: 52px; margin-bottom: 14px; }
.cp-foot { padding: 18px 20px; border-top: 1px solid rgba(0,0,0,.08); }
.cp-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cp-tot-lbl { font-size: 14px; color: var(--muted); }
.cp-tot-amt { font-family: var(--fd); font-size: 26px; font-weight: 900; color: var(--dark); }
.checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.checkout-btn:hover { background: var(--dark); }

/* ---------- PAYMENT PAGE ---------- */
#pay-page { min-height: 100vh; background: var(--cream); padding-top: 78px; }
.pay-wrap {
  max-width: 960px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.pay-left, .pay-right {
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,.06);
}
.pay-right { position: sticky; top: 90px; }
.pay-title { font-family: var(--fd); font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.pay-slbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 24px 0 13px;
  display: block;
}
.pay-slbl:first-of-type { margin-top: 0; }
.del-form { background: var(--cream); border-radius: 12px; padding: 18px; border: 1px solid rgba(0,0,0,.05); }
.ig { margin-bottom: 12px; position: relative; }
.ig label { font-size: 12px; font-weight: 600; color: var(--muted); display: block; margin-bottom: 5px; }
.ig input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 10px;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--dark);
  background: white;
  outline: none;
  transition: border .2s, box-shadow .2s;
}
.ig input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(58,125,68,.1); }
.ig input.error { border-color: var(--error); background: var(--error-bg); }
.ig input:read-only { background: #f5f5f5; cursor: default; }
.ig-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Form validation feedback */
.field-err {
  display: block;
  font-size: 11px;
  color: var(--error);
  margin-top: 4px;
  min-height: 15px;
  font-weight: 500;
}

/* Payment methods */
.pmethods { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.pm {
  border: 2px solid rgba(0,0,0,.09);
  border-radius: 12px;
  padding: 13px 14px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 11px;
  background: none;
  font-family: var(--fb);
  text-align: left;
  width: 100%;
}
.pm:hover, .pm.sel { border-color: var(--green); background: var(--green-pale); }
.pm-ic { font-size: 22px; flex-shrink: 0; }
.pm-nm { font-size: 13px; font-weight: 600; color: var(--dark); display: block; }
.pm-sb { font-size: 11px; color: var(--muted); display: block; }
.pm-rd {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.2);
  margin-left: auto;
  flex-shrink: 0;
  transition: all .2s;
}
.pm.sel .pm-rd { border-color: var(--green); background: var(--green); box-shadow: inset 0 0 0 3px white; }

/* QR / payment panels */
.pay-panel { margin-top: 16px; }
.qr-box-wrap { text-align: center; padding: 20px; background: #f8f8f8; border-radius: 12px; }
.qr-amount { font-family: var(--fd); font-size: 22px; font-weight: 900; color: var(--green); margin-bottom: 4px; }
.qr-img {
  width: 150px; height: 150px;
  margin: 12px auto;
  border: 3px solid;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  overflow: hidden;
}
.qr-label { font-size: 12px; color: var(--muted); margin-top: 10px; }
.upi-apps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.uapp {
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: 10px;
  padding: 11px 7px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  background: none;
  font-family: var(--fb);
}
.uapp:hover, .uapp.sel { border-color: var(--green); background: var(--green-pale); }
.uapp-ic { font-size: 26px; margin-bottom: 5px; display: block; }
.uapp-nm { font-size: 11px; font-weight: 600; color: var(--dark); }
.card-logos { display: flex; gap: 7px; margin-bottom: 12px; }
.cl { padding: 3px 9px; border: 1px solid rgba(0,0,0,.1); border-radius: 5px; font-size: 11px; font-weight: 800; }
.cl.visa { color: #1a1f71; }
.cl.mc { color: #eb001b; }
.cl.rupay { color: #f57c00; }
.banks { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.bank-btn {
  border: 1.5px solid rgba(0,0,0,.09);
  border-radius: 10px;
  padding: 13px 6px;
  text-align: center;
  cursor: pointer;
  background: none;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  transition: border-color .2s;
}
.bank-btn:hover, .bank-btn.sel { border-color: var(--green); background: var(--green-pale); }
.cod-panel-box {
  background: var(--green-pale);
  border: 1.5px solid rgba(58,125,68,.2);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
}

/* Order summary */
.order-sum-title { font-family: var(--fd); font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.o-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 9px; }
.o-line.tot { font-size: 15px; font-weight: 700; color: var(--dark); border-top: 1px solid rgba(0,0,0,.08); padding-top: 10px; margin-top: 4px; }
.o-item { display: flex; align-items: center; gap: 9px; margin-bottom: 11px; }
.o-item-img { width: 44px; height: 44px; border-radius: 9px; object-fit: cover; background: var(--green-pale); flex-shrink: 0; }
.o-item-nm { font-size: 12px; font-weight: 600; color: var(--dark); }
.o-item-qt { font-size: 11px; color: var(--muted); }
.pay-now {
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 18px;
  transition: all .2s;
  position: relative;
}
.pay-now:hover { background: var(--dark); transform: translateY(-1px); }
.pay-now:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.pay-now.loading { color: transparent; }
.pay-now.loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.wa-order-btn {
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background .2s;
}
.wa-order-btn:hover { background: #1ebe5d; }
.back-link {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  transition: color .2s;
}
.back-link:hover { color: var(--green); }

/* ---------- SUCCESS OVERLAY ---------- */
.suc-ov {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.96);
  z-index: 600;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.suc-ov.show { display: flex; }
.suc-ic { font-size: 76px; margin-bottom: 18px; animation: pop .4s ease; }
@keyframes pop {
  0% { transform: scale(0); }
  65% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.suc-tit { font-family: var(--fd); font-size: 34px; font-weight: 900; color: var(--dark); margin-bottom: 12px; }
.suc-sub { font-size: 15px; color: var(--muted); margin-bottom: 28px; max-width: 380px; line-height: 1.65; }
.suc-back {
  background: var(--green);
  color: white;
  border: none;
  padding: 13px 32px;
  border-radius: var(--radius-full);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.suc-back:hover { background: var(--dark); }
.suc-wa {
  background: #25d366;
  color: white;
  border: none;
  padding: 13px 32px;
  border-radius: var(--radius-full);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.suc-wa:hover { background: #1ebe5d; }

/* ---------- TOAST NOTIFICATION ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  z-index: 700;
  transition: transform .3s ease, opacity .3s ease;
  opacity: 0;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }

/* ---------- LOADING SPINNER ---------- */
.spinner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.7);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(58,125,68,.2);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s, transform .6s;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media(max-width:900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  .hero-right { display: none; }
  .hero-btns, .hero-pills { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .why-grid, .faq-grid { grid-template-columns: 1fr; }
  .why-vis, .faq-right-col { display: none; }
  .sub-cards, .rev-grid, .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .stats-in { grid-template-columns: repeat(2,1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .promo-box { grid-template-columns: 1fr; text-align: center; }
  .pkg-in { grid-template-columns: 1fr; }
  .pkg-circle { width: 300px; height: 300px; }
  .pay-wrap { grid-template-columns: 1fr; }
  .pay-right { position: static; }
  .pmethods { grid-template-columns: 1fr; }
  .cart-panel { width: 100%; }
}
@media(max-width:720px) {
  header { padding: 0 4vw; }
  .nav-inner { height: auto; padding: 10px 0; flex-wrap: wrap; justify-content: space-between; }
  nav { order: 3; width: 100%; display: flex; justify-content: center; margin-top: 10px; margin-bottom: 2px; }
  nav ul { gap: 20px; text-align: center; }
  .logo-text { font-size: 18px; }
  .nav-right { gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
  .cart-btn { padding: 7px 12px; font-size: 13px; }
  .hero { padding: 110px 4vw 50px; }
  .hero-sub { font-size: 14px; }
  .hero-pill { font-size: 11px; padding: 4px 10px; }
  .stats { padding: 36px 4vw; }
  .sec { padding: 70px 4vw; }
  .pkg-sec { padding: 70px 4vw; }
  .promo-wrap { padding: 40px 4vw; }
  .promo-box { padding: 40px 30px; }
  .faq-grid { gap: 32px; }
  .pay-wrap { padding: 30px 12px; }
  .pay-left, .pay-right { padding: 20px; }
  .qr-img { width: 130px; height: 130px; }
}
@media(max-width:600px) {
  .foot-top { grid-template-columns: 1fr; }
  .ig-row { grid-template-columns: 1fr; }
  .promo-box { padding: 40px 28px; }
}
@media(max-width:520px) {
  .hero { padding-top: 104px; }
  .logo-text { display: none; }
  .hero h1 { font-size: clamp(30px, 9vw, 44px); letter-spacing: -1px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .stats-in { grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: 1fr; }
  .pimg { height: 170px; }
  .pkg-circle { width: 240px; height: 240px; }
  .pkg-badge { padding: 8px 12px; font-size: 12px; }
  .promo-box::before { font-size: 70px; right: 120px; top: -10px; }
  .foot-bot { flex-direction: column; align-items: flex-start; }
  .toast { width: calc(100% - 32px); white-space: normal; text-align: center; }
  .ci { align-items: flex-start; }
  .ci-nm { white-space: normal; }
  .qr-box-wrap { padding: 16px; }
  .upi-apps-grid { grid-template-columns: repeat(2,1fr); }
  .banks { grid-template-columns: repeat(2,1fr); }
}
