/* ============================================
   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; }
body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
.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); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #f0faf0 0%, #fdfaf4 55%, #fff8ee 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 90px 5vw 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,195,74,.13), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,124,0,.07), transparent 70%);
  pointer-events: none;
}
.hero-left { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(58,125,68,.2);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 8px;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeUp .7s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .6; }
}
.hero h1 {
  font-family: var(--fd);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  animation: fadeUp .7s .1s ease both;
}
.hero h1 em { color: var(--green); font-style: italic; }
.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 28px;
  animation: fadeUp .7s .2s ease both;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  animation: fadeUp .7s .3s ease both;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-full);
  padding: 5px 13px;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  animation: fadeUp .7s .4s ease both;
}
.btn-primary {
  background: var(--green);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--dark); transform: translateY(-2px); }
.btn-ghost {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  transition: color .2s;
}
.btn-ghost:hover { color: var(--green); }
.play-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp .8s .15s ease both;
}
.hero-img-wrap {
  width: min(460px, 100%);
  aspect-ratio: 1;
  border-radius: 42% 58% 55% 45%/48% 42% 58% 52%;
  overflow: hidden;
  box-shadow: var(--shadow-green);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.fc-tl { top: 6%; left: -8%; animation: float 4s ease-in-out infinite; }
.fc-tr { top: 32%; right: -10%; animation: float 4s 1s ease-in-out infinite; }
.fc-br { bottom: 10%; right: -6%; animation: float 4s 2s ease-in-out infinite; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.fc-ic { font-size: 22px; }
.fc-lbl { font-size: 11px; color: var(--muted); font-weight: 400; }

/* ---------- 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; }

/* ---------- MENU ---------- */
.menu-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}
.ftabs { display: flex; gap: 7px; flex-wrap: wrap; }
.ftab {
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid rgba(0,0,0,.1);
  background: none;
  cursor: pointer;
  color: var(--muted);
  transition: all .2s;
  font-family: var(--fb);
}
.ftab.active, .ftab:hover { background: var(--green); color: white; border-color: var(--green); }
.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 22px;
}
.pcard {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(0,0,0,.05);
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pimg {
  width: 100%; height: 195px;
  object-fit: cover;
  display: block;
  background: var(--green-pale);
}
.pbody { padding: 16px 18px 18px; }
.pcat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 5px;
}
.pname {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.pdesc { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 13px; }
.pfoot { display: flex; align-items: center; justify-content: space-between; }
.pprice { font-size: 19px; font-weight: 700; color: var(--dark); }
.pprice .old {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 5px;
  font-weight: 400;
}
.addbtn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.addbtn:hover { background: var(--dark); transform: scale(1.1); }
.addbtn:active { transform: scale(.95); }
.sale-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

/* ---------- 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:600px) {
  nav ul { display: none; }
  .foot-top { grid-template-columns: 1fr; }
  .ig-row { grid-template-columns: 1fr; }
  .promo-box { padding: 40px 28px; }
}
