/* =========================================
   GUDLUU — COMPLETE REDESIGN 2025
   Premium Rustic | Farm-to-Home Jaggery
   ========================================= */

/* =========================================
   0. GOOGLE FONTS IMPORT
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

/* =========================================
   1. CSS VARIABLES
   ========================================= */
:root {
  --gold:       #C8922A;
  --gold-light: #E8B84B;
  --brown:      #5C2E0A;
  --brown-mid:  #8B4B13;
  --cream:      #FAF6EF;
  --cream-dark: #F0E8D8;
  --green:      #2D5016;
  --green-mid:  #4A7C23;
  --text-dark:  #1C1008;
  --text-mid:   #4A3728;
  --text-light: #7A6552;
  --white:      #FFFFFF;
  --danger:     #C0392B;
  --success:    #2D6A2D;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(92,46,10,0.10);
  --shadow-md:  0 8px 30px rgba(92,46,10,0.14);
  --shadow-lg:  0 20px 60px rgba(92,46,10,0.18);
}

/* =========================================
   2. RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* =========================================
   3. SHIPPING TEASE BANNER — fixed bottom bar
   ========================================= */
#shipping-tease-container {
  background: var(--brown);
  color: var(--white);
  padding: 12px 20px 12px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(92,46,10,0.25);
  display: none;
  border-top: 2px solid var(--gold);
}

/* On mobile, banner positioning is handled inside .mobile-only-cta media block above */

.tease-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.tease-wrapper p {
  margin: 0 0 6px;
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 600;
}

.progress-container {
  background: rgba(255,255,255,0.2);
  height: 6px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

#shipping-progress-bar {
  background: var(--gold-light);
  height: 100%;
  width: 0%;
  transition: width 0.6s ease;
  border-radius: 20px;
}

.free-shipping-unlocked {
  background: var(--green) !important;
  border-top-color: #6aaf3d !important;
}

.free-shipping-unlocked #shipping-progress-bar {
  background: #a8e063 !important;
}

.hidden-banner { display: none !important; }

/* =========================================
   4. LAUNCH / TOP BANNER
   ========================================= */
.launch-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-farm.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,16,8,0.72) 0%,
    rgba(92,46,10,0.55) 50%,
    rgba(28,16,8,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  text-align: center;
}

/* Logo + jaggery photo centred row */
.hero-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.hero-logo {
  /* No background — logo floats directly on hero */
}

.hero-logo img {
  width: 140px;
  height: auto;
  display: block;
  /* Drop shadow makes logo readable on any background */
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6)) drop-shadow(0 0 20px rgba(0,0,0,0.4));
}

.hero-product-thumb {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(200,146,42,0.7);
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  flex-shrink: 0;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,42,0.2);
  border: 1px solid rgba(200,146,42,0.5);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(200,146,42,0.4);
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  width: auto;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,146,42,0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-badge-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-hint-arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =========================================
   6. SECTION WRAPPER
   ========================================= */
.section {
  padding: 72px 24px;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--brown { background: var(--brown); }
.section--dark  { background: var(--text-dark); }

.container {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 16px;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.7;
}

/* =========================================
   7. TRUST BAR (below hero)
   ========================================= */
.trust-bar {
  background: var(--brown);
  padding: 14px 24px;
}

.trust-bar-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(255,255,255,0.2);
}

.trust-item-icon {
  font-size: 1rem;
}

/* Shipping threshold strip — sits below trust bar */
.shipping-strip {
  background: #3a1a06;
  text-align: center;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(200,146,42,0.3);
  transition: background 0.4s;
}

.shipping-strip.is-ncr {
  background: #1a3a0a;
  color: #a8e063;
  border-bottom-color: rgba(168,224,99,0.3);
}

/* =========================================
   8. PRODUCT SECTION
   ========================================= */
.product-section {
  background: var(--cream);
  padding: 64px 24px;
}

.product-intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.product-header {
  text-align: center;
  margin-bottom: 40px;
}

.product-header .section-sub {
  margin: 12px auto 0;
  max-width: 540px;
}

/* Product proof photo */
.product-proof-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(92,46,10,0.2);
}

.product-proof-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.product-proof-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(92,46,10,0.88);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .product-intro-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }
  .product-header { text-align: center; }
  .product-proof-img img { height: 220px; }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 40px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cream-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge--trial {
  background: var(--brown);
  color: var(--white);
}

.product-badge--value {
  background: var(--green-mid);
  color: var(--white);
}

.product-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
}

.product-card-weight {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

.product-card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brown);
  font-family: var(--font-display);
  line-height: 1;
}

.product-card-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  font-family: var(--font-body);
}

.qty-control {
  display: flex;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--cream-dark);
  width: fit-content;
}

.qty-control button {
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  -webkit-tap-highlight-color: rgba(92,46,10,0.1);
  flex-shrink: 0;
}

