/* ============================================================
   CHAITANYA SHRI DAIRY FARM – MAIN STYLESHEET
   Theme: Deep Forest Green + Saffron Gold on Organic White-Green
   (Clean organic dairy farm aesthetic)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Theme: Inspired by Chaitanya Shri Organic Dairy Farm Banner */
  
  /* Brand Colors */
  --brand-red:    #b71c1c; /* Deep Red/Rust - Main Brand Name Color */
  --brown-dark:   #3e2723; /* Dark Coffee Brown - Footer/Address Bars */
  
  /* Primary Mappings */
  --green-dark:   var(--brown-dark); /* Using Dark Brown for main text/headings to match address bar */
  --green-main:   #2e7d32; /* Forest Green - Organic accents */
  --green-light:  #4caf50;
  --green-pale:   #e8f5e9;
  
  /* Gold/Yellow Accents */
  --gold:         #fbc02d; /* Bright Golden Yellow */
  --gold-light:   #fdd835;
  --gold-bright:  #fff176;

  /* Backgrounds - Warm Cream/Yellowish Tone */
  --cream:        #fffde7; /* Light Yellowish Cream (Banner Background) */
  --cream-dark:   #fff9c4; /* Slightly darker yellow cream */
  --saffron-pale: #fff3e0;
  --maroon-pale:  #fbe9e7;
  --white:        #ffffff;
  
  /* Text Colors */
  --text-dark:    #3e2723; /* Dark Brown */
  --text-mid:     #5d4037; /* Medium Brown */
  --text-light:   #8d6e63;
  
  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(62, 39, 35, 0.08);
  --shadow-md:    0 8px 32px rgba(62, 39, 35, 0.12);
  --shadow-lg:    0 20px 60px rgba(62, 39, 35, 0.18);
  
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-hindi:   'Hind', sans-serif;
  --font-main:    'Manrope', sans-serif;
  --font-display: 'Tiro Devanagari Hindi', serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.68;
  font-weight: 500;
}
.hindi-text { font-family: var(--font-hindi); font-weight: 500; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
input, select, textarea, button { font-family: var(--font-main); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--green-pale); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.section-subtitle {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(200,130,10,0.40);
  transition: var(--transition);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #a06808, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,130,10,0.55);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45,122,26,0.12);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 10px 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand-icon { font-size: 2rem; }
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-red); /* Updated to Brand Red */
  line-height: 1.1;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.8);
}
.brand-tagline {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--gold);
  background: var(--saffron-pale);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-login, .btn-admin {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid;
}
.btn-login {
  border-color: var(--green-dark);
  color: var(--green-dark);
}
.btn-login:hover { background: var(--green-dark); color: var(--white); }
.btn-admin {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-admin:hover { background: #b8860b; border-color: #b8860b; }
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--green-dark);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(62,39,35,0.90) 0%, rgba(107,76,49,0.68) 55%, rgba(251,192,45,0.42) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  width: 100%;
}
.hero-overlay { position: absolute; inset: 0; background: inherit; }
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 860px;
  animation: fadeInUp 1s ease both;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.25);
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff9c4; /* Cream/Yellow for contrast on dark bg */
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(62, 39, 35, 0.8), 0 0 20px rgba(183, 28, 28, 0.4);
  font-family: var(--font-display);
}
.accent-gold { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-hindi);
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.3);
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 15px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: var(--white);
  padding: 80px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.trust-card {
  background: linear-gradient(135deg, var(--green-pale), var(--white));
  border: 1px solid rgba(45,122,26,0.12);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-main), var(--gold));
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.trust-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(200,130,10,0.35);
}
.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.trust-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 420px;
}
.about-img-secondary {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px;
}
.about-img-secondary img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  object-fit: cover;
  height: 150px;
  width: 100%;
}
.about-badge-float {
  position: absolute;
  top: 20px; left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
}
.about-content { padding-left: 20px; }
.about-text {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.about-feat {
  display: flex; align-items: center; gap: 10px;
  background: var(--saffron-pale);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-dark);
}
.about-feat i { color: var(--gold); font-size: 1rem; }

/* ===== PRODUCTS SECTION ===== */
.products-section {
  background: var(--white);
  padding-top: 140px;
}
.products-section .section-tag {
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 24px;
  margin-bottom: 22px;
  border: 1px solid rgba(62, 39, 35, 0.18);
  box-shadow: 0 8px 20px rgba(251, 192, 45, 0.25);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1.5px solid rgba(45,122,26,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.product-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.product-card:hover::after { transform: scaleX(1); }
.product-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--cream), var(--saffron-pale));
}
.product-card.featured::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.product-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-icon { font-size: 3rem; margin-bottom: 16px; }

