/* ══════════════════════════════════════════════
   HOME PAGE STYLES
   All CSS variables live in style.css — never redefine them here.
   ══════════════════════════════════════════════ */

/* ── Page-Turn Effect — Paper Edge Shadow ── */
.page-turn-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(
    to bottom,
    rgba(20, 10, 2, 0.20) 0%,
    rgba(20, 10, 2, 0.06) 50%,
    transparent 100%
  );
  z-index: 10;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── SECTION 1: Hero Carousel ── */
.hero-carousel {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 60px 0 80px;
  gap: 60px;
}

/* Committed espresso surfaces — flavour carried as a subtle undertone */
.slide-1 { background: #29150A; }
.slide-2 { background: #2E1808; }
.slide-3 { background: #1B241C; }
.slide-4 { background: #2E1F0C; }

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.7;
}

.hero-content h1,
.hero-content .hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(46px, 5.8vw, 74px);
  font-weight: 400;
  color: #F6EFE3;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}

.hero-content h1 em,
.hero-content .hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-content p {
  font-size: 16px;
  color: rgba(246,239,227,0.68);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 430px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero-scoped button treatment for the dark surface */
.hero-slide .btn-primary {
  background: var(--gold);
  color: #24120A;
}
.hero-slide .btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.hero-slide .btn-outline {
  color: #F6EFE3;
  border-color: rgba(246,239,227,0.45);
}
.hero-slide .btn-outline:hover {
  background: #F6EFE3;
  color: #24120A;
  border-color: #F6EFE3;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat strong {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  color: #F6EFE3;
}

.hero-stat span {
  font-size: 12px;
  color: rgba(246,239,227,0.55);
  letter-spacing: 0.3px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(212,145,58,0.35);
}

.hero-visual {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-circle {
  width: 400px;
  height: 400px;
  border-radius: var(--r-full);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212,145,58,0.35),
    0 0 0 14px rgba(212,145,58,0.06),
    0 32px 90px rgba(0,0,0,0.5);
  background: var(--cream-mid);
}

.hero-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-flavor-badge {
  position: absolute;
  bottom: 30px;
  right: 40px;
  background: rgba(20,10,4,0.85);
  color: var(--gold-light);
  border: 1px solid rgba(212,145,58,0.35);
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(246,239,227,0.08);
  border: 1px solid rgba(246,239,227,0.22);
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #F6EFE3;
  transition: all 0.2s;
  cursor: pointer;
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #24120A;
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

/* ── SECTION 2: Trust Strip ── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 36px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-item svg { color: var(--gold); flex-shrink: 0; opacity: 0.85; }

.trust-item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.trust-item span {
  font-size: var(--text-xs);
  color: var(--muted);
  letter-spacing: 0;
}

/* ── SECTION 3: Bestsellers Carousel ── */
.bestsellers { padding-top: 20px; }

.bestsellers-header {
  align-items: flex-end;
}

.bestsellers-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.view-all-btn {
  font-size: 12px;
  padding: 10px 22px;
  white-space: nowrap;
}

/* Carousel wrapper */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel-viewport { flex: 1; overflow: hidden; }

.carousel-track {
  display: grid;
  grid-template-columns: repeat(7, calc(33.333% - 16px));
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brown);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.carousel-arrow:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

/* Bestseller card overrides */
.bs-card {
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.bs-img-wrap {
  background: var(--cream-mid);
  position: relative;
}

.bs-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  display: block;
  padding: 10px;
}

.bs-img-wrap .img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

/* Circular "+" add button */
.bs-add-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  border: none;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
}

.product-card:hover .bs-add-btn {
  opacity: 1;
}

.bs-add-btn:hover {
  background: var(--gold);
  transform: scale(1.1);
}

.bs-info { padding: 16px 18px 18px; }

.bs-product-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brown);
  margin-bottom: 4px;
}

/* Dot indicators */
.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: rgba(246,239,227,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
  padding: 0;
}

.dot.active {
  background: var(--gold-light);
  width: 24px;
}

/* ── SECTION 4: Farm Story ── */
/* ── SECTION 4: Farm Story — Cinematic Video Background ── */
.farm-story-section {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  display: block; /* override any grid */
}

/* ── Native video scaled to cover the section ── */
.farm-story-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #1a1008; /* dark fallback while loading */
}

.farm-story-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, calc(100vh * 16 / 9));
  height: max(100%, calc(100vw * 9 / 16));
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

/* ── Gradient overlay: darker on left for text, subtle vignette ── */
.farm-story-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(20, 10, 2, 0.72) 0%,
      rgba(20, 10, 2, 0.55) 42%,
      rgba(20, 10, 2, 0.15) 72%,
      transparent 100%
    );
  pointer-events: none;
}

