/* =========================================
   SUNEHRI DHARA — Premium CSS Design System
   Jha Oil Industries
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS CUSTOM PROPERTIES === */
:root {
  --gold: #D4AF37;
  --gold-dark: #B8962E;
  --gold-light: #E8C84A;
  --gold-xlight: #F5E48A;
  --gold-glow: rgba(212,175,55,0.3);
  --gold-glow-strong: rgba(212,175,55,0.5);
  --green: #1F4D36;
  --green-dark: #163829;
  --green-light: #2A6647;
  --green-xlight: #3d7a58;
  --white: #FFFFFF;
  --cream: #F8F4EA;
  --cream-dark: #EDE7D6;
  --cream-darker: #E0D8C4;
  --dark: #1A1A1A;
  --text: #3D3D3D;
  --text-light: #6B6B6B;
  --text-xlight: #9B9B9B;
  --border: rgba(212,175,55,0.2);
  --border-strong: rgba(212,175,55,0.4);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 24px rgba(212,175,55,0.3);
  --shadow-gold-lg: 0 8px 48px rgba(212,175,55,0.4);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --navbar-height: 80px;
  --container-max: 1200px;
  --section-pad: 100px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
  width: 100%;
  overflow-x: clip;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
p { line-height: 1.8; }

/* === UTILITY CLASSES === */
.container { 
  max-width: var(--container-max); 
  margin: 0 auto; 
  padding: 0 24px; 
  width: 100%;
  box-sizing: border-box;
}
.section { padding: var(--section-pad) 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.bg-green { background: var(--green); }
.bg-green-dark { background: var(--green-dark); }
.bg-cream { background: var(--cream); }
.bg-gold { background: var(--gold); }
.bg-white { background: var(--white); }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.italic { font-style: italic; }
.serif { font-family: 'Playfair Display', serif; }

/* Gold Shimmer Text */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* === SECTION HEADER === */
.section-header { margin-bottom: 60px; }
.section-header .pre-title {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(212,175,55,0.1);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}
.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: 12px;
  border-radius: 2px;
}
.section-header.text-center h2::after { margin: 12px auto 0; }
.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-top: 8px;
}
.section-header.text-center p { margin: 8px auto 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  transition: var(--transition-spring);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #20b958;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-xl { padding: 20px 56px; font-size: 1.1rem; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  transition: var(--transition);
  width: 100%;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
  width: 100%;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}
.logo-icon svg { width: 24px; height: 24px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-primary {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  transition: var(--transition);
}
.brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}
.navbar.scrolled .brand-primary { color: var(--green); }
.navbar.scrolled .brand-sub { color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.navbar.scrolled .nav-links > li > a { color: var(--text); }
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold);
}
.nav-links > li > a.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  position: absolute;
  bottom: -2px;
  left: 0;
  border-radius: 2px;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-menu li a:hover { background: var(--cream); color: var(--green); }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition-spring);
  flex-shrink: 0;
}
.btn-nav-cta:hover {
  background: #20b958;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
.navbar.scrolled .hamburger span { 
  background: var(--dark);
  box-shadow: 0 0 2px rgba(0,0,0,0.1);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === PAGE HERO (Inner Pages) === */
.page-hero {
  height: 55vh;
  min-height: 360px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--navbar-height);
}
    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 70% 50%, rgba(212,175,55,0.15) 0%, transparent 60%), radial-gradient(ellipse at 30% 80%, rgba(212,175,55,0.08) 0%, transparent 50%);
        pointer-events: none;
    }
    .page-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(212,175,55,0.06) 1px, transparent 1px);
        background-size: 30px 30px;
        pointer-events: none;
    }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); opacity: 0.6; }
.breadcrumb .current { color: var(--gold-light); }

/* === HERO IMAGE SLIDER === */
.hero-slider-container {
  position: relative;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(31,77,54,0.05), rgba(212,175,55,0.05));
  padding: 20px;
}

.hero-slide.active {
  opacity: 1;
  z-index: 10;
}

.hero-slide-img {
  max-height: clamp(200px, 70vh, 600px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: slideInImage 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInImage {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-slide-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(31,77,54,0.9);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider Navigation Buttons */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-spring);
  z-index: 20;
  box-shadow: var(--shadow-md);
}

.hero-slider-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-gold-lg);
}

.hero-slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-slider-prev {
  left: 20px;
}

.hero-slider-next {
  right: 20px;
}

