/* CSS Design System for MKA Veggies - Perumbavoor Wholesale Showcase */
:root {
  --primary-dark: #0F382C;
  --primary-mid: #164E3D;
  --primary-green: #2D6A4F;
  --accent-gold: #D4AF37;
  --accent-green: #52B788;
  --bg-cream: #FDFBF7;
  --bg-card: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 56, 44, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(15, 56, 44, 0.15);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Glassmorphism Styling Utility */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(45, 106, 79, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(45, 106, 79, 0.25);
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(15, 56, 44, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 56, 44, 0.35);
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-dark));
}

.btn-secondary {
  background: rgba(45, 106, 79, 0.1);
  color: var(--primary-dark);
  border: 1px solid rgba(45, 106, 79, 0.2);
}

.btn-secondary:hover {
  background: rgba(45, 106, 79, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-outline-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border: 1px solid var(--primary-green);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
}

.btn-outline-sm:hover {
  background: var(--primary-green);
  color: #fff;
}

/* Small button variant for produce cards */
.btn-sm {
  padding: 9px 16px;
  font-size: 0.85rem;
  gap: 7px;
}

/* Utility: margin top */
.margin-top {
  margin-top: 20px;
}

/* Section Common Styling */
.section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header.center {
  text-align: center;
  display: block;
}

.sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-green);
  background: rgba(45, 106, 79, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 1.05rem;
}

.title-divider {
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: #E2E8F0;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #F1F5F9;
  font-weight: 500;
}

.tb-label {
  color: var(--accent-gold);
  font-weight: 700;
}

.top-bar-left i {
  color: var(--accent-gold);
  font-size: 0.95rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-bar-phones {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #FFFFFF !important;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.7), rgba(15, 56, 44, 0.9));
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--accent-gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.top-phone-link i {
  color: var(--accent-gold);
  font-size: 0.92rem;
}

.top-phone-link:hover {
  background: var(--accent-gold);
  color: var(--primary-dark) !important;
  border-color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.top-phone-link:hover i {
  color: var(--primary-dark);
}

.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-link i {
  font-size: 1.2rem;
  color: var(--accent-gold);
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icon-link:hover i {
  color: #fff;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .top-bar {
    padding: 8px 0;
  }

  .top-bar-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .top-bar-left {
    justify-content: center;
    gap: 12px;
    font-size: 0.82rem;
  }

  .top-bar-right {
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .top-bar-phones {
    justify-content: center;
    width: 100%;
    gap: 8px;
  }

  .top-phone-link {
    font-size: 0.86rem;
    padding: 6px 14px;
    background: rgba(45, 106, 79, 0.85);
    border: 1.5px solid var(--accent-gold);
    flex: 1 1 auto;
    justify-content: center;
    max-width: 220px;
  }
}

/* Sticky Master Header Wrapper */
.sticky-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Header & Nav */
.header {
  position: relative;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(15, 56, 44, 0.1);
  padding: 8px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-green);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--primary-green);
  font-weight: 600;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-green);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-wa-btn {
  padding: 9px 18px !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
}

/* ==========================================================================
   ENHANCED HERO SECTION & VEGGIE ANIMATIONS
   ========================================================================== */
.hero {
  position: relative;
  padding: 80px 0 90px;
  background: radial-gradient(circle at 10% 20%, rgba(82, 183, 136, 0.18), transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.12), transparent 45%),
              linear-gradient(180deg, #FDFBF7 0%, #F4F7F4 100%);
  overflow: hidden;
}

/* Ambient Animated Glows & Floating Background Particles */
.hero-bg-animated {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: ambientPulse 8s ease-in-out infinite alternate;
}

.bg-glow-1 {
  width: 380px;
  height: 380px;
  background: rgba(45, 106, 79, 0.25);
  top: -50px;
  left: -50px;
}

.bg-glow-2 {
  width: 420px;
  height: 420px;
  background: rgba(212, 175, 55, 0.2);
  bottom: -100px;
  right: -50px;
  animation-delay: 3s;
}

.bg-glow-3 {
  width: 300px;
  height: 300px;
  background: rgba(82, 183, 136, 0.2);
  top: 40%;
  left: 45%;
  animation-delay: 5s;
}

@keyframes ambientPulse {
  0% { transform: scale(1) translateY(0); opacity: 0.5; }
  100% { transform: scale(1.15) translateY(-20px); opacity: 0.8; }
}

/* Floating Veggie Background Icons */
.bg-veggie {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.45;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.08));
  user-select: none;
}