/* ── Poster image fallback — always visible, video overlays when loaded ── */
.farm-story-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.6s ease;
  /* Cinematic Ken Burns: slow zoom + drift so the static poster
     carries the "cinematic" feel without a video file */
  transform: scale(1.08);
  transform-origin: 60% 40%;
  will-change: transform;
  animation: farmKenBurns 26s ease-in-out infinite alternate;
}

@keyframes farmKenBurns {
  from { transform: scale(1.08) translate(0, 0); }
  to   { transform: scale(1.18) translate(-2.2%, -1.6%); }
}

@media (prefers-reduced-motion: reduce) {
  .farm-story-poster { animation: none; transform: scale(1.04); }
}

/* When video is playing, fade poster out */
.farm-story-section.video-playing .farm-story-poster {
  opacity: 0;
}

/* ── Content over video ── */
.farm-story-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  max-width: 600px;
  background: none;
}

.farm-story-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  width: fit-content;
  opacity: 0.9;
}

.farm-story-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.farm-story-underline {
  width: 32px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.6;
  margin-bottom: 22px;
}

.farm-story-content p {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.farm-story-btn {
  align-self: flex-start;
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
  box-shadow: 0 8px 28px rgba(184,113,42,0.45);
}

.farm-story-btn:hover {
  background: var(--gold-light) !important;
  box-shadow: 0 12px 36px rgba(184,113,42,0.55);
}

/* ── Mute / Unmute button ── */
.farm-story-sound-btn {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.2s ease;
}

.farm-story-sound-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.08);
}

/* ── SECTION 5: Why Us — 5 horizontal cards ── */
.why-us {
  background: linear-gradient(145deg, #F7EFE3 0%, #EDE0C8 60%, #F2E8D6 100%);
  padding: 88px 60px;
  border-top: 1px solid rgba(184,113,42,0.18);
  border-bottom: 1px solid rgba(184,113,42,0.18);
  position: relative;
  overflow: hidden;
}

.why-us-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(193,125,48,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-us-header {
  text-align: center;
  margin-bottom: 48px;
}

.why-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.why-us-header h2 {
  font-family: var(--ff-head);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--brown);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Left-aligned editorial card style */
.why-card-new {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: left;
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.why-card-new:hover {
  border-color: rgba(184,113,42,0.35);
  box-shadow: 0 8px 32px rgba(61,31,10,0.07);
}

.why-card-new .why-icon-wrap {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.why-card-new h3 {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.why-card-new p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
}

/* ── SECTION 6: Flavours CTA Banner ── */
.flavours-banner {
  width: 100%;
  background: #F5E9CF;
  padding: 88px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.flavours-banner-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fb-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
}

.fb-dot-1 { width: 120px; height: 120px; top: -30px;  left: -30px;  filter: blur(2px); }
.fb-dot-2 { width: 80px;  height: 80px;  bottom: -20px; right: 60px; filter: blur(1px); }
.fb-dot-3 { width: 60px;  height: 60px;  top: 30%;   right: -20px; filter: blur(1px); }
.fb-dot-4 { width: 40px;  height: 40px;  bottom: 20%; left: 8%;   }

.flavours-banner-content {
  position: relative;
  z-index: 1;
}

.flavours-banner-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.flavours-banner h2 {
  font-family: var(--ff-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--brown);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 32px;
}

/* ── SECTION 7: Testimonials (unchanged) ── */
.testimonials { padding-top: 40px; }

.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-head);
  font-size: 64px;
  line-height: 1;
  color: var(--gold-light);
  opacity: 0.35;
  display: block;
  margin-bottom: 4px;
  margin-top: -8px;
  letter-spacing: 0;
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--muted);
}

.stars-lg { color: var(--gold-light); font-size: 20px; letter-spacing: 2px; }
.overall-rating strong { color: var(--text); font-weight: 700; font-size: 16px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.testimonial-card:hover {
  border-color: rgba(184,113,42,0.3);
  box-shadow: 0 8px 32px rgba(61,31,10,0.07);
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-card p {
  font-size: var(--text-base);
  color: var(--text);
  line-height: var(--leading-loose);
  font-style: italic;
  margin-bottom: 24px;
  opacity: 0.9;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--muted);
}

/* ── SECTION 8: Newsletter ── */
.newsletter-section {
  background: #29150A;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,113,42,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,113,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.newsletter-text h2 {
  font-family: var(--ff-head);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--white);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  margin-bottom: 8px;
}

.newsletter-text p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  line-height: var(--leading-base);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--ff-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.newsletter-form input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(212,145,58,0.2);
}

.newsletter-form button {
  padding: 13px 26px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--gold-light); }

/* Newsletter benefits row */
.newsletter-benefits {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.nl-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
}

.nl-benefit-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  color: #E0B877;
  display: flex;
  align-items: center;
}

.nl-benefit strong {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
}