/* Slider Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--white);
  transform: scale(1.3);
}

/* Responsive Slider */
@media (max-width: 768px) {
  .hero-slider-container {
    min-height: 300px;
  }

  .hero-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-slider-prev {
    left: 12px;
  }

  .hero-slider-next {
    right: 12px;
  }

  .hero-slide-caption {
    font-size: 0.8rem;
    padding: 6px 16px;
    bottom: 12px;
  }
}

@media (max-width: 480px) {
  .hero-slider-container {
    min-height: 250px;
  }

  .hero-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .hero-slider-prev {
    left: 8px;
  }

  .hero-slider-next {
    right: 8px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  .hero-slider-dots {
    bottom: 12px;
    gap: 8px;
  }
}

/* === FEATURE CARDS === */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(212,175,55,0.1));
  border-color: var(--gold);
  transform: scale(1.1) rotate(5deg);
}
.feature-card h4 {
  color: var(--green);
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.feature-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* === PRODUCT CARDS === */
.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-spring);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-gold-lg);
  border-color: var(--border-strong);
}
.product-card-image {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card-body { padding: 28px 24px; }
.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-popular { background: var(--gold); color: var(--dark); }
.badge-value { background: var(--green); color: var(--white); }
.badge-new { background: #E53E3E; color: var(--white); }
.product-name { font-size: 1.2rem; color: var(--green); margin-bottom: 4px; }
.product-size { font-size: 0.85rem; color: var(--text-light); font-weight: 500; margin-bottom: 12px; }
.product-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.product-features { list-style: none; margin-bottom: 20px; }
.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
  padding: 4px 0;
}
.product-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.product-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.product-price .price { font-size: 1.8rem; font-weight: 700; color: var(--green); font-family: 'Playfair Display', serif; }
.product-price .mrp { font-size: 1rem; color: var(--text-xlight); text-decoration: line-through; }
.product-price .discount { font-size: 0.8rem; font-weight: 700; color: #38A169; background: #F0FFF4; padding: 2px 8px; border-radius: var(--radius-full); }
.product-actions { display: flex; gap: 10px; }
.product-actions .btn { flex: 1; justify-content: center, font-size: 0.85rem; padding: 12px 16px; }

/* CSS Bottle Art */
.bottle-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.bottle {
  width: 90px;
  position: relative;
  filter: drop-shadow(0 8px 24px rgba(212,175,55,0.4));
  transition: var(--transition-spring);
}
.product-card:hover .bottle { transform: scale(1.05) translateY(-4px); }
.bottle-neck {
  width: 28px;
  height: 50px;
  background: linear-gradient(135deg, #c8961a, #e8b830, #c8961a);
  margin: 0 auto;
  border-radius: 6px 6px 0 0;
  position: relative;
}
.bottle-neck::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 14px;
  background: linear-gradient(135deg, #a07010, #c8961a);
  border-radius: 4px 4px 0 0;
}
.bottle-body {
  width: 70px;
  height: 140px;
  background: linear-gradient(135deg, #c87d00, #e8b830 30%, #f0cc60 50%, #e8b830 70%, #c87d00);
  border-radius: 10px 10px 16px 16px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.bottle-body::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 16px;
  height: 60px;
  background: rgba(255,255,255,0.25);
  border-radius: 8px;
  transform: rotate(-5deg);
}
.bottle-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 70px;
  background: linear-gradient(180deg, var(--white) 0%, #fff9ee 100%);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.bottle-label-brand {
  font-family: 'Playfair Display', serif;
  font-size: 5px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  line-height: 1.2;
}
.bottle-label-sun {
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, var(--gold-light) 40%, transparent 70%);
  border-radius: 50%;
  margin: 2px 0;
  box-shadow: 0 0 6px var(--gold);
}
.bottle-label-size {
  font-size: 7px;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Large bottle for product pages */
.bottle-large .bottle-body { width: 120px; height: 220px; }
.bottle-large .bottle-neck { width: 44px; height: 80px; }
.bottle-large .bottle-label { width: 80px; height: 110px; }
.bottle-large .bottle-label-brand { font-size: 7px; }
.bottle-large .bottle-label-sun { width: 24px; height: 24px; }
.bottle-large .bottle-label-size { font-size: 10px; }

/* === PRODUCT TRUST BADGES === */
.product-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-badge {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-badge i {
  color: var(--gold);
  font-size: 1rem;
  min-width: 18px;
}

/* === QUANTITY SELECTOR === */
.product-quantity-selector {
  margin: 16px 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.qty-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cream);
  width: fit-content;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin: 0 auto;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.05);
}
.qty-btn:active {
  transform: scale(0.95);
}
.qty-display {
  font-weight: 600;
  color: var(--text);
  min-width: 30px;
  text-align: center;
  font-size: 1.1rem;
}

/* === TIMELINE / JOURNEY === */
.journey-timeline { position: relative; padding: 40px 0; }
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
  transform: translateX(-50%);
}
.journey-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
  position: relative;
}
.journey-step:nth-child(even) { flex-direction: row-reverse; }
.journey-step:last-child { margin-bottom: 0; }
.journey-step-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.journey-step-content:hover { box-shadow: var(--shadow-gold); border-color: var(--gold); transform: translateY(-4px); }
.journey-step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
  box-shadow: var(--shadow-gold);
  z-index: 1;
  flex-shrink: 0;
}
.journey-step-icon { font-size: 2rem; margin-bottom: 12px; }
.journey-step h4 { color: var(--green); margin-bottom: 8px; }
.journey-step p { color: var(--text-light); font-size: 0.9rem; }
.journey-placeholder { flex: 1; }

