/* ================================================
   POOSHAN POTLII - Main Stylesheet
   Brand Colors: Green #2D6A27 | Orange #C8682B | Gold #F0A500 | Cream #FFF9F0
   ================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --primary:        #2D6A27;
  --primary-dark:   #1e4a1b;
  --primary-light:  #4a9040;
  --secondary:      #C8682B;
  --secondary-dark: #a0501e;
  --gold:           #F0A500;
  --gold-light:     #FCEFC4;
  --cream:          #FFF9F0;
  --cream-dark:     #F5EDE0;
  --brown:          #4A2E1A;
  --brown-light:    #8B5E3C;
  --text-dark:      #2C1810;
  --text-body:      #4A3728;
  --text-muted:     #8B7355;
  --white:          #FFFFFF;
  --border:         #E8D5C0;
  --shadow-sm:      0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md:      0 4px 20px rgba(44, 24, 16, 0.12);
  --shadow-lg:      0 8px 40px rgba(44, 24, 16, 0.16);
  --transition:     all 0.3s ease;
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Poppins', system-ui, sans-serif;
  --max-width:      1280px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-dark); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 39, 0.35);
}
.btn-secondary {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 104, 43, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.8);
}
.btn-outline-white:hover {
  background: white;
  color: var(--primary);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d4880a);
  color: var(--brown);
  border: none;
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 165, 0, 0.4);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Section Styles ---- */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .badge-label {
  display: inline-block;
  background: var(--gold-light);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(240, 165, 0, 0.3);
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  border-radius: 4px;
  margin: 1rem auto 0;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--brown);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  padding: 0.45rem 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold); }
.topbar i { margin-right: 0.3rem; }
.free-shipping-badge { color: var(--gold); font-weight: 600; }
.whatsapp-link { color: #25D366 !important; font-weight: 600; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--white);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo img { height: 64px; width: auto; }

/* Navigation */
.nav-close-btn { display: none; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover,
.main-nav a.active { color: var(--primary); }

/* Dropdown */
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}
.main-nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .dropdown li a {
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-body);
  border-radius: 0;
  display: block;
}
.main-nav .dropdown li a::after { display: none; }
.main-nav .dropdown li a:hover { background: var(--cream); color: var(--primary); padding-left: 1.5rem; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.action-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.action-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.action-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--secondary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.nav-overlay.show { display: block; }

/* ============================================
   FLASH ALERTS
   ============================================ */
.alert-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 400px;
}
.alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideInRight 0.3s ease;
  box-shadow: var(--shadow-md);
}
.alert-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.alert-error { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
.alert-info { background: var(--gold-light); color: var(--brown); border-left: 4px solid var(--gold); }
.alert-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  line-height: 1;
}
@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFF9F0 0%, #FDF3E7 40%, #F5EDE0 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(240,165,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(45,106,39,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8682B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.hero-text { animation: fadeInLeft 0.8s ease; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-light), rgba(240,165,0,0.2));
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(200,104,43,0.25);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--primary); }
.hero h1 em { color: var(--secondary); font-style: normal; }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 480px;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-item .number { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900; color: var(--primary); display: block; }
.stat-item .label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.hero-image { animation: fadeInRight 0.8s ease; position: relative; }
.hero-image-wrapper {
  position: relative;
  padding: 2rem;
}
.hero-image-wrapper .main-img {
  border-radius: var(--radius-xl);
  width: 100%;
  object-fit: cover;
  height: 500px;
  box-shadow: var(--shadow-lg);
}
/* ---- Hero Slider Styles ---- */
/* ---- Hero Slider Styles (Full-Width) ---- */
.hero {
  padding: 0 !important;
  display: block !important;
  min-height: auto !important;
  background: none !important;
}
.hero-slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 600px; /* Default desktop height */
  background: #111; /* Dark background before loading images */
}

