/* ============ Orlina — Sea Buckthorn Juice ============ */

:root {
  /* warm wellness palette — pulled from the packaging */
  --cream-50:  #FCF8EE;
  --cream-100: #F6EEDA;
  --cream-200: #ECDFBE;
  --cream-300: #DDCB9C;
  --orange-300:#F4A86A;
  --orange-400:#EE8A3E;
  --orange-500:#E36A1F;   /* primary */
  --orange-600:#C9551A;
  --orange-700:#A33F12;
  --rust-800:  #7B2F0C;
  --brown-900: #2C1810;
  --brown-800: #3A2418;
  --brown-700: #523221;
  --leaf-600:  #6A7A48;
  --leaf-800:  #3F4928;
  --ink-500:   #786452;
  --ink-400:   #9C8770;
  --shadow-warm: 0 30px 80px -20px rgba(120,60,20,0.25);
  --shadow-soft: 0 8px 24px -8px rgba(80,40,10,0.12);

  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Manrope', 'DM Sans', system-ui, sans-serif;
  --font-script: 'Cormorant Garamond', serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream-50);
  color: var(--brown-900);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--orange-500); color: var(--cream-50); }

/* ===== typography utilities ===== */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 0.95;
}
.display em {
  font-style: italic;
  color: var(--orange-600);
  font-weight: 400;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange-700);
}
.script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
}

/* ===== layout ===== */
.shell { max-width: 1440px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 720px) { .shell { padding: 0 24px; } }

/* ===== top announcement bar ===== */
.announce {
  background: var(--brown-900);
  color: var(--cream-100);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
  font-weight: 500;
}
.announce .dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--orange-400); margin: 0 14px; vertical-align: middle; }

/* ===== nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252,248,238,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(120, 60, 20, 0.08);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  gap: 16px;
}
.nav-cta { justify-self: end; }
.nav-links { display: flex; gap: 36px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--brown-700); }
.nav-links a { transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--orange-600); }
.brand-mark { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 26px; letter-spacing: 0.22em; color: var(--brown-900); font-weight: 500; }
.brand-mark .leaf { width: 22px; height: 22px; color: var(--leaf-600); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brown-800);
  transition: background 0.2s;
  position: relative;
}
.icon-btn:hover { background: var(--cream-100); }
.cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  background: var(--orange-500);
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--cream-50);
}

/* ===== buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(.2,.7,.3,1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--cream-50);
  box-shadow: 0 12px 28px -10px rgba(227,106,31,0.55);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); box-shadow: 0 18px 36px -10px rgba(227,106,31,0.65); }
.btn-dark { background: var(--brown-900); color: var(--cream-50); }
.btn-dark:hover { background: var(--brown-800); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--brown-900); border: 1px solid rgba(44,24,16,0.25); }
.btn-ghost:hover { background: var(--cream-100); border-color: var(--brown-900); }
.btn-sm { padding: 10px 18px; font-size: 11px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
  padding: 60px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 75% 35%, rgba(244, 168, 106, 0.35), transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(237, 195, 130, 0.4), transparent 60%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-copy h1 {
  font-size: clamp(56px, 7.2vw, 104px);
  margin: 22px 0 0;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(120,60,20,0.1);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust-800);
  backdrop-filter: blur(6px);
}
.hero-tag .pill-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--orange-500); display: inline-flex; align-items: center; justify-content: center; color: white; font-size: 10px; }
.hero-sub {
  margin-top: 26px;
  max-width: 460px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--brown-700);
}
.hero-actions { margin-top: 38px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 36px;
  align-items: start;
}
.hero-meta-item { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown-700); font-weight: 600; }
.hero-meta-item b { display: block; font-family: var(--font-display); font-size: 32px; color: var(--orange-600); font-weight: 500; letter-spacing: 0; text-transform: none; margin-bottom: 2px; line-height: 1; }

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-halo {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,140,0.7) 0%, rgba(244,168,106,0.4) 35%, transparent 70%);
  filter: blur(12px);
}
.hero-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(120,60,20,0.15);
}
.hero-ring.inner { inset: 22%; border-color: rgba(120,60,20,0.1); }
.hero-bottle-img {
  position: relative;
  height: 92%;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(120,40,10,0.3));
  object-fit: contain;
  width: auto;
}
.hero-floating {
  position: absolute;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(120,60,20,0.08);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  z-index: 3;
}
.hero-floating.top-left { top: 14%; left: -4%; }
.hero-floating.bottom-right { bottom: 14%; right: -4%; }
.hero-floating .ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange-500); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display); font-size: 18px;
}
.hero-floating b { display: block; font-size: 13px; font-weight: 700; color: var(--brown-900); margin-bottom: 2px; }
.hero-floating span { color: var(--brown-700); }

/* berry decorations */
.berry-cluster { position: absolute; pointer-events: none; }
.berry-cluster svg { width: 100%; height: 100%; }