/* Product Image Wrapper */
.product-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-info { flex: 1; display: flex; flex-direction: column; }
.product-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.product-specs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 12px;
}
.spec {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--saffron-pale);
  color: var(--green-dark);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.product-desc {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin-bottom: 16px;
  flex: 1;
}
.product-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 20px;
}
.price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-main);
  font-family: var(--font-main);
}
.price-unit {
  color: var(--text-mid);
  font-size: 0.9rem;
}
.product-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: auto;
}
.btn-subscribe {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent;
  border: 2px solid rgba(62, 39, 35, 0.55);
  color: var(--text-dark);
  padding: 11px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-subscribe:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: #4e342e;
}
.btn-order-now {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #4e342e;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(251,192,45,0.34);
  transition: var(--transition);
}
.btn-order-now:hover {
  background: linear-gradient(135deg, #f6b30f, #f9d94b);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(251,192,45,0.45);
}

/* ===== ORDER SECTION ===== */
.order-section {
  background: linear-gradient(135deg, var(--saffron-pale) 0%, var(--cream) 100%);
}
.order-wrapper {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px;
  align-items: start;
}
.order-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,130,10,0.18);
}
.order-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-dark);
  display: flex; align-items: center; gap: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(200,130,10,0.28);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,130,10,0.16);
}
.payment-options {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.payment-opt {
  cursor: pointer;
  flex: 1; min-width: 120px;
}
.payment-opt input[type="radio"] { display: none; }
.payment-opt span {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 16px;
  border: 2px solid rgba(200,130,10,0.28);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  background: var(--white);
}
.payment-opt input[type="radio"]:checked + span {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--saffron-pale);
}
.order-total-display .total-box {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: space-between;
}
.total-amount { font-size: 1.4rem; font-weight: 800; color: var(--gold-light); }
.btn-submit-order {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(200,130,10,0.40);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit-order:hover {
  background: linear-gradient(135deg, #a06808, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,130,10,0.55);
}
.order-info-panel { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,130,10,0.18);
}
.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.info-card ul { display: flex; flex-direction: column; gap: 10px; }
.info-card li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.info-card li i { color: var(--gold); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 12px;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #128c7e; transform: translateY(-2px); }
.upi-info {
  display: flex; align-items: center; gap: 14px;
}
.upi-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #ff9800, #f44336);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.upi-info p { margin: 2px 0; font-size: 0.88rem; color: var(--text-mid); }
.upi-info strong { color: var(--text-dark); }

/* ===== SUBSCRIPTION SECTION ===== */
.subscription-section {
  background: var(--green-dark);
  overflow: hidden;
  position: relative;
}
.subscription-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,130,10,0.18), transparent);
  border-radius: 50%;
}
.subscription-section .section-title { color: var(--white); }
.subscription-section .section-subtitle { color: rgba(255,255,255,0.7); }
.subscription-section .section-tag {
  background: rgba(200,130,10,0.25);
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.subscription-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.sub-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.sub-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-8px);
}
.sub-card.popular {
  border-color: var(--gold);
  background: rgba(200,130,10,0.1);
}
.sub-card.premium {
  border-color: var(--gold-light);
  background: rgba(240,200,66,0.08);
}
.sub-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 5px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.sub-badge.gold { background: linear-gradient(135deg, #b8860b, var(--gold)); }
.sub-icon { font-size: 3rem; margin-bottom: 16px; }
.sub-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.sub-desc { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 20px; }
.sub-price {
  margin-bottom: 24px;
}
.sub-price .price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
}
.sub-price .price-unit { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.sub-features {
  text-align: left;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.sub-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.sub-features li i { color: var(--green-light); }
.btn-subscribe-plan {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-dark);
  padding: 13px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(212,160,23,0.3);
}
.btn-subscribe-plan:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.4);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section { background: var(--cream-dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,122,26,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute; top: 10px; right: 20px;
  font-size: 5rem;
  color: rgba(45,122,26,0.06);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card.featured-review {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffbf0, #fff8e1);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-stars { font-size: 1.1rem; margin-bottom: 12px; }
.review-text {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex; align-items: center; gap: 12px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer strong { font-size: 0.92rem; color: var(--text-dark); }
.reviewer span { font-size: 0.8rem; color: var(--text-light); }
.review-cta {
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--text-mid);
}
.btn-review {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-review:hover { background: #128c7e; transform: translateY(-2px); }

/* ===== DELIVERY SECTION ===== */
.delivery-section { background: var(--white); }
.delivery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.delivery-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.delivery-area-card {
  background: linear-gradient(135deg, var(--saffron-pale), var(--white));
  border: 1px solid rgba(200,130,10,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.delivery-area-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.area-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.radius-info {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.radius-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(200,130,10,0.35);
  flex-shrink: 0;
}
.radius-info span { font-weight: 600; color: var(--text-mid); font-size: 0.95rem; }
.delivery-areas {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}
.delivery-areas li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.delivery-areas li i { color: var(--gold); }
.delivery-timings h4 {
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-size: 0.92rem;
}
.timing {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.timing i { color: var(--gold); }

/* ===== FOOTER ===== */
.footer { background: var(--green-dark); }
.footer-top { padding: 70px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-logo span { font-size: 2rem; }
.footer-logo h3 {
  font-family: var(--font-hindi);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
}
.footer-logo p { color: var(--gold-light); font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; }
.footer-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-links h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}
.contact-item i { color: var(--gold-light); margin-top: 2px; flex-shrink: 0; }
.contact-item a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ===== WHATSAPP & CALL & INSTAGRAM FLOATS ===== */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1);
}
.whatsapp-tooltip {
  position: absolute; right: 68px; top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.call-float {
  position: fixed; bottom: 102px; right: 30px; z-index: 999;
  width: 50px; height: 50px;
  background: #1a73e8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(26,115,232,0.45);
  transition: var(--transition);
}
.call-float:hover {
  background: #1558b0;
  transform: scale(1.1);
}

.instagram-float {
  position: fixed; bottom: 166px; right: 30px; z-index: 999;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(221,42,123,0.40);
  transition: var(--transition);
}
.instagram-float:hover {
  opacity: 0.88;
  transform: scale(1.1);
}

/* ===== PRODUCT IMAGE ===== */
.product-img-wrap {
  width: 100%; height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

/* ===== PRICE STRIKETHROUGH ===== */
.price-old {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
  margin-left: 6px;
}
.price-discount {
  display: inline-block;
  background: #e8f5e9;
  color: #1d7a25;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--green-dark);
  overflow: hidden;
  position: relative;
}
.video-section::before {
  content: '';
  position: absolute; top: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,130,10,0.15), transparent);
  border-radius: 50%;
}
.video-section .section-title { color: var(--white); }
.video-section .section-subtitle { color: rgba(255,255,255,0.7); }
.video-section .section-tag {
  background: rgba(200,130,10,0.25);
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0a3c05 0%, #1a5c0a 50%, #1d7a25 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/farm-main.jpg') center/cover no-repeat;
  opacity: 0.25;
}
.video-play-btn {
  position: relative; z-index: 1;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--green-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: var(--transition);
}
.video-placeholder:hover .video-play-btn {
  transform: scale(1.12);
  background: var(--gold);
  color: var(--white);
}
.video-caption {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-hindi);
  text-align: center;
}
.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

/* ===== MODAL ===== */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.modal.active {
  opacity: 1; pointer-events: all;
}
.modal-overlay {
  position: fixed; inset: 0; z-index: 1999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: none;
}
.modal-overlay.active { display: block; }
.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 2001;
}
.modal.active .modal-content { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(200,130,10,0.10);
  border: none; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--saffron-pale); color: var(--green-dark); }
.modal-content h2 {
  font-size: 1.4rem; font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.modal-product-name {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 24px;
  padding: 8px 14px;
  background: var(--saffron-pale);
  border-radius: var(--radius-sm);
  font-family: var(--font-hindi);
}
.modal-total {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
  text-align: center;
}
.modal-content .form-group { margin-bottom: 14px; }
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(200,130,10,0.28);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  font-family: var(--font-hindi);
  transition: var(--transition);
}
.modal-content input:focus,
.modal-content textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,130,10,0.16);
}

/* ===== WHOLESALE FIRST-VISIT POPUP ===== */
.wholesale-popup-content {
  max-width: 560px;
  text-align: center;
  border: 2px solid rgba(251, 192, 45, 0.55);
  background: linear-gradient(145deg, #fffdf1 0%, #fff7d6 100%);
}
.wholesale-badge {
  display: inline-block;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #4e342e;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.wholesale-message {
  margin-top: 6px;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #4e342e;
  font-weight: 700;
}
.wholesale-subtext {
  margin-top: 8px;
  margin-bottom: 20px;
  color: var(--text-mid);
  font-size: 0.98rem;
}
.wholesale-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.wholesale-call-btn {
  color: var(--green-dark);
  border-color: rgba(62, 39, 35, 0.35);
}

@media (max-width: 640px) {
  .wholesale-popup-content {
    padding: 28px 20px;
  }
  .wholesale-message {
    font-size: 1.1rem;
  }
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 100px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  z-index: 3000;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: all 0.4s ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast i { color: var(--gold-bright); font-size: 1.1rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}
@keyframes pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-secondary { display: none; }
  .about-images img { height: 300px; }
  .order-wrapper { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-md);
    gap: 4px; z-index: 999;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 12px 16px; font-size: 1rem; }
  .hamburger { display: flex; }
  .btn-login, .btn-admin { display: none; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-stats { gap: 12px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  section { padding: 60px 0; }
  .order-form-container { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .about-content { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .subscription-grid { grid-template-columns: 1fr; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; }
  .call-float { bottom: 96px; right: 30px; }
  .instagram-float { bottom: 158px; right: 30px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .review-card::before { display: none; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-stats .stat-divider { display: none; }
  .hero-stats { flex-direction: column; gap: 8px; }
  .about-features { grid-template-columns: 1fr; }
  .payment-options { flex-direction: column; }
}