.nl-benefit span {
  font-size: 11px;
  opacity: 0.7;
  display: block;
}

/* ── Recently Viewed ── */
.recently-viewed .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Newsletter Popup ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.popup-visible {
  opacity: 1;
  pointer-events: all;
}

.popup-card {
  background: var(--white);
  border-radius: var(--r-lg);
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow-lg);
}

.popup-overlay.popup-visible .popup-card {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--muted);
  line-height: 1;
  padding: 6px;
  transition: color 0.2s;
  cursor: pointer;
}

.popup-close:hover { color: var(--brown); }

.popup-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.popup-card h2 {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--brown);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.popup-sub {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
  margin-bottom: 24px;
}

.popup-form { display: flex; flex-direction: column; gap: 12px; }

.popup-form input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.popup-form input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,113,42,0.14);
}

.popup-submit {
  width: 100%;
  padding: 14px;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(61,31,10,0.22);
}

.popup-submit:hover {
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(61,31,10,0.28);
}

.popup-fine-print {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

.popup-coupon-reveal {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.popup-coupon-reveal.visible { display: flex; }

.popup-coupon-heading {
  font-family: var(--ff-head);
  font-size: 18px;
  color: var(--brown);
}

.popup-coupon-box {
  background: linear-gradient(135deg, rgba(184,113,42,0.12), rgba(212,145,58,0.18));
  border: 2px dashed var(--gold);
  border-radius: var(--r-md);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: center;
}

.popup-coupon-code {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.popup-copy-btn {
  padding: 8px 16px;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.popup-copy-btn:hover { background: var(--gold); }

.popup-coupon-note {
  font-size: 13px;
  color: var(--muted);
}

/* ── Scroll Reveal (used by main.js) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .hero-h1 { font-size: 50px; }
  .hero-left { padding: 60px 40px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .flavours-banner h2 { font-size: 40px; }
  .farm-story-content { padding: 60px 40px; }
  .farm-story-content h2 { font-size: 36px; }
  .recently-viewed .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  /* Hero stacks — image first, text below */
  .hero-static {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    order: 2;
    flex: none;
    width: 100%;
    padding: 40px 24px 52px;
    text-align: center;
    align-items: center;
  }

  .hero-right {
    order: 1;
    flex: none;
    width: 100%;
    min-height: 280px;
    padding: 40px 24px 20px;
  }

  .hero-h1 { font-size: 36px; }

  .hero-product-img {
    max-width: 240px;
    width: 60%;
  }

  .hero-cta-row { justify-content: center; }

  .hero-trust-badges { align-items: flex-start; width: 100%; }

  /* Trust strip */
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 16px 18px; border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom: none; }

  /* Carousel */
  .carousel-track { grid-template-columns: repeat(7, 100%); }
  .carousel-arrow { display: none; }

  /* Farm story video — shrink on mobile, show poster fallback */
  .farm-story-section { height: 460px; }

  .farm-story-content {
    padding: 40px 28px;
    max-width: 100%;
    justify-content: flex-end;
    padding-bottom: 52px;
  }

  .farm-story-content h2 { font-size: 34px; }

  /* Native video works on mobile — keep visible, poster hidden */
  .farm-story-video-bg { display: block; }
  .farm-story-poster { opacity: 0; }

  /* Adjust overlay for mobile */
  .farm-story-overlay {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(20,10,2,0.55) 40%,
      rgba(20,10,2,0.78) 100%
    );
  }

  .farm-story-sound-btn { display: flex; }

  .farm-story-content {
    padding: 48px 24px;
  }

  .farm-story-content h2 { font-size: 30px; }

  .farm-story-badge {
    left: 16px;
    bottom: 20px;
  }

  /* Why us — 2 cols on mobile */
  .why-us { padding: 48px 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-us-header h2 { font-size: 26px; }

  /* Flavours banner */
  .flavours-banner { padding: 60px 24px; }
  .flavours-banner h2 { font-size: 32px; }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; }

  /* Newsletter */
  .newsletter-section { padding: 48px 0; }
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 24px;
  }
  .newsletter-text h2 { font-size: 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-benefits { justify-content: center; gap: 20px; }

  /* Section */
  .section { padding: 48px 20px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-header h2 { font-size: 26px; }

  .recently-viewed .products-grid { grid-template-columns: repeat(2, 1fr); }

  .bestsellers-header { flex-direction: column; align-items: flex-start; }
}

/* Small mobile ≤ 480px */
@media (max-width: 480px) {
  .hero-h1 { font-size: 28px; }
  .hero-product-img { max-width: 200px; width: 70%; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .flavours-banner h2 { font-size: 26px; }
  .farm-story-content h2 { font-size: 26px; }
  .recently-viewed .products-grid { grid-template-columns: 1fr; }
  .newsletter-benefits { flex-direction: column; align-items: center; }

  .popup-card { padding: 36px 24px; }
  .popup-card h2 { font-size: 22px; }
  .popup-coupon-code { font-size: 22px; }
}

/* ══════════════════════════════════════════════
   STITCH SECTIONS — Luxury Philosophy + Flavours Scroll
   Inserted after farm-story-section
   ══════════════════════════════════════════════ */

/* ── Philosophy Section ── */
.lux-philosophy {
  position: relative;
  background: var(--cream-mid);
  padding: 100px 64px;
  overflow: hidden;
}

.lux-philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.lux-philosophy-eyebrow {
  font-family: var(--ff-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lux-philosophy-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.lux-philosophy-headline {
  font-family: var(--ff-head);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--brown);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.lux-philosophy-headline em {
  font-style: italic;
  color: var(--gold);
}

.lux-philosophy-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
  border-radius: 2px;
}

.lux-philosophy-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.lux-philosophy-body p {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.lux-philosophy-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.lux-stat-item {
  flex: 1;
  padding: 0 4px;
}

.lux-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.lux-stat-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 34px;
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 5px;
}

.lux-stat-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.lux-philosophy-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.lux-philosophy-cta:hover { color: var(--gold); border-color: transparent; }

/* Image side */
.lux-philosophy-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f9f4ec;
  box-shadow: 0 12px 48px rgba(61,31,10,0.1), 0 2px 8px rgba(61,31,10,0.06);
}

.lux-philosophy-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px;
}

.lux-philosophy-image:hover img {
  transform: scale(1.03);
}

.lux-img-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184,113,42,0.2);
  color: var(--brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
}

.lux-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(61,31,10,0.55) 0%, transparent 100%);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 28px 16px 14px;
}

