/* =============================================
   SADHNA AYURVEDA – MAIN STYLESHEET
   ============================================= */

/* ---------- CSS VARIABLES (LIGHT THEME) ---------- */
:root {
  --bg-primary: #f5f0e8;
  --bg-secondary: #ffffff;
  --bg-tertiary: #faf7f2;
  --bg-card: #ffffff;
  --bg-header: #ffffff;
  --bg-ann: #2d1a0a;
  --bg-nav: #ffffff;
  --bg-footer: #2a1a0a;
  --bg-footer-bottom: #1a0f05;

  --text-primary: #1a0f05;
  --text-secondary: #4a3020;
  --text-muted: #7a6050;
  --text-light: #ffffff;
  --text-ann: #ffffff;

  --accent-brown: #6b3a1f;
  --accent-green: #3a7d44;
  --accent-gold: #c8941a;
  --accent-red: #c0392b;
  --accent-orange: #d4721a;

  --border-color: #e8ddd0;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;

  --shadow-sm: 0 2px 8px rgba(107, 58, 31, 0.08);
  --shadow-md: 0 8px 24px rgba(107, 58, 31, 0.12);
  --shadow-lg: 0 16px 48px rgba(107, 58, 31, 0.16);
  --shadow-hover: 0 20px 60px rgba(107, 58, 31, 0.2);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Outfit', sans-serif;

  --header-height: 120px;
  --ann-height: 40px;

  --search-bg: #f0e8dc;
  --input-bg: #f8f4ee;
}

/* ---------- DARK THEME ---------- */
[data-theme="dark"] {
  --bg-primary: #1a1208;
  --bg-secondary: #231810;
  --bg-tertiary: #2d1f0d;
  --bg-card: #2a1c0c;
  --bg-header: #1f1408;
  --bg-ann: #0d0805;
  --bg-nav: #1f1408;
  --bg-footer: #0d0805;
  --bg-footer-bottom: #080402;

  --text-primary: #f5ead8;
  --text-secondary: #d4b896;
  --text-muted: #a08060;
  --text-light: #f5ead8;
  --text-ann: #f5ead8;

  --accent-brown: #c8841a;
  --accent-green: #5aba6a;
  --accent-gold: #e8b830;
  --accent-red: #e84040;
  --accent-orange: #e88030;

  --border-color: #3d2a10;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.6);

  --search-bg: #2d1f0d;
  --input-bg: #231808;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent-brown); border-radius: 3px; }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--bg-ann);
  color: var(--text-ann);
  height: var(--ann-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: relative;
  z-index: 1000;
  font-size: 13px;
  font-family: var(--font-accent);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.ann-track-wrapper {
  flex: 1;
  overflow: hidden;
  text-align: center;
  padding: 0 12px;
}

.ann-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: annScroll 20s linear infinite;
}

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

/* Duplicate content for seamless loop */
.ann-track span {
  white-space: nowrap;
  opacity: 0.95;
}

.ann-nav {
  color: var(--text-ann);
  opacity: 0.7;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition-fast);
}
.ann-nav:hover { opacity: 1; background: rgba(255,255,255,0.1); }

.ann-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.ann-social a {
  color: var(--text-ann);
  opacity: 0.75;
  font-size: 14px;
  transition: var(--transition-fast);
}
.ann-social a:hover { opacity: 1; transform: scale(1.15); }

/* =============================================
   HEADER
   ============================================= */
.header {
  background: var(--bg-header);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-hindi {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent-brown);
  font-weight: 600;
}

.logo-name {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-brown);
  letter-spacing: 2px;
}