.float-bg-1 { top: 12%; left: 4%; animation: floatVeggie1 7s ease-in-out infinite; }
.float-bg-2 { top: 75%; left: 8%; animation: floatVeggie2 9s ease-in-out infinite; font-size: 2.5rem; }
.float-bg-3 { top: 18%; left: 48%; animation: floatVeggie1 8s ease-in-out 1s infinite; }
.float-bg-4 { top: 82%; left: 42%; animation: floatVeggie2 10s ease-in-out 2s infinite; font-size: 2.3rem; }
.float-bg-5 { top: 10%; right: 6%; animation: floatVeggie1 9s ease-in-out 1.5s infinite; }
.float-bg-6 { top: 68%; right: 4%; animation: floatVeggie2 8s ease-in-out 0.5s infinite; }
.float-bg-7 { top: 45%; left: 2%; animation: floatVeggie1 11s ease-in-out 3s infinite; }

@keyframes floatVeggie1 {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-18px) rotate(8deg) scale(1.08); }
}

@keyframes floatVeggie2 {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(16px) rotate(-10deg) scale(0.95); }
}

/* Hero Main Container Grid */
.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  align-items: center;
}

/* Badge Tag */
.badge-tag.pulse-glow-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(45, 106, 79, 0.12));
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
  animation: pulseBadgeBorder 3s infinite alternate;
}

@keyframes pulseBadgeBorder {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3); }
  100% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

.icon-gold-spin {
  color: var(--accent-gold);
  font-size: 1.05rem;
}

/* Hero Title */
.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.highlight-gradient {
  background: linear-gradient(135deg, var(--primary-green) 0%, #1b4332 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  position: relative;
}

.highlight-gradient::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  border-radius: 2px;
  opacity: 0.7;
}

/* Hero Slogan Box */
.hero-slogan-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 12px 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.slogan-badge {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.slogan-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 4px;
  font-weight: 500;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4A5568;
  margin-bottom: 28px;
  max-width: 600px;
}

/* Hero CTA Buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 35px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, #1b4332 100%);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.35);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(45, 106, 79, 0.45);
}

.icon-bounce {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hero-primary:hover .icon-bounce {
  transform: rotate(-15deg) scale(1.25);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-hero-secondary:hover {
  background: #fff;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.btn-hero-wa {
  background: #25D366;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-hero-wa:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.icon-pulse {
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Feature Highlight Cards */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 56, 44, 0.12);
}

.hero-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 106, 79, 0.1);
  transition: var(--transition);
}

.hero-feature-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border-color: rgba(45, 106, 79, 0.3);
}

.feature-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(45, 106, 79, 0.12);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-icon-wrapper.icon-emerald {
  background: rgba(82, 183, 136, 0.15);
  color: #2d6a4f;
}

