/* ==========================================================================
   IMMUNO MILLET - Premium E-Commerce Design System & Micro-Animations
   Theme: Warm Earthy Luxury, Organic Health, Festive Celebrations
   ========================================================================== */

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

:root {
  /* Brand Palette (Derived from Logo & Organic Nature) */
  --primary-brown: #7C3F00;
  --primary-brown-dark: #562B00;
  --primary-brown-light: #9E5205;
  --amber-gold: #D97706;
  --amber-gold-light: #FBBF24;
  --amber-gold-glow: rgba(217, 119, 6, 0.25);
  --leaf-green: #15803D;
  --leaf-green-light: #DCFCE7;
  --leaf-green-hover: #166534;
  
  --bg-cream: #FFFFFF;
  --bg-cream-pure: #FFFFFF;
  --bg-surface: #FFFFFF;
  --bg-dark-accent: #291D13;

  --text-main: #1C1917;
  --text-muted: #57534E;
  --text-light: #78716C;
  
  --border-light: #E7E5E4;
  --border-gold: #F59E0B;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.09);
  --shadow-glow: 0 0 30px rgba(217, 119, 6, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

html, body {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: #FFFFFF !important;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  min-height: 100vh;
  overflow-x: clip;
  background-color: #FFFFFF !important;
  padding-top: 140px !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font-family: inherit;
}

/* Animations */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(217, 119, 6, 0.2); }
  50% { box-shadow: 0 0 35px rgba(217, 119, 6, 0.5); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes modalPop {
  0% { opacity: 0; transform: scale(0.92) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideInRight {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}

@keyframes badgeBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.animate-float { animation: floatSlow 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }

/* 1st Top Panel Utility Bar Layout */
.top-utility-bar {
  background: linear-gradient(90deg, #FEF3C7 0%, #FDE68A 50%, #FEF3C7 100%);
  border-bottom: 1px solid #FCD34D;
  padding: 6px 24px;
  position: relative;
  z-index: 120;
}
.top-utility-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-announcement-text {
  color: #78350F;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-announcement-text span.code-tag {
  background: #D97706;
  color: #FFF;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.75rem;
}

.top-utility-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Top Search Form */
.top-search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #F59E0B;
  border-radius: 20px;
  padding: 3px 12px 3px 30px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}
.top-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #B45309;
}
.top-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.84rem;
  font-weight: 500;
  color: #27201A;
  width: 320px;
  padding: 4px 0;
  transition: width 0.3s ease;
}
.top-search-input:focus {
  width: 420px;
}
.top-search-input::placeholder {
  color: #8C7A6B;
}

/* Top Cart Button (Simple Unboxed Icon) */
.top-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 4px 6px;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease;
  position: relative;
}
.top-cart-btn:hover {
  transform: scale(1.12);
}

/* User Account Menu Dropdown */
.top-user-dropdown-wrapper {
  position: relative;
}
.top-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #D97706;
  color: #78350F;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.top-user-btn:hover {
  background: #FEF3C7;
}

.top-user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  width: 200px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1.5px solid #E8E2D5;
  box-shadow: 0 12px 30px rgba(124, 63, 0, 0.15);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 200;
}
.top-user-dropdown-wrapper:hover .top-user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.user-info-header {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #E5D5C0;
}
.user-info-header strong {
  display: block;
  font-size: 0.85rem;
  color: #27201A;
}
.user-info-header small {
  color: #8C7A6B;
  font-size: 0.75rem;
}
.user-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.user-menu-list a {
  font-size: 0.84rem;
  font-weight: 600;
  color: #52473C;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: block;
  transition: background 0.2s ease, color 0.2s ease;
}
.user-menu-list a:hover {
  background: #FEF3C7;
  color: #78350F;
}

/* Header Sticky Wrapper (Fixed Top Utility Bar & Navbar Together) */
.header-sticky-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 8px 28px rgba(124, 63, 0, 0.1);
  background: #FFFFFF;
}