/* On medium/small viewports, scale the slider height down gracefully */
@media (max-width: 991px) {
  .hero-slider-container {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .hero-slider-container {
    height: 440px;
  }
  .hero-slide-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-slide .hero-cta {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero-slider-container {
    height: 380px;
  }
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.0s ease-in-out;
  z-index: 1;
  display: flex;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Background image of the slide */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Premium dark overlay to make text highly readable */
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}

/* Centering / Left-aligning content on top of background */
.hero-slide .container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.hero-slide-content {
  max-width: 650px;
  color: #ffffff;
}

/* Animation trigger on slide active */
.hero-slide.active .hero-slide-content > * {
  animation: slideInUp 0.8s ease forwards;
  opacity: 0;
}
.hero-slide.active .hero-badge { animation-delay: 0.1s; }
.hero-slide.active h1 { animation-delay: 0.2s; }
.hero-slide.active .hero-desc { animation-delay: 0.3s; }
.hero-slide.active .hero-cta { animation-delay: 0.4s; }

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

/* Styling slide text & badge for dark background */
.hero-slide h1 {
  font-size: clamp(2.0rem, 4.5vw, 3.5rem) !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  margin-bottom: 1.25rem !important;
  font-family: var(--font-heading) !important;
}
.hero-slide h1 em {
  color: var(--gold) !important; /* Gold/orange highlighting for em */
  font-style: normal !important;
}
.hero-slide h1 span {
  color: #ffffff !important;
}
.hero-slide .hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 2.25rem !important;
  line-height: 1.8 !important;
  max-width: 580px !important;
}
.hero-slide .hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: rgba(240, 165, 0, 0.25) !important;
  color: var(--gold) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  border: 1px solid rgba(240, 165, 0, 0.4) !important;
  margin-bottom: 1.5rem !important;
}
.hero-slide .hero-badge i {
  color: var(--gold) !important;
}

/* CTA Buttons adjustments for dark backgrounds */
.hero-slide .btn {
  font-size: 0.95rem !important;
  padding: 0.85rem 1.8rem !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  transition: all 0.3s ease !important;
}
.hero-slide .btn-primary {
  background: var(--primary) !important;
  color: #ffffff !important;
  border: 1px solid var(--primary) !important;
}
.hero-slide .btn-primary:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-2px) !important;
}
.hero-slide .btn-outline {
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  background: transparent !important;
}
.hero-slide .btn-outline:hover {
  background: #ffffff !important;
  color: var(--primary) !important;
  transform: translateY(-2px) !important;
}

/* Pagination Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-slider-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--primary);
  padding: 1.25rem 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item i { font-size: 1.2rem; color: var(--gold); }

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.category-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.75rem 1rem;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.category-card:hover::before { transform: scaleX(1); }
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.category-card .cat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cream), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--secondary);
  transition: var(--transition);
}
.category-card:hover .cat-icon { background: var(--primary); color: white; transform: scale(1.1); }
.category-card .cat-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.category-card .cat-count { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.badge-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-sale { background: var(--secondary); color: white; }
.badge-new { background: var(--primary); color: white; }
.badge-bestseller { background: var(--gold); color: var(--brown); }
.product-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-actions .action-icon {
  width: 36px;
  height: 36px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}
.product-actions .action-icon:hover { background: var(--primary); color: white; }
.product-actions .action-icon.wishlist-active { color: red; }
.product-info { padding: 1.25rem; }
.product-category { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.product-name { font-size: 1rem; font-weight: 700; font-family: var(--font-heading); color: var(--text-dark); margin-bottom: 0.5rem; line-height: 1.3; }
.product-name a:hover { color: var(--primary); }
.product-rating { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.75rem; }
.stars { color: var(--gold); font-size: 0.8rem; }
.rating-count { font-size: 0.78rem; color: var(--text-muted); }
.product-price { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1rem; }
.price-current { font-size: 1.3rem; font-weight: 800; color: var(--primary); font-family: var(--font-heading); }
.price-original { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.price-discount { font-size: 0.75rem; font-weight: 700; color: var(--secondary); background: rgba(200,104,43,0.1); padding: 0.15rem 0.4rem; border-radius: 4px; }
.product-card .add-to-cart {
  width: 100%;
  padding: 0.65rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.product-card .add-to-cart:hover { background: var(--primary); color: white; }

/* ============================================
   BRAND STORY SECTION
   ============================================ */