/* ===== marquee ===== */
.marquee {
  background: var(--brown-900);
  color: var(--cream-100);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item { font-family: var(--font-display); font-style: italic; font-size: 28px; display: flex; align-items: center; gap: 64px; font-weight: 400; }
.marquee-item .star { color: var(--orange-400); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== section base ===== */
.section { padding: 110px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-head h2 { font-size: clamp(40px, 5.2vw, 72px); margin: 16px 0 18px; }
.section-head p { color: var(--brown-700); font-size: 16px; line-height: 1.6; max-width: 540px; margin: 0 auto; }

/* ===== benefits ===== */
.benefits { background: var(--cream-50); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(120,60,20,0.12);
  border-left: 1px solid rgba(120,60,20,0.12);
}
.benefit-card {
  border-right: 1px solid rgba(120,60,20,0.12);
  border-bottom: 1px solid rgba(120,60,20,0.12);
  padding: 44px 36px;
  background: var(--cream-50);
  position: relative;
  transition: background 0.3s;
}
.benefit-card:hover { background: var(--cream-100); }
.benefit-card .b-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-600);
  margin-bottom: 24px;
  border: 1px solid rgba(227,106,31,0.2);
}
.benefit-card h3 { font-family: var(--font-display); font-size: 28px; font-weight: 500; margin: 0 0 6px; letter-spacing: 0.02em; }
.benefit-card .small-tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-700); font-weight: 700; margin-bottom: 18px; }
.benefit-card p { color: var(--brown-700); line-height: 1.6; font-size: 14.5px; margin: 0; }

/* ===== PDP ===== */
.pdp {
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.pdp::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,168,106,0.4), transparent 70%);
  top: -200px; left: -200px;
  filter: blur(40px);
}
.pdp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.pdp-gallery { position: relative; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--cream-50), var(--cream-200)); border-radius: 32px; overflow: hidden; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-warm); }
.pdp-gallery img { height: 95%; width: auto; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(80,40,10,0.25)); }
.pdp-gallery .gallery-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 60%, rgba(255,210,140,0.6), transparent 60%);
}
.gallery-thumbs {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-thumbs .thumb {
  width: 60px; height: 72px;
  border-radius: 10px;
  background: var(--cream-50);
  border: 1.5px solid transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: all 0.2s;
}
.gallery-thumbs .thumb.active { border-color: var(--orange-500); }
.gallery-thumbs .thumb:hover { transform: translateX(2px); }
.gallery-thumbs .thumb img { height: 90%; width: auto; object-fit: contain; }
.gallery-thumbs .thumb.swatch { background: var(--orange-500); }
.gallery-thumbs .thumb.swatch.cream { background: var(--cream-200); }
.gallery-thumbs .thumb.swatch.dark { background: var(--brown-900); color: var(--cream-100); font-family: var(--font-display); font-size: 22px; }

.pdp-info .price-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px; }
.pdp-info .price-now { font-family: var(--font-display); font-size: 56px; font-weight: 500; color: var(--brown-900); line-height: 1; }
.pdp-info .price-was { color: var(--ink-500); text-decoration: line-through; font-size: 18px; }
.pdp-info .save-badge { background: var(--orange-500); color: white; font-size: 10px; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.18em; font-weight: 700; }
.pdp-info h2 { font-family: var(--font-display); font-size: 56px; font-weight: 500; line-height: 1; margin: 14px 0 6px; }
.pdp-info .sub { color: var(--brown-700); font-size: 14.5px; line-height: 1.6; margin-top: 18px; max-width: 460px; }
.rating-row { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--brown-700); margin-top: 16px; }
.rating-row .stars { color: var(--orange-500); letter-spacing: 1px; }