.feature-icon-wrapper.icon-gold {
  background: rgba(212, 175, 55, 0.15);
  color: #b89110;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

.feature-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RIGHT COLUMN: HERO IMAGE CAROUSEL & FLOATING BADGES
   ========================================================================== */
.hero-card-preview {
  position: relative;
}

/* Floating Veggie Badge Badges on Image */
.floating-veggie-card {
  position: absolute;
  z-index: 10;
  background: #ffffff;
  border-radius: var(--radius-full);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  user-select: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-veggie-card:hover {
  transform: scale(1.08) !important;
}

.v-emoji {
  font-size: 1.25rem;
}

.v-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
}

.float-v1 {
  top: -15px;
  right: 15px;
  animation: floatCard1 5s ease-in-out infinite;
}

.float-v2 {
  bottom: 25px;
  left: -20px;
  animation: floatCard2 6s ease-in-out infinite 1s;
}

.float-v3 {
  top: 45%;
  right: -25px;
  animation: floatCard1 7s ease-in-out infinite 2s;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Glass Main Image Frame */
.hero-image-container {
  padding: 12px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.hero-main-img-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.hero-banner-img:hover {
  transform: scale(1.03);
}

.hero-img-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 40%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}

.hero-img-caption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-img-caption i {
  color: var(--accent-gold);
}

/* Floating Status Badges inside Hero Image */
.floating-badge {
  position: absolute;
  z-index: 5;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-location {
  top: 14px;
  left: 14px;
}

.badge-trust {
  top: 14px;
  right: 14px;
  background: #fdf5e6;
  color: #8a6d0b;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: dotPulse 1.8s infinite;
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Gallery Thumbnails Below Main Image */
.hero-thumbs-nav {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-thumbs-nav::-webkit-scrollbar {
  display: none;
}

.thumb-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-full);
  padding: 6px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #4a4a4a;
}

.thumb-pill img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
}

.thumb-pill:hover {
  background: #f9f9f9;
  border-color: #cccccc;
  transform: translateY(-2px);
}

.thumb-pill.active {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
  box-shadow: 0 6px 16px rgba(45, 106, 79, 0.25);
}

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.story-card {
  padding: 40px;
}

.story-badge {
  display: inline-block;
  background: var(--primary-dark);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 15px;
}

.story-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.story-card p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 56, 44, 0.1);
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-green);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-dark);
  font-weight: 600;
}

.logo-display-box {
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.story-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 3px solid var(--primary-green);
  box-shadow: var(--shadow-lg);
  background: #fff;
  padding: 8px;
}

.logo-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.logo-caption .caption-primary {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.logo-caption .caption-secondary {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 4px;
}

.logo-caption .caption-since {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: var(--primary-dark);
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}
}

/* Spotlight Section (Chinese Cabbage Flyer Content) */
.spotlight-card {
  padding: 40px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.spotlight-img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.spotlight-img-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.spotlight-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.poster-link-box {
  margin-top: 15px;
  text-align: center;
}

.spotlight-head {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 1px;
}

.spotlight-tagline {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.mini-head {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-mid);
  margin-bottom: 12px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 24px;
}

.benefit-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.7);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 106, 79, 0.1);
}

.benefit-box .b-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.benefit-box strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.benefit-box p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.vitamins-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.v-pill {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.v-pill span {
  color: var(--accent-gold);
  font-weight: 700;
}

/* Produce Catalog */
.catalog-search-box {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.catalog-search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.catalog-search-box input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(45, 106, 79, 0.2);
  background: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.catalog-search-box input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(45, 106, 79, 0.2);
  background: #FFFFFF;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-dark);
  color: #FFFFFF;
  border-color: var(--primary-dark);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.produce-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.produce-img-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 200px;
  margin-bottom: 16px;
}

.produce-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.produce-card:hover .produce-img-wrap img {
  transform: scale(1.05);
}

.produce-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 56, 44, 0.85);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.produce-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.produce-unit {
  font-size: 0.85rem;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 10px;
}

.produce-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.produce-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(45, 106, 79, 0.1);
}

/* Inline tagline on card */
.produce-tagline-inline {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 8px;
}

/* Inline Benefits Block */
.produce-benefits-section,
.produce-nutrients-section {
  margin-top: 14px;
  margin-bottom: 10px;
}

.produce-benefits-head {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.produce-benefits-head i {
  color: var(--primary-green);
  font-size: 0.85rem;
}

.produce-benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.produce-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.produce-benefits-list li i {
  color: var(--accent-green);
  font-size: 0.82rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.produce-vitamins-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.produce-v-pill {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
}

.produce-card-actions .btn {
  flex: 1;
  min-width: 120px;
}

/* Bulk Order Builder */
.builder-card {
  padding: 40px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 106, 79, 0.2);
  background: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.items-selection-head h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-mid);
  margin: 15px 0 15px;
}