/* Header & Glassmorphism Navbar */
.navbar-container {
  position: relative;
  z-index: 90;
  background: rgba(255, 253, 248, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #E8E2D5;
  transition: all 0.3s ease;
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo-link img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.brand-logo-link:hover img {
  transform: scale(1.05);
}

.nav-menu-links {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #443B33;
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
}
.nav-link::after {
  display: none;
}
.nav-link:hover {
  background: #FEF3C7;
  color: #78350F;
  transform: translateY(-1px);
}
.nav-link.active {
  background: linear-gradient(135deg, #78350F 0%, #B45309 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(120, 53, 15, 0.25);
}
.nav-link.festive-highlight {
  background: linear-gradient(135deg, #FEF9C3 0%, #FDE68A 100%);
  color: #B45309 !important;
  border: 1.5px solid #F59E0B;
  font-weight: 700;
}
.nav-link.festive-highlight:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  color: #FFFFFF !important;
  border-color: #B45309;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

/* Panel Card UI System */
.panel-card {
  background: #FFFFFF;
  border: 1px solid #E8E2D5;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(124, 63, 0, 0.04);
  padding: 24px;
  transition: all 0.3s ease;
}
.panel-card:hover {
  box-shadow: 0 10px 28px rgba(124, 63, 0, 0.08);
  border-color: #D97706;
}
.panel-header-light {
  background: linear-gradient(135deg, #FEFCE8 0%, #FFFDF9 100%);
  border-bottom: 1px solid #FEF08A;
  padding: 16px 20px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* HERO SECTION - Light Panel Layout */
.hero-wrapper {
  position: relative;
  background: radial-gradient(circle at 70% 30%, rgba(253, 230, 138, 0.25) 0%, rgba(249, 246, 240, 0) 60%),
              linear-gradient(180deg, #FFFFFF 0%, #FAF6F0 100%);
  padding: 40px 24px 80px 24px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.hero-content {
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #DCFCE7;
  color: #15803D;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid #86EFAC;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: #27201A;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span.highlight {
  color: var(--primary-brown);
  position: relative;
  display: inline-block;
}
.hero-title span.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(251, 191, 36, 0.35);
  border-radius: 4px;
  z-index: -1;
}
.hero-description {
  font-size: 1.15rem;
  color: #52473C;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--primary-brown);
  color: #FFF;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(124, 63, 0, 0.18);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--primary-brown-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(124, 63, 0, 0.28);
}
.btn-secondary {
  background: #FFF;
  color: var(--primary-brown);
  border: 1.5px solid #E8E2D5;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.btn-secondary:hover {
  border-color: var(--primary-brown);
  background: #FEFCE8;
}

.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-visual-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(254, 243, 199, 0.7) 0%, rgba(253, 230, 138, 0.2) 60%, transparent 75%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.hero-main-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(124, 63, 0, 0.14);
  border: 4px solid #FFF;
  width: 100%;
  z-index: 2;
}
.hero-main-img-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-main-img-card:hover img {
  transform: scale(1.03);
}
.floating-feature-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(124, 63, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #27201A;
  z-index: 5;
  border: 1px solid #FCD34D;
}
.floating-badge-1 { top: 16px; right: -12px; }
.floating-badge-2 { bottom: 20px; left: -12px; }

/* FESTIVE MAHOTSAV SECTION - Clean Seamless Banner Layout */
.festive-banner-box {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: #451A03;
  position: relative;
  overflow: visible;
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 36px !important;
}
.festive-banner-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 60%);
  pointer-events: none;
}
.festive-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.festive-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D97706;
  color: #FFF;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
}
.festive-heading {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 14px;
  color: #78350F;
}
.festive-text {
  font-size: 1.05rem;
  color: #582C0C;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Festive Countdown Timer Panels */
.countdown-grid {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.timer-block {
  background: #FFFFFF;
  border: 1.5px solid #FCD34D;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  text-align: center;
  min-width: 76px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
}
.timer-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #92400E;
  line-height: 1;
}
.timer-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #B45309;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* CATEGORY CARDS GRID PANELS */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.category-card {
  background: #FFFFFF;
  border: 1px solid #E8E2D5;
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: #D97706;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.12);
  background: #FFFDF9;
}
.category-icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px auto;
  border-radius: 50%;
  background: #FEF3C7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}
.category-card:hover .category-icon-box {
  transform: scale(1.1) rotate(4deg);
  background: #FDE68A;
}
.category-name {
  font-weight: 700;
  font-size: 1rem;
  color: #27201A;
  margin-bottom: 4px;
}
.category-count {
  font-size: 0.8rem;
  color: #665A4F;
  font-weight: 600;
}

/* PRODUCT CARDS & GRID */
.product-tabs-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  background: #FFF;
  border: 1.5px solid #E8E2D5;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: #665A4F;
  cursor: pointer;
  transition: all 0.25s ease;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--primary-brown);
  color: #FFF;
  border-color: var(--primary-brown);
  box-shadow: 0 4px 12px rgba(124, 63, 0, 0.15);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

#catalogProductGrid {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid #E8E2D5;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(124, 63, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(124, 63, 0, 0.08);
  border-color: #D97706;
}

.product-badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FCD34D;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  z-index: 3;
  max-width: calc(100% - 20px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-badge-immunity {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  z-index: 3;
  max-width: calc(100% - 20px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-image-area {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #FAF6F0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-area img {
  transform: scale(1.06);
}

.quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .quick-view-overlay {
  opacity: 1;
}
.btn-quick-view {
  background: var(--primary-brown);
  color: #FFF;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(124, 63, 0, 0.2);
}
.product-card:hover .btn-quick-view {
  transform: translateY(0);
}
.btn-quick-view:hover {
  background: var(--primary-brown-dark);
}

.product-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-category-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #9E5205;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.product-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #27201A;
  margin-bottom: 6px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: #D97706;
  margin-bottom: 8px;
}
.product-rating span.count {
  color: #665A4F;
  font-size: 0.72rem;
  margin-left: 4px;
}

.product-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #E8E2D5;
}
.price-container {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-current {
  font-size: 1.05rem;
  font-weight: 800;
  color: #27201A;
}
.price-original {
  font-size: 0.78rem;
  color: #A39688;
  text-decoration: line-through;
}

.btn-add-cart {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FCD34D;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-add-cart:hover {
  background: var(--primary-brown);
  color: #FFF;
  border-color: var(--primary-brown);
  transform: scale(1.1);
}

/* IMMUNITY BENEFIT INFOGRAPHIC SECTION - Light Sage Panel */
.immunity-box {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
  border-radius: var(--radius-lg);
  border: 1.5px solid #BBF7D0;
  padding: 48px;
  box-shadow: 0 8px 30px rgba(22, 101, 52, 0.05);
}
.immunity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.benefit-card {
  background: #FFFFFF;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid #E8E2D5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  transition: transform 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: #15803D;
  box-shadow: 0 8px 20px rgba(21, 128, 61, 0.1);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  background: #DCFCE7;
  color: #15803D;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #27201A;
  margin-bottom: 8px;
}
.benefit-desc {
  font-size: 0.9rem;
  color: #665A4F;
}

/* CART SLIDE-OVER DRAWER */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(39, 32, 26, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9998 !important;
  display: none;
}
.cart-drawer-overlay.active {
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #FFF;
  z-index: 9999 !important;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  padding: 20px 24px;
  background: #FAF6F0;
  border-bottom: 1px solid #E8E2D5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: #27201A;
}
.btn-close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #665A4F;
}

.cart-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #E8E2D5;
}
.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #FAF6F0;
  border: 1px solid #E8E2D5;
}
.cart-item-details {
  flex-grow: 1;
}
.cart-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #27201A;
  margin-bottom: 4px;
}
.cart-item-price {
  font-weight: 800;
  color: var(--primary-brown);
  font-size: 0.95rem;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.qty-btn {
  background: #FAF6F0;
  border: 1px solid #E8E2D5;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid #E8E2D5;
  background: #FAF6F0;
}
.coupon-box {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.coupon-input {
  flex-grow: 1;
  border: 1px solid #E8E2D5;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.88rem;
  background: #FFF;
}
.btn-apply-coupon {
  background: var(--primary-brown);
  color: #FFF;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.summary-row.total {
  font-weight: 800;
  font-size: 1.2rem;
  color: #27201A;
  padding-top: 12px;
  border-top: 1px dashed #E8E2D5;
}

.btn-checkout {
  width: 100%;
  background: var(--primary-brown);
  color: #FFF;
  border: none;
  padding: 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s ease;
  display: block;
  text-align: center;
  box-shadow: 0 4px 12px rgba(124, 63, 0, 0.18);
}
.btn-checkout:hover {
  background: var(--primary-brown-dark);
}

/* FOOTER - Light Panel matching Top Panel */
.footer-container {
  background: linear-gradient(180deg, #FEF3C7 0%, #FDE68A 100%);
  color: #78350F;
  padding: 60px 24px 30px 24px;
  margin-top: 80px;
  border-top: 2px solid #FCD34D;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #451A03;
  margin-bottom: 14px;
}
.footer-text {
  font-size: 0.9rem;
  color: #78350F;
  line-height: 1.7;
}
.footer-column h4 {
  color: #451A03;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #78350F;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #B45309;
  text-decoration: underline;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #FCD34D;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #78350F;
  font-weight: 600;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
}
.toast-msg {
  background: #FFF;
  color: #27201A;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  animation: modalPop 0.3s ease;
  border: 1.5px solid #F59E0B;
}

/* Free Shipping Meter inside Cart Drawer */
.free-shipping-card {
  background: #F0FDF4;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid #86EFAC;
  margin-bottom: 16px;
}
.free-shipping-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #14532D;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}
.free-shipping-progress {
  height: 8px;
  background: #DCFCE7;
  border-radius: 4px;
  overflow: hidden;
}
.free-shipping-fill {
  height: 100%;
  background: linear-gradient(90deg, #D97706 0%, #15803D 100%);
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* Mobile Hamburger Menu Button & Drawer */
.hamburger-btn {
  display: none;
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  color: #78350F;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hamburger-btn:hover {
  background: #FDE68A;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(39, 32, 26, 0.4);
  backdrop-filter: blur(4px);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 290px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 260;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}
.mobile-menu-drawer.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #E8E2D5;
  margin-bottom: 24px;
}
.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-links a {
  font-size: 1.05rem;
  font-weight: 700;
  color: #27201A;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.mobile-menu-links a:hover, .mobile-menu-links a.active {
  background: #FEF3C7;
  color: #78350F;
}

/* Luxuriously Styled Header Controls: Gradient Search Bar & Cart Button */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFFDF7 0%, #F5EFE6 100%);
  border: 1.5px solid #E5D5C0;
  border-radius: var(--radius-full);
  padding: 4px 16px 4px 38px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
}

.search-input-wrapper:focus-within {
  border-color: #D97706;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15), 0 4px 12px rgba(124, 63, 0, 0.06);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #B45309;
  pointer-events: none;
  transition: color 0.2s ease;
}

.search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 500;
  color: #27201A;
  width: 190px;
  padding: 6px 0;
  transition: width 0.3s ease;
}

.search-input::placeholder {
  color: #8C7A6B;
  font-weight: 400;
}

.search-input:focus {
  width: 230px;
}

/* Gradient-Enhanced Luxury Cart Button */
.cart-button-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #78350F 0%, #B45309 50%, #D97706 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.28);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.cart-button-trigger:hover {
  background: linear-gradient(135deg, #582C0C 0%, #92400E 50%, #B45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.38);
}

.cart-button-trigger svg {
  color: #FDE68A;
}

.top-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #FFFDF5;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

/* Mega Menu Dropdown Multi-List View */
.nav-dropdown-wrapper {
  position: relative;
}
.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 720px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1.5px solid #E8E2D5;
  box-shadow: 0 16px 40px rgba(124, 63, 0, 0.12);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 150;
}
.nav-dropdown-wrapper:hover .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mega-col-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #27201A;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #FEF3C7;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mega-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mega-list a {
  font-size: 0.85rem;
  color: #665A4F;
  font-weight: 600;
  transition: all 0.2s ease;
  display: block;
}
.mega-list a:hover {
  color: #D97706;
  transform: translateX(4px);
}
.mega-col-highlight {
  background: #FEF3C7;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #FCD34D;
}