/* Reveal animation */
.lux-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.lux-reveal.lux-active {
  opacity: 1;
  transform: translateY(0);
}

/* ── Flavours Scroll Section ── */
.lux-flavours {
  background: var(--cream);
  padding: 100px 0;
  overflow: hidden;
}

.lux-flavours-header {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.lux-flavours-header-text { }

.lux-flavours-eyebrow {
  font-family: var(--ff-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}

.lux-flavours-title {
  font-family: var(--ff-head);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.2;
}

.lux-flavours-arrows {
  display: flex;
  gap: 12px;
}

.lux-arrow-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  border-radius: 4px;
  color: var(--brown);
}

.lux-arrow-btn:hover {
  border-color: var(--brown);
  background: var(--cream-mid);
}

.lux-arrow-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.lux-flavours-track-wrap {
  overflow: hidden;
  position: relative;
}

.lux-flavours-track {
  display: flex;
  gap: 28px;
  padding: 0 64px 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lux-flavours-track::-webkit-scrollbar { display: none; }

.lux-flavour-card {
  flex-shrink: 0;
  width: 300px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.lux-flavour-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}

.lux-flavour-card:hover .lux-flavour-card-img {
  box-shadow: 0 20px 60px rgba(61, 31, 10, 0.13);
}

.lux-flavour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-flavour-card:hover .lux-flavour-card-img img {
  transform: scale(1.07);
}

.lux-flavour-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 4px 10px;
  background: var(--cream);
  border: 1px solid rgba(184, 113, 42, 0.25);
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-radius: 3px;
}

.lux-flavour-info {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.lux-flavour-name {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
  margin: 0 0 4px;
  line-height: 1.3;
}

.lux-flavour-sub {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.lux-flavour-price {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .lux-philosophy { padding: 72px 32px; }
  .lux-philosophy-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lux-philosophy-image { height: auto; }
  .lux-philosophy-image img { aspect-ratio: 4 / 3; }
  .lux-flavours-header { padding: 0 32px; }
  .lux-flavours-arrows { display: none; }
  .lux-flavours-track { padding: 0 32px 20px; }
  .lux-flavour-card { width: 240px; }
}

@media (max-width: 600px) {
  .lux-philosophy { padding: 56px 20px; }
  .lux-philosophy-stats { gap: 0; }
  .lux-stat-num { font-size: 26px; }
  .lux-philosophy-cta { margin-top: 24px; }
  .lux-flavours { padding: 64px 0; }
  .lux-flavours-header { padding: 0 20px; }
  .lux-flavours-track { padding: 0 20px 16px; gap: 16px; }
  .lux-flavour-card { width: 210px; }
}

/* ══════════════════════════════════════════════
   WHY MAKHANA — Education section
   ══════════════════════════════════════════════ */

.why-makhana {
  background: var(--white);
  padding: 80px 60px;
  border-top: 1px solid var(--border);
}

.why-makhana-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-makhana-header {
  text-align: center;
  margin-bottom: 48px;
}

.why-makhana-header h2 {
  font-family: var(--ff-head);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--brown);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: 10px 0 14px;
}

.why-makhana-header p {
  font-size: var(--text-base);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--leading-loose);
}

.why-makhana-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-makhana-card {
  background: var(--cream-mid);
  border-radius: var(--r-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.why-makhana-card:hover {
  border-color: rgba(184,113,42,0.3);
  box-shadow: var(--shadow-sm);
}

.why-makhana-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
  color: #b8712a;
}

.why-makhana-card h3 {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--brown);
  margin: 0 0 8px;
  line-height: var(--leading-snug);
}

.why-makhana-card p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.why-makhana-cta {
  background: var(--brown);
  border-radius: var(--r-md);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-makhana-cta-quote {
  font-family: var(--ff-head);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.5;
}

.why-makhana-cta-attr {
  font-size: var(--text-sm);
  color: var(--gold-light);
  margin: 0 0 20px;
}

/* ══════════════════════════════════════════════
   QUIZ CTA — Flavour quiz section
   ══════════════════════════════════════════════ */

.quiz-cta {
  background: var(--cream-mid);
  padding: 72px 60px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.quiz-cta h2 {
  font-family: var(--ff-head);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--brown);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: 10px 0 14px;
}

.quiz-cta-body {
  font-size: var(--text-base);
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: var(--leading-loose);
}

.quiz-cta-btn {
  font-size: var(--text-base) !important;
  padding: 15px 36px !important;
  border-radius: var(--r-md) !important;
}

.quiz-cta-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  opacity: 0.7;
}

/* ══════════════════════════════════════════════
   UGC — Instagram section
   ══════════════════════════════════════════════ */

.ugc-section {
  background: var(--white);
  padding: 72px 60px;
  border-top: 1px solid var(--border);
}

.ugc-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ugc-header {
  text-align: center;
  margin-bottom: 36px;
}

.ugc-header h2 {
  font-family: var(--ff-head);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--brown);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: 10px 0 8px;
}

