html {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
  position: relative;
}

/* ── Ultra-Sleek Modern Custom Scrollbar (Single Global Scrollbar) ── */
/* Firefox */
*, html, body {
  scrollbar-width: thin !important;
  scrollbar-color: rgba(46, 89, 54, 0.42) transparent !important;
}

[data-theme="dark"] *,
[data-theme="dark"] html,
[data-theme="dark"] body,
body.dark-mode *,
body.dark-mode {
  scrollbar-color: rgba(74, 222, 128, 0.45) transparent !important;
}

/* Chrome, Edge, Safari, Brave, Opera */
::-webkit-scrollbar,
*::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 6px !important;
  height: 6px !important;
  background: transparent !important;
}

::-webkit-scrollbar-track,
*::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: transparent !important;
}

::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: rgba(46, 89, 54, 0.38) !important;
  border-radius: 9999px !important;
  border: 1px solid transparent !important;
  background-clip: padding-box !important;
  transition: background-color 0.2s ease !important;
}

::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: rgba(46, 89, 54, 0.8) !important;
}

::-webkit-scrollbar-thumb:active,
*::-webkit-scrollbar-thumb:active,
html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
  background: #2E5936 !important;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb,
[data-theme="dark"] *::-webkit-scrollbar-thumb,
body.dark-mode ::-webkit-scrollbar-thumb,
body.dark-mode *::-webkit-scrollbar-thumb {
  background: rgba(74, 222, 128, 0.35) !important;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover,
[data-theme="dark"] *::-webkit-scrollbar-thumb:hover,
body.dark-mode ::-webkit-scrollbar-thumb:hover,
body.dark-mode *::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 222, 128, 0.8) !important;
}

@media (max-width: 768px) {
  *, html, body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  ::-webkit-scrollbar,
  *::-webkit-scrollbar,
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
}

* {
  --primary-color: #3F5810;     /* Forest Green */
  --primary-light: #809521;     /* Olive Green */
  --secondary-color: #809521;   /* Olive Green */
  --secondary-hover: #5d6d13;   /* Slightly darker Olive Green */
  --accent-color: #AA6819;       /* Harvest Brown */

  /* Theme Tokens */
  --bg-primary: #FDFDF8;        /* Off White */
  --bg-secondary: #EFE7C1;      /* Warm Cream */
  --bg-card: #FFFFFF;
  --text-primary: #151303;      /* Rich Black */
  --text-secondary: #52230B;    /* Dark Cocoa */
  --border-color: #ADAD69;      /* Sage Olive */
  --button-bg: #52230B;         /* Dark Cocoa */
  --button-text: #FDFDF8;       /* Off White */

  /* Legacy and Auxiliary Compat */
  --bg-light: var(--bg-primary);
  --bg-white: #FFFFFF;
  --text-dark: var(--text-primary);
  --text-grey: var(--text-secondary);
  --bg-body: var(--bg-primary);
  --border: var(--border-color);
  --text-main: var(--text-primary);
  --text-muted: var(--text-secondary);
  --primary: var(--primary-color);
  --secondary: var(--secondary-color);

  /* Font Families — Unified Design System */
  --font-main: var(--font-sans);
  --font-body: var(--font-sans);
  --font-heading: var(--font-display);
  --font-display: var(--font-display);

  /* Spacing - 8px Grid System */
  --space-unit: 8px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --container-padding: 20px;

  /* Border Radius - Premium Uniformity */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  /* Redesigned for premium feel */
  --radius-lg: 16px;
  --radius-card: 12px;
  --radius-btn: 40px;
  /* Pill style buttons */

  /* Shadows - Ultra Soft & Premium */
  --shadow-subtle: 0 2px 10px rgba(90, 30, 6, 0.04);
  --shadow-sm: 0 4px 12px rgba(90, 30, 6, 0.06);
  --shadow-md: 0 10px 30px rgba(90, 30, 6, 0.08);
  --shadow-lg: 0 20px 40px rgba(90, 30, 6, 0.12);

  /* Shared Transitions */
  --transition-speed: 0.3s;
  --transition-premium: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- Category Grid Premium --- */
.category-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.category-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s var(--transition-premium);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 1;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--transition-premium);
  z-index: -1;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover .cat-name,
.category-card:hover .cat-icon {
  color: white !important;
}

.cat-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: color 0.4s;
}


/* Premium Button Gradients */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(90, 30, 6, 0.2);
  transition: all 0.3s var(--transition-premium) !important;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(90, 30, 6, 0.3);
  filter: brightness(1.1);
}

/* Micro-animations */
.premium-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpPremium 0.8s var(--transition-premium) forwards;
}