/* Trust Avatar Stack in Hero */
.avatar-stack-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  background: #FFF;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  border: 1px solid #E8E2D5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  width: fit-content;
}
.avatar-stack {
  display: flex;
}
.avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #FFF;
  margin-left: -10px;
  object-fit: cover;
}
.avatar-img:first-child {
  margin-left: 0;
}

/* Interactive Nutrient Comparison Chart Panel */
.nutrient-comparison-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid #E8E2D5;
  padding: 36px;
  box-shadow: 0 6px 24px rgba(124, 63, 0, 0.04);
}
.comparison-row {
  margin-bottom: 20px;
}
.comparison-row:last-child {
  margin-bottom: 0;
}
.comparison-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.comparison-bar-track {
  height: 12px;
  background: #EFE7DC;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.comparison-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1s ease-in-out;
}
.fill-millet { background: linear-gradient(90deg, #15803D 0%, #22C55E 100%); }
.fill-rice { background: linear-gradient(90deg, #EF4444 0%, #F87171 100%); }
.fill-wheat { background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%); }

/* Copy Coupon Code Button */
.btn-copy-code {
  background: #FFFFFF;
  color: #92400E;
  border: 1.5px dashed #F59E0B;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
}
.btn-copy-code:hover {
  background: #F59E0B;
  color: #FFF;
}

/* Testimonials Grid Panels */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid #E8E2D5;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #D97706;
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.08);
}

/* FAQ Accordion Panels */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E8E2D5;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.faq-item.active {
  border-color: #D97706;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #27201A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-answer {
  padding: 0 24px 20px 24px;
  color: #665A4F;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* Health Digest Newsletter Light Sage Panel */
.newsletter-card {
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 50%, #FEF3C7 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #14532D;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #86EFAC;
  box-shadow: 0 10px 30px rgba(22, 101, 52, 0.08);
}
.newsletter-form {
  max-width: 480px;
  margin: 24px auto 0 auto;
  display: flex;
  gap: 12px;
}

/* Quick View Modal Dialog Overlay */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39, 32, 26, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 20px;
}
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-container {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 0 24px 60px rgba(39, 32, 26, 0.25);
  border: 1.5px solid #E8E2D5;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.modal-backdrop.active .modal-container {
  transform: translateY(0) scale(1);
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #F4EFE6;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: #52473C;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}
.modal-close-btn:hover {
  background: #E8E2D5;
  color: #27201A;
}
.modal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
}
.modal-img-col img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid #E8E2D5;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hamburger-btn { display: flex; align-items: center; justify-content: center; }
  .nav-menu-links { display: none; }
  .search-input-wrapper { width: 160px; }
  .search-input:focus { width: 180px; }
  .hero-inner, .festive-content-grid, .modal-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.5rem; }
  .floating-badge-1, .floating-badge-2 { display: none; }
  .festive-banner-box { padding: 32px 24px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 1100px) {
  #catalogProductGrid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .top-announcement-text { display: none !important; }
  .top-utility-bar { padding: 6px 10px; width: 100%; }
  .top-utility-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
  .top-utility-controls { width: 100%; display: flex; align-items: center; gap: 8px; }
  
  /* Full Width Search Bar from start to Cart */
  .top-search-form { 
    flex: 1 1 auto !important; 
    width: 100% !important; 
    max-width: none !important; 
    padding: 4px 10px 4px 28px !important; 
  }
  .top-search-input { 
    width: 100% !important; 
    max-width: 100% !important; 
    font-size: 0.78rem; 
  }
  .top-search-input:focus { 
    width: 100% !important; 
    max-width: 100% !important; 
  }
  .top-search-icon { 
    left: 8px; 
    width: 13px; 
    height: 13px; 
  }

  /* Cart Button positioned just left of Account icon */
  .top-cart-btn { 
    flex-shrink: 0; 
    padding: 2px 4px; 
    display: flex; 
    align-items: center; 
  }

  /* Account Button - Icon Only */
  .top-user-btn { 
    width: 32px; 
    height: 32px; 
    padding: 0 !important; 
    border-radius: 50%; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
  }
  .top-user-btn span,
  .top-user-btn .feather-chevron-down,
  .top-user-btn i[data-feather="chevron-down"] { 
    display: none !important; 
  }
  .top-user-btn .feather-user,
  .top-user-btn i[data-feather="user"] { 
    width: 16px !important; 
    height: 16px !important; 
    margin: 0 !important; 
  }

  .hero-trust-perks { display: none !important; }
  .nav-actions .search-input-wrapper { display: none; }
  #catalogLayout { grid-template-columns: 1fr !important; gap: 16px !important; }
  .newsletter-form { flex-direction: column; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Mobile Filter Icon Button (Right of Sort) */
  .desktop-filter-header { display: none !important; }
  .mobile-filter-icon-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: #FEF3C7;
    border: 1.5px solid #FCD34D;
    color: #78350F;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.82rem;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(124, 63, 0, 0.06);
  }
  .sticky-catalog-sidebar {
    padding: 0 !important;
    margin-bottom: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  .filter-body-container {
    display: none !important;
    background: #FFFDF8;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1.5px solid #E8E2D5;
    box-shadow: 0 4px 16px rgba(124, 63, 0, 0.08);
    margin-bottom: 16px;
  }
  .filter-body-container.open {
    display: block !important;
  }
}

/* Base / Desktop Filter Sidebar Overrides */
.mobile-filter-icon-btn {
  display: none;
}
.filter-body-container {
  display: block;
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: repeat(2, 1fr) !important; gap: 24px 16px !important; }
  .footer-inner > div:first-child { grid-column: 1 / -1 !important; }
  .hero-title { font-size: 2.0rem; }
  .section-title { font-size: 1.45rem; word-break: break-word; }
  .section-subtitle { font-size: 0.85rem; }
  .top-announcement-bar { font-size: 0.78rem; padding: 6px 10px; }
  .countdown-grid { gap: 8px; }
  .timer-block { padding: 8px 10px; min-width: 54px; }
  .timer-number { font-size: 1.3rem; }
  
  /* Mobile 2-Column Product Grid */
  .product-grid, #catalogProductGrid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .product-card {
    border-radius: var(--radius-sm);
  }
  .product-body {
    padding: 10px 8px;
  }
  .product-category-tag {
    font-size: 0.68rem;
    margin-bottom: 4px;
  }
  .product-title {
    font-size: 0.86rem;
    min-height: 2.4rem;
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .product-rating {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }
  .product-rating span.count {
    display: none;
  }
  .product-footer-row {
    padding-top: 8px;
  }
  .price-current {
    font-size: 1.0rem;
  }
  .price-original {
    font-size: 0.78rem;
  }
  .btn-add-cart {
    width: 32px;
    height: 32px;
  }

  /* Mobile 2x2 Category Grid & Container Spacing */
  .category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .category-card {
    padding: 14px 8px;
  }
  .category-icon-box {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  .category-name {
    font-size: 0.85rem;
  }
  .category-count {
    font-size: 0.72rem;
  }
  .section-container,
  .category-card-block {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

/* SINGLE PRODUCT DETAIL PAGE (Multi-Image Gallery & Mouse Zoom) */
.product-detail-wrapper {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 36px;
  align-items: start;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid #E8E2D5;
  box-shadow: 0 6px 24px rgba(124, 63, 0, 0.04);
}

/* Mouse Hover Zoom Stage */
.product-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main-zoom-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  border: 1.5px solid #E8E2D5;
  overflow: hidden;
  background: #FAF6F0;
  cursor: crosshair;
}
.main-zoom-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.15s ease-out;
  transform-origin: center center;
}
.zoom-hint-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  color: #78350F;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  border: 1px solid #FCD34D;
}