.size-pack {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pack-card {
  border: 1.5px solid rgba(120,60,20,0.18);
  background: var(--cream-50);
  padding: 18px 18px 16px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  text-align: left;
}
.pack-card.selected { border-color: var(--orange-500); background: white; box-shadow: 0 8px 20px -8px rgba(227,106,31,0.3); }
.pack-card .pack-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-700); font-weight: 700; margin-bottom: 4px; }
.pack-card .pack-name { font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.pack-card .pack-price { display: flex; align-items: baseline; gap: 8px; margin-top: 6px; }
.pack-card .pack-price b { font-size: 16px; font-weight: 700; }
.pack-card .pack-price s { color: var(--ink-500); font-size: 13px; }
.pack-card .pack-savings { font-size: 11px; color: var(--orange-600); font-weight: 600; margin-top: 4px; }
.pack-card .best { position: absolute; top: -10px; right: 14px; background: var(--brown-900); color: var(--cream-100); font-size: 10px; padding: 4px 8px; border-radius: 4px; letter-spacing: 0.18em; font-weight: 700; }

.qty-row { display: flex; gap: 14px; align-items: stretch; margin-top: 24px; }
.qty-stepper { display: flex; align-items: center; border: 1.5px solid rgba(120,60,20,0.2); border-radius: 999px; }
.qty-stepper button { width: 42px; height: 52px; font-size: 20px; color: var(--brown-700); }
.qty-stepper .num { width: 36px; text-align: center; font-weight: 700; }
.add-cart { flex: 1; padding: 16px 30px; }
.pdp-trust {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(120,60,20,0.12);
}
.pdp-trust .t { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; font-size: 11.5px; color: var(--brown-700); line-height: 1.4; }
.pdp-trust .t svg { color: var(--orange-600); }

/* ===== how to consume ===== */
.howto { background: var(--cream-50); }
.howto-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.howto-img-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #d8a972, #a86a3a);
  box-shadow: var(--shadow-warm);
}
.howto-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.howto-img-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brown-900);
}
.howto-img-tag b { display: block; font-family: var(--font-display); font-size: 26px; letter-spacing: 0; text-transform: none; color: var(--orange-600); margin-top: 4px; font-weight: 500; }

.steps { display: flex; flex-direction: column; gap: 28px; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(120,60,20,0.2);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step .step-no {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--orange-600);
  border: 1px solid rgba(227,106,31,0.2);
  position: relative;
}
.step .step-no::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(227,106,31,0.15);
}
.step h3 { font-family: var(--font-display); font-size: 30px; font-weight: 500; margin: 6px 0 6px; line-height: 1.1; }
.step p { color: var(--brown-700); font-size: 15px; line-height: 1.65; margin: 0; }
.step .small-tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-700); font-weight: 700; }

/* ===== origin / story ===== */
.origin {
  background: var(--brown-900);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.origin::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(227,106,31,0.18), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(150,80,30,0.2), transparent 60%);
  pointer-events: none;
}
.origin .section-head { color: var(--cream-100); }
.origin .section-head h2 { color: var(--cream-50); }
.origin .section-head p { color: rgba(252,248,238,0.7); }
.origin .eyebrow { color: var(--orange-400); }
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.origin-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 30px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
}
.origin-card .alt {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--orange-400);
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-bottom: 22px;
}
.origin-card h3 { font-family: var(--font-display); font-size: 28px; font-weight: 500; margin: 0 0 12px; color: var(--cream-50); }
.origin-card p { color: rgba(252,248,238,0.75); line-height: 1.65; font-size: 14.5px; margin: 0; }
.origin-quote {
  margin-top: 80px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 400;
  color: var(--cream-50);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.origin-quote .credit { display: block; margin-top: 22px; font-family: var(--font-body); font-style: normal; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--orange-400); font-weight: 600; }