/* === STATS/COUNTER === */
.stats-bar {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 16px;
}

/* === TESTIMONIALS === */
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  flex-shrink: 0;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star { color: var(--gold); font-size: 1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.author-location { font-size: 0.8rem; color: var(--text-light); }

/* Carousel controls */
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--green);
  font-size: 1rem;
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* === FAQ ACCORDION === */
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-spring);
  font-size: 0.75rem;
  color: var(--gold-dark);
}
.faq-item.active .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: 20px; color: var(--text-light); font-size: 0.9rem; line-height: 1.8; }

/* === GALLERY === */
.gallery-filter { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--cream-dark);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
  transition: var(--transition-spring);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-gold); }
.gallery-item:nth-child(5n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--white); font-size: 0.85rem; font-weight: 500; }
.gallery-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(212,175,55,0.9);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-category-tag { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-content { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--dark); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: var(--dark); }
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }

/* === BLOG === */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-spring);
  border: 1px solid rgba(0,0,0,0.06);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: var(--border); }
.blog-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-body { padding: 24px; }
.blog-category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cat-health { background: #F0FFF4; color: #2F855A; }
.cat-cooking { background: #FFF5F5; color: #C53030; }
.cat-farmers { background: #FFFAF0; color: #C05621; }
.cat-tradition { background: #EBF8FF; color: #2B6CB0; }
.cat-industry { background: #FAF5FF; color: #6B46C1; }
.blog-card h4 { color: var(--dark); margin-bottom: 10px; font-size: 1.05rem; line-height: 1.4; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 0.8rem; color: var(--text-xlight); margin-bottom: 12px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-excerpt { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.blog-read-more { color: var(--green); font-size: 0.875rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.blog-read-more:hover { color: var(--gold-dark); }
.blog-read-more i { transition: var(--transition); }
.blog-read-more:hover i { transform: translateX(4px); }

/* === FORM === */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.1); }
.form-control::placeholder { color: var(--text-xlight); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }
.form-error { font-size: 0.8rem; color: #E53E3E; margin-top: 4px; display: none; }
.form-group.error .form-control { border-color: #E53E3E; }
.form-group.error .form-error { display: block; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 70%, var(--gold) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--dark); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(0,0,0,0.65); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; position: relative; }
.cta-banner .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* === FOOTER === */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-primary { color: var(--white); font-size: 1.4rem; display: block; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.5); font-size: 0.7rem; display: block; margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer h5 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item i { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold); }
.footer-fssai {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition-spring);
  text-decoration: none;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: pulse-ring 2s ease-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* === ASSISTANT BOT WIDGET === */
.assistant-bot {
  position: fixed;
  bottom: 160px;
  right: 28px;
  z-index: 99;
}
.assistant-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.assistant-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212,175,55,0.6);
}
.assistant-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--green);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}
.assistant-popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 300px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all var(--transition);
  z-index: 100;
}
.assistant-popup.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.assistant-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.assistant-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.assistant-close:hover {
  background: rgba(255,255,255,0.3);
}
.assistant-content {
  padding: 16px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.assistant-content p {
  margin: 0 0 8px 0;
}
.assistant-content p:last-of-type {
  margin-bottom: 12px;
}
.assistant-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #25D366);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  width: 100%;
}
.assistant-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--green-light); transform: translateY(-3px); }