/* Multi-Image Thumbnails */
.gallery-thumbs-row {
  display: flex;
  gap: 12px;
}
.thumb-box {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  border: 2px solid #E8E2D5;
  overflow: hidden;
  cursor: pointer;
  background: #FAF6F0;
  transition: all 0.25s ease;
}
.thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-box.active, .thumb-box:hover {
  border-color: #D97706;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

/* Quantity Selector */
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #E8E2D5;
  border-radius: 30px;
  overflow: hidden;
  background: #FAF6F0;
}
.qty-selector button {
  background: transparent;
  border: none;
  width: 38px;
  height: 44px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #78350F;
  cursor: pointer;
  transition: background 0.2s ease;
}
.qty-selector button:hover {
  background: #FEF3C7;
}
.qty-selector input {
  width: 44px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  color: #27201A;
  outline: none;
}

@media (max-width: 992px) {
  .product-detail-wrapper {
    grid-template-columns: 1fr;
  }
}

/* CATEGORY FULL CARD BLOCK SYSTEM - Seamless Transparent Borders & Spacious Page Margins */
.category-card-block {
  background: #FFFFFF;
  border: 1.5px solid transparent !important;
  border-radius: 0;
  padding: 24px 36px !important;
  margin-bottom: 20px !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
  position: relative;
}
.category-card-block:hover {
  box-shadow: none !important;
  border-color: transparent !important;
}