/* ===== reviews ===== */
.reviews { background: var(--cream-100); }
.reviews-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 64px; }
.rev-stat {
  background: var(--cream-50);
  padding: 36px 30px;
  border-radius: 20px;
  border: 1px solid rgba(120,60,20,0.08);
}
.rev-stat .big { font-family: var(--font-display); font-size: 64px; line-height: 1; color: var(--orange-600); font-weight: 500; }
.rev-stat .lbl { margin-top: 6px; font-size: 13px; color: var(--brown-700); }
.rev-stat .stars { color: var(--orange-500); margin-bottom: 10px; letter-spacing: 2px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--cream-50);
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(120,60,20,0.08);
  display: flex;
  flex-direction: column;
}
.review .r-stars { color: var(--orange-500); letter-spacing: 2px; margin-bottom: 14px; }
.review h4 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin: 0 0 10px; line-height: 1.25; }
.review p { color: var(--brown-700); font-size: 14.5px; line-height: 1.65; margin: 0 0 24px; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(120,60,20,0.1); }
.review .who .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange-500); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 500; font-size: 18px; }
.review .who b { font-size: 13.5px; display: block; font-weight: 600; }
.review .who span { font-size: 11.5px; color: var(--ink-500); }
.review .verified { margin-left: auto; font-size: 11px; color: var(--leaf-600); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ===== faq ===== */
.faq { background: var(--cream-50); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(120,60,20,0.15); }
.faq-item summary {
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(120,60,20,0.3); display: flex; align-items: center; justify-content: center; font-size: 18px; font-family: var(--font-body); transition: all 0.2s; flex-shrink: 0; }
.faq-item[open] summary .plus { background: var(--orange-500); color: white; border-color: var(--orange-500); transform: rotate(45deg); }
.faq-item p { color: var(--brown-700); line-height: 1.7; font-size: 15px; padding: 0 0 28px; margin: 0; max-width: 680px; }

/* ===== sticky CTA bar ===== */
.sticky-buy {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown-900);
  color: var(--cream-50);
  padding: 12px 12px 12px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 40;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  font-size: 13px;
  opacity: 0;
  transform: translate(-50%, 100px);
  transition: all 0.4s cubic-bezier(.2,.7,.3,1);
  pointer-events: none;
}
.sticky-buy.visible { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.sticky-buy .preview { width: 40px; height: 40px; border-radius: 50%; background: var(--cream-100); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.sticky-buy .preview img { height: 100%; width: auto; }
.sticky-buy b { font-weight: 700; }
.sticky-buy .btn { padding: 12px 22px; font-size: 11px; }

/* ===== footer ===== */
.footer {
  background: var(--cream-200);
  padding: 80px 0 30px;
  position: relative;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(120,60,20,0.15); }
.footer h5 { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--brown-700); margin: 0 0 20px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--brown-800); }
.footer ul a:hover { color: var(--orange-600); }
.footer .big-mark { font-family: var(--font-display); font-size: 64px; color: var(--brown-900); letter-spacing: 0.05em; font-weight: 500; }
.footer .desc { color: var(--brown-700); font-size: 14.5px; line-height: 1.6; max-width: 320px; margin-top: 16px; }
.footer .newsletter { display: flex; gap: 0; margin-top: 18px; border: 1px solid rgba(120,60,20,0.25); border-radius: 999px; overflow: hidden; background: rgba(252,248,238,0.5); }
.footer .newsletter input { flex: 1; padding: 14px 20px; border: none; background: transparent; outline: none; font-family: inherit; font-size: 14px; color: var(--brown-900); }
.footer .newsletter input::placeholder { color: var(--ink-400); }
.footer .newsletter button { padding: 0 22px; background: var(--brown-900); color: var(--cream-100); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--brown-700); }
.payments { display: flex; gap: 12px; align-items: center; }
.payments .pay-chip { background: var(--cream-50); padding: 6px 12px; border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--brown-800); border: 1px solid rgba(120,60,20,0.1); }

/* ===== cart drawer ===== */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(28, 14, 4, 0.45);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 460px; max-width: 100vw;
  background: var(--cream-50);
  z-index: 91;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
  box-shadow: -30px 0 60px rgba(0,0,0,0.2);
}
.drawer.open { transform: translateX(0); }
.drawer-header { padding: 24px 28px 18px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(120,60,20,0.1); }
.drawer-header h3 { font-family: var(--font-display); font-size: 28px; margin: 0; font-weight: 500; }
.drawer-close { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--cream-100); }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 28px; }
.drawer-empty { text-align: center; padding: 80px 20px; color: var(--brown-700); }
.drawer-empty .ic { width: 80px; height: 80px; border-radius: 50%; background: var(--cream-100); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; color: var(--orange-600); }
.drawer-empty h4 { font-family: var(--font-display); font-size: 24px; margin: 0 0 10px; color: var(--brown-900); font-weight: 500; }

.cart-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(120,60,20,0.08); align-items: center; }
.cart-item .ci-img { width: 80px; height: 96px; border-radius: 10px; background: var(--cream-100); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cart-item .ci-img img { height: 90%; width: auto; }
.cart-item h5 { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin: 0 0 4px; line-height: 1.2; }
.cart-item .ci-sub { font-size: 12px; color: var(--ink-500); margin-bottom: 8px; }
.cart-item .ci-price { font-weight: 700; font-size: 14px; }
.cart-item .qty-stepper { transform: scale(0.85); transform-origin: left; }
.cart-item .qty-stepper button { height: 38px; width: 32px; font-size: 16px; }
.cart-item .ci-remove { font-size: 11px; color: var(--ink-500); margin-top: 8px; text-decoration: underline; }
.cart-item .ci-right { text-align: right; }

.drawer-promo { padding: 16px 0; display: flex; gap: 8px; }
.drawer-promo input { flex: 1; padding: 12px 16px; border: 1px solid rgba(120,60,20,0.2); border-radius: 999px; background: white; font-family: inherit; font-size: 13px; outline: none; }
.drawer-promo button { padding: 12px 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; background: var(--cream-200); border-radius: 999px; }

.drawer-summary { padding: 14px 0; border-top: 1px solid rgba(120,60,20,0.1); display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--brown-700); }
.drawer-summary .row { display: flex; justify-content: space-between; }
.drawer-summary .row.total { color: var(--brown-900); font-weight: 700; font-size: 18px; margin-top: 8px; padding-top: 14px; border-top: 1px solid rgba(120,60,20,0.1); }
.drawer-summary .row.total b { font-family: var(--font-display); font-weight: 500; font-size: 28px; }
.drawer-footer { padding: 20px 28px 28px; }
.drawer-footer .checkout-btn { width: 100%; }
.drawer-footer .accepted { display: flex; justify-content: center; gap: 8px; margin-top: 12px; font-size: 11px; color: var(--ink-500); align-items: center; }