.ugc-header p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: var(--leading-base);
}

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.ugc-tile {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  transition: transform 0.25s var(--transition);
  overflow: hidden;
}

.ugc-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ugc-tile:hover { transform: scale(1.03); }

.ugc-follow { text-align: center; }

.ugc-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}

.ugc-follow-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════════════
   REFERRAL — Refer a Friend section
   ══════════════════════════════════════════════ */

.referral-section {
  background: #2E1808;
  padding: 72px 60px;
  /* reveal-right children start translated 40px right — clip so they
     don't widen the page and zoom mobile out before animating in */
  overflow-x: hidden;
}

.referral-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.referral-text h2 {
  font-family: var(--ff-head);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--white);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  margin: 10px 0 14px;
}

.referral-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.referral-body {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.72);
  line-height: var(--leading-loose);
  margin: 0 0 24px;
}

.referral-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.referral-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: opacity 0.2s;
}

.referral-btn-whatsapp:hover { opacity: 0.85; }

.referral-btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: background 0.2s;
}

.referral-btn-copy:hover { background: rgba(255,255,255,0.2); }

.referral-steps-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.12);
}

.referral-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.referral-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.referral-step-num {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.referral-step-num.done { background: var(--green); }

.referral-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.referral-step-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}

.referral-code { color: var(--gold-light); }

/* ── Responsive: new sections ── */
@media (max-width: 768px) {
  .why-makhana { padding: 56px 20px; }
  .why-makhana-grid { grid-template-columns: 1fr 1fr; }

  .quiz-cta { padding: 56px 20px; }
  .quiz-cta h2 { font-size: 28px; }

  .ugc-section { padding: 56px 20px; }
  .ugc-grid { grid-template-columns: repeat(3, 1fr); }

  .referral-section { padding: 56px 20px; }
  .referral-inner { grid-template-columns: 1fr; gap: 32px; }
  .referral-text h2 { font-size: 28px; }
}

/* ══════════════════════════════════════════════
   TRUST STRIP — 5-column
   ══════════════════════════════════════════════ */
.trust-strip { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: none; }
}
@media (max-width: 768px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(5) { border-bottom: none; grid-column: 1/-1; }
}

/* ══════════════════════════════════════════════
   BESTSELLER CARD — View link
   ══════════════════════════════════════════════ */
.bs-view-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
.bs-view-btn:hover { color: var(--brown); }

/* ══════════════════════════════════════════════
   FIRST CRUNCH BOX
   ══════════════════════════════════════════════ */
.first-crunch-box {
  background: #29150A;
  padding: 88px 60px;
  position: relative;
  overflow: hidden;
}

.first-crunch-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,113,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.fcb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.fcb-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(184,113,42,0.15);
  border: 1px solid rgba(184,113,42,0.3);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}

.fcb-heading {
  font-family: var(--ff-head);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 16px;
}

.fcb-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: var(--leading-loose);
  max-width: 440px;
  margin-bottom: 28px;
}