/* === CHAT WIDGET === */
.chat-widget-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  cursor: pointer;
  border: none;
  transition: var(--transition-spring);
}
.chat-widget-btn:hover { transform: scale(1.1); }
.chat-widget-btn .chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-panel {
  position: fixed;
  bottom: 100px;
  left: 28px;
  width: 360px;
  height: 500px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 997;
  transform: scale(0.8) translateY(40px);
  transform-origin: bottom left;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-spring);
}
.chat-panel.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }

.chat-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-header-name { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.chat-header-status {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.chat-status-dot { width: 7px; height: 7px; background: #68D391; border-radius: 50%; animation: pulse-dot 2s infinite; }
.chat-close-btn {
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  transition: var(--transition);
}
.chat-close-btn:hover { color: var(--white); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--cream-dark) transparent;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--cream-dark); border-radius: 4px; }

.chat-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  animation: fadeInUp 0.3s ease;
}
.chat-msg.user { flex-direction: row-reverse; }
.chat-bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.chat-msg.bot .chat-bubble {
  background: var(--cream);
  color: var(--text);
  border-radius: 4px 18px 18px 18px;
}
.chat-msg.user .chat-bubble {
  background: var(--green);
  color: var(--white);
  border-radius: 18px 18px 4px 18px;
}
.chat-typing {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: 4px 18px 18px 18px;
  width: fit-content;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  background: var(--text-light);
  border-radius: 50%;
  animation: typing-bounce 1.2s ease infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

.chat-quick-replies { padding: 0 20px 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.quick-reply {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--green);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.quick-reply:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  gap: 8px;
  align-items: center;
}
.chat-input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
  color: var(--text);
}
.chat-input:focus { border-color: var(--gold); }
.chat-send-btn {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-spring);
  flex-shrink: 0;
}
.chat-send-btn:hover { background: var(--green-light); transform: scale(1.1); }

/* === MARQUEE TICKER === */
.ticker-wrap {
  background: var(--green-dark);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-right: 0;
}
.ticker-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.ticker-sep { color: var(--gold); opacity: 0.5; font-size: 1.2rem; padding: 0 8px; }

/* === QUALITY BADGES === */
.quality-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.quality-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(5px);
}
.quality-badge:hover { background: rgba(212,175,55,0.25); border-color: var(--gold); }
.quality-badge i { color: var(--gold); }