@keyframes fadeInUpPremium {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  width: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Dark Mode Variables */
body.dark-mode {
  --bg-primary: #121212;
  --bg-secondary: #1e1e1e;
  --bg-card: #1f1f1f;
  --text-primary: #ffffff;
  --text-secondary: #bbbbbb;
  --border-color: #333333;
  --button-bg: #832C0A;
  --button-text: #ffffff;

  /* Legacy and Auxiliary Compat */
  --bg-light: var(--bg-primary);
  --bg-white: #1a1a1a;
  --text-dark: var(--text-primary);
  --text-grey: var(--text-secondary);
  --bg-body: var(--bg-primary);
  --border: var(--border-color);
  --text-main: var(--text-primary);
  --text-muted: var(--text-secondary);
  --primary: var(--primary-color);
  --secondary: var(--secondary-color);

  --bg-dark: #121212;
  --bg-card-dark: #1E1E1E;
  --text-light: #E0E0E0;
  --border-dark: #333333;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  padding-bottom: 0px;
  transition: background-color var(--transition-speed), color var(--transition-speed);
}



body.dark-mode .hero {
  background: var(--bg-card-dark);
}

body.dark-mode header {
  background: rgba(18, 18, 18, 0.95);
  border-bottom: 1px solid var(--border-dark);
}

body.dark-mode .nav-link {
  color: var(--text-light);
}

body.dark-mode .nav-link:hover {
  color: var(--secondary-color);
}

body.dark-mode .dropdown-content {
  background: var(--bg-card-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body.dark-mode .dropdown-content a {
  color: var(--text-light);
}

body.dark-mode .dropdown-content a:hover {
  background: #2a2a2a;
  color: var(--secondary-color);
}

body.dark-mode .product-card,
body.dark-mode .feature-box,
body.dark-mode .info-table,
body.dark-mode .badge-card,
body.dark-mode .feature-card,
body.dark-mode .blog-card {
  background: var(--bg-card-dark);
  border-color: var(--border-dark);
  color: var(--text-light);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

body.dark-mode .product-name {
  color: var(--text-light);
}

body.dark-mode .product-img {
  background: #2a2a2a;
}

body.dark-mode .section-subtitle,
body.dark-mode .product-weight,
body.dark-mode p {
  color: #bbb;
}

body.dark-mode .cart-icon {
  background: var(--bg-card-dark);
  color: var(--text-light);
}

/* Logo updates */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
}

.logo span:first-child {
  font-size: 1.5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-size: 1.75rem;
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1.1;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.brand-v {
  color: var(--primary-color);
  font-weight: 900;
}

.brand-m {
  background: linear-gradient(135deg, #d97706, #f59e0b, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #f59e0b;
  font-weight: 900;
}

.brand-subtitle {
  font-size: 0.68rem;
  color: var(--text-grey);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
  display: block;
  white-space: nowrap;
}


.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-grey);
  font-family: var(--font-main);
  letter-spacing: 0.5px;
}

body.dark-mode .logo-subtitle {
  color: #bbb;
}

/* Visibility Utilities */
.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline-block !important;
  }

  .desktop-only {
    display: none !important;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Scroll Reveal Class (to be added by JS intersection observer or just simple animation) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

h1,
h2,
h3,
h4,
.logo,
.brand-title {
  font-family: var(--font-heading);
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* --- Layout --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 60px 0;
}

.section-padding {
  padding: 60px 0;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-600 {
  max-width: 600px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* --- Header & Navigation --- */
#header-container {
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 1000000 !important;
  width: 100% !important;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

header {
  background: transparent;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease,
              border 0.35s ease,
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.35s ease;
}

.nav-container {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
}

.brand-subtitle {
  transition: opacity 0.25s ease, max-height 0.3s ease, transform 0.25s ease;
  max-height: 20px;
  overflow: hidden;
}

/* ════════════════════════════════════════════════════════════════
   DESKTOP / LAPTOP FLOATING NAVBAR ON SCROLL (Smooth Transition)
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {
  #header-spacer {
    display: block !important;
    width: 100% !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }

  #header-container {
    position: fixed !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    background: #FFFFFF !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: none !important;
    z-index: 10000 !important;
    overflow: visible !important;
    transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                max-width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                border-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.35s ease !important;
  }

  [data-theme="dark"] #header-container {
    background: rgba(10, 26, 15, 0.98) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  #header-container.is-floating {
    top: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(1320px, calc(100% - 32px)) !important;
    max-width: 1320px !important;
    border-radius: 9999px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(46, 89, 54, 0.2) !important;
    box-shadow: 0 14px 36px -6px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(46, 89, 54, 0.06) !important;
    z-index: 1000000 !important;
  }


  .top-bar {
    width: 100% !important;
    max-height: 40px !important;
    overflow: hidden !important;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.25s ease,
                padding 0.35s ease !important;
  }

  #header-container.is-floating .top-bar {
    max-height: 0 !important;
    opacity: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 768px) {
  #header-spacer {
    display: block !important;
    width: 100% !important;
    pointer-events: none !important;
    visibility: hidden !important;
    height: 62px !important;
  }

  #header-container {
    position: fixed !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  transform: scaleX(1);
  transition: transform 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Header Actions (Right Side) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Account Button Styling */
.account-btn {
  background: var(--button-bg);
  color: var(--button-text) !important;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.account-btn svg,
.account-btn i,
.account-btn .feather {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 2px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.account-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Language Toggle & Unified Dropdown System */
.header-lang-container {
  display: inline-flex !important;
  align-items: center !important;
  position: relative !important;
  z-index: 100020 !important;
  flex-shrink: 0 !important;
}

.header-lang-pill-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 0 14px !important;
  height: 38px !important;
  border-radius: 9999px !important;
  border: 1.5px solid #CBD5E1 !important;
  background: #FFFFFF !important;
  color: #1E293B !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  user-select: none !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

.header-lang-pill-btn:hover {
  border-color: #166534 !important;
  background: #F8FAF8 !important;
  box-shadow: 0 4px 10px rgba(22, 101, 52, 0.08) !important;
}

.header-lang-globe {
  color: #143d28 !important;
  stroke: #143d28 !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s ease !important;
}

.header-lang-pill-btn:hover .header-lang-globe {
  transform: rotate(15deg) !important;
}

.header-lang-name {
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  color: #1E293B !important;
  font-family: 'Outfit', sans-serif !important;
  letter-spacing: 0.1px !important;
}

.header-lang-chevron {
  color: #143d28 !important;
  stroke: #143d28 !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.header-lang-container.open .header-lang-chevron,
.header-lang-container.is-hovered .header-lang-chevron {
  transform: rotate(180deg) !important;
}

/* Floating Language Dropdown Menu */
.header-lang-dropdown {
  display: none;
  position: absolute !important;
  top: calc(100% + 4px) !important;
  right: 0 !important;
  min-width: 165px !important;
  background: #FFFFFF !important;
  border-radius: 14px !important;
  box-shadow: 0 14px 35px rgba(20, 61, 40, 0.16), 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  border: 1.5px solid #E2E8F0 !important;
  padding: 6px !important;
  z-index: 100050 !important;
  box-sizing: border-box !important;
}

/* Hover bridge pseudo-element to prevent hover disconnect */
.header-lang-dropdown::before {
  content: '' !important;
  position: absolute !important;
  top: -14px !important;
  left: -10px !important;
  right: -10px !important;
  height: 16px !important;
  background: transparent !important;
  display: block !important;
  pointer-events: auto !important;
  z-index: 100 !important;
}

.header-lang-container.open .header-lang-dropdown,
.header-lang-container.is-hovered .header-lang-dropdown {
  display: block !important;
  animation: headerLangFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@media (min-width: 769px) {
  .header-lang-container:hover .header-lang-dropdown {
    display: block !important;
    animation: headerLangFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  .header-lang-container:hover .header-lang-chevron {
    transform: rotate(180deg) !important;
  }
}

@keyframes headerLangFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.header-lang-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 9px 12px !important;
  border-radius: 8px !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  color: #334155 !important;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease !important;
  cursor: pointer !important;
}

.header-lang-item:hover,
.header-lang-item.active {
  background: #EAF3ED !important;
  color: #143d28 !important;
}

.header-lang-check {
  color: #166534 !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
}

/* Legacy button compatibility */
.lang-toggle {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-main);
  font-weight: 600;
}

.lang-toggle:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.theme-toggle:hover {
  color: var(--secondary-color);
  transform: rotate(15deg);
}

/* Cart Button */
.cart-btn {
  background: var(--button-bg);
  color: var(--button-text);
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
  .menu-toggle,
  .user-account-btn {
    display: none !important;
  }

  .brand-subtitle {
    display: none !important;
  }

  .brand-title {
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    font-size: clamp(1rem, 3.8vw, 1.25rem) !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    gap: 4px !important;
  }

  .brand-v {
    display: inline !important;
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .brand-m {
    display: inline !important;
    margin-left: 0 !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    color: var(--secondary-color);
  }

  .logo {
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
    margin-right: auto;
    overflow: visible;
  }

  .logo-text {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
  }

  .logo-img {
    height: 38px;
    /* Balanced size */
  }

  .header-actions {
    order: 2;
    margin-right: 6px;
    margin-left: 4px;
    gap: 4px;
    flex: 0 0 auto;
    flex-shrink: 0;
  }

  .menu-toggle {
    order: 3;
    margin-left: 5px;
  }

  /* Compact buttons on mobile */
  .header-actions .lang-toggle {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
  }

  .header-actions .lang-toggle .lang-text {
    display: none;
  }

  .header-actions .theme-toggle {
    padding: 6px;
    min-width: 36px;
    height: 36px;
  }

  .header-actions .account-btn {
    padding: 6px;
    min-width: 36px;
    height: 36px;
    justify-content: center;
  }

  .header-actions .cart-btn {
    padding: 6px 12px;
    height: 36px;
    gap: 4px;
  }

  .header-actions .cart-btn span {
    display: inline-block;
    font-size: 0.75rem;
  }

  .account-btn .btn-text {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
    align-items: flex-start;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-links .nav-link {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    font-weight: 600;
    justify-content: flex-start;
  }

  .nav-links .nav-link:last-child {
    border-bottom: none;
  }

  .nav-links.active {
    right: 0;
    visibility: visible;
    pointer-events: auto;
  }
}

/* --- Hero --- */
.hero {
  background: linear-gradient(rgba(90, 30, 6, 0.9), rgba(60, 20, 0, 0.8)), url('../images/vindhya millets gallery (2).jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
  text-align: center;
  border-radius: 0;
  margin-bottom: 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  backdrop-filter: blur(5px);
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  font-weight: 800;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  /* Full Pill Shape */
  font-weight: 600;
  font-family: var(--font-heading);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  gap: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-large {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
  color: #121212;
  /* Dark text on orange/yellow is high contrast */
  box-shadow: 0 4px 15px rgba(251, 133, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-hover), var(--secondary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 133, 0, 0.5);
  border-color: transparent;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary-color);
  /* Thicker border for better visibility */
  color: var(--secondary-color);
}

.hero .btn-outline {
  border-color: white;
  color: white;
}

.btn-outline:hover {
  background: var(--secondary-color);
  color: white;
}

.hero .btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

/* --- Premium Amazon / Buy Now Button --- */
.btn-amazon {
  background: linear-gradient(135deg, #FF9900 0%, #FFB800 100%);
  color: #111;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-amazon:hover {
  background: linear-gradient(135deg, #FFB800 0%, #FF9900 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.5);
  color: #000;
}

/* Shimmer Effect */
.btn-amazon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-amazon:hover::after {
  left: 100%;
  transition: 0.7s;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  width: 100%;
}

.product-actions .btn {
  flex: 1;
  /* Make buttons share equal width */
  padding: 10px 16px;
  /* Adjust padding for side-by-side */
  font-size: 0.85rem;
  white-space: nowrap;
}

/* --- Trust Badges (Cards) --- */
.trust-badges {
  background: var(--bg-light);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.badge-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.badge-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.badge-icon {
  background: #FFF1E6;
  /* Light warm cream bg */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.badge-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-family: var(--font-main);
  font-weight: 700;
}

.badge-content p {
  color: var(--text-grey);
  font-size: 0.9rem;
}


/* --- Features Grid (Why Switch) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  background: var(--bg-card);
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: var(--shadow-md);
  border-color: var(--border-color);
}

.feature-icon {
  color: var(--accent-color);
  margin-bottom: 15px;
}

.feature-icon i {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Farmer Story Section --- */
.farmer-story-section {
  background-color: var(--bg-secondary);
  padding: 60px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-grid.reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
}

.story-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.story-list {
  margin-top: 20px;
}

.story-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  font-weight: 500;
}

.story-list li i {
  color: var(--secondary-color);
  width: 20px;
  height: 20px;
}

/* --- Product Cards --- */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-grey);
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding-bottom: 30px;
}

.product-card {
  background: linear-gradient(160deg, #ffffff 0%, #fffcf8 55%, #fef5e7 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(226, 114, 17, 0.25);
  box-shadow: 0 14px 36px -8px rgba(90, 30, 6, 0.11), inset 0 1.5px 0 #ffffff;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Ensure equal height */
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 26px 55px -10px rgba(226, 114, 17, 0.25), inset 0 1.5px 0 #ffffff;
  border-color: #10b981;
}

.product-img {
  height: 250px;
  background: #fff;
  width: 100%;
  object-fit: contain;
  padding: 20px;
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-tag {
  font-size: 0.75rem;
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.product-weight {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  margin-bottom: 15px;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.btn-add {
  background: var(--bg-light);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  width: 100%;
}

.btn-add:hover {
  background: var(--primary-color) !important;
  color: white !important;
}

.btn-amazon {
  background: #FF9900;
  color: #121212;
  border: none;
  font-weight: 600;
  flex: 1;
}

.btn-amazon:hover {
  background: #E88B00;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-actions .btn {
  padding: 10px;
  font-size: 0.9rem;
}

/* Dynamic Content Classes (Replaces Inline JS Styles) */
.product-img-wrapper {
  position: relative;
  overflow: hidden;
}

.health-tag-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-desc {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0 10px;
}

.product-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.product-weight-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}


.product-actions {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.empty-state-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: var(--text-secondary);
}


/* Blog Highlights specific */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 30px;
  padding-bottom: 40px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card .blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-category {
  font-size: 0.75rem;
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--primary-color);
}


.blog-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}


.blog-card .btn-outline {
  margin-top: auto;
  border-color: var(--primary-color);
  color: var(--primary-color);
  width: 100%;
}

.blog-card .btn-outline:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* --- Newsletter --- */
.newsletter {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 10px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: white;
  color: #121212;
  font-family: var(--font-main);
  min-width: 250px;
}

/* --- Premium Footer --- */
.footer-premium {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0 30px;
  margin-top: 60px;
  font-family: var(--font-main);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.footer-brand .brand-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.2;
}

.footer-brand .brand-subtitle {
  font-size: 0.7rem;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-top: 2px;
}

.footer-desc {
  font-size: 0.95rem;
  color: #d1d5db;
  /* Gray-300 equivalent */
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 300px;
}

/* Social Links */
.footer-brand .social-links {
  display: flex;
  gap: 15px;
}

.footer-brand .social-links a {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-brand .social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  color: #121212;
}

/* Links Columns */
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* Contact Column */
/* Contact Column Redesign */
/* --- Premium Contact Widgets (10/10 Design) --- */
.footer-contact-widget {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.footer-icon-box {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.footer-contact-widget:hover .footer-icon-box {
  background: var(--secondary-color);
  color: #121212;
  transform: translateY(-3px) rotate(-5deg);
  box-shadow: 0 8px 15px rgba(251, 133, 0, 0.3);
}

.footer-widget-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-widget-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
  border-radius: 10px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
  color: white;
}

.footer-contact-link.highlight {
  background: rgba(251, 133, 0, 0.1);
  border-color: rgba(251, 133, 0, 0.2);
  color: var(--secondary-color);
  font-weight: 600;
}

.footer-contact-link.highlight:hover {
  background: var(--secondary-color);
  color: #121212;
}

.contact-label {
  font-size: 0.75rem;
  opacity: 0.6;
  font-weight: normal;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: #9ca3af;
}

.developer-credit a {
  color: var(--secondary-color);
  font-weight: 500;
  text-decoration: none;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .footer-logo {
    align-items: center;
  }

  .footer-brand .social-links {
    justify-content: center;
  }

  .footer-contact ul li {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* orphaned code
flex-direction: column;
gap: 8px;
*/


.developer-credit a {
  color: var(--secondary-color);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* --- Shop Sidebar Layout --- */
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 20px;
  padding-bottom: 60px;
}

.shop-sidebar {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-group h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
}

.filter-group h3 i {
  width: 18px;
  height: 18px;
}

/* Custom Checkboxes */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: color 0.2s;
}

.checkbox-container:hover {
  color: var(--primary-color);
}

.checkbox-container input {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

.checkbox-container input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Search Box */
.search-box input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.search-box input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(46, 89, 54, 0.1);
}

/* Sort Controls */
.shop-header-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.sort-box select {
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
}

@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: 1fr;
    /* Stack on mobile */
  }

  .shop-sidebar {
    position: static;
    margin-bottom: 30px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM BRANDED CART DRAWER & OVERLAP FIX
   ═══════════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 5, 2, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000000 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-modal {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  max-width: 90vw;
  height: 100dvh;
  background: #ffffff !important;
  z-index: 10000005 !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25) !important;
  transition: right 0.35s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
  display: flex;
  flex-direction: column;
}

.cart-modal.active {
  right: 0 !important;
}

.cart-header {
  padding: 20px 24px !important;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: linear-gradient(135deg, #5A1E06 0%, #832C0A 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(90, 30, 6, 0.25) !important;
}

.cart-header h3 {
  margin: 0 !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: 0.02em !important;
}

.cart-close {
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.cart-close:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  transform: rotate(90deg) scale(1.08) !important;
}

.cart-close svg {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 2.5px !important;
  stroke: #ffffff !important;
}

.cart-items {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 24px !important;
  background: #FFFDF9 !important;
}

.cart-footer {
  padding: 24px !important;
  border-top: 1.5px solid rgba(90, 30, 6, 0.12) !important;
  background: #ffffff !important;
  box-shadow: 0 -6px 20px rgba(90, 30, 6, 0.06) !important;
}

.cart-total {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #3B1405 !important;
}

#cart-total-price {
  color: #5A1E06 !important;
  font-size: 1.3rem !important;
  font-weight: 900 !important;
}

#secure-checkout-btn,
.cart-footer .btn-primary {
  display: block !important;
  width: 100% !important;
  padding: 15px !important;
  background: linear-gradient(135deg, #5A1E06 0%, #832C0A 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  border-radius: 50px !important;
  text-align: center !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(90, 30, 6, 0.3) !important;
  transition: all 0.3s ease !important;
}

#secure-checkout-btn:hover,
.cart-footer .btn-primary:hover {
  background: linear-gradient(135deg, #2C6E2A 0%, #1c4d1a 100%) !important;
  box-shadow: 0 12px 28px rgba(44, 110, 42, 0.35) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* --- Cart Item Styles (Premium Redesign) --- */
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  animation: fadeIn 0.3s ease;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--border-color);
  background: var(--bg-light);
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: all 0.2s;
}

.qty-btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  background: rgba(56, 142, 60, 0.05);
}

.cart-item-total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* --- Floating Cart & Back to Top Buttons --- */
.scroll-to-top-fab,
#scroll-to-top-btn,
#backToTop {
  position: fixed !important;
  bottom: 28px !important;
  left: 22px !important;
  width: 48px !important;
  height: 48px !important;
  background: var(--primary-color, #2E5936) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 99990 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.scroll-to-top-fab.visible,
#scroll-to-top-btn.visible,
#backToTop.visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.scroll-to-top-fab:hover,
#scroll-to-top-btn:hover,
#backToTop:hover {
  transform: translateY(-4px) scale(1.08) !important;
  background: var(--brand-brown, #5A1E06) !important;
}

.floating-cart-fab,
.floating-cart-btn,
#floating-cart-btn {
  position: fixed !important;
  bottom: 28px !important;
  right: 22px !important;
  width: 58px !important;
  height: 58px !important;
  background: linear-gradient(135deg, var(--brand-brown, #5A1E06), var(--brand-cocoa, #832C0A)) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 99990 !important;
  box-shadow: 0 6px 24px rgba(90, 30, 6, 0.45) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.floating-cart-fab:hover,
.floating-cart-btn:hover,
#floating-cart-btn:hover {
  transform: scale(1.12) translateY(-3px) !important;
  box-shadow: 0 10px 32px rgba(90, 30, 6, 0.6) !important;
}

@media (max-width: 768px) {
  .floating-cart-fab,
  .floating-cart-btn,
  #floating-cart-btn,
  .floating-cart,
  .vm-btn-floating-cart,
  #vmFloatingCartBtn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(0) !important;
  }

  .scroll-to-top-fab,
  #scroll-to-top-btn,
  #backToTop {
    bottom: 84px !important;
    left: 16px !important;
    width: 42px !important;
    height: 42px !important;
  }
}

.floating-cart-btn i,
.floating-cart-fab i {
  width: 24px;
  height: 24px;
}

/* Legacy FAB cart count — kept for backward compat */
.floating-cart-btn .floating-cart-count,
.floating-cart-fab .floating-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #FF9900;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-card);
}

/* New pill cart count — inline text, NOT absolute */
.floating-cart-info .floating-cart-count {
  position: static !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  min-width: unset !important;
  height: unset !important;
  border-radius: 0 !important;
  border: none !important;
  display: inline !important;
}

.floating-cart-btn.bump,
.floating-cart-fab.bump {
  animation: bump 0.3s ease;
}

@keyframes bump {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* =========================================
   MOBILE RESPONSIVENESS REFINEMENTS (FINAL)
   ========================================= */

@media (max-width: 768px) {
  /* --- Global Improvements --- */

  /* Container Padding */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Typography Clamping and Readability */
  h1,
  .page-title,
  .hero-title,
  .section-heading {
    font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
    line-height: 1.2;
  }

  p,
  .lead-text,
  .product-desc {
    font-size: 1rem !important;
    line-height: 1.6;
  }

  /* --- Navigation --- */
  .nav-links .nav-link {
    padding: 15px 0;
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
  }

  /* --- Home Page --- */
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Product Page --- */
  .shop-sidebar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 16px;
  }

  .shop-header-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .sort-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* --- Blog Page --- */
  /* Horizontal Scroll for Filters */
  .filter-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    scrollbar-width: none;
    /* Firefox */
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 8px 20px;
  }

  /* --- Gallery --- */
  /* Ensure 2 columns for images on mobile (better visual) */
  .gallery-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  /* --- Footer --- */
  .footer-premium {
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links ul li a:hover {
    transform: none;
    /* Disable shift on touch */
    color: var(--secondary-color);
  }

  /* Footer Premium Responsive Overrides */
  .footer-contact-widget {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    align-items: center;
    /* Center align on mobile for better look */
    text-align: left;
  }

  .footer-icon-box {
    width: 38px;
    height: 38px;
    margin-right: 0;
  }

  .footer-widget-content {
    width: 100%;
  }

  .footer-contact-link {
    width: 100%;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 5px;
  }
}

/* Very Small Screens */
@media (max-width: 380px) {

  .gallery-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr !important;
  }

  .product-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Hide floating button on mobile screens (bottom dock handles cart) */
@media (max-width: 480px) {
  .floating-cart-btn,
  #floating-cart-btn,
  .floating-cart-fab {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }
}

/* --- About Us Page Revamp --- */
.about-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(2px);
}

.hero-title {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  margin-bottom: 10px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.intro-box {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.lead-text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.sub-lead {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.brand-highlight {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Focus Section */
.focus-section {
  margin-bottom: 80px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.focus-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.focus-icon {
  width: 60px;
  height: 60px;
  background: rgba(46, 89, 54, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
}

.focus-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.focus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Identity & Commitment */
.identity-section {
  margin-bottom: 60px;
}

.identity-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cin-badge {
  display: inline-block;
  background: var(--bg-card);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: monospace;
  font-size: 1rem;
  color: var(--secondary-color);
  border: 1px solid var(--border-color);
  margin-top: 20px;
}

.commitment-section {
  margin-bottom: 80px;
}

.quote-box {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.heart-icon {
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  opacity: 0.9;
}

.quote-text {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  line-height: 1.4;
  font-style: italic;
  max-width: 800px;
  margin: 20px auto 0;
}

.quote-box h3 {
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* Directors Section */
.directors-section {
  margin-bottom: 60px;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.director-card {
  text-align: center;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.director-card:hover {
  transform: translateY(-5px);
}

.director-img-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--bg-light);
  box-shadow: var(--shadow-md);
}

.director-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.director-title {
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

/* Animations */
/* .animate-fade-in { } - Removed empty rule */
/* ... existing fade in logic or rely on fade-in-up class */

/* --- Advanced Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Zoom In Effect */
.animate-on-scroll.zoom-in {
  transform: scale(0.9);
}

.animate-on-scroll.zoom-in.visible {
  transform: scale(1);
}

/* Slide Up Effect (Default, but explicit) */
.animate-on-scroll.slide-up {
  transform: translateY(30px);
}

.animate-on-scroll.slide-up.visible {
  transform: translateY(0);
}

/* Delays */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

/* Card Hover Effects */
.focus-card,
.director-card {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease !important;
}

.focus-card:hover,
.director-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.director-card:hover .director-img-wrapper {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.director-img-wrapper {
  transition: all 0.3s ease;
}

/* Page Headers */
.page-header {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-card);
  /* Light background */
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.page-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Start Contact Page Revamp Styles --- */

/* Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
}

.contact-hero .hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
  pointer-events: none;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  backdrop-filter: blur(5px);
}

.text-white {
  color: #fff !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.text-muted {
  color: var(--text-grey) !important;
}

/* Contact Grid */
.contact-grid-revamp {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: -60px;
  /* Pull up into hero */
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .contact-grid-revamp {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }
}

/* Info Card */
.info-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-methods .method-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: rgba(27, 67, 50, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.method-item h4 {
  margin-bottom: 5px;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
  width: 100%;
  justify-content: center;
}

.btn-whatsapp:hover {
  background: #1ebc57;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Glass Form */
.glass-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
}

.form-title {
  margin-bottom: 30px;
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.8rem;
}

/* Floating Labels */
.form-floating-group {
  position: relative;
  margin-bottom: 25px;
}

.form-floating-group .form-control {
  width: 100%;
  padding: 15px 15px 15px 15px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-floating-group label {
  position: absolute;
  left: 15px;
  top: 15px;
  color: var(--text-secondary);
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  padding: 0 5px;
}

.form-floating-group .form-control:focus {
  border-color: var(--secondary-color);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(251, 133, 0, 0.1);
}

/* Float label logic when focused or has value (handled via :placeholder-shown trick) */
.form-floating-group .form-control:focus~label,
.form-floating-group .form-control:not(:placeholder-shown)~label {
  top: -10px;
  left: 10px;
  font-size: 0.85rem;
  color: var(--secondary-color);
  background: var(--bg-card);
}

/* Hide actual placeholder so trick works */
.form-floating-group .form-control::placeholder {
  color: transparent;
}

/* Map */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-card);
}

/* Accordion */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}

.accordion-header {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: rgba(0, 0, 0, 0.02);
}

.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-header[aria-expanded="true"]~.accordion-body {
  max-height: 200px;
  /* Approx height */
  padding: 0 20px 20px;
}

.accordion-header[aria-expanded="true"] i {
  transform: rotate(180deg);
}

body.dark-mode .accordion-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* --- Amazon Button --- */
.btn-amazon {
  background: linear-gradient(135deg, #FF9900, #FFB700);
  color: #131921 !important;
  /* Force dark text */
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
}

.btn-amazon:hover {
  background: linear-gradient(135deg, #FFB700, #FA8900);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 153, 0, 0.4);
}

/* Blog Filters */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-grey);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.2);
}

body.dark-mode .filter-btn {
  border-color: var(--border-dark);
  color: var(--text-grey);
}

body.dark-mode .filter-btn:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

body.dark-mode .filter-btn.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #121212;
}

/* Responsive Blog Grid */
@media (max-width: 768px) {
  .filter-bar {
    gap: 10px;
  }

  /* --- Mobile Responsiveness Improvements --- */

  /* Global Typography */
  html {
    font-size: 14px;
    /* Slightly smaller base font */
  }

  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  h3 {
    font-size: 1.4rem !important;
  }

  /* Container Spacing */
  .container {
    padding: 0 16px;
  }

  /* Section Padding */
  .section,
  .section-padding {
    padding: 40px 0;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  /* About Page - Mobile */
  .about-hero {
    height: 300px;
  }

  .intro-box .lead-text {
    font-size: 1.2rem;
  }

  .story-grid {
    grid-template-columns: 1fr !important;
  }

  .story-image img {
    height: 250px;
  }

  /* Grids - Force Single Column */
  .focus-grid,
  .directors-grid,
  .product-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Trust Badges & Why Millets - 2 per row on mobile */
  .badges-grid,
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .badge-card {
    padding: 16px 12px;
  }

  .badge-content h4 {
    font-size: 0.9rem;
  }

  .badge-content p {
    font-size: 0.8rem;
  }

  .feature-card {
    padding: 20px 14px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.82rem;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .footer-logo,
  .footer-brand .social-links,
  .footer-contact ul li {
    justify-content: center;
    align-items: center;
  }

  /* Shop Sidebar */
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
    margin-bottom: 30px;
  }

  /* Mobile Tables */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  @media (max-width: 480px) {

    /* Smaller Mobile devices */
    .hero-buttons {
      flex-direction: column;
      width: 100%;
    }

    .hero-buttons .btn {
      width: 100%;
    }
  }

}

/* --- Gallery Preview & Page --- */
.gallery-preview {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .gallery-grid-preview {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.gallery-item-preview {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  aspect-ratio: 1;
  /* Square images for preview */
}

.gallery-item-preview:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.gallery-item-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-preview:hover img {
  transform: scale(1.1);
}

/* Gallery Page specific */
.page-header {
  background: linear-gradient(rgba(46, 89, 54, 0.9), rgba(93, 64, 55, 0.8)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: white;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 1;
  max-width: 600px;
  margin: 0 auto;
  color: white !important;
}

.gallery-section {
  padding: 60px 0;
  background: var(--bg-white);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 cols on mobile */
  gap: 15px;
}

@media (min-width: 600px) {
  .gallery-page-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
}

.gallery-item-full {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  background: var(--bg-card);
  aspect-ratio: 4/3;
  /* Standard aspect for gallery */
}

.gallery-item-full:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-item-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item-full:hover img {
  transform: scale(1.05);
}

/* Dark Mode fixes for Gallery */
body.dark-mode .gallery-section {
  background: var(--bg-dark);
}

body.dark-mode .gallery-preview {
  background: var(--bg-dark);
}

body.dark-mode .gallery-item-full {
  background: var(--bg-card-dark);
}

/* Mobile Adjustments for Gallery */
@media (max-width: 480px) {
  .gallery-grid-preview {
    gap: 10px;
  }
}

/* --- Corrected Gallery Styles (Matches New HTML) --- */

/* Homepage Preview Item */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Gallery Page Specific */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px 0;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #f0f0f0;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay i {
  color: white;
  width: 32px;
  height: 32px;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

/* Responsive Gallery Page */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Lightbox Styles --- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-modal.active .lightbox-content-wrapper {
  transform: scale(1);
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -10px;
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
  outline: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  color: var(--secondary-color);
  transform: scale(1.1) rotate(90deg);
}

/* --- Hero Image Slider --- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 90vh;
  /* Full viewport height minus header roughly */
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  /* Slight initial scale for effect */
  transition: transform 6s ease;
  /* Slow zoom effect */
}

.hero-slide.active .slide-image {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 3;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 4;
  text-align: left;
  max-width: 600px;
  color: white;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.3s;
  line-height: 1.2;
}

.slide-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.5s;
  font-weight: 300;
}

.hero-slide.active .slide-title,
.hero-slide.active .slide-subtitle,
.hero-slide.active .slide-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Shop Button */
.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--secondary-color), #FF8F00);
  color: white;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(251, 133, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.7s;
}

.slide-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(251, 133, 0, 0.6);
  background: linear-gradient(135deg, #FF8F00, var(--secondary-color));
}

.slide-btn i {
  transition: transform 0.3s ease;
}

.slide-btn:hover i {
  transform: translateX(5px);
}

/* Slider Controls */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  /* Glass effect */
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--secondary-color);
  transform: scale(1.2);
}

/* Mobile Responsiveness for Slider */
@media (max-width: 768px) {
  .hero-slider-section {
    height: 70vh;
    min-height: 500px;
  }

  .slide-content {
    left: 5%;
    width: 90%;
    text-align: center;
    top: 55%;
    /* Push down slightly */
  }

  .slide-title {
    font-size: 2.5rem;
  }

  .slide-subtitle {
    font-size: 1rem;
  }

  .slider-prev,
  .slider-next {
    display: none;
    /* Hide arrows on mobile, use Swipe */
  }
}

/* =========================================
   Refined Single About Section
   ========================================= */
.about-single-section {
  padding: 6rem 0;
  background: var(--bg-body);
}

.about-single-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #1a1a1a;
  /* Dark premium card background */
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.single-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-single-card:hover .single-image {
  transform: scale(1.05);
}

.image-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.8) 90%, #1a1a1a 100%);
  pointer-events: none;
}

.about-card-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.about-text-large {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.text-white {
  color: #ffffff !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .about-single-card {
    grid-template-columns: 1fr;
  }

  .about-card-image {
    height: 300px;
    min-height: 300px;
  }

  .image-overlay-gradient {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 0%, #1a1a1a 100%);
  }

  .about-card-content {
    padding: 2.5rem 2rem;
    text-align: center;
  }

  .section-title.text-start {
    text-align: center;
  }

  .about-text-large {
    font-size: 1.1rem;
  }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   About Page Redesign (Refined & Polished)
   ========================================= */

/* --- Fonts & Base --- */
:root {
  --font-display: var(--font-heading);
  --font-body: var(--font-main);
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #3a1102 100%);
  --gradient-gold: linear-gradient(135deg, #FFB703 0%, #FB8500 100%);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 60px -10px rgba(0, 0, 0, 0.1);
  --bg-subtle: #F8FAF9;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

h1,
h2,
h3,
h4,
.hero-title,
.section-heading,
.stat-number,
.mission-title {
  font-family: var(--font-display);
}

/* --- Improved Hero Section --- */
.about-hero-modern {
  position: relative;
  height: 85vh;
  /* Slightly taller */
  min-height: 600px;
  background: url('../images/vindhya millets gallery (1).jpeg') no-repeat center center/cover;
  background-attachment: fixed;
  /* Parallax effect */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(27, 67, 50, 0.7) 60%,
      rgba(27, 67, 50, 0.95) 100%);
  z-index: 1;
}

.hero-content-modern {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
  margin-top: -40px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 700;
  color: #FFD166;
  /* Softer yellow */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  /* Responsive typography */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}

/* Floating Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
  cursor: pointer;
}

.hero-scroll-indicator:hover {
  color: white;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-scroll-indicator i {
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* --- Floating Stats Section --- */
.stats-section {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  /* Overlap hero */
  padding-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-card {
  text-align: center;
  position: relative;
  padding: 10px;
}

/* Add separator lines between stats */
.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #E0E0E0, transparent);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-grey);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* --- Story Section (Zigzag) --- */
.story-section {
  background: white;
  overflow: hidden;
  /* Prevent spill */
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image-wrapper {
  position: relative;
  padding: 20px;
}

/* Decorative behind image */
.story-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  background: var(--bg-subtle);
  /* Pattern placeholder */
  background-image: radial-gradient(#E8F5E9 15%, transparent 16%);
  background-size: 20px 20px;
  z-index: -1;
  border-radius: 30px;
  opacity: 0.6;
}

.rounded-image {
  border-radius: 24px;
  width: 100%;
  height: 550px;
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease;
}

.story-image-wrapper:hover .rounded-image {
  transform: scale(1.02);
}

.experience-badge {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: white;
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 6px solid var(--secondary-color);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.experience-badge .years {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.experience-badge .text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.section-badge {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  background: rgba(251, 133, 0, 0.08);
  /* Very subtle orange tint */
  padding: 8px 16px;
  border-radius: 50px;
}

.section-heading {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--primary-color);
}

.lead-text {
  font-size: 1.25rem;
  color: #344e41;
  /* Darker green-grey */
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.6;
}

.highlight {
  position: relative;
  z-index: 1;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(251, 133, 0, 0.3);
  z-index: -1;
  transform: skewX(-10deg);
}

.mission-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  border: 1px solid #E9EDC9;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.mission-box:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

.mission-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(27, 67, 50, 0.2);
}

.mission-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color);
}

/* --- Values/Focus Section --- */
.values-section {
  background: var(--bg-subtle);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #FEFAE0;
  /* Light cream */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--secondary-color);
  font-size: 2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: var(--secondary-color);
  color: white;
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.value-card p {
  color: var(--text-grey);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Leadership Section --- */
.team-section {
  background: white;
}

/* Founder Card Redesigned */
.founder-card {
  max-width: 800px;
  background: white;
  padding: 0;
  /* Let inner content handle padding */
  border-radius: 30px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: stretch;
  text-align: left;
  overflow: hidden;
  border: 1px solid #eee;
  margin-bottom: 60px;
}

.founder-img {
  flex: 0 0 35%;
  position: relative;
}

.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0;
}

.founder-info {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-info h3 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.founder-info .role {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 20px;
}

.founder-info .quote {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.15rem;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid #E9EDC9;
}

/* Directors Grid */
.directors-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 20px 10px;
}

.team-card {
  background: white;
  width: 100%;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #E9EDC9;
}

.team-img {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
}

.team-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-card h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--text-dark);
}

.team-card span {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Responsive Polish --- */
@media (max-width: 992px) {
  .hero-content-modern {
    padding-top: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat-card {
    padding: 30px;
    border-bottom: 1px solid #eee;
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .stat-card:not(:last-child)::after {
    display: none;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-image-wrapper {
    order: 1;
    padding: 0;
  }

  .story-text {
    order: 2;
    padding: 0 10px;
  }

  .rounded-image {
    height: 400px;
  }

  .founder-card {
    flex-direction: column;
    max-width: 450px;
    margin: 0 auto 60px;
  }

  .founder-img {
    height: 350px;
  }

  .founder-info {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .about-hero-modern {
    background-attachment: scroll;
    /* Fix mobile parallax jitter */
    min-height: 500px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .experience-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -30px;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
    text-align: center;
    align-items: center;
    border-left: none;
    border-top: 4px solid var(--secondary-color);
  }

  .directors-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .directors-grid-modern {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .values-grid {
    gap: 20px;
  }
}

/* Fix for Overlapping Badge */
.badg-fix {
  z-index: 10;
  /* Ensure it stays on top */
  background: rgba(255, 255, 255, 0.95);
  /* More opacity */
  backdrop-filter: blur(10px);
}

/* Enhanced Hover for Director/Team Cards */
.hover-lift {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.hover-lift:hover {
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
  border-color: var(--secondary-color) !important;
}

.hover-lift:hover .team-img img {
  border-color: var(--secondary-color);
  transform: scale(1.1);
  transition: transform 0.4s ease, border-color 0.3s ease;
}

/* Fix Footer Brand Subtitle Visibility */
.footer-brand .brand-subtitle {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* Fix Blog Page Header Visibility */
.page-header h1.page-title {
  color: var(--primary-color) !important;
  font-weight: 800;
  text-shadow: none;
  /* Remove any shadow that might blur it */
}

.page-header p {
  color: var(--text-dark) !important;
  font-weight: 600;
  opacity: 1 !important;
}

/* Product Thumbnail Slider */
.thumbnail-grid {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.thumbnail:hover {
  transform: translateY(-3px);
}

.thumbnail.active {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.main-image {
  transition: opacity 0.2s ease;
}

/* =========================================
   COMPREHENSIVE DARK MODE FIXES
   ========================================= */

body.dark-mode {
  /* Global Text Fixes */
  color: #E0E0E0 !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .page-title,
body.dark-mode .section-title,
body.dark-mode .brand-title,
body.dark-mode .hero-title,
body.dark-mode .mission-title {
  color: #FFFFFF !important;
}

body.dark-mode p,
body.dark-mode span,
body.dark-mode li,
body.dark-mode .text-grey,
body.dark-mode .section-subtitle,
body.dark-mode .hero-subtitle,
body.dark-mode .product-desc,
body.dark-mode .blog-excerpt {
  color: #B0B0B0 !important;
}

body.dark-mode .text-muted {
  color: #888 !important;
}

/* --- Section Backgrounds --- */
body.dark-mode .section:nth-child(even),
body.dark-mode .bg-subtle,
body.dark-mode .farmer-story-section,
body.dark-mode .about-single-section {
  background-color: #1a1a1a !important;
}

body.dark-mode .section:nth-child(odd),
body.dark-mode .bg-white,
body.dark-mode .team-section,
body.dark-mode .story-section {
  background-color: #121212 !important;
}

/* --- Cards & Containers --- */
body.dark-mode .card,
body.dark-mode .product-card,
body.dark-mode .blog-card,
body.dark-mode .feature-card,
body.dark-mode .value-card,
body.dark-mode .stat-card,
body.dark-mode .team-card,
body.dark-mode .founder-card,
body.dark-mode .mission-box,
body.dark-mode .shop-sidebar,
body.dark-mode .info-card {
  background-color: #1E1E1E !important;
  border-color: #333 !important;
  color: #E0E0E0 !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

body.dark-mode .value-icon-wrapper {
  background-color: #333 !important;
}

body.dark-mode .value-card:hover .value-icon-wrapper {
  background-color: var(--secondary-color) !important;
}


/* --- Forms & Inputs --- */
body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea,
body.dark-mode .form-control {
  background-color: #2a2a2a !important;
  border: 1px solid #444 !important;
  color: #fff !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: #888 !important;
}

body.dark-mode .filter-btn {
  background: #2a2a2a;
  color: #ccc;
  border: 1px solid #444;
}

body.dark-mode .filter-btn.active,
body.dark-mode .filter-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* --- Header & Nav --- */
body.dark-mode header,
body.dark-mode .nav-links {
  background-color: #121212 !important;
  border-bottom-color: #333;
}

body.dark-mode .nav-link {
  color: #fff !important;
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
  color: var(--secondary-color) !important;
}

body.dark-mode .menu-toggle {
  color: #fff !important;
}

body.dark-mode .theme-toggle {
  color: #FFD700 !important;
  /* Yellow Sun for dark mode toggle */
}

/* --- Badges & Tags --- */
body.dark-mode .product-tag,
body.dark-mode .blog-category,
body.dark-mode .hero-label,
body.dark-mode .section-badge {
  /* Keep original colors as they are usually vibrant */
  filter: brightness(1.2);
}

body.dark-mode .health-tag-badge {
  background-color: var(--secondary-color) !important;
  color: #000 !important;
}

/* --- Specific Components --- */
body.dark-mode .accordion-item {
  background-color: #1E1E1E !important;
  border-color: #333;
}

body.dark-mode .accordion-button {
  background-color: #1E1E1E !important;
  color: #fff !important;
}

body.dark-mode .accordion-button:not(.collapsed) {
  background-color: #2a2a2a !important;
  color: var(--secondary-color) !important;
}

body.dark-mode .glass-form {
  background: rgba(30, 30, 30, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Mobile Menu Fixes --- */
@media (max-width: 768px) {
  body.dark-mode .nav-links {
    background-color: #1a1a1a !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }
}


/* Fix Blog Page Header Background in Dark Mode */
body.dark-mode .page-header {
  background-color: var(--bg-card-dark) !important;
  background: var(--bg-card-dark) !important;
  /* Override inline style */
}


/* Fix Slider Visibility in Light Mode */
.slide-content h1,
.slide-content p,
.slide-title,
.slide-subtitle {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}


/* --- Trusted Customers Section --- */
.trusted-customers {
  background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.customer-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.customer-info {
  flex: 1;
}

.customer-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-dark);
  line-height: 1.2;
}

.customer-role {
  font-size: 0.85rem;
  color: var(--text-grey);
  margin-bottom: 6px;
  font-weight: 500;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars svg.feather-star {
  width: 16px;
  height: 16px;
  color: #FFB703;
}

.stars .fill-star {
  fill: #FFB703;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-grey);
  font-size: 1rem;
  line-height: 1.6;
  z-index: 2;
  position: relative;
  flex-grow: 1;
}

/* Dark Mode Footer Override */
body.dark-mode .footer-premium {
  background-color: #0d0d0d !important;
  /* Very dark, distinct from body */
  background-image: linear-gradient(to bottom, #111, #000);
  border-top: 1px solid #333;
}

body.dark-mode .footer-desc,
body.dark-mode .footer-contact-item {
  color: #bbb !important;
}

/* User Request: Make "Shop Health" (Slide Btn) look 10/10 */
.slide-btn {
  background: var(--secondary-color);
  color: #121212 !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(226, 114, 17, 0.4);
  border: none;
}

.slide-btn:hover {
  background: #fff;
  color: var(--primary-color) !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* User Request: Improve "Add to Cart" Button Color */
.add-to-cart-btn {
  background: linear-gradient(135deg, #FF9900 0%, #FFB700 100%) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #e68a00 0%, #e6a500 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 153, 0, 0.4);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

.quote-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  pointer-events: none;
}

.quote-icon svg {
  width: 60px;
  height: 60px;
  color: var(--primary-color);
  opacity: 0.05;
  transform: rotate(180deg);
}

/* Dark Mode Overrides for Trusted Customers */
body.dark-mode .trusted-customers {
  background: linear-gradient(to bottom, #121212, #1a1a1a) !important;
}

body.dark-mode .testimonial-card {
  background-color: #1E1E1E !important;
  border-color: #333 !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

body.dark-mode .customer-name {
  color: #FFFFFF !important;
}

body.dark-mode .customer-role {
  color: #AAA !important;
}

body.dark-mode .testimonial-text {
  color: #CCC !important;
}

/* Dark Mode for New Footer Widgets */
body.dark-mode .footer-contact-widget {
  background: rgba(255, 255, 255, 0.05);
  /* Keep it subtle */
}

body.dark-mode .footer-contact-link {
  background: rgba(255, 255, 255, 0.05);
  color: #ddd;
}

body.dark-mode .footer-contact-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

body.dark-mode .footer-widget-title {
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .footer-icon-box {
  background: rgba(255, 255, 255, 0.08);
  /* Slightly lighter than widget */
  border-color: rgba(255, 255, 255, 0.1);
}

/* Theme Toggle Button Animation */
.theme-toggle {
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.theme-toggle:active {
  transform: scale(0.9);
}

.theme-toggle i {
  transition: transform 0.5s ease;
}

body.theme-changing .theme-toggle i {
  transform: rotate(360deg);
}

/* Ensure Logo Text is Visible in Dark Mode */
body.dark-mode .brand-subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-mode .testimonial-card {
  background: var(--bg-card-dark);
  border-color: var(--border-dark);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

body.dark-mode .customer-name {
  color: var(--text-light);
}

body.dark-mode .customer-role {
  color: #888;
}

body.dark-mode .testimonial-text {
  color: #ccc;
}

/* Mobile Product Grid (Homepage) */
@media (max-width: 768px) {
  #featured-products.product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 10px !important;
  }
}

/* --- Partners Section --- */
.partners-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.justify-center {
  justify-content: center;
  /* For Trusted Buyers if fewer items */
  display: flex;
  flex-wrap: wrap;
}

.partner-card {
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.partner-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 16px;
  object-fit: cover;
  /* Since we're using avatars, keep them round */
}

.partner-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Dark Mode Overrides for Partners */
body.dark-mode .partners-section {
  background: var(--bg-dark);
}

body.dark-mode .partner-card {
  background: var(--bg-card-dark);
  border-color: var(--border-dark);
}

body.dark-mode .partner-name {
  color: var(--text-light);
}

body.dark-mode .section-title-small {
  color: var(--text-light) !important;
}

html {
  min-height: 100%;
  overflow-x: hidden;
}
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  overflow-y: visible !important;
  width: 100%;
}

.site-footer {
  margin-bottom: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* --- Trust & Features Premium Sections --- */
.trust-benefits {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9fbf9 0%, #edf2ee 100%);
  position: relative;
  overflow: hidden;
}

.trust-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.03;
  pointer-events: none;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(46, 89, 54, 0.12);
  border-color: var(--primary-color);
  background: #ffffff !important;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(46, 89, 54, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-color);
  color: #fff;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-title {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--primary-color);
  letter-spacing: -0.01em;
}

.benefit-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  opacity: 0.9;
}

/* Stats Card Enhancement */
.stat-card-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 5;
  border-left: 5px solid var(--primary-color);
  transition: all 0.3s ease;
}

.stat-card-overlay:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Our Mission Story Enhancement */
.about-story {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e3b24 100%);
  padding: 100px 0;
  overflow: hidden;
  color: white !important;
}

.about-story::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.badge-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(4px);
}

.btn-white {
  background: #ffffff !important;
  color: var(--primary-color) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  border: none !important;
  font-weight: 700 !important;
}

.btn-white:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
  background: #f8f9fa !important;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
  .trust-benefits {
    padding: 60px 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 20px !important;
  }
  
  .benefit-item {
    padding: 25px 20px;
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 20px;
  }
  
  .benefit-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    flex-shrink: 0;
    border-radius: 14px;
  }
  
  .benefit-icon svg {
    width: 24px;
    height: 24px;
  }

  .benefit-title {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }
  
  .benefit-desc {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .stat-card-overlay {
    position: relative;
    right: 0;
    bottom: 0;
    margin: -40px 20px 0;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .about-story {
    padding: 60px 0;
  }

  .about-story h2 {
    font-size: 2rem !important;
  }
}

/* ==========================================================================
   CONSOLIDATED PREMIUM SITE FOOTER STYLING
   Moved from includes/footer.php inline block to cached global stylesheet
   ========================================================================== */

/* ===== FOOTER VARIABLES ===== */
.site-footer {
    --f-bg: #2B0F03;
    --f-bg2: #381505;
    --f-accent: #5A1E06;
    --f-green: #E27211;
    --f-lime: #F39C12;
    --f-text: rgba(255,255,255,0.85);
    --f-text-dim: rgba(255,255,255,0.55);
    --f-border: rgba(255,255,255,0.07);
    --f-card: rgba(255,255,255,0.05);
    --f-card-hover: rgba(255,255,255,0.1);
    font-family: var(--font-main, 'Inter', sans-serif);
    color: var(--f-text);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Diagonal decorative line */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--f-bg), var(--f-accent), var(--f-green), var(--f-lime), var(--f-green), var(--f-accent), var(--f-bg));
    z-index: 2;
}

/* ===== NEWSLETTER STRIP ===== */
.footer-newsletter-strip {
    background: linear-gradient(135deg, #5A1E06 0%, #832C0A 50%, #5A1E06 100%);
    padding: 28px 0;
    border-bottom: 1px solid rgba(243,156,18,0.15);
}
.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.newsletter-text {
    display: flex;
    align-items: center;
    gap: 16px;
}
.newsletter-icon { font-size: 2rem; }
.newsletter-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}
.newsletter-text p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin: 0; }
.newsletter-form-new {
    flex: 1;
    max-width: 460px;
    min-width: 260px;
}
.newsletter-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 4px;
    width: 100%;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.newsletter-input-group:focus-within {
    border-color: var(--f-lime);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
    background: rgba(255, 255, 255, 0.12);
}
.newsletter-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 0.9rem;
    padding: 10px 16px !important;
    outline: none !important;
    font-family: inherit;
    min-width: 0 !important;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}
.newsletter-submit-btn {
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--f-lime);
    color: #111;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}
.newsletter-submit-btn:hover {
    background: var(--f-green);
    color: white;
}

/* ===== MAIN FOOTER BODY ===== */
.footer-main {
    background: var(--f-bg);
    padding: 56px 0 46px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1.6fr;
    gap: 36px;
    align-items: start;
}

/* ===== BRAND COLUMN ===== */
.footer-logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-logo-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--f-accent), var(--f-bg));
    border: 1px solid rgba(243,156,18,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.footer-brand-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.3px;
}
.footer-brand-tagline {
    display: block;
    font-size: 0.68rem;
    color: var(--f-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}
.footer-brand-desc {
    font-size: 0.88rem;
    color: var(--f-text);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-trust-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--f-card);
    border: 1px solid var(--f-border);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--f-lime);
    font-weight: 600;
}
.footer-socials { display: flex; flex-direction: column; gap: 10px; }
.socials-label { font-size: 0.78rem; color: var(--f-text-dim); text-transform: uppercase; letter-spacing: 1px; }
.socials-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.social-icon-btn {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--f-card);
    border: 1px solid var(--f-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--f-text);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0;
}
.social-icon-btn:hover { transform: translateY(-3px); }
.social-icon-btn.fb:hover { background: #1877F2; border-color: #1877F2; color: white; }
.social-icon-btn.ig:hover { background: linear-gradient(135deg, #e1306c, #833ab4); border-color: #e1306c; color: white; }
.social-icon-btn.tw:hover { background: #1da1f2; border-color: #1da1f2; color: white; }
.social-icon-btn.yt:hover { background: #FF0000; border-color: #FF0000; color: white; }
.social-icon-btn.li:hover { background: #0077b5; border-color: #0077b5; color: white; }
.social-icon-btn.wa:hover { background: #25D366; border-color: #25D366; color: white; }
.social-icon-btn.pin:hover { background: #E60023; border-color: #E60023; color: white; }
.social-icon-btn i, .social-icon-btn svg { width: 16px; height: 16px; display: block; }

/* ===== NAV COLUMNS ===== */
.footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--f-lime);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 24px; height: 2px;
    background: var(--f-lime);
    border-radius: 2px;
}
.footer-nav-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.footer-nav-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--f-text);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.footer-nav-list li a:hover {
    color: var(--f-lime);
    background: var(--f-card-hover);
    transform: translateX(4px);
}

/* ===== CONTACT CARDS ===== */
.footer-contact-cards { display: grid; gap: 10px; }
.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: inherit;
    backdrop-filter: blur(8px);
}
.footer-contact-card:not(.no-hover):hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--f-lime);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.footer-contact-card.whatsapp-card:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.08);
}
.fc-icon {
    width: 36px; height: 36px; min-width: 36px;
    background: linear-gradient(135deg, var(--f-accent), var(--f-bg));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--f-lime);
    flex-shrink: 0;
}
.fc-icon.wa { background: linear-gradient(135deg, #25D366, #128C7E); color: white; }
.fc-icon i, .fc-icon svg { width: 15px; height: 15px; }
.fc-text { display: flex; flex-direction: column; gap: 2px; overflow: hidden; min-width: 0; }
.fc-label { font-size: 0.7rem; color: var(--f-text-dim); text-transform: uppercase; letter-spacing: 0.8px; }
.fc-value { font-size: 0.85rem; font-weight: 600; color: white; word-break: break-word; line-height: 1.3; }
.fc-sub { font-size: 0.72rem; color: var(--f-text-dim); }

/* ===== BOTTOM BAR ===== */
.footer-bottom-bar {
    background: #1A0802;
    border-top: 1px solid var(--border-color);
    padding: 18px 0;
    margin-bottom: 0 !important;
}
html, body {
    margin: 0;
    padding: 0;
}
.site-footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copy {
    font-size: 0.82rem;
    color: var(--f-text-dim);
    margin: 0;
}
.footer-copy strong { color: rgba(255,255,255,0.7); }
.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--f-text-dim);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--f-lime); }
.footer-dev { font-size: 0.8rem; color: var(--f-text-dim); margin: 0; }
.footer-dev a { color: var(--f-lime); text-decoration: none; font-weight: 600; }
.footer-dev a:hover { text-decoration: underline; }

/* ===== WHATSAPP FAB ===== */
.wa-fab {
    position: fixed;
    bottom: 28px; right: 22px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.wa-fab-tooltip {
    position: absolute;
    right: 66px;
    background: #1A0802;
    color: var(--f-lime);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.25s ease;
    border: 1px solid rgba(243,156,18,0.2);
}
.wa-fab:hover .wa-fab-tooltip { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 32px; }
    .footer-contact-col { grid-column: 1 / -1; }
    .footer-contact-cards { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .footer-brand-col { grid-column: 1 / -1; }
    .footer-contact-col { grid-column: 1 / -1; }
    .footer-contact-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
    .footer-brand-col { grid-column: 1 / -1; }
    .footer-contact-col { grid-column: 1 / -1; }
    .footer-contact-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .footer-main { padding: 40px 0 32px; }
}

@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
    .footer-brand-col { grid-column: 1 / -1; }
    /* Policies section spans 2 columns with a clean 2-col link grid */
    .footer-col:has(.footer-nav-list) { grid-column: auto; }
    .footer-col:nth-child(4) { grid-column: 1 / -1; }
    .footer-col:nth-child(4) .footer-nav-list { grid-template-columns: 1fr 1fr; gap: 6px 12px; }
    /* Get in touch section spans 2 columns with 2x2 card grid */
    .footer-contact-col { grid-column: 1 / -1; }
    .footer-contact-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
    .footer-contact-card { padding: 10px; gap: 10px; }
    .fc-icon { width: 32px; height: 32px; min-width: 32px; }
    .fc-icon i, .fc-icon svg { width: 14px; height: 14px; }
    .fc-label { font-size: 0.65rem; }
    .fc-value { font-size: 0.78rem; word-break: break-all; }
    .fc-sub { font-size: 0.68rem; }
    .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
    .footer-bottom-links { justify-content: center; gap: 14px; flex-wrap: wrap; }
    .footer-trust-badges { justify-content: flex-start; gap: 6px; }
    .trust-badge { flex: 0 0 auto; font-size: 0.74rem; padding: 4px 10px; }
    .footer-brand-desc { max-width: 100%; font-size: 0.84rem; }
    .wa-fab-tooltip { display: none; }
    .footer-main { padding: 32px 0 24px; }
    .footer-col-title { font-size: 0.78rem; letter-spacing: 1px; margin-bottom: 12px; }
    .footer-nav-list li a { font-size: 0.84rem; padding: 5px 0; min-height: auto; }
}

/* Light mode adaptation */
body:not(.dark-mode) .site-footer {
    --f-bg: #220B02;
    --f-bg2: #2B0F03;
}

/* 3D Glowing Scroll Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #1B4332 0%, #2C6E2A 35%, #D48806 75%, #F59E0B 100%);
    z-index: 10000008;
    pointer-events: none;
    transition: width 0.08s ease-out;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 1px 8px rgba(212, 136, 6, 0.4),
                0 0 12px rgba(44, 110, 42, 0.25);
}

.reading-progress-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 8px #ffffff,
                0 0 15px #D48806,
                0 0 22px #2C6E2A;
    animation: progress-bead-pulse 1.2s infinite alternate;
}

@keyframes progress-bead-pulse {
    0% { transform: translateY(-50%) scale(0.85); box-shadow: 0 0 6px #ffffff, 0 0 12px #D48806; }
    100% { transform: translateY(-50%) scale(1.15); box-shadow: 0 0 12px #ffffff, 0 0 20px #2C6E2A, 0 0 30px #5A1E06; }
}

/* ── 3D Skeleton Loading System (Global Across All Pages) ────────────────── */
@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes skeleton-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.995); }
}

.skeleton,
.skeleton-box,
.skeleton-text,
.skeleton-title,
.skeleton-img,
.skeleton-avatar,
.skeleton-btn,
.skeleton-badge,
.skeleton-card {
    background: linear-gradient(
        90deg,
        rgba(230, 235, 231, 0.85) 25%,
        rgba(248, 250, 248, 0.98) 50%,
        rgba(230, 235, 231, 0.85) 75%
    ) !important;
    background-size: 200% 100% !important;
    animation: skeleton-shimmer 1.5s infinite ease-in-out !important;
    border-radius: var(--radius-sm, 8px);
    border: none !important;
    color: transparent !important;
    pointer-events: none !important;
    user-select: none !important;
    box-shadow: none !important;
}

[data-theme="dark"] .skeleton,
[data-theme="dark"] .skeleton-box,
[data-theme="dark"] .skeleton-text,
[data-theme="dark"] .skeleton-title,
[data-theme="dark"] .skeleton-img,
[data-theme="dark"] .skeleton-avatar,
[data-theme="dark"] .skeleton-btn,
[data-theme="dark"] .skeleton-badge,
[data-theme="dark"] .skeleton-card {
    background: linear-gradient(
        90deg,
        rgba(28, 36, 30, 0.9) 25%,
        rgba(45, 56, 48, 0.95) 50%,
        rgba(28, 36, 30, 0.9) 75%
    ) !important;
    background-size: 200% 100% !important;
}

.skeleton-text {
    height: 14px;
    margin-bottom: 8px;
    border-radius: 4px;
    width: 100%;
}

.skeleton-title {
    height: 22px;
    width: 70%;
    margin-bottom: 12px;
    border-radius: 6px;
}

.skeleton-img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    border-radius: 12px;
}

.skeleton-btn {
    height: 44px;
    width: 100%;
    border-radius: 30px;
}

.skeleton-badge {
    height: 22px;
    width: 70px;
    border-radius: 12px;
}

.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

/* Skeleton Product Card */
.skeleton-product-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 16px;
    padding: 16px;
    gap: 12px;
    height: 100%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    animation: skeleton-pulse 2s infinite ease-in-out;
}

.skeleton-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
}

/* Image Shimmer Loading Overlay */
.img-skeleton-wrap {
    position: relative;
    overflow: hidden;
    background: #f2f5f3;
}

.img-skeleton-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(230, 235, 231, 0.85) 25%,
        rgba(248, 250, 248, 0.98) 50%,
        rgba(230, 235, 231, 0.85) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite ease-in-out;
    z-index: 2;
    transition: opacity 0.35s ease;
}

.img-skeleton-wrap.loaded::after {
    opacity: 0;
    pointer-events: none;
}

/* ── Cookie Consent Banner (Standard Floating Card) ─────────────────── */
#cookieBanner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: auto;
    width: calc(100% - 48px);
    max-width: 400px;
    z-index: 1000005;
    background: rgba(14, 28, 18, 0.96);
    color: #e2ede5;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 18px;
    border: 1px solid rgba(74, 222, 128, 0.22);
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.5),
                0 4px 14px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transform: translateY(30px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease;
    font-size: 0.88rem;
}

#cookieBanner.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.cookie-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-icon-emoji {
    font-size: 1.15rem;
    line-height: 1;
}

.cookie-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.cookie-close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    line-height: 1;
    padding: 2px 6px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cookie-close-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

#cookieBanner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    line-height: 1.45;
}

#cookieBanner a {
    color: #4ade80;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 4px;
    transition: color 0.2s;
}

#cookieBanner a:hover {
    color: #86efac;
}

.cookie-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.cookie-accept {
    flex: 1.2;
    background: linear-gradient(135deg, hsl(152, 65%, 26%), hsl(152, 55%, 34%));
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(46, 89, 54, 0.35);
}

.cookie-accept:hover {
    background: linear-gradient(135deg, hsl(152, 65%, 22%), hsl(152, 55%, 30%));
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(46, 89, 54, 0.45);
}

.cookie-decline {
    flex: 0.8;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.cookie-decline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

/* ── Mobile Phone Adjustments (Safely positioned ABOVE bottom navigation bar) ── */
@media (max-width: 768px) {
    #cookieBanner {
        bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
        left: 12px !important;
        right: 12px !important;
        width: calc(100% - 24px) !important;
        max-width: 440px !important;
        margin: 0 auto !important;
        padding: 14px 16px !important;
        border-radius: 16px !important;
        gap: 10px !important;
        z-index: 1000005 !important;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(74, 222, 128, 0.3) !important;
    }
}

/* ════════════════════════════════════════════════════════════════
   GLOBAL TOAST & NOTIFICATION POSITIONING OVERRIDE (ANTI-NAVBAR OVERLAP)
   ════════════════════════════════════════════════════════════════ */
#notification-container {
    position: fixed !important;
    top: 96px !important;
    right: 24px !important;
    z-index: 10000020 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    pointer-events: none !important;
    max-width: min(420px, calc(100vw - 32px)) !important;
    width: 100% !important;
}

.notification,
.toast {
    z-index: 10000020 !important;
}

/* If single notification/toast rendered without container, ensure it never tucks under navbar */
body > .notification,
body > .toast {
    position: fixed !important;
    top: 96px !important;
    right: 24px !important;
    max-width: min(420px, calc(100vw - 32px)) !important;
}

@media (max-width: 768px) {
    #notification-container {
        top: 76px !important;
        right: 16px !important;
        left: 16px !important;
        width: auto !important;
        max-width: none !important;
    }
    body > .notification,
    body > .toast {
        top: 76px !important;
        right: 16px !important;
        left: 16px !important;
        width: auto !important;
        max-width: none !important;
    }
}

/* ============================================================
   GLOBAL FEATHER HEART & WISHLIST BUTTON ANIMATIONS & FIXES
   ============================================================ */
/* Default feather-heart and heart SVG styles */
svg.feather-heart,
.feather-heart,
.feather.feather-heart,
.wishlist-btn svg,
.pd-wishlist-round-btn svg,
.plp-card-wishlist svg,
.hm-bs-wishlist-btn svg {
    fill: none;
    stroke: currentColor;
    transition: fill 0.25s ease, 
                stroke 0.25s ease, 
                transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                color 0.25s ease;
    transform-origin: center center;
}

/* FIX: Ensure that when NOT active, wishlist heart NEVER displays as solid black */
button:not(.active) > svg.feather-heart:not([style*="fill"]),
button:not(.active) > .feather-heart:not([style*="fill"]),
.wishlist-btn:not(.active) svg:not([style*="fill"]),
.wishlist-btn:not(.active) .feather-heart:not([style*="fill"]),
.pd-wishlist-round-btn:not(.active) svg:not([style*="fill"]),
.pd-wishlist-round-btn:not(.active) .feather-heart:not([style*="fill"]),
.plp-card-wishlist:not(.active) svg:not([style*="fill"]),
.plp-card-wishlist:not(.active) .feather-heart:not([style*="fill"]),
.hm-bs-wishlist-btn:not(.active) svg:not([style*="fill"]),
.hm-bs-wishlist-btn:not(.active) .feather-heart:not([style*="fill"]) {
    fill: none !important;
    stroke: currentColor !important;
}

/* Active state: filled vibrant red */
.wishlist-btn.active svg,
.wishlist-btn.active .feather-heart,
.pd-wishlist-round-btn.active svg,
.pd-wishlist-round-btn.active .feather-heart,
.plp-card-wishlist.active svg,
.plp-card-wishlist.active .feather-heart,
.hm-bs-wishlist-btn.active svg,
.hm-bs-wishlist-btn.active .feather-heart,
button.active > svg.feather-heart,
button.active > .feather-heart {
    fill: #ef4444 !important;
    stroke: #ef4444 !important;
    color: #ef4444 !important;
}

/* ── Keyframe Animations ── */
@keyframes heartPopPulse {
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(0.7);
    }
    45% {
        transform: scale(1.48);
        filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.65));
    }
    70% {
        transform: scale(0.9);
    }
    85% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(239, 68, 68, 0));
    }
}

@keyframes heartShrinkWobble {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    20% {
        transform: scale(0.7) rotate(-15deg);
        opacity: 0.8;
    }
    45% {
        transform: scale(0.55) rotate(15deg);
        opacity: 0.6;
    }
    75% {
        transform: scale(1.1) rotate(-4deg);
        opacity: 0.95;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Trigger classes */
.heart-anim-add,
.wl-anim-add,
.heart-anim-add svg,
.wl-anim-add svg,
.heart-anim-add .feather-heart,
.wl-anim-add .feather-heart {
    animation: heartPopPulse 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both !important;
}

.heart-anim-remove,
.wl-anim-remove,
.heart-anim-remove svg,
.wl-anim-remove svg,
.heart-anim-remove .feather-heart,
.wl-anim-remove .feather-heart {
    animation: heartShrinkWobble 0.45s ease-in-out both !important;
}