.brand-story { background: linear-gradient(135deg, var(--cream-dark), var(--cream)); }
.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}
.story-image-wrapper { position: relative; }
.story-image-wrapper img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.story-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--primary);
  color: white;
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.story-badge .year { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; display: block; }
.story-badge .year-label { font-size: 0.78rem; opacity: 0.85; }
.story-text .badge-label { color: var(--secondary); background: var(--gold-light); }
.story-text h2 { margin-bottom: 1.25rem; }
.story-text .lead { font-size: 1.05rem; color: var(--text-body); margin-bottom: 1rem; line-height: 1.85; }
.story-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.story-pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.story-pillar .pillar-icon { font-size: 1.5rem; color: var(--secondary); flex-shrink: 0; }
.story-pillar .pillar-title { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.story-pillar .pillar-text { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits { background: var(--primary); }
.benefits .section-header .badge-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.benefits .section-header h2, .benefits .section-header p { color: white; }
.benefits .section-divider { background: linear-gradient(to right, var(--gold), rgba(255,255,255,0.5)); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.benefit-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.benefit-card .benefit-icon {
  width: 72px;
  height: 72px;
  background: rgba(240,165,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--gold);
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon { background: var(--gold); color: var(--brown); transform: rotate(5deg) scale(1.1); }
.benefit-card h4 { color: white; margin-bottom: 0.5rem; font-size: 1rem; }
.benefit-card p { color: rgba(255,255,255,0.75); font-size: 0.88rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--cream-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold-light);
  line-height: 1;
}
.testimonial-text { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1.5rem; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); }
.author-info .location { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-rating { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--secondary), #a0501e);
  padding: 3.5rem 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter-text h3 { color: white; font-size: 1.6rem; margin-bottom: 0.4rem; }
.newsletter-text p { color: rgba(255,255,255,0.85); margin: 0; }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  width: 100%;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border: none;
  outline: none;
  font-size: 0.92rem;
}
.newsletter-form .btn {
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  margin: 0.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--brown);
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo img { height: 56px; width: auto; margin-bottom: 1rem; filter: brightness(1.1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; }
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-link:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.social-link.whatsapp:hover { background: #25D366; }
.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-family: var(--font-heading);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact p { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; }
.footer-contact i { color: var(--gold); font-size: 0.9rem; margin-top: 0.15rem; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.payment-methods {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.payment-methods i { font-size: 1.6rem; color: rgba(255,255,255,0.7); }
.upi-badge, .cod-badge {
  background: rgba(255,255,255,0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.footer-bottom > p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ============================================
   WHATSAPP FLOAT + SCROLL TOP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
  animation: pulse-green 2s ease-in-out infinite;
}
.whatsapp-float i { font-size: 1.2rem; }
.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(37,211,102,0.5); color:white; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============================================
   CART DRAWER
   ============================================ */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: white;
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.cart-drawer-header h3 { font-size: 1.1rem; }
.close-drawer {
  width: 36px; height: 36px;
  background: none; border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-muted);
  transition: var(--transition);
}
.close-drawer:hover { background: var(--text-dark); color: white; }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 1.25rem; }
.cart-drawer-footer { padding: 1.25rem; border-top: 1px solid var(--border); background: var(--cream); }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.drawer-overlay.show { opacity: 1; pointer-events: all; }

/* Drawer cart item */
.drawer-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.drawer-item img { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.drawer-item-info { flex: 1; }
.drawer-item-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.drawer-item-price { color: var(--primary); font-weight: 700; font-size: 0.95rem; }
.drawer-qty-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; }
.drawer-qty-btn { width: 26px; height: 26px; background: var(--cream); border: 1px solid var(--border); border-radius: 50%; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.drawer-qty-btn:hover { background: var(--primary); color: white; }
.drawer-qty { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.drawer-remove { color: var(--text-muted); font-size: 0.8rem; background: none; border: none; cursor: pointer; }
.drawer-remove:hover { color: red; }
.drawer-total { display: flex; justify-content: space-between; font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-dark); }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--brown), var(--secondary));
  color: white;
  padding: 3.5rem 0;
  text-align: center;
}
.page-banner h1 { color: white; margin-bottom: 0.5rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: 0.75rem; }
.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; }
.products-sidebar {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 90px;
  border: 1px solid var(--border);
}
.sidebar-section { margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.sidebar-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-title { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; font-family: var(--font-heading); }
.filter-option { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; cursor: pointer; }
.filter-option input[type="checkbox"],
.filter-option input[type="radio"] { accent-color: var(--primary); width: 16px; height: 16px; }
.filter-option label { font-size: 0.88rem; color: var(--text-body); cursor: pointer; display: flex; justify-content: space-between; width: 100%; white-space: nowrap; }
.filter-option label .count { color: var(--text-muted); font-size: 0.8rem; }
.price-range-inputs { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.price-range-inputs input { width: 100%; padding: 0.5rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.85rem; }
.products-main { }
.products-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.products-count { font-size: 0.9rem; color: var(--text-muted); white-space: nowrap; }
.products-count span { color: var(--primary); font-weight: 700; }
.products-sort select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: white;
  cursor: pointer;
  outline: none;
}
.view-toggle { display: flex; gap: 0.35rem; }
.view-btn { width: 36px; height: 36px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition); }
.view-btn.active, .view-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail { padding: 3rem 0 5rem; }
.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
.product-gallery {}
.gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border);
  aspect-ratio: 1;
  background: var(--cream);
  margin-bottom: 1rem;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 0.75rem; }