/* === COMPARISON TABLE === */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comparison-table th {
  padding: 20px 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
}
.comparison-table th:first-child { background: var(--cream-dark); color: var(--text); }
.comparison-table th:nth-child(2) { background: var(--green); color: var(--white); }
.comparison-table th:nth-child(3) { background: #4A5568; color: var(--white); }
.comparison-table th:nth-child(4) { background: #718096; color: var(--white); }
.comparison-table td {
  padding: 14px 24px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--cream-dark);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 600; color: var(--text); background: #FAFAFA; }
.comparison-table td:nth-child(2) { background: rgba(31,77,54,0.05); font-weight: 500; color: var(--green); }
.check-green { color: #38A169; font-weight: 700; }
.check-red { color: #E53E3E; }

/* === PAGE LOAD ANIMATION === */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeInUp 0.5s ease 0.2s both;
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(212,175,55,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  animation: loader-fill 1.2s ease forwards;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}
@keyframes loader-fill {
  0% { width: 0%; }
  100% { width: 100%; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes particle-rise {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  100% { transform: translateY(-100px) scale(0); opacity: 0; }
}

/* === RESPONSIVE === */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 1100px) {
  :root { --section-pad: 80px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .journey-timeline::before { left: 32px; }
  .journey-step, .journey-step:nth-child(even) { flex-direction: row; gap: 24px; }
  .journey-step-number { left: 32px; }
  .journey-placeholder { display: none; }
}
@media (max-width: 768px) {
:root { --section-pad: 60px; --navbar-height: 70px; }
  
/* Prevent horizontal overflow */
*, *::before, *::after {
  max-width: 100%;
}
  
.nav-links, .btn-nav-cta { display: none; }
.hamburger { display: flex; }
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  background: rgba(22,56,41,0.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  overflow-y: auto;
}
  .nav-links.mobile-open > li > a { padding: 14px 16px; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav-links.mobile-open .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    opacity: 1;
    pointer-events: all;
    margin-top: 4px;
  }
  .nav-links.mobile-open .dropdown-menu li a { color: rgba(255,255,255,0.7); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(5n+1) { grid-column: span 1; grid-row: span 1; }
  .chat-panel { width: calc(100vw - 32px); left: 16px; right: 16px; bottom: 90px; max-width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner .btn-row { flex-direction: column; align-items: center; }
  .journey-timeline::before { display: none; }
  .journey-step { flex-direction: column !important; gap: 0; }
  .journey-step-number { position: relative; left: auto; transform: none; margin: 0 auto 16px; }
  .journey-step-content { width: 100%; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
}
@media (max-width: 420px) {
  :root { --section-pad: 48px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; right: 20px; }
  .chat-widget-btn { width: 52px; height: 52px; font-size: 1.3rem; bottom: 20px; left: 20px; }
  .scroll-top { bottom: 84px; right: 20px; }
}

/* Navbar logo sizing — increased and responsive */
.brand-logo img,
.site-logo {
  height: 92px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .brand-logo img,
  .site-logo {
    height: 76px;
  }
}

@media (max-width: 420px) {
  .brand-logo img,
  .site-logo {
    height: 60px;
  }
}

/* === UTILITY EXTRAS === */
.d-none { display: none !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.pt-80 { padding-top: 80px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Nutritional table */
.nutrition-table { width: 100%; border-collapse: collapse; }
.nutrition-table tr { border-bottom: 1px solid var(--cream-dark); }
.nutrition-table tr:last-child { border: none; }
.nutrition-table td { padding: 12px 8px; font-size: 0.875rem; }
.nutrition-table td:first-child { color: var(--text); font-weight: 500; }
.nutrition-table td:last-child { text-align: right; color: var(--green); font-weight: 600; }
.nutrition-table tr.highlight td { background: rgba(212,175,55,0.06); }

/* Product detail tabs */
.product-tabs { margin-bottom: 40px; }
.tab-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--cream-dark); margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--green); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Quantity selector */
.qty-selector {
  display: flex;
  align-items: center;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-full);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--gold); color: var(--dark); }
.qty-value {
  width: 52px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  border: none;
  outline: none;
  background: var(--white);
  font-family: 'Inter', sans-serif;
}

/* Star rating */
.rating-display { display: flex; align-items: center; gap: 8px; }
.stars-gold { color: var(--gold); letter-spacing: 2px; }
.rating-count { color: var(--text-light); font-size: 0.85rem; }
.rating-score { font-weight: 700; color: var(--dark); font-size: 1.1rem; }

/* === ENHANCED MOBILE RESPONSIVE === */
@media (max-width: 1024px) {
  :root { --section-pad: 70px; }
  .product-card { transform: scale(1) !important; }
  .section-header h2::after { width: 50px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 50px; --navbar-height: 70px; }
  
  /* Typography adjustments */
  h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
  h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
  p { font-size: clamp(0.9rem, 2vw, 1rem); line-height: 1.7; }
  
  /* Hero section fixes */
  .page-hero { padding-top: 100px; padding-bottom: 40px; }
  
  /* Grid adjustments */
  .grid-2 { gap: 24px; }
  .grid-3 { gap: 20px; }
  .quality-badges { gap: 10px; }
  
  /* Button sizing */
  .btn-lg { padding: 14px 28px; font-size: 0.9rem; }
  .btn-xl { padding: 16px 32px; font-size: 0.95rem; }
  .btn { padding: 12px 24px; }
  
  /* Product cards */
  .product-card { 
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
  }
  .product-card-body { padding: 20px 16px; }
  .product-card-image { height: 200px; padding: 16px; }
  .product-card-image img { height: 180px; }
  
  /* Feature cards */
  .feature-card { padding: 24px 16px; }
  .feature-icon { width: 56px; height: 56px; font-size: 1.4rem; }
  .feature-card h4 { font-size: clamp(1rem, 2vw, 1.15rem); }
  
  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-header h2::after { width: 40px; }
  
  /* Footer adjustments */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  
  /* CTA Banner */
  .cta-banner { padding: 40px 20px; }
  .btn-row { flex-direction: column; gap: 12px; }
  .btn-row .btn { width: 100%; }
  
  /* Floating buttons */
  .whatsapp-float { width: 56px; height: 56px; bottom: 20px; right: 20px; font-size: 1.4rem; }
  .scroll-top { bottom: 90px; right: 20px; width: 40px; height: 40px; }
  .chat-widget-btn { width: 56px; height: 56px; bottom: 20px; left: 20px; }
}

@media (max-width: 480px) {
:root { --section-pad: 40px; }
  
/* Prevent horizontal overflow */
* {
  max-width: 100%;
}
  
/* Typography */
h1 { font-size: clamp(1.5rem, 4vw, 2rem); }
h2 { font-size: clamp(1.2rem, 3.5vw, 1.5rem); }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); }
p { font-size: clamp(0.85rem, 1.8vw, 0.95rem); }
  
/* Spacing */
.mb-32 { margin-bottom: 24px; }
.mt-32 { margin-top: 24px; }
.mt-48 { margin-bottom: 32px; }
.section { padding: 40px 0; }
  
/* Grid system */
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }
  
/* Hero section */
.page-hero { 
  min-height: 70vh; 
  padding-top: 80px; 
  padding-bottom: 30px;
}
.hero-content { text-align: center; }
}
  .hero-image { margin-top: 20px; }
  .quality-badges { justify-content: center; flex-direction: row; align-items: center; gap: 8px; flex-wrap: wrap; }
  .quality-badge { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
  
  /* Buttons */
  .btn { 
    padding: 10px 20px; 
    font-size: clamp(0.8rem, 2vw, 0.9rem); 
    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .d-flex.gap-16 { 
    flex-direction: column; 
    gap: 12px;
  }
  .d-flex.gap-16 > a { 
    width: 100%;
    padding: 12px 20px;
  }
  .btn-primary, .btn-secondary { 
    width: 100%;
  }
  
  /* Product cards */
  .product-card { 
    box-shadow: var(--shadow-sm); 
    border: none;
  }
  .product-card-image { height: 160px; }
  .product-card-image img { height: 140px; }
  .product-price { gap: 4px; }
  .product-actions { flex-direction: column; gap: 8px; }
  .product-actions .btn { flex: 1; }
  
  /* Feature cards */
  .feature-card { 
    padding: 18px 14px;
    border-radius: var(--radius);
  }
  .feature-icon { width: 48px; height: 48px; margin-bottom: 12px; font-size: 1.2rem; }
  .feature-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
  .feature-card p { font-size: 0.8rem; }
  
  /* Section header */
  .section-header { margin-bottom: 32px; }
  .section-header .pre-title { font-size: 0.7rem; padding: 4px 12px; }
  .section-header h2::after { width: 30px; height: 2px; }
  
  /* Navbar */
  .navbar .container { gap: 12px; padding: 0 12px; }
  .hamburger { width: 40px; height: 40px; }
  
  /* Footer */
  .footer { padding: 32px 0 16px; }
  .footer-brand .brand-primary { font-size: 1.1rem; }
  .footer-contact-item span { font-size: 0.8rem; }
  .footer h5 { font-size: 0.95rem; margin-bottom: 12px; }
  
  /* CTA Banner */
  .cta-banner { padding: 32px 16px; }
  .cta-banner h2 { font-size: clamp(1.3rem, 4vw, 1.8rem); }
  .cta-banner p { font-size: clamp(0.85rem, 1.8vw, 0.95rem); margin-bottom: 24px; }
  
  /* Floating elements */
  .whatsapp-float { 
    width: 52px; 
    height: 52px; 
    bottom: 16px; 
    right: 16px; 
    font-size: 1.3rem;
  }
  .whatsapp-float::before { inset: -4px; }
  .scroll-top { 
    width: 36px; 
    height: 36px; 
    bottom: 80px; 
    right: 16px; 
    font-size: 0.8rem;
  }
  .chat-widget-btn { 
    width: 52px; 
    height: 52px; 
    bottom: 16px; 
    left: 16px; 
    font-size: 1.2rem;
  }
  
  /* Testimonials */
  .testimonial-card { width: 100% !important; }
  .carousel-controls { flex-wrap: wrap; gap: 12px; }
  
  /* Marquee ticker */
  .ticker-text { font-size: 0.75rem; }
  
  /* Quality badges */
  .quality-badge { 
    font-size: 0.7rem; 
    padding: 6px 10px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}

@media (max-width: 320px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  p { font-size: 0.8rem; }
  
  .btn { padding: 8px 16px; font-size: 0.75rem; }
  .product-card-image { height: 140px; }
  .feature-icon { width: 40px; height: 40px; font-size: 1rem; }
}

/* === DESKTOP STYLES (min-width: 769px) === */
@media (min-width: 769px) {
  .d-flex.gap-16 {
    flex-direction: row;
    gap: 16px;
  }
  
  .d-flex.gap-16 > a {
    flex: 1;
    width: auto;
    padding: 14px 32px;
  }
  
  .btn-lg {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .quality-badges {
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
  }
  
  .quality-badge {
    white-space: nowrap;
    flex-direction: row;
  }
}