.fcb-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.fcb-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.82);
}

.fcb-includes li svg { color: var(--gold-light); flex-shrink: 0; }

.fcb-price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.fcb-price { display: flex; align-items: center; gap: 10px; }

.fcb-price-amount {
  font-family: var(--ff-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: var(--tracking-tight);
}

.fcb-price-old {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.fcb-price-save {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--gold);
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
}

.fcb-shipping-note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.fcb-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.fcb-cta-primary {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 8px 28px rgba(184,113,42,0.45);
}

.fcb-cta-primary:hover {
  background: var(--gold-light) !important;
  box-shadow: 0 12px 36px rgba(184,113,42,0.55);
}

.fcb-cta-secondary {
  color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.35) !important;
}

.fcb-cta-secondary:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
}

/* Flavour tiles */
.fcb-flavour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fcb-flavour-tile {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  overflow: hidden;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}

.fcb-flavour-tile:hover {
  border-color: rgba(184,113,42,0.5);
  background: rgba(184,113,42,0.08);
}

.fcb-flavour-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 16px;
}

.fcb-flavour-tile span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 0 12px 14px;
  letter-spacing: 0.02em;
}

.fcb-flavour-tile--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  gap: 10px;
  border: 2px dashed rgba(184,113,42,0.4);
  background: rgba(184,113,42,0.06);
  cursor: pointer;
}

.fcb-plus-icon {
  font-size: 32px;
  color: var(--gold-light);
  line-height: 1;
}

.fcb-flavour-tile--cta span:last-child {
  font-size: 12px;
  color: var(--gold-light);
  padding: 0;
}

/* ══════════════════════════════════════════════
   WHY CHOOSE CREVITA — 4 cards
   ══════════════════════════════════════════════ */
.why-crevita {
  background: var(--white);
  padding: 88px 60px;
  border-top: 1px solid var(--border);
}

.why-crevita-inner { max-width: 1200px; margin: 0 auto; }

.why-crevita-header {
  text-align: center;
  margin-bottom: 52px;
}

.why-crevita-header h2 {
  font-family: var(--ff-head);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--brown);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: 10px 0 12px;
}

.why-crevita-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.why-crevita-header p {
  font-size: var(--text-base);
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: var(--leading-base);
}

.why-crevita-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wc-card {
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 24px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.wc-card:hover {
  border-color: rgba(184,113,42,0.35);
  box-shadow: 0 12px 36px rgba(61,31,10,0.09);
  transform: translateY(-4px);
}

.wc-icon {
  width: 48px;
  height: 48px;
  background: rgba(184,113,42,0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.wc-card h3 {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: var(--leading-snug);
}

.wc-card p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════════
   MADE IN BIHAR — Brand origin
   ══════════════════════════════════════════════ */
.bihar-origin {
  background: var(--cream-mid);
  padding: 88px 60px;
  border-top: 1px solid var(--border);
}

.bihar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bihar-text .eyebrow { margin-bottom: 16px; }

.bihar-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  color: var(--brown);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 20px;
}

.bihar-text h2 em { font-style: italic; color: var(--gold); }

.bihar-divider {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
  border-radius: 2px;
}

.bihar-text p {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: var(--leading-loose);
  margin-bottom: 16px;
  max-width: 460px;
}

.bihar-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.bihar-stat-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 30px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.bihar-stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.bihar-icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.bihar-icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.bihar-icon-card:hover {
  border-color: rgba(184,113,42,0.3);
  box-shadow: var(--shadow-sm);
}

.bihar-icon-emoji {
  display: block;
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1;
  color: #b8712a;
}

.bihar-icon-card span:last-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.04em;
}

.bihar-tagline {
  font-family: var(--ff-head);
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  padding: 20px;
  border: 1px dashed rgba(184,113,42,0.3);
  border-radius: var(--r-md);
  background: rgba(184,113,42,0.04);
}

/* ══════════════════════════════════════════════
   STICKY MOBILE CTA — mobile only
   ══════════════════════════════════════════════ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 190;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(61,31,10,0.10);
}

.mobile-cta-shop {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: var(--brown);
  color: var(--white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-cta-shop:hover { background: var(--gold); }

.mobile-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: #25D366;
  color: var(--white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.mobile-cta-wa:hover { opacity: 0.88; }

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  /* Push footer up so sticky bar doesn't cover it */
  .footer { padding-bottom: 72px; }
}