/* ===== checkout / confirmation page ===== */
.checkout-screen {
  position: fixed;
  inset: 0;
  background: var(--cream-50);
  z-index: 95;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.checkout-screen.open { opacity: 1; pointer-events: auto; }
.checkout-top { display: flex; justify-content: space-between; align-items: center; padding: 22px 56px; border-bottom: 1px solid rgba(120,60,20,0.1); background: rgba(252,248,238,0.92); position: sticky; top: 0; backdrop-filter: blur(12px); z-index: 5; }
.checkout-top .brand-mark { font-size: 22px; }
.checkout-top .back { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--brown-700); }
.checkout-top .secure-tag { display: flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--leaf-600); font-weight: 700; }

.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; max-width: 1280px; margin: 0 auto; padding: 60px 56px 80px; }
.checkout-form h2 { font-family: var(--font-display); font-size: 42px; margin: 0 0 8px; font-weight: 500; }
.checkout-form .sub { color: var(--brown-700); font-size: 14.5px; margin-bottom: 36px; }

.steps-progress { display: flex; align-items: center; gap: 0; margin-bottom: 40px; }
.steps-progress .sp-step { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--ink-500); }
.steps-progress .sp-step .n { width: 28px; height: 28px; border-radius: 50%; background: var(--cream-200); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--brown-700); }
.steps-progress .sp-step.active { color: var(--brown-900); }
.steps-progress .sp-step.active .n { background: var(--orange-500); color: white; }
.steps-progress .sp-step.done .n { background: var(--leaf-600); color: white; }
.steps-progress .sp-step.done { color: var(--leaf-800); }
.steps-progress .sp-line { flex: 1; height: 1px; background: rgba(120,60,20,0.15); margin: 0 16px; }

.form-block { margin-bottom: 32px; }
.form-block h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; margin: 0 0 18px; display: flex; align-items: center; gap: 12px; }
.form-block h3 .n { width: 28px; height: 28px; border-radius: 50%; background: var(--orange-500); color: white; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; font-family: var(--font-body); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--brown-700); }
.field input, .field select, .field textarea {
  background: white;
  border: 1.5px solid rgba(120,60,20,0.18);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--brown-900);
  outline: none;
  transition: all 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(227,106,31,0.15); }