.gallery-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary); }
.product-detail-info {}
.product-detail-info .category-link { color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.product-detail-info h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0.5rem 0 0.75rem; }
.product-detail-rating { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.product-detail-price { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.5rem; }
.product-detail-price .price-current { font-size: 2rem; font-weight: 900; }
.product-detail-price .price-original { font-size: 1.1rem; }
.product-weight { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.qty-selector { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.qty-selector label { font-weight: 600; font-size: 0.9rem; }
.qty-controls { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 50px; overflow: hidden; }
.qty-controls button { width: 42px; height: 42px; background: var(--cream); border: none; font-size: 1.1rem; cursor: pointer; transition: var(--transition); }
.qty-controls button:hover { background: var(--primary); color: white; }
.qty-controls span { min-width: 50px; text-align: center; font-weight: 700; font-size: 1rem; }
.product-cta { display: flex; gap: 1rem; margin-bottom: 2rem; }
.product-cta .btn { flex: 1; }
.detail-tabs { margin-top: 3rem; }
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 2rem; }
.tab-btn {
  padding: 0.85rem 1.5rem;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.tab-btn.active { color: var(--primary); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================
   FORMS (Login, Register, Contact, Checkout)
   ============================================ */
.form-page { padding: 4rem 0 6rem; }
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 520px;
  margin: 0 auto;
}
.form-card-wide { max-width: 960px; }
.form-card h2 { text-align: center; margin-bottom: 0.5rem; }
.form-card .subtitle { text-align: center; color: var(--text-muted); font-size: 0.92rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(45,106,39,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-footer { text-align: center; margin-top: 1.5rem; font-size: 0.9rem; color: var(--text-muted); }
.form-footer a { color: var(--primary); font-weight: 600; }
.input-group { position: relative; }
.input-group .input-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.input-group input { padding-left: 2.75rem; }
.input-group .toggle-password { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; }

/* ============================================
   CART PAGE
   ============================================ */
.cart-page { padding: 3rem 0 5rem; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; }
.cart-items-table { background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border); overflow: hidden; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--cream-dark); padding: 1rem 1.25rem; font-size: 0.85rem; font-weight: 700; text-align: left; color: var(--text-dark); }
.cart-table td { padding: 1rem 1.25rem; border-top: 1px solid var(--border); vertical-align: middle; }
.cart-product-row { display: flex; align-items: center; gap: 1rem; }
.cart-product-row img { width: 70px; height: 70px; border-radius: var(--radius-sm); object-fit: cover; border: 1px solid var(--border); }
.cart-product-name { font-weight: 600; font-size: 0.92rem; }
.cart-qty { display: flex; align-items: center; gap: 0.4rem; border: 1px solid var(--border); border-radius: 50px; width: fit-content; padding: 0.2rem 0.4rem; }
.cart-qty button { background: none; border: none; width: 28px; height: 28px; border-radius: 50%; font-size: 1rem; cursor: pointer; transition: var(--transition); }
.cart-qty button:hover { background: var(--primary); color: white; }
.cart-qty input { width: 40px; text-align: center; border: none; outline: none; font-weight: 700; font-size: 0.9rem; }
.cart-summary { background: white; border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); height: fit-content; position: sticky; top: 90px; }
.cart-summary h3 { margin-bottom: 1.5rem; }
.summary-line { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.92rem; }
.summary-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 800; padding-top: 1rem; border-top: 2px solid var(--border); color: var(--primary); margin-top: 0.5rem; }
.coupon-form { display: flex; gap: 0.5rem; margin: 1.25rem 0; }
.coupon-form input { flex: 1; padding: 0.65rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.88rem; outline: none; }
.coupon-form input:focus { border-color: var(--primary); }

/* ============================================
   CHECKOUT
   ============================================ */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; }