/* ── Responsive: new conversion sections ── */
@media (max-width: 1024px) {
  .first-crunch-box { padding: 72px 40px; }
  .fcb-inner { gap: 40px; }
  .why-crevita { padding: 72px 40px; }
  .why-crevita-grid { grid-template-columns: repeat(2, 1fr); }
  .bihar-origin { padding: 72px 40px; }
  .bihar-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .first-crunch-box { padding: 56px 24px; }
  .fcb-inner { grid-template-columns: 1fr; gap: 40px; }
  .fcb-heading { font-size: 28px; }
  .fcb-flavour-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .fcb-flavour-tile img { padding: 10px; }
  .fcb-ctas { flex-direction: column; }
  .fcb-cta-primary, .fcb-cta-secondary { text-align: center; justify-content: center; }

  .why-crevita { padding: 56px 20px; }
  .why-crevita-header h2 { font-size: 26px; }
  .why-crevita-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .wc-card { padding: 22px 18px; }

  .bihar-origin { padding: 56px 20px; }
  .bihar-inner { grid-template-columns: 1fr; gap: 36px; }
  .bihar-text h2 { font-size: 26px; }
  .bihar-stats { gap: 20px; }

}

@media (max-width: 480px) {
  .why-crevita-grid { grid-template-columns: 1fr; }
  .fcb-flavour-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .why-makhana-grid { grid-template-columns: 1fr; }
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }
  .quiz-cta h2 { font-size: 24px; }
}

/* ══════════════════════════════════════════════
   WHY TRUST CREVITA — Premium Trust Section
   ══════════════════════════════════════════════ */
.trust-section {
  background: #FDFAF6;
  padding: 96px 60px;
  border-top: 1px solid var(--border);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
.trust-header {
  text-align: center;
  margin-bottom: 52px;
}

.trust-header .eyebrow {
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.trust-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.trust-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.trust-header p {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Stats Bar ── */
.trust-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 40px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(61,31,10,0.05);
}

.trust-stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.trust-stat-val {
  display: block;
  font-family: var(--ff-head);
  font-size: 30px;
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.trust-stat-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Main Grid: Hero + Stack ── */
.trust-main-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  margin-bottom: 20px;
}

/* Hero Card — GI Tag */
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(61,31,10,0.10);
  border-color: rgba(184,113,42,0.35);
}

.trust-card-hero {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 40px;
  background: linear-gradient(135deg, #FFFBF4 0%, #FFF5E0 100%);
  border-color: rgba(184,113,42,0.25);
}

.trust-hero-icon {
  width: 72px;
  height: 72px;
  background: rgba(184,113,42,0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(184,113,42,0.2);
}

.trust-hero-body { flex: 1; }

.trust-cert-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  background: rgba(61,31,10,0.07);
  color: var(--brown);
}

.trust-cert-tag-gold {
  background: rgba(184,113,42,0.12);
  color: var(--gold);
}

.trust-hero-body h3 {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 400;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.trust-hero-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 440px;
}

.trust-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #2D7A3A;
  background: #EBF5EC;
  border: 1px solid #C8E6C9;
  padding: 7px 14px;
  border-radius: 8px;
}

/* Stack column */
.trust-stack-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-card-sm {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  flex: 1;
}

.trust-sm-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,113,42,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-sm-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-sm-body .trust-cert-tag {
  margin-bottom: 4px;
}

.trust-sm-body strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  display: block;
}

.trust-sm-body span {
  font-size: 12px;
  color: var(--muted);
}

/* Bottom row: 3 flat cards */
.trust-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.trust-card-flat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
}

.trust-flat-icon {
  width: 40px;
  height: 40px;
  background: rgba(184,113,42,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card-flat strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2px;
}

.trust-card-flat span {
  font-size: 12px;
  color: var(--muted);
}

/* Quality Pills */
.trust-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-top: 8px;
}

.trust-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--brown);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.01em;
  transition: background 0.2s, border-color 0.2s;
}

.trust-pill:hover {
  background: rgba(184,113,42,0.06);
  border-color: rgba(184,113,42,0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .trust-section { padding: 72px 32px; }
  .trust-main-grid { grid-template-columns: 1fr; }
  .trust-stack-col { flex-direction: row; }
  .trust-card-sm { flex: 1; }
  .trust-stats-bar { padding: 22px 24px; gap: 0; }
  .trust-stat-item { padding: 0 16px; }
  .trust-stat-val { font-size: 24px; }
}

@media (max-width: 600px) {
  .trust-section { padding: 60px 20px; }
  .trust-stats-bar {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 20px;
  }
  .trust-stat-div { display: none; }
  .trust-stat-item { flex: 0 0 calc(50% - 10px); padding: 0; }
  .trust-stack-col { flex-direction: column; }
  .trust-bottom-grid { grid-template-columns: 1fr; }
  .trust-card-hero { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .trust-hero-body h3 { font-size: 22px; }
  .trust-header h2 { font-size: 28px; }
}

/* ══════════════════════════════════════════════
   MARKETPLACE LAUNCH SECTION
   ══════════════════════════════════════════════ */
.marketplace-section {
  background: #FDFAF6;
  padding: 96px 60px;
  border-top: 1px solid var(--border);
}

.marketplace-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Compact marketplace announcement ── */
.marketplace-section.marketplace-compact { padding: 56px 32px; }
.marketplace-compact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.marketplace-compact-inner .marketplace-heading { margin-bottom: 12px; }
.marketplace-compact-inner .marketplace-sub {
  max-width: 560px;
  margin: 0 auto 22px;
}
.marketplace-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.mp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
}
.mp-chip em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,113,42,0.10);
  padding: 2px 8px;
  border-radius: 999px;
}