.logo-sub {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Search */
.search-container {
  flex: 1;
  max-width: 640px;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  background: var(--search-bg);
  overflow: hidden;
  transition: var(--transition);
}

.search-bar:focus-within {
  border-color: var(--accent-brown);
  box-shadow: 0 0 0 3px rgba(107, 58, 31, 0.12);
}

.search-type {
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-right: 1px solid var(--border-color);
  gap: 6px;
  white-space: nowrap;
  color: var(--text-secondary);
  font-size: 13px;
}

.search-type select {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
  outline: none;
  padding: 10px 0;
}

.search-type i {
  font-size: 10px;
  opacity: 0.6;
  pointer-events: none;
}

.search-bar input {
  flex: 1;
  border: none;
  background: none;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  outline: none;
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

.search-mic, .search-btn {
  padding: 10px 14px;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition-fast);
}
.search-mic:hover { color: var(--accent-brown); }

.search-btn {
  background: var(--accent-brown);
  color: white;
  padding: 10px 18px;
  border-radius: 0 50px 50px 0;
  margin-right: -1px;
}
.search-btn:hover { background: var(--accent-orange); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.action-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 17px;
  transition: var(--transition);
}
.action-btn:hover {
  color: var(--accent-brown);
  background: var(--search-bg);
  transform: scale(1.05);
}

.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--accent-red);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: 1;
}

.divider {
  width: 1px;
  height: 28px;
  background: var(--border-color);
  margin: 0 6px;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 18px;
  transition: var(--transition);
}
.theme-toggle:hover {
  color: var(--accent-brown);
  background: var(--search-bg);
  transform: rotate(30deg) scale(1.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: var(--transition-fast);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger:hover span { background: var(--accent-brown); }

/* Main Navigation */
.main-nav {
  background: var(--bg-nav);
  border-top: 1px solid var(--border-color);
}

.nav-list {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 14px;
  font-family: var(--font-accent);
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-link i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-item.active .nav-link,
.nav-link:hover {
  color: var(--accent-brown);
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 998;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.dropdown a:hover {
  background: var(--bg-tertiary);
  color: var(--accent-brown);
  padding-left: 26px;
}

.dropdown a i {
  width: 16px;
  color: var(--accent-brown);
  opacity: 0.7;
  font-size: 12px;
}

/* Mega Dropdown */
.mega-dropdown {
  min-width: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  padding: 20px;
  gap: 0;
  left: -40px;
}

.mega-col {
  padding: 8px 16px;
  border-right: 1px solid var(--border-color);
}
.mega-col:last-child { border-right: none; }

.mega-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--font-accent);
}

.mega-col a {
  padding: 8px 6px;
  font-size: 13px;
  border-radius: 6px;
}

.featured-col {
  padding-left: 20px;
}

.featured-product-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}
.featured-product-mini:hover { background: var(--bg-tertiary); border-color: var(--accent-brown); }

.featured-product-mini img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
}
.featured-product-mini p {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.featured-product-mini span {
  font-size: 12px;
  color: var(--accent-red);
  font-weight: 600;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height) - var(--ann-height));
  min-height: 480px;
  max-height: 780px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
  background: linear-gradient(90deg, #f5f0e8 0%, #f5f0e8 52%, rgba(245, 240, 232, 0.85) 68%, transparent 100%);
  z-index: 3;
}

[data-theme="dark"] .slide-overlay {
  background: linear-gradient(90deg, #140d06 0%, #140d06 52%, rgba(20, 13, 6, 0.85) 68%, transparent 100%);
}

.dark-overlay {
  background: linear-gradient(90deg, #0e0803 0%, #0e0803 52%, rgba(14, 8, 3, 0.85) 68%, transparent 100%) !important;
}

.slide-content {
  max-width: 520px;
  padding: 32px 36px;
  background: rgba(253, 251, 247, 0.95);
  border: 1px solid rgba(107, 58, 31, 0.2);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 16px 40px rgba(42, 26, 10, 0.15);
  animation: slideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 5;
}

[data-theme="dark"] .slide-content,
.dark-overlay .slide-content {
  background: rgba(24, 15, 8, 0.95);
  border-color: rgba(200, 148, 26, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-green);
  font-family: var(--font-accent);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.slide-tag.gold { color: var(--accent-gold); }

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 14px;
}

.slide-title.gold-text { color: #f0c060; }

.slide-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.6;
}

.slide-desc.light { color: rgba(255,255,255,0.85); }

.slide-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.slide-badges span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  font-family: var(--font-accent);
}

.slide-badges span i { color: var(--accent-green); }

.gold-badges span { color: rgba(255,255,255,0.85); }
.gold-badges span i { color: var(--accent-gold); }

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Controls */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.9);
  color: var(--accent-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

[data-theme="dark"] .slide-btn {
  background: rgba(30,20,10,0.9);
  color: var(--accent-gold);
}

.slide-btn:hover {
  background: var(--accent-brown);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slide-btn.prev { left: 20px; }
.slide-btn.next { right: 20px; }

.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.8);
  transition: var(--transition);
}