.checkout-form-section { background: white; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.checkout-section-title { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.5rem; }
.checkout-section-title i { color: var(--primary); }
.payment-method { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-option { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.payment-option:hover, .payment-option.selected { border-color: var(--primary); background: rgba(45,106,39,0.04); }
.payment-option input[type="radio"] { accent-color: var(--primary); }
.payment-option .payment-label { font-weight: 600; font-size: 0.9rem; }
.payment-option .payment-icon { font-size: 1.4rem; margin-left: auto; }
.order-review-card { background: white; border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); height: fit-content; position: sticky; top: 90px; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-card { background: white; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.blog-category { background: var(--gold-light); color: var(--secondary); font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 50px; font-size: 0.72rem; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--primary); font-weight: 600; font-size: 0.88rem; margin-top: 1rem; }
.blog-read-more:hover { gap: 0.7rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-card { background: var(--primary); color: white; border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-info-card h3 { color: white; margin-bottom: 0.5rem; }
.contact-info-card > p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 0.92rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail .detail-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--gold); flex-shrink: 0; }
.contact-detail .detail-text .label { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-detail .detail-text .value { color: white; font-weight: 600; }

/* ============================================
   MY ACCOUNT
   ============================================ */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; }
.account-sidebar { background: white; border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); height: fit-content; }
.account-sidebar .user-info { text-align: center; margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.account-sidebar .avatar { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--gold)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.8rem; color: white; font-weight: 700; margin: 0 auto 0.75rem; }
.account-sidebar .user-name { font-weight: 700; font-size: 1rem; color: var(--text-dark); }
.account-sidebar .user-email { font-size: 0.82rem; color: var(--text-muted); }
.account-nav a { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; color: var(--text-body); transition: var(--transition); margin-bottom: 0.25rem; }
.account-nav a:hover, .account-nav a.active { background: rgba(45,106,39,0.08); color: var(--primary); }
.account-nav a i { width: 18px; color: var(--text-muted); }
.account-nav a.active i { color: var(--primary); }
.account-content { background: white; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }

/* ============================================
   ORDER BADGES
   ============================================ */
.order-status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed { background: #cff4fc; color: #055160; }
.status-processing { background: #d1ecf1; color: #0c5460; }
.status-shipped { background: #d4edda; color: #155724; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-returned { background: #e2d9f3; color: #4a1f8c; }

/* Fix admin-btn border-radius typo */
.admin-btn { border-radius: var(--radius-sm) !important; }

/* Standalone badge-label (outside .section-header) */
.badge-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-light);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(240,165,0,0.3);
}

/* Product weight in listing */
.product-weight { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; }

/* Checkout tweaks */
.checkout-form-section { margin-bottom: 1.25rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero { background: linear-gradient(135deg, var(--cream), var(--cream-dark)); padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.vision-card { background: white; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); border-top: 3px solid; }
.vision-card.vision { border-color: var(--primary); }
.vision-card.mission { border-color: var(--secondary); }
.vision-card .v-icon { font-size: 2rem; margin-bottom: 1rem; }
.vision-card.vision .v-icon { color: var(--primary); }
.vision-card.mission .v-icon { color: var(--secondary); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { background: white; border-radius: var(--radius-md); padding: 2rem; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 2rem; color: white; font-weight: 700; margin: 0 auto 1rem; }
.team-name { font-weight: 700; margin-bottom: 0.25rem; }
.team-role { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   LOADING + EMPTY STATES
   ============================================ */
.loading-spinner { display: flex; align-items: center; justify-content: center; padding: 3rem; color: var(--primary); font-size: 1.5rem; }
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state i { font-size: 4rem; color: var(--border); margin-bottom: 1rem; }
.empty-state h3 { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-body {
  --admin-sidebar: 260px;
  --admin-primary: #2D6A27;
  --admin-bg: #f4f6f9;
  background: var(--admin-bg);
  font-family: var(--font-body);
}
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: var(--admin-sidebar);
  background: linear-gradient(180deg, var(--brown) 0%, #3a2010 100%);
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.admin-sidebar-logo {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.admin-sidebar-logo img { height: 48px; width: auto; }
.admin-nav { flex: 1; padding: 1rem 0; overflow-y: auto; }
.admin-nav-section { padding: 0.75rem 1.25rem 0.25rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,0.08);
  color: white;
  border-left-color: var(--gold);
}
.admin-nav a i { width: 18px; font-size: 0.95rem; }
.admin-nav .badge-count { margin-left: auto; background: var(--secondary); color: white; font-size: 0.7rem; padding: 0.15rem 0.5rem; border-radius: 50px; font-weight: 700; }
.admin-main { margin-left: var(--admin-sidebar); flex: 1; display: flex; flex-direction: column; }
.admin-topbar {
  background: white;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-page-title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }
.admin-topbar-right { display: flex; align-items: center; gap: 1rem; }
.admin-avatar { width: 38px; height: 38px; background: linear-gradient(135deg, var(--primary), var(--gold)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.9rem; }
.admin-content { padding: 1.75rem; flex: 1; }
.admin-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.admin-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.admin-card-title { font-size: 1rem; font-weight: 700; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 1.75rem; }
.stat-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.stat-icon.green { background: rgba(45,106,39,0.12); color: var(--primary); }
.stat-icon.orange { background: rgba(200,104,43,0.12); color: var(--secondary); }
.stat-icon.gold { background: rgba(240,165,0,0.12); color: var(--gold); }
.stat-icon.brown { background: rgba(74,46,26,0.12); color: var(--brown); }
.stat-info .stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.stat-info .stat-value { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); font-family: var(--font-heading); }
.stat-info .stat-change { font-size: 0.75rem; font-weight: 600; }
.stat-change.up { color: #28a745; }
.stat-change.down { color: #dc3545; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 0.85rem 1rem; background: var(--cream-dark); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); text-align: left; }
.admin-table td { padding: 1rem; border-top: 1px solid var(--border); font-size: 0.88rem; }
.admin-table tr:hover td { background: rgba(45,106,39,0.03); }
.admin-actions { display: flex; gap: 0.5rem; }
.admin-btn { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.4rem 0.9rem; border-radius: va(--radius-sm); font-size: 0.8rem; font-weight: 600; transition: var(--transition); border: 1px solid transparent; }
.admin-btn-edit { background: rgba(45,106,39,0.1); color: var(--primary); border-color: rgba(45,106,39,0.2); }
.admin-btn-edit:hover { background: var(--primary); color: white; }
.admin-btn-delete { background: rgba(220,53,69,0.1); color: #dc3545; border-color: rgba(220,53,69,0.2); }
.admin-btn-delete:hover { background: #dc3545; color: white; }
.admin-btn-view { background: rgba(0,123,255,0.1); color: #007bff; border-color: rgba(0,123,255,0.2); }
.admin-btn-view:hover { background: #007bff; color: white; }
.admin-form-section { background: white; border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 1.25rem; }
.admin-form-section h4 { margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.image-upload-box {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
}
.image-upload-box:hover { border-color: var(--primary); background: rgba(45,106,39,0.04); }
.image-upload-box i { font-size: 2.5rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.image-upload-box p { color: var(--text-muted); font-size: 0.88rem; }
.preview-images { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.preview-img { position: relative; width: 90px; height: 90px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--border); }
.preview-img img { width: 100%; height: 100%; object-fit: cover; }
.preview-img .remove-img { position: absolute; top: 2px; right: 2px; background: red; color: white; border: none; border-radius: 50%; width: 20px; height: 20px; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: #ccc; border-radius: 24px; cursor: pointer; transition: 0.3s; }
.toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: 0.3s; }
.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.75rem; }
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: white;
  color: var(--text-dark);
  transition: var(--transition);
}
.pagination a:hover, .pagination span.current { background: var(--primary); color: white; border-color: var(--primary); }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--gold); }
.d-none { display: none !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Scroll reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="left"].revealed { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="right"].revealed { transform: translateX(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 1; }
  .hero-image { order: 0; display: none; }
  .hero { min-height: auto; padding: 4rem 0; }
  .hero-cta, .hero-stats { justify-content: center; }
  .brand-story-inner { grid-template-columns: 1fr; }
  .story-image-wrapper { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .products-sidebar { position: static; }
  .product-detail-inner { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .admin-sidebar { width: 0; overflow: hidden; }
  .admin-main { margin-left: 0; }
  .admin-sidebar.open { width: var(--admin-sidebar); }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: white; z-index: 999; flex-direction: column; padding: 5rem 1.5rem 2rem; box-shadow: var(--shadow-lg); transition: right 0.4s ease; overflow-y: auto; }
  .main-nav.open { display: flex; right: 0; }
  .nav-close-btn { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; background: var(--cream); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--text-dark); cursor: pointer; transition: var(--transition); z-index: 10; }
  .nav-close-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--cream); padding: 0; margin-top: 0.25rem; display: none; }
  .main-nav .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; }
  .topbar .topbar-left { display: none; }
  .topbar .topbar-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .hero-slider-container {
    height: 520px !important;
  }
  .hero-slider-dots {
    bottom: 1.25rem !important;
  }
  .hero-slide h1 {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
    margin-bottom: 0.75rem !important;
  }
  .hero-slide .hero-desc {
    font-size: 0.88rem !important;
    margin-bottom: 1.5rem !important;
  }
  .hero-slide .hero-badge {
    font-size: 0.75rem !important;
    padding: 0.35rem 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .hero-slide .hero-cta {
    margin-bottom: 1.5rem !important;
  }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: center; gap: 1rem; }
  .vision-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero-cta { flex-direction: column; }
  .hero-slider-container {
    height: 480px !important;
  }
  .hero-slider-dots {
    bottom: 1rem !important;
  }
  .hero-slide h1 {
    font-size: 1.4rem !important;
    margin-bottom: 0.5rem !important;
  }
  .hero-slide .hero-desc {
    font-size: 0.85rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.6 !important;
  }
  .hero-slide .hero-badge {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .hero-slide .hero-cta {
    margin-bottom: 1rem !important;
  }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.75rem; border-radius: 50%; }
}

/* Wishlist grid responsive overrides */
.wishlist-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 991px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .wishlist-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Responsive Grid Layout Classes */
.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.order-success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.product-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.product-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Media Query overrides for the grids */
@media (max-width: 991px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .profile-grid,
  .product-benefits-grid,
  .product-reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .dashboard-stats-grid,
  .order-success-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