/* Category Accent Left Borders Removed - Transparent Borders on All Sides */
.category-card-block[data-theme="raw-millets"],
.category-card-block[data-theme="millet-flours"],
.category-card-block[data-theme="snacks"],
.category-card-block[data-theme="festive"] {
  border: 1.5px solid transparent !important;
  box-shadow: none !important;
  padding-left: 36px !important;
  padding-right: 36px !important;
}
.category-card-block[data-theme="festive"] {
  background: #FFFFFF;
}

/* Internal Category Banner inside Card Block */
.category-header-banner,
.category-card-block .category-header-banner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 2px dashed #E7E5E4 !important;
  border-radius: 0 !important;
  padding: 0 0 20px 0 !important;
  margin-top: 0 !important;
  margin-bottom: 24px !important;
  box-shadow: none !important;
  scroll-margin-top: 130px !important;
}

/* Global Section Container Page Margins & Scroll Alignment */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 36px !important;
  padding-right: 36px !important;
}

/* Inner Page Light Banner Header (Products, Checkout, Details) */
.inner-page-header {
  background: linear-gradient(135deg, #FFFDF5 0%, #FEF3C7 50%, #FFFBEB 100%);
  border: 1.5px solid #FDE68A;
  border-radius: 18px;
  padding: 24px 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.08);
}