.field.error input, .field.error select { border-color: #c93838; }
.field .err-msg { font-size: 11px; color: #c93838; font-weight: 600; }

.pay-options { display: flex; flex-direction: column; gap: 10px; }
.pay-option {
  border: 1.5px solid rgba(120,60,20,0.18);
  border-radius: 14px;
  padding: 18px 18px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s;
}
.pay-option:hover { border-color: rgba(120,60,20,0.4); }
.pay-option.selected { border-color: var(--orange-500); background: var(--cream-50); box-shadow: 0 8px 20px -8px rgba(227,106,31,0.25); }
.pay-option .radio { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(120,60,20,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pay-option.selected .radio { border-color: var(--orange-500); }
.pay-option.selected .radio::after { content: ''; width: 12px; height: 12px; border-radius: 50%; background: var(--orange-500); }
.pay-option .info { flex: 1; }
.pay-option b { display: block; font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.pay-option .info span { font-size: 12.5px; color: var(--brown-700); }
.pay-option .pay-logos { display: flex; gap: 6px; }
.pay-option .pay-chip { padding: 4px 10px; background: var(--cream-100); border-radius: 6px; font-size: 10px; font-weight: 700; color: var(--brown-800); }

.upi-detail { padding: 16px 20px; background: var(--cream-50); margin-top: -2px; border-radius: 0 0 14px 14px; border: 1.5px solid var(--orange-500); border-top: none; }
.upi-detail .upi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.upi-app { padding: 12px 8px; border: 1px solid rgba(120,60,20,0.15); background: white; border-radius: 10px; text-align: center; cursor: pointer; transition: all 0.2s; }
.upi-app.selected { border-color: var(--orange-500); background: white; box-shadow: 0 4px 12px -4px rgba(227,106,31,0.3); }
.upi-app .upi-logo { width: 36px; height: 36px; border-radius: 8px; margin: 0 auto 6px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 15px; }
.upi-app span { font-size: 11px; font-weight: 600; color: var(--brown-800); }

.checkout-summary {
  background: var(--cream-100);
  border-radius: 24px;
  padding: 32px;
  position: sticky;
  top: 100px;
  align-self: start;
  border: 1px solid rgba(120,60,20,0.08);
}
.checkout-summary h3 { font-family: var(--font-display); font-size: 26px; margin: 0 0 22px; font-weight: 500; }
.checkout-summary .ci-mini { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(120,60,20,0.1); align-items: center; }
.checkout-summary .ci-mini .ci-img { width: 64px; height: 78px; border-radius: 8px; background: var(--cream-200); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.checkout-summary .ci-mini .ci-img img { height: 90%; width: auto; }
.checkout-summary .ci-mini .ci-img .q-badge { position: absolute; top: -6px; right: -6px; min-width: 22px; height: 22px; background: var(--brown-900); color: white; border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 6px; }
.checkout-summary .ci-mini h5 { font-family: var(--font-display); font-size: 17px; font-weight: 500; margin: 0 0 2px; line-height: 1.2; }
.checkout-summary .ci-mini span { font-size: 11.5px; color: var(--brown-700); }
.checkout-summary .ci-mini b { font-weight: 700; }
.checkout-summary .sumrow { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--brown-700); }
.checkout-summary .sumrow b { color: var(--brown-900); font-weight: 600; }
.checkout-summary .sumrow.discount { color: var(--leaf-600); }
.checkout-summary .total { padding: 16px 0 0; margin-top: 8px; border-top: 1px solid rgba(120,60,20,0.15); display: flex; justify-content: space-between; align-items: baseline; }
.checkout-summary .total span { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown-700); font-weight: 700; }
.checkout-summary .total b { font-family: var(--font-display); font-size: 38px; font-weight: 500; color: var(--brown-900); }
.checkout-summary .perks { display: flex; flex-direction: column; gap: 12px; padding: 18px 0 8px; }
.checkout-summary .perks .p { display: flex; align-items: center; gap: 12px; font-size: 12.5px; color: var(--brown-700); }
.checkout-summary .perks .p svg { color: var(--leaf-600); flex-shrink: 0; }

.place-order { width: 100%; margin-top: 24px; padding: 18px; font-size: 13px; }
.terms { font-size: 11px; color: var(--ink-500); text-align: center; margin-top: 14px; line-height: 1.5; }

/* ===== confirmation ===== */
.confirm-screen { padding: 80px 56px; max-width: 760px; margin: 0 auto; text-align: center; }
.confirm-ic { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--orange-400), var(--orange-600)); display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; color: white; box-shadow: 0 20px 40px -10px rgba(227,106,31,0.5); }
.confirm-screen h1 { font-family: var(--font-display); font-size: 64px; margin: 0 0 12px; font-weight: 500; line-height: 1; }
.confirm-screen h1 em { font-style: italic; color: var(--orange-600); }
.confirm-screen .lead { color: var(--brown-700); font-size: 17px; line-height: 1.6; margin: 0 auto 40px; max-width: 540px; }
.confirm-card { background: white; border-radius: 24px; padding: 36px; text-align: left; border: 1px solid rgba(120,60,20,0.1); box-shadow: var(--shadow-soft); }
.confirm-card .order-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; padding-bottom: 24px; border-bottom: 1px solid rgba(120,60,20,0.1); margin-bottom: 24px; }
.confirm-card .order-meta .m { }
.confirm-card .order-meta .m span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-500); font-weight: 700; }
.confirm-card .order-meta .m b { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-top: 4px; color: var(--brown-900); }
.confirm-card .timeline { display: flex; justify-content: space-between; position: relative; padding-top: 14px; margin-bottom: 14px; }
.confirm-card .timeline::before {
  content: ''; position: absolute; top: 28px; left: 12%; right: 12%; height: 2px; background: var(--cream-200); z-index: 0;
}
.confirm-card .tl-step { position: relative; z-index: 1; text-align: center; flex: 1; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--ink-500); }
.confirm-card .tl-step .dot { width: 28px; height: 28px; border-radius: 50%; background: var(--cream-200); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; color: var(--brown-700); border: 2px solid var(--cream-100); }
.confirm-card .tl-step.active { color: var(--brown-900); }
.confirm-card .tl-step.active .dot { background: var(--orange-500); color: white; }
.confirm-card .tl-step.done .dot { background: var(--leaf-600); color: white; }
.confirm-actions { margin-top: 32px; display: flex; gap: 12px; justify-content: center; }