.qty-control button:hover { background: var(--cream-dark); }
.qty-control button:active { background: var(--gold-light); color: var(--white); }

.qty-control input {
  width: 44px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-body);
  padding: 0;
  -moz-appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-control input:focus { outline: none; }

/* =========================================
   9. COMPARISON TABLE
   ========================================= */
.comparison-section {
  background: var(--white);
  padding: 64px 24px;
}

.comp-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.comp-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.comp-col {
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.comp-col--bad {
  background: #FFF5F5;
  border: 1.5px solid #F5C6C6;
}

.comp-col--good {
  background: linear-gradient(145deg, #FFFDF5 0%, #FFF8E7 100%);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.comp-col-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.comp-col--bad .comp-col-title { color: #8B3030; }
.comp-col--good .comp-col-title { color: var(--brown); }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-list li {
  font-size: 0.88rem;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-mid);
}

.comp-list li strong { color: var(--text-dark); }

/* =========================================
   10. FARM STORY SECTION
   ========================================= */
.farm-section {
  padding: 0;
  overflow: hidden;
}

.farm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.farm-image {
  position: relative;
  overflow: hidden;
}

.farm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.farm-content {
  background: var(--brown);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.farm-content .section-eyebrow { color: var(--gold-light); }

.farm-content .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.farm-content .section-title em { color: var(--gold-light); }

.farm-content p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.farm-stat-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.farm-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.farm-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================================
   11. PROCESS / HOW IT'S MADE
   ========================================= */
.process-section {
  background: var(--cream);
  padding: 72px 24px;
}

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

.process-step {
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

.process-connector {
  display: none;
}

/* =========================================
   12. PHOTO STRIP (full-width farm image)
   ========================================= */
.photo-strip {
  height: 380px;
  overflow: hidden;
  position: relative;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.photo-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,16,8,0.2) 0%,
    rgba(28,16,8,0.0) 40%,
    rgba(28,16,8,0.5) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 32px 40px;
}

.photo-strip-caption {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 700;
  max-width: 400px;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* =========================================
   13. CHECKOUT FORM SECTION
   ========================================= */
.checkout-section {
  background: var(--cream);
  padding: 64px 24px;
}

.checkout-section-hidden { display: none !important; }

.checkout-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.checkout-step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.checkout-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkout-step-label h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cream-dark);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group:last-child { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #DDD4C4;
  font-family: var(--font-body);
  font-size: 16px; /* Prevents iOS zoom */
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: #B8A898; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--danger);
  background: #FFF8F8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.error-message {
  display: none;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 5px;
}

/* Field success state */
.field-container { position: relative; }

.field-container.valid-success .form-input {
  border-color: var(--success);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232D6A2D' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
}

/* =========================================
   14. PAYMENT METHOD SELECTOR
   ========================================= */
.pay-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pay-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid #DDD4C4;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}

.pay-option:has(input:checked) {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FFFDF5, #FFF8E7);
  box-shadow: 0 2px 12px rgba(200,146,42,0.15);
}

.pay-option input[type="radio"] {
  accent-color: var(--gold);
  width: 18px; height: 18px;
  flex-shrink: 0;
}

.pay-option-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.pay-option-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

#codOptionWrapper {
  transition: opacity 0.3s ease;
}

#codOptionWrapper[style*="pointer-events: none"] {
  opacity: 0.45;
  filter: grayscale(0.5);
}

/* =========================================
   15. ORDER SUMMARY
   ========================================= */
.order-summary {
  background: linear-gradient(145deg, #FFFDF5, #FFF8E7);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(200,146,42,0.15);
}

.summary-row:last-child { border-bottom: none; }

.summary-row.total {
  padding-top: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brown);
  font-family: var(--font-display);
  border-bottom: none;
  border-top: 2px solid rgba(200,146,42,0.3);
  margin-top: 6px;
}

.summary-row-value {
  font-weight: 700;
  color: var(--text-dark);
}

.summary-row.total .summary-row-value { color: var(--brown); }

/* =========================================
   16. PLACE ORDER BUTTON
   ========================================= */
.place-order-btn {
  width: 100%;
  padding: 18px 32px;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 24px rgba(92,46,10,0.3);
  letter-spacing: 0.01em;
}

.place-order-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,146,42,0.4);
}

.place-order-btn:active { transform: translateY(0); }

.place-order-btn:disabled {
  background: #C5BDB4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Mobile fixed confirm button — sits at bottom once sticky CTA disappears */
@media (max-width: 640px) {
  .place-order-btn {
    position: fixed;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 4%;
    width: 92%;
    z-index: 1000;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    padding: 16px 24px;
  }
}

/* Error box */
#errorBox {
  display: none;
  color: var(--danger);
  font-weight: 600;
  background: #FFF0F0;
  border: 1.5px solid #F5C6C6;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* Verify progress */
#verify-progress-container {
  display: none;
  margin-bottom: 16px;
}