/* ── Top: Text + Image ── */
.marketplace-top {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}

.marketplace-heading {
  font-family: var(--ff-head);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.marketplace-heading em {
  font-style: italic;
  color: var(--gold);
}

.marketplace-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 500;
}

.marketplace-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 22px;
}

.marketplace-trust-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #2D7A3A;
  background: #EBF5EC;
  border: 1px solid #C8E6C9;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 28px;
}

.marketplace-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.marketplace-btn-primary {
  font-size: 13px;
  padding: 13px 26px;
  letter-spacing: 0.05em;
}

.marketplace-btn-disabled {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: var(--cream);
  border: 1.5px solid var(--border);
  padding: 11px 20px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: not-allowed;
  opacity: 0.7;
}

/* ── Product Image ── */
.marketplace-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(61,31,10,0.12);
  border: 1px solid rgba(184,113,42,0.15);
}

.marketplace-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
  background: #F9F4EC;
  padding: 8px;
}

.marketplace-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184,113,42,0.2);
  color: #2D7A3A;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── Marketplace Cards ── */
.marketplace-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.marketplace-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.marketplace-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(61,31,10,0.09);
  border-color: rgba(184,113,42,0.35);
}

.marketplace-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Logo styles */
.marketplace-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mp-logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.marketplace-logo-amazon .mp-logo-text {
  color: #1A1A1A;
  font-family: 'Amazon Ember', Georgia, serif;
}

.mp-arrow {
  width: 48px;
  height: 10px;
  margin-top: 1px;
}

.marketplace-logo-flipkart {
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.mp-fk-star {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  flex-shrink: 0;
}

.marketplace-logo-jiomart {
  flex-direction: row;
  align-items: baseline;
  gap: 0;
}

.mp-logo-jio {
  font-size: 22px;
  font-weight: 900;
  color: #0E4FA3;
  letter-spacing: -0.02em;
  line-height: 1;
}

.mp-logo-mart {
  font-size: 22px;
  font-weight: 900;
  color: #E81C2E;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Coming Soon badge */
.marketplace-coming-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,113,42,0.1);
  border: 1px solid rgba(184,113,42,0.25);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.marketplace-card-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

/* Disabled launch button */
.marketplace-launch-btn {
  width: 100%;
  padding: 12px;
  background: var(--cream);
  color: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: not-allowed;
  opacity: 0.65;
  margin-top: auto;
}

/* Footer note */
.marketplace-footnote {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .marketplace-section { padding: 72px 32px; }
  .marketplace-top { grid-template-columns: 1fr; gap: 36px; }
  .marketplace-image-col { order: -1; }
  .marketplace-img-wrap img { aspect-ratio: 16 / 9; }
}

@media (max-width: 600px) {
  .marketplace-section { padding: 60px 20px; }
  .marketplace-cards { grid-template-columns: 1fr; }
  .marketplace-cta-row { flex-direction: column; align-items: flex-start; }
  .marketplace-btn-primary { width: 100%; text-align: center; justify-content: center; }
}

/* ── Launch Countdown ── */
.launch-countdown {
  background: #24120A; /* unified with hero espresso band */
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.launch-countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,113,42,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.lc-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.lc-eyebrow {
  font-family: var(--ff-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 12px;
}
.lc-heading {
  font-family: var(--ff-head);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 36px;
}
.lc-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.lc-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,113,42,0.35);
  border-radius: var(--r-md);
  padding: 18px 28px;
  min-width: 88px;
}
.lc-num {
  font-family: var(--ff-head);
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  min-width: 2ch;
  font-variant-numeric: tabular-nums;
}
.lc-label {
  font-family: var(--ff-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,245,0.45);
  margin-top: 7px;
}
.lc-sep {
  font-family: var(--ff-head);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 22px;
  opacity: 0.7;
}
.lc-sub {
  font-family: var(--ff-body);
  font-size: var(--text-sm);
  color: rgba(250,250,245,0.5);
  margin: 28px 0 0;
}
@media (max-width: 480px) {
  /* 4-column grid so all units fit one row — flex wrap orphaned the seconds tile */
  .lc-timer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .lc-unit { padding: 12px 6px; min-width: 0; }
  .lc-num { font-size: 28px; }
  .lc-sep { display: none; }
}