.dot.active {
  background: white;
  transform: scale(1.3);
}

/* =============================================
   TRUST BADGES
   ============================================= */
.trust-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 40px;
}

.trust-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 30px;
  border-right: 1px solid var(--border-color);
  flex: 1;
  min-width: 160px;
  transition: var(--transition);
}

.trust-item:last-child { border-right: none; }

.trust-item:hover { background: var(--bg-tertiary); }

.trust-item > i {
  font-size: 24px;
  color: var(--accent-brown);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-accent);
}

.trust-item span {
  font-size: 12px;
  color: var(--text-muted);
}

/* =============================================
   SECTIONS & CONTAINERS
   ============================================= */
.section {
  padding: 80px 0;
  scroll-margin-top: 130px;
}

#bestsellers, #categories, #about, #testimonials, #blog, #promo, #contact, #hero {
  scroll-margin-top: 130px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-brown);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--accent-brown);
  vertical-align: middle;
  margin: 0 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Product Filter Pills */
.product-filter-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 40px;
}

.filter-pill {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-pill i {
  color: var(--accent-brown);
  font-size: 13px;
  transition: color 0.3s ease;
}

.filter-pill:hover {
  border-color: var(--accent-brown);
  color: var(--accent-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(107, 66, 38, 0.15);
}

.filter-pill.active {
  background: var(--accent-brown);
  color: #ffffff;
  border-color: var(--accent-brown);
  box-shadow: 0 6px 18px rgba(107, 66, 38, 0.25);
}

.filter-pill.active i {
  color: #ffffff;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-accent);
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-brown);
  color: white;
  border-color: var(--accent-brown);
}
.btn-primary:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 58, 31, 0.35);
}

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

.btn-outline-primary {
  background: transparent;
  color: var(--accent-brown);
  border-color: var(--accent-brown);
}
.btn-outline-primary:hover {
  background: var(--accent-brown);
  color: white;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #c8941a, #e8c040);
  color: #1a0f05;
  font-weight: 700;
  border-color: transparent;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #e8b830, #ffd060);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 148, 26, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: #f0c060;
  border-color: #f0c060;
}
.btn-outline-gold:hover {
  background: #f0c060;
  color: #1a0f05;
  transform: translateY(-2px);
}

.btn-add-cart {
  width: 100%;
  justify-content: center;
  background: var(--bg-primary);
  color: var(--accent-brown);
  border: 2px solid var(--accent-brown);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  margin-top: 12px;
  transition: var(--transition);
}
.btn-add-cart:hover {
  background: var(--accent-brown);
  color: white;
  transform: translateY(-2px);
}

.full-width { width: 100%; justify-content: center; }

/* =============================================
   CATEGORIES GRID
   ============================================= */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: block;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.cat-img-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

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

.category-card:hover .cat-img-wrapper img {
  transform: scale(1.06);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 15, 5, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover .cat-overlay {
  opacity: 1;
}

.cat-overlay span {
  color: white;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cat-info {
  padding: 16px;
}

.cat-info h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cat-info p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================
   PROMO BANNER
   ============================================= */
.promo-section {
  background: var(--bg-secondary);
  padding: 60px 40px;
  overflow: hidden;
}

.promo-inner {
  max-width: 1300px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  box-shadow: var(--shadow-lg);
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-content {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--border-color);
  border-left: none;
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.promo-content h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.promo-content h2 span {
  color: var(--accent-brown);
}

.promo-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.promo-content strong { color: var(--accent-red); }

.promo-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent-brown);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  min-width: 60px;
}

.timer-unit span {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-accent);
  line-height: 1;
}

.timer-unit label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.timer-sep {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-brown);
}