.verify-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--cream-dark);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.verify-progress-fill {
  width: 35%;
  height: 100%;
  background: var(--gold);
  position: absolute;
  left: -35%;
  border-radius: 20px;
  animation: verify-slide 1.4s infinite linear;
}

@keyframes verify-slide {
  0%   { left: -35%; }
  100% { left: 100%; }
}

#verify-status-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--brown);
  margin-top: 8px;
  font-weight: 600;
}

/* COD notice */
#codNotice {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.5;
}

/* =========================================
   17. REVIEWS SECTION
   ========================================= */
.reviews-section {
  background: var(--white);
  padding: 72px 24px;
}

.review-summary {
  text-align: center;
  margin-bottom: 36px;
}

.review-stars-big {
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}

.review-score {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1.5px solid var(--cream-dark);
  box-shadow: 0 2px 8px rgba(92,46,10,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92,46,10,0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-dark);
}

.review-name {
  font-weight: 700;
  color: var(--brown);
  font-size: 0.95rem;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 1px;
}

.review-text {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.6;
  font-style: italic;
}

.write-review-btn {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 13px 24px;
  border: 2px solid var(--brown);
  color: var(--brown);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.write-review-btn:hover {
  background: var(--brown);
  color: var(--white);
}

#readMoreBtn {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
  display: block;
  margin: 20px auto 0;
  transition: all 0.2s;
}

#readMoreBtn:hover {
  background: var(--gold);
  color: var(--white);
}

/* =========================================
   18. WHY GUDLUU BENEFITS
   ========================================= */
.benefits-section {
  background: var(--cream);
  padding: 72px 24px;
}

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

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1.5px solid var(--cream-dark);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.2;
}

.benefit-desc {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* =========================================
   19. FOOTER
   ========================================= */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 32px;
  text-align: center;
}

.footer-logo-wrap {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo-wrap img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
  /* Show in colour — the logo reads well on dark bg */
}

.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-contact a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--white); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-fssai {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-fssai img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.4;
}

.footer-fssai span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* =========================================
   20. STICKY MOBILE CTA
   ========================================= */
/* Mobile sticky CTA — always visible on mobile, hidden on desktop */
.mobile-only-cta {
  display: none; /* hidden on desktop */
}

@media (max-width: 640px) {
  .mobile-only-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10002;
    padding: 10px 16px max(14px, env(safe-area-inset-bottom));
    background: linear-gradient(135deg, #1C1008 0%, #3a1a06 100%);
    box-shadow: 0 -4px 24px rgba(92,46,10,0.3);
    border-top: 1px solid rgba(200,146,42,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .mobile-only-cta.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .sticky-order-btn {
    display: block;
    /* Gold gradient — premium feel */
    background: linear-gradient(135deg, #C8922A 0%, #E8B84B 50%, #C8922A 100%);
    color: #3a1a06;
    text-align: center;
    text-decoration: none;
    padding: 15px;
    border-radius: var(--radius-xl);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(200,146,42,0.4);
  }

  /* Shipping banner sits above the real confirm button (~70px tall at bottom:14px) */
  #shipping-tease-container {
    position: fixed !important;
    bottom: 80px !important;
    top: auto !important;
    left: 0;
    right: 0;
    z-index: 10001 !important;
    padding: 10px 16px;
    border-radius: 12px 12px 0 0;
  }
}

/* =========================================
   21. SPINNER
   ========================================= */
.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================================
   22. SECURITY HONEYPOT
   ========================================= */
.visually-hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
  width: 1px; height: 1px;
  overflow: hidden;
  pointer-events: none;
}

/* =========================================
   23. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .farm-grid {
    grid-template-columns: 1fr;
  }
  .farm-image {
    height: 300px;
  }
  .farm-content {
    padding: 44px 28px;
  }
  .farm-stat-row {
    gap: 24px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .comp-table {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .photo-strip {
    height: 260px;
  }
}

@media (max-width: 640px) {
  body { padding-bottom: 100px; overflow-x: hidden; }

  .hero-section { min-height: 88vh; }
  .hero-content { padding: 50px 20px 70px; }
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-badges { gap: 12px; }

  .section { padding: 52px 16px; }
  .product-section { padding: 52px 16px; }
  .comparison-section { padding: 52px 16px; }
  .process-section { padding: 52px 16px; }
  .benefits-section { padding: 52px 16px; }
  .reviews-section { padding: 52px 16px; }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card-body { padding: 14px 14px 16px; gap: 10px; }
  .product-card-name { font-size: 0.9rem; }
  .product-card-price { font-size: 1.25rem; }
  .qty-control button { width: 40px; height: 40px; }

  .trust-item { padding: 5px 12px; font-size: 0.76rem; }

  .form-card { padding: 20px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .section-title { font-size: 1.6rem; }

}

/* =========================================
   24. PRINT LABEL (no style needed here)
   ========================================= */