.builder-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 15px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 20px;
}

.builder-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 106, 79, 0.15);
}

.builder-item-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-green);
  cursor: pointer;
}

.builder-item-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  flex-grow: 1;
}

.builder-qty-input {
  width: 80px;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #CBD5E1;
  font-size: 0.85rem;
}

.builder-summary-box {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 56, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.summary-info span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.summary-info small {
  color: var(--text-muted);
}

/* Location & Map */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.map-card {
  min-height: 450px;
  overflow: hidden;
  padding: 0;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  border-radius: var(--radius-md);
  display: block;
}

.location-info-card {
  padding: 40px;
}

.location-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.loc-tagline {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 25px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.info-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.info-item a {
  color: var(--primary-dark);
  font-weight: 600;
}

.info-item a:hover {
  color: var(--primary-green);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 20px 25px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-question h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.faq-question i {
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  margin-top: 12px;
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 56, 44, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* Floating WhatsApp Widget */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease;
}

.floating-wa:hover {
  transform: scale(1.1);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--primary-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-wa:hover .wa-tooltip {
  opacity: 1;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: #E2E8F0;
  padding: 70px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
  border-color: var(--accent-gold);
}

.footer-logo .brand-name {
  color: #FFFFFF;
}

.footer-logo .brand-tagline {
  color: var(--accent-gold);
}

.footer-desc {
  margin: 16px 0;
  font-size: 0.9rem;
  color: #94A3B8;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-col p {
  color: #94A3B8;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.seo-tags {
  line-height: 1.8;
  font-size: 0.82rem;
}

.footer-bottom {
  padding: 20px 0;
  background: #082119;
  font-size: 0.85rem;
  color: #64748B;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive Media Queries */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 992px) {
  .hero-container, .story-grid, .spotlight-grid, .location-grid, .footer-container {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-cream);
    flex-direction: column;
    padding: 30px;
    gap: 16px;
    transition: left 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .header-wa-btn {
    display: none;
  }

  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    padding: 25px 0 40px;
  }

  .hero-title {
    font-size: 1.65rem;
    line-height: 1.24;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .badge-tag.pulse-glow-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  /* Vertical Full-Width Feature Cards for Flawless Mobile Alignment */
  .hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-top: 16px;
    margin-top: 12px;
  }

  .hero-feature-card {
    width: 100%;
    min-width: 0;
    padding: 12px 16px;
  }

  /* Constrained Hero Image Frame & Floating Badges on Mobile */
  .hero-card-preview {
    max-width: 100%;
    overflow: hidden;
    padding: 8px 0;
  }

  .hero-main-img-wrapper {
    height: 320px;
  }

  .floating-badge {
    font-size: 0.74rem;
    padding: 4px 10px;
  }

  .badge-location {
    top: 10px;
    left: 10px;
    max-width: 58%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .badge-trust {
    top: 10px;
    right: 10px;
  }

  .floating-veggie-card {
    padding: 4px 10px;
    font-size: 0.74rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }

  .float-v1 { top: 6px; right: 6px; }
  .float-v2 { bottom: 35px; left: 6px; }
  .float-v3 { top: 45%; right: 6px; }

  /* Touch Scrollable Filter Bar */
  .filter-bar {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    margin-bottom: 25px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }

  .filter-bar::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .filter-btn {
    flex: 0 0 auto;
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .produce-card-actions {
    flex-direction: column;
    gap: 8px;
  }

  .produce-card-actions .btn {
    width: 100%;
  }

  .modal-box {
    padding: 24px 18px;
    max-height: 88vh;
    border-radius: var(--radius-md);
  }

  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .top-bar-item {
    font-size: 0.78rem;
  }
  
  .hero-title {
    font-size: 1.45rem;
    line-height: 1.28;
    word-break: break-word;
    overflow-wrap: break-word;
  }

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

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .story-stats {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .builder-item-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .builder-qty-input {
    width: 100%;
    margin-top: 4px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.35rem;
    line-height: 1.28;
  }
}