/* =============================================
   PRODUCTS GRID
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-brown);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-tertiary);
}

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

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.badge {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-accent);
  letter-spacing: 0.5px;
}

.badge-sale { background: var(--accent-red); color: white; }
.badge-new { background: var(--accent-green); color: white; }
.badge-organic { background: var(--accent-brown); color: white; }
.badge-brand { background: var(--accent-brown); color: #fff; font-weight: 700; border: 1px solid rgba(255,255,255,0.4); }

.brand-watermark {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(45, 26, 10, 0.85);
  color: #f5ead8;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--accent-gold);
  z-index: 3;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.brand-watermark i {
  color: var(--accent-gold);
  font-size: 9px;
}

.bottle-brand-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  background: rgba(45, 26, 10, 0.92);
  color: #f0c060;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1.5px solid #c8941a;
  z-index: 4;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.bottle-brand-badge::before {
  content: '🌿 ';
}/* Authentic Bottle Label Overlay - Matching Reference Label Exact Layout */
.bottle-label-overlay {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-top: 2px solid #c8941a;
  border-bottom: 2px solid #c8941a;
  border-left: none;
  border-right: none;
  padding: 8px 10px 6px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  z-index: 8 !important;
  pointer-events: none;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.bottle-label-overlay.dark-label,
#cat-mens .bottle-label-overlay,
#prod-liver .bottle-label-overlay {
  background: #181008 !important;
  border-top-color: #e8c040 !important;
  border-bottom-color: #e8c040 !important;
}

/* Category Card Precision Bottle Label Positions */
#cat-diabetes .bottle-label-overlay { top: 48%; left: 50%; width: 110px; }
#cat-joint .bottle-label-overlay    { top: 50%; left: 38%; width: 95px; }
#cat-liver .bottle-label-overlay    { top: 50%; left: 63%; width: 100px; }
#cat-mens .bottle-label-overlay     { top: 60%; left: 50%; width: 125px; }

/* Product Card Precision Bottle Label Positions (Centered on Bottle) */
#prod-madhu .bottle-label-overlay { top: 50%; left: 50%; width: 115px; }
#prod-nirog .bottle-label-overlay { top: 50%; left: 50%; width: 135px; }
#prod-liver .bottle-label-overlay { top: 50%; left: 50%; width: 115px; }
#prod-joint .bottle-label-overlay { top: 50%; left: 50%; width: 115px; }

.product-card .brand-watermark {
  display: none;
}

/* Label Content Styling Matching Image 2 */
.label-lotus {
  color: #c8941a;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 3px;
}

.dark-label .label-lotus,
#cat-mens .label-lotus,
#prod-liver .label-lotus {
  color: #e8c040;
}

.label-brand-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: #3b1f0a;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.dark-label .label-brand-name,
#cat-mens .label-brand-name,
#prod-liver .label-brand-name {
  color: #f5ead8;
}

.label-brand-sub {
  font-family: var(--font-accent);
  font-size: 8px;
  font-weight: 600;
  color: #6b3a1f;
  letter-spacing: 2.5px;
  line-height: 1;
  margin-top: 2px;
  text-transform: uppercase;
}

.dark-label .label-brand-sub,
#cat-mens .label-brand-sub,
#prod-liver .label-brand-sub {
  color: #e8c040;
}

.label-divider {
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8941a, transparent);
  margin: 4px auto;
}

.dark-label .label-divider,
#cat-mens .label-divider,
#prod-liver .label-divider {
  background: linear-gradient(90deg, transparent, #e8c040, transparent);
}

.label-product-title {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 800;
  color: #1a0f05;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 1px;
}

.dark-label .label-product-title,
#cat-mens .label-product-title,
#prod-liver .label-product-title {
  color: #ffffff;
}

.label-product-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 8px;
  color: #7a583d;
  line-height: 1;
  margin-top: 2px;
  white-space: nowrap;
}

.dark-label .label-product-sub,
#cat-mens .label-product-sub,
#prod-liver .label-product-sub {
  color: #d4b896;
}