/* berry vector */
.deco-berry { fill: var(--orange-500); stroke: var(--brown-900); stroke-width: 0.5; }
.deco-leaf { fill: var(--leaf-600); }

/* ===== animations ===== */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-float { animation: float 4s ease-in-out infinite; }
.fade-in { animation: fadeUp 0.7s cubic-bezier(.2,.7,.3,1) both; }

/* media */
@media (max-width: 1100px) {
  .hero-inner, .pdp-inner, .howto-grid { grid-template-columns: 1fr; gap: 50px; }
  .benefits-grid, .origin-grid, .reviews-grid, .reviews-top { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
}

@media (max-width: 820px) {
  .shell { padding: 0 24px; }
  .nav-inner { height: 64px; }
  .nav-links { display: none; }
  .nav-cta { gap: 6px; }
  .brand-mark { font-size: 20px !important; letter-spacing: 0.18em; }
  .brand-mark .leaf { width: 18px; height: 18px; }
  .icon-btn { width: 38px; height: 38px; }

  .announce { font-size: 10px; letter-spacing: 0.1em; padding: 8px 12px; }
  .announce .dot { margin: 0 8px; }

  /* hero */
  .hero { padding: 36px 0 60px; }
  .hero-inner { gap: 32px; }
  .hero-copy h1 { font-size: clamp(44px, 12vw, 64px); }
  .hero-sub { font-size: 15px; margin-top: 18px; max-width: 100%; }
  .hero-actions { margin-top: 24px; gap: 10px; }
  .hero-actions .btn { padding: 14px 22px; font-size: 11px; letter-spacing: 0.14em; flex: 1; min-width: 140px; justify-content: center; }
  .hero-tag { font-size: 10px; padding: 6px 12px 6px 6px; letter-spacing: 0.14em; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 18px 24px; margin-top: 32px; }
  .hero-meta-item b { font-size: 28px; }

  .hero-art { aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-floating { padding: 10px 12px; font-size: 11px; gap: 8px; border-radius: 12px; }
  .hero-floating .ic { width: 28px; height: 28px; font-size: 13px; }
  .hero-floating.top-left { left: 0; top: 8%; }
  .hero-floating.bottom-right { right: 0; bottom: 8%; }
  .berry-cluster { width: 110px !important; height: 110px !important; }

  /* marquee */
  .marquee { padding: 14px 0; }
  .marquee-item { font-size: 18px; gap: 32px; }
  .marquee-track { gap: 32px; }

  /* sections */
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: clamp(34px, 9vw, 48px); }
  .section-head p { font-size: 14.5px; }

  /* benefits */
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card { padding: 28px 20px; }
  .benefit-card h3 { font-size: 22px; }
  .benefit-card .b-icon { width: 48px; height: 48px; margin-bottom: 16px; }

  /* pdp */
  .pdp-inner { gap: 36px; }
  .pdp-gallery { aspect-ratio: 1/1; border-radius: 24px; }
  .pdp-gallery img { height: 85%; }
  .gallery-thumbs { left: 12px; gap: 8px; }
  .gallery-thumbs .thumb { width: 44px; height: 54px; }
  .pdp-info h2 { font-size: 38px; }
  .pdp-info .price-now { font-size: 42px; }
  .size-pack { grid-template-columns: 1fr; gap: 10px; }
  .pack-card { padding: 16px 16px 14px; }
  .pack-card .best { right: 10px; top: -8px; }
  .qty-row { flex-wrap: wrap; }
  .qty-stepper button { height: 48px; width: 38px; }
  .add-cart { width: 100%; flex: 1 0 100%; }
  .pdp-trust { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* how to consume */
  .howto-grid { gap: 36px; }
  .step { grid-template-columns: 56px 1fr; gap: 16px; padding-bottom: 22px; }
  .step .step-no { width: 56px; height: 56px; font-size: 24px; }
  .step h3 { font-size: 24px; }
  .step p { font-size: 14.5px; }
  .howto-img-wrap { border-radius: 24px; }
  .howto-img-tag { bottom: 16px; left: 16px; padding: 10px 14px; }
  .howto-img-tag b { font-size: 20px; }

  /* origin */
  .origin-grid { grid-template-columns: 1fr; gap: 18px; }
  .origin-card { padding: 28px 24px; border-radius: 20px; }
  .origin-card .alt { font-size: 48px; margin-bottom: 14px; }
  .origin-card h3 { font-size: 24px; }
  .origin-quote { margin-top: 50px; font-size: 22px; padding: 0 8px; }

  /* reviews */
  .reviews-top { grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
  .rev-stat { padding: 24px 22px; }
  .rev-stat .big { font-size: 52px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review { padding: 26px 22px; }
  .review h4 { font-size: 20px; }

  /* faq */
  .faq-item summary { font-size: 18px; padding: 22px 0; gap: 16px; }
  .faq-item summary .plus { width: 28px; height: 28px; font-size: 16px; }
  .faq-item p { font-size: 14px; padding-bottom: 22px; }

  /* sticky buy */
  .sticky-buy { padding: 8px 8px 8px 14px; gap: 10px; font-size: 12px; bottom: 16px; max-width: calc(100vw - 24px); }
  .sticky-buy .preview { width: 34px; height: 34px; }
  .sticky-buy b { font-size: 12px; }
  .sticky-buy .btn { padding: 10px 14px; font-size: 10px; letter-spacing: 0.12em; }

  /* footer */
  .footer { padding: 60px 0 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer .big-mark { font-size: 48px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; padding-top: 22px; }
  .payments { flex-wrap: wrap; justify-content: center; }

  /* cart drawer */
  .drawer { width: 100vw; max-width: 100vw; }
  .drawer-header { padding: 18px 22px 14px; }
  .drawer-header h3 { font-size: 22px; }
  .drawer-body { padding: 12px 22px; }
  .drawer-footer { padding: 16px 22px 22px; }
  .cart-item { grid-template-columns: 64px 1fr auto; gap: 12px; }
  .cart-item .ci-img { width: 64px; height: 76px; }
  .cart-item .qty-stepper { transform: scale(0.75); }

  /* checkout */
  .checkout-top { padding: 14px 20px; }
  .checkout-top .brand-mark { font-size: 18px !important; }
  .checkout-top .back { font-size: 12px; }
  .checkout-top .secure-tag { display: none; }
  .checkout-grid { gap: 30px; padding: 30px 20px 50px; }
  .checkout-form h2 { font-size: 32px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-grid .full { grid-column: auto; }
  /* still keep first/last name side by side on mobile */
  .form-grid .field:nth-child(1):not(.full),
  .form-grid .field:nth-child(2):not(.full) { /* keep flexible */ }
  .field input, .field select, .field textarea { font-size: 16px; padding: 13px 14px; }
  .form-block h3 { font-size: 20px; }
  .pay-option { padding: 14px; gap: 10px; }
  .pay-option b { font-size: 14px; }
  .pay-option .info span { font-size: 11.5px; }
  .upi-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .upi-app { padding: 10px 4px; }
  .upi-app .upi-logo { width: 30px; height: 30px; font-size: 13px; }
  .upi-app span { font-size: 10px; }
  .checkout-summary { padding: 22px; border-radius: 18px; }
  .checkout-summary h3 { font-size: 22px; margin-bottom: 16px; }
  .checkout-summary .total b { font-size: 30px; }
  .steps-progress { margin-bottom: 28px; flex-wrap: wrap; gap: 6px; }
  .steps-progress .sp-step { font-size: 10px; letter-spacing: 0.1em; gap: 6px; }
  .steps-progress .sp-step .n { width: 22px; height: 22px; font-size: 10px; }
  .steps-progress .sp-line { margin: 0 4px; }
  .place-order { padding: 16px; font-size: 12px; }

  /* confirmation */
  .confirm-screen { padding: 50px 22px; }
  .confirm-ic { width: 76px; height: 76px; margin-bottom: 22px; }
  .confirm-screen h1 { font-size: 40px; }
  .confirm-screen .lead { font-size: 15px; margin-bottom: 28px; }
  .confirm-card { padding: 22px; border-radius: 18px; }
  .confirm-card .order-meta { grid-template-columns: 1fr; gap: 12px; }
  .confirm-card .order-meta .m { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
  .confirm-card .order-meta .m b { margin-top: 0; font-size: 18px; }
  .confirm-card .timeline { font-size: 9px; gap: 4px; }
  .confirm-card .tl-step .dot { width: 24px; height: 24px; }
  .confirm-actions { flex-direction: column; }
  .confirm-actions .btn { width: 100%; }
}

@media (max-width: 460px) {
  .hero-copy h1 { font-size: 42px; }
  .hero-meta-item b { font-size: 24px; }
  .pdp-info h2 { font-size: 30px; }
  .pdp-info .price-now { font-size: 36px; }
  .section-head h2 { font-size: 32px; }
  .confirm-screen h1 { font-size: 34px; }
  .hero-floating { display: none; }
  .berry-cluster { display: none; }
  /* prevent iOS auto-zoom by ensuring 16px on inputs */
  .field input, .field select, .field textarea { font-size: 16px; }
}