/* Sticky Filter Sidebar on Product Catalog */
.sticky-catalog-sidebar {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 155px !important;
  align-self: start !important;
  z-index: 95;
}

@media (min-width: 993px) {
  .sticky-catalog-sidebar {
    max-height: none !important;
    overflow: visible !important;
  }
}

.sticky-catalog-sidebar::-webkit-scrollbar {
  width: 5px;
}

.sticky-catalog-sidebar::-webkit-scrollbar-track {
  background: #FAF6F0;
  border-radius: 10px;
}

.sticky-catalog-sidebar::-webkit-scrollbar-thumb {
  background: #D97706;
  border-radius: 10px;
}

.section-container,
.category-header-banner,
.category-card-block,
.section-header,
[id^="category-"],
#festive-mahotsav,
#category-raw-millets,
#category-millet-flours,
#category-snacks {
  scroll-margin-top: 130px !important;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.section-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: #27201A;
  margin: 4px 0 6px 0;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.section-subtitle {
  font-size: 0.92rem;
  color: #665A4F;
  margin: 0;
  line-height: 1.45;
}
.btn-category-view-all {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px;
  margin-left: auto !important;
  align-self: center !important;
  background: #FFFFFF;
  color: #78350F;
  border: 1.5px solid #F59E0B;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.12);
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
.btn-category-view-all:hover {
  background: linear-gradient(135deg, #78350F, #B45309);
  color: #FFFFFF;
  border-color: #78350F;
  box-shadow: 0 4px 14px rgba(120, 53, 15, 0.25);
  transform: translateX(3px);
}

/* Floating Sticky Cart Button Removed Completely */
#floatingCartBtn,
.floating-cart-btn,
.floating-cart-wrapper {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* HERO AUTO-SCROLL CAROUSEL STYLES */
.hero-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(120, 53, 15, 0.15);
  background: #FFFFFF;
  width: 100%;
}
.hero-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.hero-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: scale(1.05);
}
.hero-carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-slide-caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(41, 29, 19, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.hero-carousel-dots {
  position: absolute;
  bottom: 16px;
  right: 18px;
  display: flex;
  gap: 6px;
  z-index: 10;
}
.hero-carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-carousel-dots .dot.active {
  width: 22px;
  border-radius: 10px;
  background: #F59E0B;
}

/* Horizontal Scroll Slider for Related Products ("You May Also Like") */
.related-products-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 16px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #D97706 #FDE68A;
}

.related-products-slider::-webkit-scrollbar {
  height: 6px;
}
.related-products-slider::-webkit-scrollbar-track {
  background: #FAF6F0;
  border-radius: 10px;
}
.related-products-slider::-webkit-scrollbar-thumb {
  background: #D97706;
  border-radius: 10px;
}

.related-product-card {
  flex: 0 0 220px;
  min-width: 220px;
  scroll-snap-align: start;
}

@media (max-width: 600px) {
  .related-products-slider {
    gap: 12px;
    padding-bottom: 12px;
  }
  .related-product-card {
    flex: 0 0 165px;
    min-width: 165px;
  }
}

.slider-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFF;
  border: 1.5px solid #FCD34D;
  color: #78350F;
  font-size: 1.3rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(124, 63, 0, 0.08);
  transition: all 0.2s ease;
  line-height: 1;
}
.slider-arrow-btn:hover {
  background: #78350F;
  color: #FFF;
  border-color: #78350F;
  transform: scale(1.05);
}