.footer-contact-info {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-info p {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.footer-contact-info i {
  color: var(--accent-brown);
  font-size: 13px;
}

.footer-contact-info a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  z-index: 990;
  transition: all 0.3s ease;
}

.floating-whatsapp i {
  font-size: 22px;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

/* FAQ Accordion Styling */
.faq-section {
  background: var(--bg-card);
}

.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--bg-body);
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--accent-brown);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
}

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

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* Razorpay Checkout Modal Styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: block;
  opacity: 1;
}

.modal-dialog.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 90%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  z-index: 2001;
  display: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-dialog.checkout-modal.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-body);
}

.modal-header h3 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-header h3 i {
  color: #25d366;
}

.modal-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--accent-brown);
}

.modal-body {
  padding: 24px;
}

.checkout-summary-box {
  background: rgba(107, 66, 38, 0.08);
  border: 1px dashed var(--accent-brown);
  padding: 14px 18px;
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-summary-box p {
  margin: 0;
  font-size: 15px;
  color: var(--text-primary);
}

.checkout-summary-box strong {
  font-size: 20px;
  color: var(--accent-brown);
}

.checkout-summary-box span {
  font-size: 12px;
  color: #25d366;
  font-weight: 600;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-brown);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.payment-opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background: var(--bg-body);
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-opt.active {
  border-color: var(--accent-brown);
  background: rgba(107, 66, 38, 0.04);
}

.payment-opt input {
  margin-top: 3px;
  accent-color: var(--accent-brown);
}

.opt-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.opt-content strong {
  font-size: 14px;
  color: var(--text-primary);
}

.opt-content span {
  font-size: 12px;
  color: var(--text-secondary);
}

.badge-rzp {
  display: inline-block;
  align-self: flex-start;
  margin-top: 4px;
  background: #02042b;
  color: #528ff0;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.btn-pay-now {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  background: #0c2340;
  color: #ffffff;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(12, 35, 64, 0.3);
  transition: all 0.3s ease;
}

.btn-pay-now:hover {
  background: #14355e;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(12, 35, 64, 0.4);
}

.trust-badges-checkout {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-secondary);
}

.trust-badges-checkout i {
  color: #25d366;
}

.product-actions-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.product-card:hover .product-actions-overlay {
  opacity: 1;
  transform: translateX(0);
}

.prod-action-btn {
  width: 36px;
  height: 36px;
  background: white;
  color: var(--text-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.prod-action-btn:hover {
  background: var(--accent-brown);
  color: white;
}

.wishlist-btn.active { color: var(--accent-red); }

.product-info {
  padding: 16px;
}

.product-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-brown);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-family: var(--font-accent);
}

.product-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.product-rating i {
  color: #f5a623;
  font-size: 12px;
}

.product-rating span {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 4px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.price-original {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-sale {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-red);
  font-family: var(--font-accent);
}

.view-all-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* =============================================
   WHY SADHNA SECTION
   ============================================= */
.why-section {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-brown));
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-brown), var(--accent-orange));
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--bg-primary);
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  min-width: calc(50% - 12px);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex-shrink: 0;
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-brown);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testi-stars i {
  color: #f5a623;
  font-size: 14px;
}

.testi-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-brown), var(--accent-orange));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-accent);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
}

.testi-author span {
  font-size: 12px;
  color: var(--text-muted);
}

.testi-product {
  font-size: 12px;
  color: var(--accent-brown);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-accent);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testi-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.testi-btn:hover {
  border-color: var(--accent-brown);
  color: var(--accent-brown);
  background: var(--bg-tertiary);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dots .dot {
  background: var(--border-color);
  border-color: var(--border-color);
}

.testi-dots .dot.active {
  background: var(--accent-brown);
  border-color: var(--accent-brown);
  transform: scale(1.2);
}

/* =============================================
   BLOG / HEALTH TIPS
   ============================================= */
.blog-section {
  background: var(--bg-secondary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: block;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-brown);
}

.blog-img-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-brown);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-accent);
}

.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-brown);
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-accent);
  transition: var(--transition-fast);
}

.blog-card:hover .read-more {
  gap: 10px;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 40px;
}

.newsletter-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.newsletter-text p {
  font-size: 15px;
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  flex: 1;
  max-width: 480px;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  overflow: hidden;
  background: var(--input-bg);
  transition: var(--transition);
}

.newsletter-form:focus-within {
  border-color: var(--accent-brown);
  box-shadow: 0 0 0 3px rgba(107, 58, 31, 0.1);
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: none;
  font-size: 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  outline: none;
}

.newsletter-form input::placeholder { color: var(--text-muted); }

.newsletter-form button {
  background: var(--accent-brown);
  color: white;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-accent);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--accent-orange); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,0.7);
  padding: 64px 40px 0;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  filter: brightness(0.9);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text .logo-hindi {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
}

.footer-logo-text span:last-child {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1.5px;
  font-family: var(--font-accent);
}

.footer-tagline {
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--accent-orange);
  color: white;
  transform: scale(1.15);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-accent);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
}
.footer-col ul li a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

/* Footer newsletter */
.footer-newsletter {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid rgba(255,255,255,0.2);
  margin-bottom: 18px;
}

.footer-newsletter input {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }

.footer-newsletter button {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  padding: 8px;
  transition: var(--transition-fast);
}
.footer-newsletter button:hover { color: var(--accent-gold); }

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icons a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.footer-social-icons a:hover {
  background: var(--accent-orange);
  color: white;
  transform: scale(1.1);
}

/* Footer help */
.help-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.help-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.help-item p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}

.help-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold) !important;
  font-family: var(--font-accent);
  transition: var(--transition-fast);
}
.help-link:hover { color: var(--accent-orange) !important; }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.payment-icons {
  display: flex;
  gap: 12px;
  font-size: 22px;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   CART SIDEBAR
   ============================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-card);
  z-index: 2001;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-fast);
}
.cart-close:hover { background: var(--accent-red); color: white; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  gap: 16px;
  text-align: center;
}

.cart-empty i {
  font-size: 52px;
  color: var(--border-color);
}

.cart-empty p {
  font-size: 16px;
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--bg-tertiary);
  border-radius: var(--border-radius-sm);
  margin-bottom: 10px;
  border: 1px solid var(--border-color);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bg-secondary);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 13px;
  color: var(--accent-red);
  font-weight: 600;
}

.cart-item-remove {
  color: var(--text-muted);
  font-size: 14px;
  padding: 4px;
  align-self: flex-start;
  transition: var(--transition-fast);
}
.cart-item-remove:hover { color: var(--accent-red); }

.cart-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
}

.cart-total strong {
  font-size: 20px;
  color: var(--accent-red);
  font-family: var(--font-accent);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--accent-brown);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  z-index: 1500;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--accent-orange);
  transform: translateY(-3px);
}

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--accent-brown);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-accent);
  z-index: 3000;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mega-dropdown { min-width: 500px; }
}

@media (max-width: 900px) {
  .header-inner { padding: 12px 20px; gap: 12px; }
  .search-container { max-width: 100%; }
  .main-nav { display: none; }
  .main-nav.mobile-open { display: block; }
  .nav-list { flex-direction: column; padding: 10px 0; }
  .nav-link { padding: 12px 20px; }
  .dropdown, .mega-dropdown { position: static; opacity: 1 !important; visibility: visible !important; transform: none !important; box-shadow: none; border: none; background: var(--bg-tertiary); border-radius: 0; min-width: unset; }
  .hamburger { display: flex; }
  .promo-inner { grid-template-columns: 1fr; }
  .promo-img { height: 240px; }
  .promo-content { border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg); border-left: 1px solid var(--border-color); border-top: none; padding: 30px; }
  .testi-card { min-width: calc(100% - 0px); }
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .trust-container { flex-wrap: wrap; }
  .trust-item { border-right: none; min-width: 140px; }
}

@media (max-width: 640px) {
  .header-inner { padding: 10px 16px; }
  .logo-text { display: none; }
  .ann-social { display: none; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer { padding: 40px 20px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 50px 0; }
  .container { padding: 0 20px; }
  .slide-overlay { padding: 0 24px; }
  .hero-section { min-height: 360px; }
  .mega-dropdown { grid-template-columns: 1fr; }
}
