/* ===== SEO STATIC SITE - SHARED STYLES ===== */
/* Minimal, fast-loading, mobile-first CSS */

:root {
  --green-primary: #0D5E38;
  --green-dark: #0a4a2c;
  --gold-accent: #D4AF37;
  --gold-light: #E6C56A;
  --neutral-bg: #F8F9FA;
  --neutral-dark: #212529;
  --neutral-medium: #6C757D;
  --white: #FFFFFF;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--neutral-dark);
  background-color: var(--neutral-bg);
  line-height: 1.6;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--green-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--green-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== HEADER ===== */
.site-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background-color: var(--green-primary);
  color: var(--white);
  padding: 10px 0;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

.top-bar p {
  margin: 0;
}

.top-bar a {
  color: var(--gold-accent);
  text-decoration: none;
  font-weight: 600;
  margin-left: 6px;
  transition: opacity 0.2s;
}

.top-bar a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.main-header {
  padding: 10px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--neutral-dark);
  font-family: 'Montserrat', sans-serif;
  margin-right: 50px;
}

.logo-green {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.logo-gold {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold-accent);
  letter-spacing: -0.5px;
  line-height: 1;
}

.heritage-badge {
  background: var(--green-primary);
  color: white;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  margin-top: 5px;
  width: fit-content;
}

/* Navigation - matches reference project */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--neutral-dark);
  font-weight: 600;
  padding: 8px 3px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--green-primary);
  transform: translateY(-1px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--green-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 80%;
}

.nav-links a.active {
  color: var(--green-primary);
  font-weight: 700;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--neutral-dark);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  color: var(--green-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--green-primary);
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-overlay {
  display: none;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--green-primary);
  cursor: pointer;
  padding: 5px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 20px;
  opacity: 0.95;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-accent);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 20px;
}

/* ===== CONTENT SECTIONS ===== */
.section {
  padding: 60px 0;
  background: var(--white);
}

.section-alt {
  background: var(--neutral-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: var(--green-primary);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold-accent);
  border-radius: 2px;
}

.section-header p {
  color: var(--neutral-medium);
  font-size: 1.1rem;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid #eee;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 3rem;
  color: var(--green-primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--green-primary);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--neutral-medium);
}

/* ===== CATEGORY GRID - PREMIUM FASHION STYLE ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.category-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.category-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-image img,
.category-image .emoji-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image img,
.category-card:hover .category-image .emoji-placeholder {
  transform: scale(1.08);
}

.category-content {
  padding: 16px 18px 20px;
  background: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-content h3 {
  color: var(--neutral-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.category-card:hover .category-content h3 {
  color: var(--green-primary);
}

.category-subtitle {
  color: var(--neutral-medium);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-cta {
  color: var(--green-primary);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: all 0.3s ease;
}

.category-cta i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.category-card:hover .category-cta {
  font-weight: 700;
}

.category-card:hover .category-cta i {
  transform: translateX(4px);
}

/* ===== SUBCATEGORY CARDS ===== */
.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.subcategory-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.subcategory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.subcategory-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.subcategory-image img,
.subcategory-image .emoji-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.subcategory-card:hover .subcategory-image img,
.subcategory-card:hover .subcategory-image .emoji-placeholder {
  transform: scale(1.06);
}

.subcategory-content {
  padding: 14px 16px 18px;
  background: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.subcategory-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.subcategory-card:hover .subcategory-content h3 {
  color: var(--green-primary);
}

.subcategory-content p {
  font-size: 0.82rem;
  color: var(--neutral-medium);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.subcategory-cta {
  color: var(--green-primary);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.subcategory-cta i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.subcategory-card:hover .subcategory-cta i {
  transform: translateX(3px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .category-grid,
  .subcategory-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .category-image {
    aspect-ratio: 3/4;
  }
  
  .category-content {
    padding: 12px 14px 16px;
  }
  
  .category-content h3 {
    font-size: 1rem;
  }
  
  .subcategory-content {
    padding: 12px 14px 16px;
  }
  
  .subcategory-content h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .category-grid,
  .subcategory-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .category-content h3 {
    font-size: 0.9rem;
  }
  
  .category-subtitle {
    font-size: 0.75rem;
  }
  
  .category-cta {
    font-size: 0.8rem;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  background: var(--gold-accent);
  color: var(--green-dark);
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: var(--green-dark);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--neutral-dark);
  color: var(--white);
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--gold-accent);
  margin-bottom: 20px;
}

.footer-col p {
  opacity: 0.9;
  margin-bottom: 20px;
}

.footer-col a {
  color: var(--white);
  display: block;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--gold-accent);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold-accent);
  color: var(--green-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

/* ===== TRUST BADGES ===== */
.trust-strip {
  background: var(--white);
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
}

.trust-icon {
  font-size: 2rem;
  color: var(--green-primary);
  flex-shrink: 0;
}

.trust-item span {
  font-weight: 600;
  color: var(--neutral-dark);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 15px 0;
  font-size: 0.9rem;
  color: var(--neutral-medium);
}

.breadcrumbs a {
  color: var(--green-primary);
}

.breadcrumbs span {
  margin: 0 8px;
}

/* ===== CONTENT BOX ===== */
.content-box {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin: 30px 0;
}

.content-box h2 {
  color: var(--green-primary);
  margin-bottom: 20px;
}

.content-box p {
  color: var(--neutral-medium);
  line-height: 1.8;
}

/* ===== GOOGLE REVIEW BADGE ===== */
.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  margin: 20px 0;
  text-decoration: none;
  color: inherit;
  border: 2px solid #eee;
  transition: var(--transition);
}

.google-review-badge:hover {
  border-color: var(--gold-accent);
  transform: translateY(-2px);
}

.google-review-badge .stars {
  color: #FFB400;
  font-size: 1.2rem;
}

.google-review-badge .rating-text {
  font-weight: 700;
  color: var(--neutral-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  
  /* Hero Section */
  .hero {
    padding: 40px 15px;
  }
  
  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
  
  /* Header & Navigation - Hamburger Menu */
  .top-bar {
    font-size: 0.8rem;
    padding: 6px 0;
  }

  .top-bar p {
    padding: 0 10px;
  }

  .main-header {
    padding: 15px 0;
    position: relative;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
  }

  .logo {
    position: static;
    transform: none;
    text-align: left;
    margin: 0;
  }

  .logo-green {
    font-size: 1.6rem;
    line-height: 1;
  }

  .logo-gold {
    font-size: 1.2rem;
    line-height: 1;
  }

  .heritage-badge {
    font-size: 0.6rem;
    padding: 2px 8px;
  }

  /* Hide Heritage Badge on Mobile */
  .heritage-badge {
    display: none;
  }

  /* Hamburger Button */
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }

  /* Hide Nav by Default on Mobile */
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
    z-index: 1000;
  }

  /* Show Nav When Active */
  .main-nav.active {
    display: flex;
  }
  
  .main-nav a {
    padding: 14px 20px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav a:last-child {
    border-bottom: none;
  }
  
  .main-nav a:hover {
    background: rgba(13, 94, 56, 0.05);
    color: var(--green-primary);
  }

  .main-nav .nav-inner {
    overflow: hidden !important;
  }

  .main-nav .site-logo-img {
    max-width: 100% !important;
  }

  .main-nav .logo {
    -webkit-tap-highlight-color: transparent !important;
  }
  
  /* Sections */
  .section {
    padding: 40px 0;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header p {
    font-size: 0.95rem;
  }
  
  /* Grids - Single Column */
  .features-grid,
  .category-grid,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Feature & Category Cards */
  .feature-card,
  .category-card {
    padding: 20px;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .category-image {
    height: 260px;
    font-size: 4.5rem;
  }

  .category-content h3 {
    font-size: 1.1rem;
  }

  .category-content p {
    font-size: 0.85rem;
  }
  
  /* Content Box */
  .content-box {
    padding: 20px;
    margin: 20px 0;
  }
  
  .content-box h2 {
    font-size: 1.3rem;
  }
  
  .content-box h3 {
    font-size: 1.1rem;
  }
  
  .content-box p {
    font-size: 0.9rem;
  }
  
  /* Trust Strip */
  .trust-strip {
    padding: 20px 0;
  }
  
  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .trust-icon {
    font-size: 1.5rem;
  }
  
  .trust-item span {
    font-size: 0.85rem;
  }
  
  /* Buttons */
  .btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    width: auto;
    display: inline-block;
  }
  
  /* Footer */
  .site-footer {
    padding: 40px 0 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-col h3,
  .footer-col h4 {
    font-size: 1.1rem;
  }
  
  .footer-col p,
  .footer-col a {
    font-size: 0.9rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .social-links a {
    width: 35px;
    height: 35px;
  }
  
  /* WhatsApp Float */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    bottom: 15px;
    right: 15px;
  }
  
  /* Google Review Badge */
  .google-review-badge {
    padding: 12px 20px;
    flex-direction: column;
    gap: 8px;
  }
  
  .google-review-badge .stars {
    font-size: 1rem;
  }
  
  .google-review-badge .rating-text {
    font-size: 0.9rem;
  }
  
  /* Breadcrumbs */
  .breadcrumbs {
    font-size: 0.8rem;
    padding: 10px 15px;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 40px 15px;
  }
  
  .cta-section h2 {
    font-size: 1.5rem;
  }
  
  .cta-section p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  /* Extra Small Devices */
  body {
    font-size: 14px;
  }
  
  /* Logo - Keep Centered */
  .logo {
    max-width: 80%;
  }
  
  .logo-green {
    font-size: 1.1rem;
  }
  
  .logo-gold {
    font-size: 0.85rem;
  }
  
  .heritage-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
  }
  
  /* Hamburger Button - Smaller */
  .mobile-menu-toggle {
    padding: 5px;
    font-size: 1.3rem;
  }
  
  /* Hero */
  .hero {
    padding: 30px 10px;
  }
  
  .hero h1 {
    font-size: 1.4rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
  
  /* Navigation */
  .main-nav a {
    padding: 10px 8px;
    font-size: 0.9rem;
  }
  
  /* Headings */
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  
  /* Sections */
  .section {
    padding: 30px 0;
  }
  
  .section-header {
    margin-bottom: 25px;
  }
  
  .section-header h2 {
    font-size: 1.3rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }
  
  /* Cards */
  .feature-card,
  .category-card,
  .contact-card {
    padding: 15px;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1rem;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
  
  /* Category Cards - Mobile */
  .category-grid {
    gap: 15px;
  }

  .category-image {
    height: 260px;
    font-size: 4.5rem;
  }

  .category-content {
    padding: 12px;
  }

  .category-content h3 {
    font-size: 14px;
  }

  .category-content p {
    font-size: 12px;
  }
  
  /* Content Box */
  .content-box {
    padding: 15px;
  }
  
  .content-box h2 {
    font-size: 1.2rem;
  }
  
  .content-box h3 {
    font-size: 1rem;
  }
  
  .content-box p {
    font-size: 0.85rem;
    line-height: 1.7;
  }
  
  .content-box ul {
    font-size: 0.85rem;
  }
  
  /* Buttons */
  .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
  
  /* Trust Strip */
  .trust-strip {
    padding: 15px 0;
  }
  
  .trust-item {
    padding: 8px;
  }
  
  .trust-icon {
    font-size: 1.3rem;
  }
  
  .trust-item span {
    font-size: 0.8rem;
  }
  
  /* Footer */
  .site-footer {
    padding: 30px 0 15px;
  }
  
  .footer-col h3,
  .footer-col h4 {
    font-size: 1rem;
  }
  
  .footer-col p,
  .footer-col a {
    font-size: 0.85rem;
  }
  
  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 15px;
  }
  
  /* WhatsApp Float */
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
    bottom: 12px;
    right: 12px;
  }
  
  /* Google Review Badge */
  .google-review-badge {
    padding: 10px 15px;
  }
  
  .google-review-badge i {
    font-size: 1.5rem;
  }
  
  .google-review-badge .stars {
    font-size: 0.9rem;
  }
  
  .google-review-badge .rating-text {
    font-size: 0.8rem;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 30px 15px;
  }
  
  .cta-section h2 {
    font-size: 1.3rem;
  }
  
  .cta-section p {
    font-size: 0.9rem;
  }
  
  /* Contact Cards */
  .contact-card {
    padding: 20px 15px;
  }
  
  .contact-card-icon {
    width: 55px;
    height: 55px;
  }
  
  .contact-card-icon i {
    font-size: 1.5rem;
  }
  
  .contact-card h3 {
    font-size: 1rem;
  }
  
  .contact-card p {
    font-size: 0.85rem;
  }
  
  /* Hours Box */
  .hours-box {
    padding: 20px 15px;
  }
  
  .hours-box h3 {
    font-size: 1.1rem;
  }
  
  .hours-row {
    font-size: 0.85rem;
  }
  
  /* WhatsApp CTA */
  .whatsapp-cta {
    padding: 25px 15px;
  }
  
  .whatsapp-cta i {
    font-size: 2.5rem;
  }
  
  .whatsapp-cta h3 {
    font-size: 1.3rem;
  }
  
  .whatsapp-cta p {
    font-size: 0.9rem;
  }
  
  .whatsapp-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
  
  /* Map Section */
  .map-container {
    padding: 15px;
  }
  
  .map-container iframe {
    height: 300px !important;
  }
  
  /* Timeline (Mobile) */
  .timeline-content {
    padding: 15px;
  }
  
  .timeline-year {
    font-size: 1rem;
  }
  
  .timeline-content h3 {
    font-size: 1rem;
  }
  
  .timeline-content p {
    font-size: 0.85rem;
  }
  
  /* Value Cards */
  .value-card {
    padding: 20px 15px;
  }
  
  .value-icon {
    font-size: 2.5rem;
  }
  
  .value-card h3 {
    font-size: 1rem;
  }
  
  .value-card p {
    font-size: 0.85rem;
  }
  
  /* Story Section */
  .story-content h2 {
    font-size: 1.3rem;
  }
  
  .story-content p {
    font-size: 0.9rem;
  }
  
  .story-image {
    height: 200px;
  }
  
  .story-image-icon {
    font-size: 4rem;
  }
  
  .story-image-text h3 {
    font-size: 1.1rem;
  }
  
  .story-image-text p {
    font-size: 0.85rem;
  }
  
  /* About Hero */
  .about-hero {
    padding: 40px 15px;
  }
  
  .about-hero h1 {
    font-size: 1.5rem;
  }
  
  .about-hero p {
    font-size: 0.9rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-primary {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-card,
  .category-card {
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Remove hover effects on touch devices */
  .feature-card:hover,
  .category-card:hover {
    transform: none;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-green { color: var(--green-primary); }
.text-gold { color: var(--gold-accent); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none; }

/* ===== FASHION LOADING SPINNER ===== */
/* Fashion Hanger Spinner - CSS Only, reusable single class */
.fashion-spinner {
  position: relative;
  width: 64px;
  height: 80px;
  margin: 0 auto;
  display: block;
}

.fashion-spinner::before,
.fashion-spinner::after {
  content: '';
  position: absolute;
  box-sizing: border-box;
}

/* Hanger hook */
.fashion-spinner::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border: 3px solid var(--gold-accent);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  animation: hanger-spin 1.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  transform-origin: bottom center;
}

/* Hanger body */
.fashion-spinner::after {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 44px;
  border: 3px solid var(--green-primary);
  border-top: none;
  border-radius: 0 0 26px 26px;
  animation: hanger-swing 1.4s ease-in-out infinite;
  transform-origin: top center;
}

/* Inner bar accent */
.fashion-spinner span {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gold-accent);
  border-radius: 2px;
  animation: hanger-pulse 1.4s ease-in-out infinite;
  opacity: 0.7;
}

/* Loading wrapper container */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  flex-direction: column;
  gap: 16px;
  color: var(--neutral-medium);
}

.loading .fashion-spinner {
  margin: 0;
}

.loading-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--green-primary);
  animation: text-fade 1.4s ease-in-out infinite;
}

/* Spinner Animations */
@keyframes hanger-spin {
  0%   { transform: translateX(-50%) rotate(0deg); }
  25%  { transform: translateX(-50%) rotate(15deg); }
  50%  { transform: translateX(-50%) rotate(0deg); }
  75%  { transform: translateX(-50%) rotate(-15deg); }
  100% { transform: translateX(-50%) rotate(0deg); }
}

@keyframes hanger-swing {
  0%   { transform: translateX(-50%) rotate(-5deg); }
  50%  { transform: translateX(-50%) rotate(5deg); }
  100% { transform: translateX(-50%) rotate(-5deg); }
}

@keyframes hanger-pulse {
  0%, 100% { opacity: 0.4; width: 32px; }
  50%  { opacity: 1; width: 40px; }
}

@keyframes text-fade {
  0%, 100% { opacity: 0.5; }
  50%  { opacity: 1; }
}

/* Size variants */
.fashion-spinner.small {
  width: 32px;
  height: 40px;
}
.fashion-spinner.small::before {
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-radius: 6px 6px 0 0;
}
.fashion-spinner.small::after {
  top: 8px;
  width: 26px;
  height: 22px;
  border-width: 2px;
  border-radius: 0 0 13px 13px;
}
.fashion-spinner.small span {
  top: 16px;
  width: 20px;
  height: 2px;
}

.fashion-spinner.large {
  width: 96px;
  height: 120px;
}
.fashion-spinner.large::before {
  width: 24px;
  height: 24px;
  border-width: 4px;
  border-radius: 18px 18px 0 0;
}
.fashion-spinner.large::after {
  top: 24px;
  width: 78px;
  height: 66px;
  border-width: 4px;
  border-radius: 0 0 39px 39px;
}
.fashion-spinner.large span {
  top: 48px;
  width: 60px;
  height: 4px;
}

/* Legacy spin animation preserved for compatibility */
@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ===== ECOMMERCE FOOTER (Reference Project) ===== */
.ecommerce-footer {
  background: #f5f5f5;
  margin-top: 80px;
}

/* ===== SHOP BY CATEGORY SECTION ===== */
.shop-categories {
  padding: 60px 0 50px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.shop-categories .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.shop-categories .section-header {
  text-align: center;
  margin-bottom: 45px;
}

.shop-categories .section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.shop-categories .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
  border-radius: 2px;
}

.shop-categories .section-header .subtitle {
  font-size: 1.1rem;
  color: var(--neutral-medium);
  margin-top: 15px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 10px;
}

.category-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold-accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(13, 94, 56, 0.15);
  border-color: var(--gold-accent);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-card:hover .category-image {
  transform: scale(1.05);
}

.category-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.category-card:hover h3 {
  color: var(--green-primary);
}

.category-card p {
  font-size: 0.9rem;
  color: var(--neutral-medium);
  font-weight: 500;
}

.category-card .product-count {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-primary), #0a7a47);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
}

/* Category card variations with different gradient backgrounds */
.category-card:nth-child(1) { background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); }
.category-card:nth-child(2) { background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%); }
.category-card:nth-child(3) { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); }
.category-card:nth-child(4) { background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%); }
.category-card:nth-child(5) { background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%); }
.category-card:nth-child(6) { background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%); }
.category-card:nth-child(7) { background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%); }
.category-card:nth-child(8) { background: linear-gradient(135deg, #efebe9 0%, #d7ccc8 100%); }

/* Responsive styles */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .shop-categories .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .category-card {
    padding: 25px 15px;
  }
  
  .category-image {
    height: 100px;
  }
  
  .category-card h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .shop-categories {
    padding: 40px 0 30px;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .category-card {
    padding: 20px 10px;
    border-radius: 16px;
  }
  
  .category-image {
    height: 80px;
    margin-bottom: 10px;
  }
  
  .category-card h3 {
    font-size: 1rem;
  }
  
  .category-card p {
    font-size: 0.8rem;
  }
}

/* ===== FABRIC QUALITY CERTIFICATIONS SECTION ===== */
.quality-certifications {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, #f8faf9 0%, #e8f5e9 50%, #f0f7f4 100%);
  position: relative;
  overflow: hidden;
}

.quality-certifications::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0D5E38, #2ecc71, #0D5E38);
}

.quality-certifications .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.quality-certifications .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.quality-certifications .section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #0D5E38;
  margin-bottom: 10px;
  font-weight: 700;
}

.quality-certifications .section-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #D4A574, #0D5E38);
  margin: 15px auto 0;
  border-radius: 2px;
}

.quality-certifications .section-header .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: 10px;
}

.certification-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.certification-card {
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(13, 94, 56, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.certification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0D5E38, #2ecc71);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.certification-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(13, 94, 56, 0.15);
  border-color: #2ecc71;
}

.certification-card:hover::before {
  transform: scaleX(1);
}

.cert-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  animation: certPulse 3s ease-in-out infinite;
}

@keyframes certPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.certification-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 600;
}

.certification-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cert-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #0D5E38 0%, #1a8f5a 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.certification-card:hover .cert-badge {
  background: linear-gradient(135deg, #2ecc71 0%, #0D5E38 100%);
  transform: scale(1.05);
}

/* Responsive styles for certifications */
@media (max-width: 992px) {
  .certification-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .quality-certifications .section-header h2 {
    font-size: 2rem;
  }
}

/* Mobile carousel styles */
@media (max-width: 576px) {
  .quality-certifications {
    padding: 50px 0 40px;
  }

  .certification-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
  }

  .certification-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    gap: 15px;
    grid-template-columns: none;
  }

  .certification-carousel::-webkit-scrollbar {
    display: none;
  }

  .certification-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 25px 20px;
    min-width: 0;
  }
  
  .quality-certifications .section-header h2 {
    font-size: 1.75rem;
  }
  
  .cert-icon {
    font-size: 40px;
  }
  
  .carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .carousel-indicator.active {
    background: #0D5E38;
    width: 24px;
    border-radius: 4px;
  }
}

/* ===== CUSTOMER TESTIMONIALS CAROUSEL ===== */
.testimonials {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold-accent), var(--green-primary));
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials .section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: var(--neutral-dark);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.testimonials .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold-accent);
  border-radius: 2px;
}

.testimonials .section-header .subtitle {
  font-size: 1.1rem;
  color: var(--neutral-medium);
  margin-top: 15px;
}

/* Slider Wrapper */
.testimonial-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
}

/* Mobile: Enable native scroll snap swipe for testimonials */
@media (max-width: 768px) {
  .testimonial-slider-wrapper {
    padding: 0 15px !important;
    overflow: hidden !important;
  }
  
  .testimonial-slider {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    transition: none !important;
    padding: 0 !important;
  }

  .testimonial-slider::-webkit-scrollbar {
    display: none !important;
  }

  .testimonial-card {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
  }
}

/* Testimonial Card */
.testimonial-card {
  min-width: calc(100% - 40px);
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--gold-accent);
  opacity: 0.2;
  line-height: 1;
}

/* Header with stars and verified badge */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  gap: 3px;
}

.stars i {
  color: var(--gold-accent);
  font-size: 1rem;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #27ae60;
  font-weight: 600;
}

.verified-badge i {
  font-size: 0.9rem;
}

/* Quote text */
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--neutral-dark);
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

/* Author section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary) 0%, #1a8f5a 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--neutral-dark);
}

.author-info .location {
  font-size: 0.9rem;
  color: var(--neutral-medium);
}

.author-info .purchase-info {
  font-size: 0.8rem;
  color: var(--green-primary);
  font-weight: 600;
}

/* Date */
.testimonial-date {
  font-size: 0.8rem;
  color: var(--neutral-medium);
  margin-top: 10px;
}

/* Navigation buttons */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-nav:hover {
  background: var(--green-primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

/* Dots navigation */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.dot.active,
.dot:hover {
  background: var(--green-primary);
  transform: scale(1.2);
}

/* Rating summary */
.testimonial-summary {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.summary-rating {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rating-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-primary);
  font-family: 'Montserrat', sans-serif;
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-stars i {
  color: var(--gold-accent);
  font-size: 1.1rem;
}

.rating-count {
  font-size: 0.9rem;
  color: var(--neutral-medium);
}

/* Auto-play pause on hover */
.testimonial-slider-wrapper:hover .testimonial-slider {
  animation-play-state: paused;
}

/* Responsive styles */
@media (max-width: 768px) {
  .testimonial-slider-wrapper {
    padding: 0 40px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-card::before {
    font-size: 60px;
  }
  
  .testimonials .section-header h2 {
    font-size: 2rem;
  }
  
  .summary-rating {
    flex-direction: column;
    gap: 8px;
    padding: 15px 25px;
  }
}

@media (max-width: 576px) {
  .testimonials {
    padding: 50px 0 40px;
  }

  .testimonial-slider-wrapper {
    padding: 0 35px;
  }

  .testimonial-nav {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 20px 18px;
    min-width: calc(100% - 20px) !important;
  }

  .testimonial-card::before {
    font-size: 50px;
    top: 15px;
    left: 15px;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .testimonials .section-header h2 {
    font-size: 1.75rem;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* Compact mobile layout for testimonial header */
  .testimonial-header {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
  }

  .stars i {
    font-size: 0.85rem;
  }

  .verified-badge {
    font-size: 0.75rem;
  }

  .verified-badge i {
    font-size: 0.8rem;
  }

  /* Compact author section */
  .testimonial-author {
    gap: 12px;
    margin-bottom: 8px;
  }

  .author-info strong {
    font-size: 1rem;
  }

  .author-info .location {
    font-size: 0.85rem;
  }

  .author-info .purchase-info {
    font-size: 0.75rem;
  }

  .testimonial-date {
    font-size: 0.75rem;
    margin-top: 8px;
  }
}

/* LAYER 1: TOP ANNOUNCEMENT STRIP */
.footer-announcement {
  background: #0D5E38;
  color: white;
  text-align: center;
  padding: 25px 20px;
}

.footer-announcement .small-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
  margin-bottom: 5px;
}

.footer-announcement .big-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-announcement .big-text span {
  font-weight: 800;
  font-size: 1.7rem;
}

/* LAYER 2: MAIN FOOTER GRID */
.footer-main {
  background: #f5f5f5;
  padding: 60px 0 40px;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0D5E38;
  display: inline-block;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  display: inline-block;
  padding: 2px 0;
}

.footer-column ul li a:hover {
  color: #0D5E38;
  transform: translateX(5px);
}

.footer-column ul li a[href*="sitemap"] {
  color: #0D5E38;
  font-weight: 500;
}

.footer-column ul li a[href*="sitemap"]:hover {
  text-decoration: underline;
  transform: none;
}

.footer-column .feature-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #666;
}

.footer-column .feature-row i {
  color: #0D5E38;
  font-size: 1rem;
  width: 20px;
}

.footer-column .city-link {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  margin-right: 15px;
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-column .city-link:hover {
  color: #0D5E38;
}

.footer-column .view-more {
  color: #0D5E38;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column .view-more:hover {
  color: #0D5E38;
  text-decoration: underline;
}

/* LAYER 3: APP DOWNLOAD SECTION */
.footer-app-section {
  background: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.footer-app-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #0D5E38;
  margin-bottom: 20px;
}

.footer-app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0D5E38;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.app-btn:hover {
  background: #0a4a2c;
  transform: translateY(-2px);
}

.app-btn i {
  font-size: 1.8rem;
}

.app-btn .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-btn .btn-text span:first-child {
  font-size: 0.7rem;
  opacity: 0.8;
}

.app-btn .btn-text span:last-child {
  font-size: 1.1rem;
  font-weight: 600;
}

/* LAYER 4: SOCIAL MEDIA ROW */
.footer-social-section {
  background: #fff;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.footer-social-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-social-section .follow-text {
  font-weight: 600;
  color: #1a1a1a;
  margin-right: 15px;
}

.footer-social-section .social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-section .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #555;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social-section .social-icons a:hover {
  background: #0D5E38;
  color: white;
  transform: translateY(-3px);
}

/* LAYER 5: WHO WE ARE EXPANDABLE */
.footer-about-section {
  background: #fff;
  border-top: 1px solid #e0e0e0;
}

.footer-about-toggle {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-about-toggle:hover {
  background: #f5f5f5;
}

.footer-about-toggle h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.footer-about-toggle i {
  color: #555;
  transition: transform 0.3s;
}

.footer-about-toggle.active i {
  transform: rotate(180deg);
}

.footer-about-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 25px;
  display: none;
}

.footer-about-content.show {
  display: block;
}

.footer-about-content p {
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* LAYER 6: PAYMENTS & SHIPPING */
.footer-trust-section {
  background: #f8f9fa;
  padding: 25px 0;
  border-top: 1px solid #e0e0e0;
}

.footer-trust-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
}

.footer-trust-section .trust-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-trust-section .trust-label {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.9rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-trust-section .trust-label i {
  font-size: 0.85rem;
  color: #28a745;
}

/* Vertical Divider */
.trust-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #ccc, transparent);
  flex-shrink: 0;
}

/* Payment Icons */
.footer-trust-section .trust-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.payment-icons {
  flex-wrap: wrap;
}

.payment-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.payment-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.payment-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Shipping Badges */
.shipping-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.shipping-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.shipping-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.12);
  border-color: #28a745;
}

.shipping-badge i {
  font-size: 0.8rem;
  color: #28a745;
}

/* Specific shipping badge styles */
.shipping-badge.dtdc {
  background: #e31837;
  color: white;
  border-color: #e31837;
}

.shipping-badge.dtdc:hover {
  background: #c41430;
}

.shipping-badge.delhivery {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

.shipping-badge.delhivery i {
  color: white;
}

.shipping-badge.delhivery:hover {
  background: #e55a2b;
}

.shipping-badge.ecom {
  background: #1e3a8a;
  color: white;
  border-color: #1e3a8a;
}

.shipping-badge.ecom i {
  color: white;
}

.shipping-badge.ecom:hover {
  background: #152c6e;
}

.shipping-badge.shiprocket {
  background: #7445c4;
  color: white;
  border-color: #7445c4;
}

.shipping-badge.shiprocket i {
  color: white;
}

.shipping-badge.shiprocket:hover {
  background: #6339b0;
}

/* LAYER 7: COPYRIGHT BAR */
.footer-copyright {
  background: #0D5E38;
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 15px 20px;
  font-size: 0.85rem;
}

/* FOOTER RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-social-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-grid-new {
    grid-template-columns: 1fr;
  }
  
  .footer-grid-new .footer-column {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
  }
  
  .footer-main {
    padding: 40px 0 20px;
  }
  
  .footer-trust-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .trust-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
  }
  
  .footer-trust-section .trust-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    width: 100%;
  }
  
  .footer-trust-section .trust-label {
    font-size: 0.85rem;
  }
  
  .payment-icons,
  .shipping-icons {
    justify-content: center;
  }
  
  .payment-icon {
    width: 36px;
    height: 36px;
  }
  
  .app-btn {
    width: 100%;
    justify-content: center;
  }
  
  .footer-about-toggle {
    padding: 15px 20px;
  }
}

/* ===== MOBILE FOOTER OPTIMIZATION (480px and below) ===== */
@media (max-width: 480px) {
  .footer-announcement .big-text {
    font-size: 1.1rem;
  }
  
  .footer-announcement .small-text {
    font-size: 0.7rem;
  }
  
  .footer-main {
    padding: 30px 0 15px;
  }
  
  .footer-grid-new {
    gap: 0;
  }
  
  .footer-column {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .footer-column:last-child {
    border-bottom: none;
  }
  
  .footer-column h5 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    font-size: 0.85rem;
  }
  
  .footer-app-section {
    padding: 20px 0;
  }
  
  .footer-app-section h4 {
    font-size: 1rem;
  }
  
  .footer-app-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .app-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .footer-social-section {
    padding: 15px 20px;
  }
  
  .footer-social-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .footer-social-section .follow-text {
    font-size: 0.9rem;
  }
  
  .footer-trust-section {
    padding: 20px;
  }
  
  .footer-trust-section .trust-label {
    font-size: 0.8rem;
  }
  
  .payment-icon {
    width: 32px;
    height: 32px;
  }
  
  .shipping-icon {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  .footer-copyright {
    padding: 15px 20px;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
}

/* ===== UTILITIES ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    padding-right: 0;
  }
  .hero-content h1 { font-size: 2.8rem; }
  .nav-links { display: none; }
  .store-cta { text-align: center; }
  /* Video adjustments for tablet */
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.8) 100%);
  }
}

@media (max-width: 768px) {
  .logo-green { font-size: 1.6rem; }
  .logo-gold { font-size: 1.1rem; }
  .hero-content h1 { font-size: 2.3rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { 
    width: 100%; 
    margin: 10px 0;
  }
  /* Hide hero image on mobile to focus on video background */
  .hero-image {
    display: none;
  }
  .hero {
    min-height: 500px;
    padding: 60px 20px;
  }
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-image img::after {
  content: 'ðŸŒ¿';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: var(--green-primary);
  opacity: 0.1;
}

/* TOAST NOTIFICATION SYSTEM */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
}

.toast {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease-out;
  border-left: 4px solid var(--green-primary);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success { border-left-color: #28a745; }
.toast.info { border-left-color: #17a2b8; }
.toast.error { border-left-color: #dc3545; }

.toast-icon { font-size: 1.4rem; }
.toast.success .toast-icon { color: #28a745; }
.toast.info .toast-icon { color: #17a2b8; }
.toast.error .toast-icon { color: #dc3545; }

.toast-content { flex: 1; }
.toast-title { font-weight: 600; margin-bottom: 4px; font-size: 0.95rem; }
.toast-message { font-size: 0.9rem; color: var(--neutral-medium); line-height: 1.4; }

.toast-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.toast-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.toast-btn-primary {
  background: var(--green-primary);
  color: white;
  border: none;
}

.toast-btn-primary:hover {
  background: #0a4a2c;
}

.toast-btn-ghost {
  background: transparent;
  color: var(--green-primary);
  border: 1px solid var(--green-primary);
}

.toast-btn-ghost:hover {
  background: rgba(13, 94, 56, 0.05);
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--neutral-medium);
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.toast-close:hover {
  background: rgba(0,0,0,0.05);
  color: var(--neutral-dark);
}

/* CART COUNTER ANIMATION */
.cart-count.animate {
  animation: pulse 0.5s ease-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); background: #28a745; color: white; }
  100% { transform: scale(1); }
}

/* ===== TOAST NOTIFICATION SYSTEM ===== */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
}

.toast {
  animation: slideIn 3s forwards, slideOut 0.5s 3s forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* ===== CART COUNTER ANIMATION ===== */
.cart-count.animate {
  animation: pulseCart 0.5s ease-out;
}

@keyframes pulseCart {
  0% { transform: scale(1); }
  50% { 
    transform: scale(1.3); 
    background: #28a745; 
    color: white; 
  }
  100% { transform: scale(1); }
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
  /* Prevent zoom on input focus (iOS) */
  input, select, textarea {
    font-size: 16px !important;
  }
  
  /* Ensure tap targets are large enough */
  .nav-links a,
  .nav-actions a,
  .cart-btn,
  .account-btn,
  .search-btn {
    min-width: 44px;
    min-height: 44px;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Images scale properly */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* ===== FORM VALIDATION STYLES ===== */
.form-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.input-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* ===== BUTTON STATES ===== */
.btn-primary:active,
.btn-outline:active,
.add-to-cart-btn:active,
.wishlist-btn:active {
  transform: translateY(0) !important;
  box-shadow: none !important;
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 3px solid #0D5E38;
  outline-offset: 2px;
}

/* ===== LAZY LOAD PLACEHOLDER ===== */
.lazy-load {
  background: linear-gradient(90deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.cotton-visual {
  position: relative; /* Critical for badge positioning */
  /*overflow: hidden; /* Prevents badge overflow */
}

.cotton-badge {
  z-index: 10; /* Ensures badge stays on top */
  transition: all 0.3s ease;
}

.cotton-badge:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* SEARCH FUNCTIONALITY */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-overlay {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  padding: 16px;
  width: 320px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  margin-top: 8px;
}

.search-container.active .search-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1px solid #e1e5eb;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: #4361ee;
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.search-close {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #7b8fa1;
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  border-radius: 50%;
  transition: color 0.2s;
}

.search-close:hover {
  color: #e74c3c;
}

/* SUGGESTIONS STYLES */
.search-suggestions {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 12px;
  display: none;
}

.search-suggestions.show {
  display: block;
}

.search-suggestion-item {
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.suggestion-image {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
}

.suggestion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-suggestion-item:hover {
  background: #f0f4ff;
  transform: translateX(4px);
}

.search-suggestion-item i {
  color: #4361ee;
  font-size: 18px;
  min-width: 24px;
}

.search-suggestion-item.no-results {
  color: #7f8c8d;
  font-style: italic;
  justify-content: center;
  padding: 14px;
}

/* SCROLLBAR STYLING (NICE TOUCH) */
.search-suggestions::-webkit-scrollbar {
  width: 6px;
}
.search-suggestions::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}
.search-suggestions::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.search-suggestions::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* RESPONSIVE: Hide other nav items when search active (prevents layout shift) */
.search-container.active ~ .icon-btn,
.search-container.active ~ .cart-btn,
.search-container.active ~ .account-btn {
  display: none;
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px) {
  .search-overlay {
    width: calc(100vw - 40px);
    right: 20px;
    left: 0;
    margin: 0 auto;
  }
}

/* ENHANCED SEARCH SUGGESTIONS */
.search-suggestion-item {
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.search-suggestion-item:hover {
  background: linear-gradient(90deg, #f0f4ff 0%, #ffffff 100%);
  border-left: 3px solid #4361ee;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(67, 97, 238, 0.1);
}

.suggestion-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-name {
  font-weight: 600;
  font-size: 15px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
}


.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #7f8c8d;
}

.category {
  background: #f8f9fa;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}

.price {
  font-weight: 700;
  color: #e74c3c;
  font-size: 14px;
}

.stock-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
}

.stock-indicator.in-stock {
  background: #27ae60;
  box-shadow: 0 0 4px #27ae60;
}

.stock-indicator.low-stock {
  background: #f39c12;
  box-shadow: 0 0 4px #f39c12;
}

.stock-indicator.out-of-stock {
  background: #e74c3c;
  width: auto;
  padding: 0 6px;
  border-radius: 4px;
  font-size: 10px;
  color: white;
}

.search-suggestion-item.no-results {
  color: #95a5a6;
  font-style: normal;
  text-align: center;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ANIMATIONS */
@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.search-notification {
  font-weight: 500;
}

/* LOADING SPINNER COLOR */
.search-suggestion-item .fa-spinner {
  color: #4361ee;
}

/* ===== ADMIN SIDEBAR ===== */
.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 260px;
  background: linear-gradient(135deg, var(--green-primary) 0%, #0a4a2c 100%);
  color: white;
  padding: 25px 0;
  box-shadow: 3px 0 15px rgba(0,0,0,0.25);
  z-index: 2000;
  overflow-y: auto;
}

.admin-sidebar .logo {
  text-align: center;
  padding: 0 20px 25px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 25px;
}

.admin-sidebar .logo h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  margin-top: 10px;
  color: white;
}

.admin-sidebar .logo span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 3px;
}

.admin-sidebar .nav-menu {
  list-style: none;
  padding: 0 15px;
}

.admin-sidebar .nav-item {
  margin-bottom: 8px;
}

.admin-sidebar .nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 20px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 1.05rem;
}

.admin-sidebar .nav-link:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  transform: translateX(5px);
}

.admin-sidebar .nav-link.active {
  background: rgba(255,255,255,0.25);
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.admin-sidebar .nav-link i {
  font-size: 1.4rem;
  width: 28px;
  text-align: center;
}

.admin-sidebar .logout-btn {
  background: rgba(220, 53, 69, 0.25);
  color: white;
  border: none;
  width: calc(100% - 40px);
  padding: 14px 20px;
  text-align: left;
  border-radius: 12px;
  margin: 25px 20px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.admin-sidebar .logout-btn:hover {
  background: rgba(220, 53, 69, 0.4);
  transform: translateX(5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.admin-sidebar .logout-btn i {
  font-size: 1.3rem;
}

.admin-sidebar .section-title {
  padding: 15px 25px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* MAIN CONTENT ADJUSTMENT */
.admin-main-content {
  margin-left: 260px;
  padding: 30px;
  transition: margin-left 0.3s ease;
}

/* MOBILE RESPONSIVE SIDEBAR */
@media (max-width: 992px) {
  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .admin-sidebar.active {
    transform: translateX(0);
  }
  .admin-main-content {
    margin-left: 0;
    padding: 20px 15px;
  }
  .mobile-menu-btn {
    display: block !important;
  }
}

/* Collections Banner Carousel Styles */
.collections-banner-carousel {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.collections-carousel-container {
  width: 1350px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  height: 500px;
  overflow: visible;
  background: #ffffff;
}

.collections-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile: Enable native scroll snap swipe like main banner */
@media (max-width: 768px) {
  .collections-carousel-track {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    transition: none !important;
    display: flex !important;
  }
  
  .collections-carousel-track::-webkit-scrollbar {
    display: none !important;
  }
  
  .collections-carousel-slide {
    min-width: 100% !important;
    width: 100% !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    position: relative !important;
  }
}

.collections-carousel-slide {
  min-width: 100%;
  display: block;
}

.collections-carousel-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.collections-banner-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.collections-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collections-carousel-prev { left: 15px; }
.collections-carousel-next { right: 15px; }

.collections-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.collections-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.collections-carousel-dot.active {
  background: white;
}

/* Collections Carousel Mobile Styles */
@media (max-width: 992px) {
  .collections-banner-carousel {
    overflow: hidden !important;
  }
  
  .collections-carousel-container {
    height: auto;
    max-height: 75vh;
    overflow: hidden !important;
  }

  .collections-carousel-slide {
    height: auto;
    min-height: 400px;
  }
  
  .collections-carousel-slide picture {
    height: auto;
  }

  .collections-banner-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 768px) {
  .collections-banner-carousel {
    overflow: hidden !important;
  }
  
  .collections-carousel-container {
    height: auto;
    max-height: 75vh;
    overflow: hidden !important;
  }

  .collections-carousel-slide {
    height: auto;
    min-height: 350px;
  }
  
  .collections-carousel-slide picture {
    height: auto;
  }

  .collections-banner-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    object-position: center top;
  }

  .collections-carousel-nav {
    width: 40px;
    height: 40px;
  }

  .collections-carousel-prev { left: 10px; }
  .collections-carousel-next { right: 10px; }
}

@media (max-width: 480px) {
  .collections-banner-carousel {
    overflow: hidden !important;
  }
  
  .collections-carousel-container {
    height: auto;
    max-height: 75vh;
    overflow: hidden !important;
  }

  .collections-carousel-slide {
    height: auto;
    min-height: 300px;
  }
  
  .collections-carousel-slide picture {
    height: auto;
  }

  .collections-banner-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    object-position: center top;
  }
  
  .collections-carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .collections-carousel-prev { left: 5px; }
  .collections-carousel-next { right: 5px; }
  
  .collections-carousel-dots {
    bottom: 10px;
    gap: 6px;
  }
  
  .collections-carousel-dot {
    width: 8px;
    height: 8px;
  }
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 2100;
  background: var(--green-primary);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2100;
}

.mobile-menu-btn:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ADMIN BADGE IN HEADER */
.admin-badge {
  background: linear-gradient(135deg, #dc3545, #b02a37);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ===== PREMIUM PRODUCT CARDS ===== */
/* Products Grid - 3 per row desktop (wider cards) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 30px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Product Card - Premium Fashion Style */
.product-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Image Section - 4:5 Aspect Ratio - 75% of card */
.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #fff;
  overflow: hidden;
  flex: 0 0 75%;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Wishlist Button Overlay */
.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10;
}

.product-card:hover .product-wishlist {
  opacity: 1;
  transform: translateY(0);
}

.product-wishlist:hover {
  background: #0D5E38;
  color: #fff;
}

.product-wishlist i {
  font-size: 1rem;
}

/* ===== BESTSELLER BADGES ===== */
/* Attractive badges for bestsellers section - only applies to bestsellers cards */
.bestseller-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  z-index: 11;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  animation: badgePulse 2s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Unique badge colors */
.badge-0 {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
}

.badge-1 {
  background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
  color: #1a1a1a;
}

.badge-2 {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.badge-3 {
  background: linear-gradient(135deg, #0D5E38 0%, #2ecc71 100%);
}

.badge-4 {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.badge-5 {
  background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
}

.badge-6 {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}

.badge-7 {
  background: linear-gradient(135deg, #D4AF37 0%, #F4E04D 100%);
  color: #1a1a1a;
}

/* Mobile adjustment for badges */
@media (max-width: 768px) {
  .bestseller-badge {
    top: 8px;
    left: 8px;
    padding: 5px 10px;
    font-size: 0.7rem;
  }
}

/* Product Details Section - 25% of card */
.product-details {
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 0 0 25%;
}

/* Product Title - 15-16px, Medium weight, 2-line clamp */
.product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.product-card:hover .product-title {
  color: #0D5E38;
}

/* Category Text - 13px, Light grey */
.product-category {
  font-size: 13px;
  color: #999;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 2px;
}

/* Pricing Row */
.product-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

/* Price - 18px, Bold, Dark */
.product-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

/* MRP - Grey, Strikethrough, Smaller */
.product-mrp {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.product-mrp span {
  font-size: 12px;
}

/* Member Savings - Dark Gold, Small */
.product-savings {
  font-size: 12px;
  color: #B8860B;
  font-weight: 400;
  margin-top: 4px;
}

/* Discount Badge - Green badge showing % off */
.discount-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(39, 174, 96, 0.3);
}

.discount-badge i {
  font-size: 10px;
  margin-right: 3px;
}

/* Cart/Checkout item pricing */
.cart-item-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.cart-item-mrp {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.cart-item-discount {
  background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
}

/* Order item pricing in checkout */
.order-item-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.order-item-mrp {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.order-item-discount {
  background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
}

/* Link wrapper */
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* Responsive - Tablet */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 16px;
    max-width: 100%;
  }
  
  .product-details {
    padding: 14px;
  }
  
  .product-title {
    font-size: 14px;
  }
  
  .product-price {
    font-size: 16px;
  }
  
  .product-mrp {
    font-size: 12px;
  }
  
  .product-savings {
    font-size: 11px;
  }
}

/* Responsive - Mobile - Keep 2 columns for better mobile experience */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
  }
  
  .product-image {
    aspect-ratio: 3 / 4;
  }
  
  .product-details {
    padding: 10px;
  }
  
  .product-title {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .product-price {
    font-size: 14px;
  }
  
  .product-mrp {
    font-size: 11px;
  }
  
  .product-savings {
    font-size: 10px;
  }
  
  .product-category {
    font-size: 11px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .products-grid {
    gap: 10px;
    padding: 10px;
  }
  
  .product-title {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .products-grid {
    gap: 8px;
    padding: 8px;
  }
}

/* ===== BANNER CAROUSEL ===== */
.banner-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #ffffff;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

/* Mobile: Enable native scroll snap swipe like product page */
@media (max-width: 768px) {
  .carousel-track {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    transition: none !important;
    display: flex !important;
  }

  .carousel-track::-webkit-scrollbar {
    display: none !important;
  }

  .carousel-slide {
    min-width: 100% !important;
    width: 100% !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    position: relative !important;
  }
}

.carousel-slide {
  display: block;
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-overlay {
  display: none;
}

.banner-content {
  display: none !important;
}

.banner-tag {
  display: inline-block;
  background: var(--gold-accent);
  color: var(--neutral-dark);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.banner-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 0.8s ease-out;
}

.banner-content p {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 25px;
  opacity: 0.95;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.banner-btn {
  display: inline-block;
  background: var(--gold-accent);
  color: var(--neutral-dark);
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.banner-btn:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
  background: var(--gold-accent);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* Dot Indicators */
.carousel-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--gold-accent);
  transform: scale(1.3);
  border-color: var(--gold-accent);
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* Pause on hover */
.banner-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 992px) {
  .banner-carousel {
    height: 400px;
  }
  
  .banner-content h2 {
    font-size: 2.5rem;
  }
  
  .banner-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .banner-carousel {
    height: 350px;
  }
  
  .banner-content {
    left: 5%;
    right: 5%;
    max-width: none;
  }
  
  .banner-content h2 {
    font-size: 2rem;
  }
  
  .banner-content p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .banner-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .banner-carousel {
    height: 200vh;
    min-height: 200vh;
  }

  .banner-tag {
    font-size: 0.65rem;
    padding: 5px 12px;
    margin-bottom: 10px;
  }

  .banner-content h2 {
    font-size: 1.3rem;
  }

  .banner-content p {
    font-size: 0.85rem;
  }

  .carousel-slide {
    min-width: 100%;
    height: 100%;
  }

  .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  
  .carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  
  .carousel-prev {
    left: 5px;
  }
  
  .carousel-next {
    right: 5px;
  }
  
  .carousel-dots {
    bottom: 10px;
  }
  
  .carousel-dots button {
    width: 8px;
    height: 8px;
  }
}

/* ===== MOBILE HAMBURGER MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--neutral-dark);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  color: var(--green-primary);
}

/* ===== MOBILE CART BUTTON ===== */
.mobile-cart-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--neutral-dark);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.mobile-cart-btn:hover {
  color: var(--green-primary);
}

.mobile-cart-btn i {
  font-size: 1.3rem;
}

.mobile-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold-accent);
  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;
  padding: 0 4px;
}

.mobile-cart-count:empty,
.mobile-cart-count[data-count="0"],
.mobile-cart-count[data-count=""] {
  display: none;
}

/* Show mobile cart button on mobile */
@media (max-width: 992px) {
  .mobile-cart-btn {
    display: flex;
    order: 3;
    margin-left: auto;
    align-self: center;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .mobile-cart-btn {
    order: 3;
    margin-left: 0;
    font-size: 1.3rem;
    min-width: 40px;
    min-height: 40px;
    padding: 6px;
    display: flex;
  }
  
  .mobile-cart-btn i {
    font-size: 1.2rem;
  }
  
  .mobile-cart-count {
    top: 0;
    right: 0;
    font-size: 0.6rem;
    min-width: 16px;
    height: 16px;
  }
}

.mobile-menu-overlay {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: white !important;
  z-index: 2147483647 !important;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  /* Ensure menu content is not clipped */
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  /* Break out of any parent constraints */
  max-width: none !important;
  max-height: none !important;
  /* Ensure menu is above all sticky elements */
  -webkit-transform: translateZ(0) !important;
  transform: translateZ(0) !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  /* Isolate from other stacking contexts */
  isolation: isolate;
  contain: layout style paint;
  /* Prevent click capture when not visible */
  pointer-events: none;
}

.mobile-menu-overlay.active {
  display: flex;
  transform: translateX(0);
  pointer-events: auto;
}

/* When mobile menu is open, ensure other elements don't overlap */
.mobile-menu-overlay.active ~ * {
  z-index: 1 !important;
}

/* Lower z-index of sticky elements when menu is open */
body.menu-open .category-nav,
body.menu-open .mobile-filter-drawer,
body.menu-open .sticky-header,
body.menu-open .modal,
body.menu-open .mobile-filter-overlay {
  z-index: 1 !important;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: var(--green-primary);
  color: white;
}

.mobile-menu-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Search Section */
.mobile-search-section {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #f8f9fa;
}

.mobile-search-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 25px;
  padding: 12px 18px;
  border: 2px solid var(--green-primary);
}

.mobile-search-wrapper i {
  color: var(--green-primary);
  font-size: 1.1rem;
}

.mobile-search-wrapper input {
  flex: 1;
  border: none;
  background: none;
  font-size: 1rem;
  outline: none;
  color: var(--neutral-dark);
}

.mobile-search-suggestions {
  display: none;
  margin-top: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-height: 200px;
  overflow-y: auto;
}

.mobile-search-suggestions.active {
  display: block;
}

.mobile-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  text-decoration: none;
  color: var(--neutral-dark);
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.mobile-search-item:hover {
  background: #f8f9fa;
}

.mobile-search-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.mobile-search-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

.mobile-search-no-results {
  padding: 20px;
  text-align: center;
  color: var(--neutral-medium);
  font-size: 0.95rem;
}

/* Mobile Quick Actions */
.mobile-quick-actions {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  background: white;
}

.mobile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--neutral-dark);
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  min-width: 60px;
}

.mobile-action-btn i {
  font-size: 1.4rem;
  color: var(--green-primary);
}

.mobile-count {
  position: absolute;
  top: -5px;
  right: 5px;
  background: var(--gold-accent);
  color: white;
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px;
  overflow-y: auto;
  flex: 1;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 15px;
  text-decoration: none;
  color: var(--neutral-dark);
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
  min-height: 54px;
}

.mobile-menu-links a:hover {
  color: var(--green-primary);
  background: #f8f9fa;
  padding-left: 20px;
}

.mobile-menu-links a i {
  width: 24px;
  text-align: center;
  color: var(--green-primary);
  flex-shrink: 0;
}

/* Ensure text is visible in mobile menu */
.mobile-menu-links a::after {
  content: '';
}

/* Show hamburger menu on mobile */
@media (max-width: 992px) {
  /* Sticky Header on Mobile/Tablet - using sticky for better mobile support */
  body > .header,
  .header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    /* CRITICAL FIX: Allow mobile menu to overflow header */
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    /* Remove transform to prevent creating a new stacking context that clips the menu */
    -webkit-transform: none !important;
    transform: none !important;
  }
  
  /* Sticky header doesn't require body padding since it takes up space in flow */
  body {
    padding-top: 0;
  }

  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 1;
  }

  .logo {
    order: 2;
    flex: 1;
    text-align: center;
    align-items: center;
  }

  .nav-actions {
    display: none;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none !important;
  }

  .nav-links {
    display: none;
  }

  /* Adjust logo size for mobile */
  .logo-green {
    font-size: 1.4rem;
  }

  .logo-gold {
    font-size: 0.95rem;
  }

  .heritage-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    margin-top: 3px;
  }

  /* Hide search on mobile header */
  .search-container {
    display: none;
  }
}

/* Tablet adjustments - Mobile Header Flex Layout */
@media (max-width: 768px) {
  /* Hide top bar on mobile for cleaner sticky header */
  .top-bar {
    display: none;
  }

  .main-nav {
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    flex: 1;
    text-align: center;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 1;
  }

  .mobile-cart-btn {
    order: 3;
    display: flex;
  }

  .logo-green {
    font-size: 1.3rem;
  }

  .logo-gold {
    font-size: 0.9rem;
  }

  .heritage-badge {
    margin: 5px auto 0;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .main-nav {
    padding: 8px 10px;
  }
  
  .logo-green {
    font-size: 1.2rem;
  }
  
  .logo-gold {
    font-size: 0.85rem;
  }
  
  .heritage-badge {
    font-size: 0.6rem;
    padding: 1px 5px;
  }
  
  .mobile-menu-toggle {
    font-size: 1.3rem;
    min-width: 40px;
    min-height: 40px;
    padding: 6px;
  }
  
  .mobile-cart-btn {
    font-size: 1.2rem;
    min-width: 38px;
    min-height: 38px;
    padding: 5px;
    display: flex;
  }
  
  .mobile-quick-actions {
    padding: 15px 10px;
  }
  
  .mobile-action-btn {
    font-size: 0.8rem;
    min-width: 50px;
  }
  
  .mobile-action-btn i {
    font-size: 1.2rem;
  }
}

/* ===== MOBILE TOP BAR FIXES ===== */
@media (max-width: 768px) {
  .top-bar {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  .store-badge {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    padding: 0 10px;
  }
  
  .store-badge i {
    display: none;
  }
  
  .store-badge span {
    line-height: 1.4;
  }
  
  .gold-link {
    font-size: 0.85rem;
    margin-top: 3px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 8px 0;
    font-size: 0.75rem;
  }
  
  .store-badge {
    gap: 3px;
  }
  
  .gold-link {
    font-size: 0.8rem;
  }
}

/* ============================================
   MOBILE HOMEPAGE FIXES - Comprehensive
   ============================================ */

/* ===== ISSUE 1: TOP BAR TEXT ALIGNMENT - IMPROVED FOR MOBILE ===== */
@media (max-width: 768px) {
  .top-bar {
    padding: 12px 0;
    text-align: center;
  }
  
  .top-bar .container {
    padding: 0 10px;
  }
  
  .store-badge {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 0 10px;
    line-height: 1.4;
    justify-content: center;
    align-items: center;
  }
  
  .store-badge i {
    display: none;
  }
  
  .store-badge span {
    display: block;
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .gold-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    margin-top: 4px;
    padding: 5px 14px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .gold-link::before {
    content: 'ðŸ“';
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 10px 0;
  }
  
  .store-badge {
    gap: 5px;
  }
  
  .store-badge span {
    font-size: 0.75rem;
    line-height: 1.4;
    max-width: 260px;
  }
  
  .gold-link {
    font-size: 0.8rem;
    padding: 4px 12px;
  }
}

@media (max-width: 375px) {
  .store-badge span {
    font-size: 0.7rem;
    max-width: 240px;
  }
  
  .gold-link {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
}

@media (max-width: 360px) {
  .store-badge span {
    font-size: 0.68rem;
    max-width: 220px;
  }
}

/* ===== ISSUE 2: BANNER CAROUSEL IMAGES ===== */
/* Fix banner height and image scaling for mobile - Match product page image height */
@media (max-width: 768px) {
  .banner-carousel {
    height: auto;
    min-height: auto;
    max-height: 75vh;
    overflow: hidden !important;
  }

  .carousel-container {
    height: auto;
    overflow: hidden !important;
  }

  .carousel-slide {
    height: auto;
    min-height: 400px;
  }

  .banner-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 414px) {
  .banner-carousel {
    height: auto;
    min-height: auto;
    max-height: 75vh;
    overflow: hidden !important;
  }

  .carousel-container {
    height: auto;
    overflow: hidden !important;
  }

  .carousel-slide {
    height: auto;
    min-height: 350px;
  }

  .banner-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 375px) {
  .banner-carousel {
    height: auto;
    min-height: auto;
    max-height: 75vh;
    overflow: hidden !important;
  }

  .carousel-container {
    height: auto;
    overflow: hidden !important;
  }

  .carousel-slide {
    height: auto;
    min-height: 320px;
  }

  .banner-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 360px) {
  .banner-carousel {
    height: auto;
    min-height: auto;
    max-height: 75vh;
    overflow: hidden !important;
  }

  .carousel-container {
    height: auto;
    overflow: hidden !important;
  }

  .carousel-slide {
    height: auto;
    min-height: 300px;
  }

  .banner-image {
    width: 100%;
    height: 100%;
    max-height: 75vh;
    object-fit: contain;
    object-position: center;
  }
}

/* ===== ISSUE 3: NEW IN COLLECTION CAROUSEL IMAGES ===== */
/* Fix collections carousel for mobile */
@media (max-width: 414px) {
  .collections-banner-carousel {
    overflow: hidden !important;
  }
  
  .collections-carousel-container {
    height: auto;
    max-height: 75vh;
    overflow: hidden !important;
  }

  .collections-carousel-slide {
    height: auto;
    min-height: 300px;
  }
  
  .collections-carousel-slide picture {
    height: auto;
  }

  .collections-banner-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 375px) {
  .collections-banner-carousel {
    overflow: hidden !important;
  }
  
  .collections-carousel-container {
    height: auto;
    max-height: 75vh;
    overflow: hidden !important;
  }

  .collections-carousel-slide {
    height: auto;
    min-height: 280px;
  }
  
  .collections-carousel-slide picture {
    height: auto;
  }

  .collections-banner-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 360px) {
  .collections-banner-carousel {
    overflow: hidden !important;
  }
  
  .collections-carousel-container {
    height: auto;
    max-height: 75vh;
    overflow: hidden !important;
  }

  .collections-carousel-slide {
    height: auto;
    min-height: 260px;
  }
  
  .collections-carousel-slide picture {
    height: auto;
  }

  .collections-banner-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    object-position: center;
  }
  
  .collections-carousel-nav {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}

/* ===== ISSUE 4: TRUST STRIP BELOW NEW IN COLLECTIONS ===== */
/* Stack trust items vertically on mobile with proper spacing */
@media (max-width: 768px) {
  .trust-strip {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
  }
  
  .trust-strip .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 15px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .trust-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    margin: 0;
    border: none;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .trust-item:last-child {
    border-bottom: none;
  }
  
  .trust-item i {
    font-size: 1.5rem;
    width: auto;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 94, 56, 0.1);
    border-radius: 50%;
    color: var(--green-primary);
    flex-shrink: 0;
  }
  
  .trust-item span {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--neutral-dark);
  }
}

@media (max-width: 480px) {
  .trust-strip {
    padding: 15px 0;
  }
  
  .trust-strip .container {
    gap: 10px;
    padding: 0 12px;
  }
  
  .trust-item {
    padding: 12px 8px;
    gap: 6px;
    border-radius: 10px;
  }
  
  .trust-item i {
    font-size: 1.3rem;
    height: 36px;
    width: 36px;
  }
  
  .trust-item span {
    font-size: 0.75rem;
  }
}

@media (max-width: 375px) {
  .trust-strip .container {
    gap: 8px;
    padding: 0 10px;
  }
  
  .trust-item {
    padding: 10px 6px;
    border-radius: 8px;
  }
  
  .trust-item i {
    font-size: 1.2rem;
    height: 32px;
    width: 32px;
  }
  
  .trust-item span {
    font-size: 0.7rem;
  }
}

@media (max-width: 320px) {
  .trust-strip .container {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .trust-item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 12px;
    gap: 10px;
  }
  
  .trust-item i {
    height: 32px;
    width: 32px;
  }
  
  .trust-item span {
    font-size: 0.8rem;
    text-align: left;
  }
}

@media (max-width: 360px) {
  .trust-item {
    padding: 8px 0;
  }
  
  .trust-item span {
    font-size: 0.8rem;
  }
}

/* ===== ISSUE 5: BEST SELLERS CAROUSEL FIXES ===== */
/* Ensure best sellers carousel works properly on mobile */
@media (max-width: 768px) {
  .best-sellers-carousel {
    position: relative;
    padding: 0 5px;
  }

  .carousel-viewport {
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .best-sellers-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    width: 100%;
    height: auto;
  }

  .best-sellers-track .carousel-slide {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    overflow: visible;
  }

  .carousel-slide .best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0;
    width: 100%;
  }

  /* Best sellers product cards - allow full height display */
  .best-sellers-track .product-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    height: auto;
    flex: 0 0 auto;
  }

  .best-sellers-track .product-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .best-sellers-track .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Placeholder for incomplete slides */
  .best-sellers-track .product-card-placeholder {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    visibility: hidden;
  }

  .best-sellers .carousel-nav {
    display: flex !important;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.95);
    border: 2px solid var(--green-primary);
  }

  .best-sellers .carousel-nav:hover {
    background: var(--green-primary);
  }

  .best-sellers .carousel-nav:hover i {
    color: white;
  }
  
  .best-sellers .carousel-prev {
    left: -5px;
  }
  
  .best-sellers .carousel-next {
    right: -5px;
  }
}

@media (max-width: 480px) {
  .best-sellers-carousel {
    padding: 0;
    gap: 5px;
  }
  
  .carousel-slide .best-sellers-grid {
    gap: 10px;
  }
  
  .best-sellers .carousel-nav {
    width: 32px;
    height: 32px;
  }
  
  .best-sellers .carousel-nav i {
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .carousel-slide .best-sellers-grid {
    gap: 8px;
  }
  
  .best-sellers-grid .product-image {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 360px) {
  .carousel-slide .best-sellers-grid {
    gap: 5px;
  }
  
  .best-sellers-grid .product-card {
    padding: 5px;
  }
  
  .best-sellers-grid .product-image {
    aspect-ratio: 3 / 4;
  }
}

/* ===== ISSUE 6: FOOTER ACCORDION/COLLAPSIBLE SECTIONS ===== */
/* Mobile footer accordion styles */
@media (max-width: 768px) {
  .ecommerce-footer {
    margin-top: 40px;
    margin-bottom: 0 !important; /* Account for sticky place order button on checkout */
  }
  
  /* Checkout page specific - prevent footer overlap with sticky button */
  body:has(.place-order-btn[style*="fixed"]) .ecommerce-footer,
  .checkout-page-footer {
    margin-bottom: 70px !important;
  }
  
  .footer-announcement {
    padding: 20px 15px;
  }
  
  .footer-announcement .big-text {
    font-size: 1.2rem;
  }
  
  .footer-announcement .big-text span {
    font-size: 1.4rem;
  }
  
  /* Accordion for footer columns */
  .footer-grid-new {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  
  .footer-column {
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    margin: 0;
  }
  
  .footer-column:last-child {
    border-bottom: none;
  }
  
  .footer-column h5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    margin: 0;
    border-bottom: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
    position: relative;
  }
  
  .footer-column h5:hover {
    background: #f0f0f0;
  }
  
  .footer-column h5::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #666;
    transition: transform 0.3s;
    margin-left: 10px;
  }
  
  .footer-column.active h5::after {
    content: 'ˆ';
    transform: rotate(0deg);
  }
  
  .footer-column ul,
  .footer-column .feature-row,
  .footer-column .city-link,
  .footer-column .view-more {
    display: none;
    padding: 0 20px 18px;
  }
  
  .footer-column.active ul,
  .footer-column.active .feature-row,
  .footer-column.active .city-link,
  .footer-column.active .view-more {
    display: block;
  }
  
  .footer-column.active .feature-row {
    display: flex;
  }
  
  .footer-column.active .city-link {
    display: inline-block;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    font-size: 0.9rem;
    padding: 5px 0;
    display: block;
  }
  
  .footer-main {
    padding: 0;
  }
  
  /* Keep first column expanded by default */
  .footer-column:first-child {
    border-top: none;
  }
  
  .footer-column:first-child h5::after {
    content: 'ˆ';
  }
  
  .footer-column:first-child ul,
  .footer-column:first-child .feature-row {
    display: block;
  }
  
  .footer-column:first-child .feature-row {
    display: flex;
  }
  
  /* App section compact */
  .footer-app-section {
    padding: 25px 20px;
  }
  
  .footer-app-section h4 {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  /* Trust section compact */
  .footer-trust-section {
    padding: 20px;
  }
  
  .footer-trust-grid {
    gap: 15px;
  }
  
  /* Social section compact */
  .footer-social-section {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .footer-announcement {
    padding: 15px 10px;
  }
  
  .footer-announcement .small-text {
    font-size: 0.65rem;
  }
  
  .footer-announcement .big-text {
    font-size: 1rem;
  }
  
  .footer-announcement .big-text span {
    font-size: 1.15rem;
  }
  
  .footer-column h5 {
    padding: 15px;
    font-size: 0.9rem;
  }
  
  .footer-column ul,
  .footer-column .feature-row {
    padding: 0 15px 15px;
  }
  
  .footer-app-section {
    padding: 20px 15px;
  }
  
  .app-btn {
    padding: 10px 18px;
  }
  
  .app-btn i {
    font-size: 1.5rem;
  }
  
  .footer-trust-section {
    padding: 15px;
  }
  
  .footer-copyright {
    padding: 12px 15px;
  }
  
  .footer-copyright p {
    font-size: 0.75rem;
  }
}

@media (max-width: 375px) {
  .footer-column h5 {
    font-size: 0.85rem;
    padding: 14px;
  }
  
  .footer-column ul li a {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .footer-column h5 {
    font-size: 0.8rem;
  }
  
  .footer-column ul li a {
    font-size: 0.8rem;
  }
  
  .app-btn {
    padding: 8px 14px;
  }
  
  .app-btn .btn-text span:first-child {
    font-size: 0.6rem;
  }
  
  .app-btn .btn-text span:last-child {
    font-size: 0.9rem;
  }
}

/* ===== MOBILE PRODUCT DETAIL PAGE STYLES ===== */
/* Additional mobile optimizations for product.html */

@media (max-width: 768px) {
  /* Product detail page specific mobile styles */
  .product-detail-page .page-container {
    padding: 0 15px;
  }
  
  /* Mobile breadcrumb adjustments */
  .product-detail-page .product-breadcrumb {
    padding: 12px 0;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Mobile product info stacking */
  .product-detail-page .hero-container {
    display: flex;
    flex-direction: column;
  }
  
  .product-detail-page .hero-gallery {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .product-detail-page .hero-actions {
    width: 100%;
  }
  
  /* Mobile zoom hint */
  .product-detail-page .zoom-hint {
    font-size: 0.8rem;
    color: var(--neutral-medium);
    margin-top: 10px;
  }
  
  /* Mobile rating display */
  .product-detail-page .rate-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  
  /* Mobile size guide link */
  .product-detail-page .size-guide-link {
    font-size: 0.9rem;
  }
  
  /* Mobile store link */
  .product-detail-page .store-link {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .product-detail-page .product-breadcrumb {
    font-size: 0.8rem;
    padding: 10px 0;
  }
  
  .product-detail-page .rate-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .product-detail-page .color-hint {
    font-size: 0.8rem;
  }
}

@media (max-width: 375px) {
  .product-detail-page .hero-price-section {
    padding: 12px 0;
  }
  
  .product-detail-page .share-section {
    flex-wrap: wrap;
  }
}

/* ===== MOBILE PRODUCTS PAGE STYLES ===== */
/* These styles complement the products.html inline styles */

/* Mobile Filter Button - Base Styles */
.mobile-filter-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background: var(--green-primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(13, 94, 56, 0.4);
  transition: all 0.3s ease;
}

.mobile-filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 94, 56, 0.5);
}

.mobile-filter-btn i {
  font-size: 1.1rem;
}

/* Mobile Filter Drawer - Base Styles */
.mobile-filter-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 350px;
  height: 100%;
  background: white;
  z-index: 10001;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.mobile-filter-drawer.active {
  display: flex;
  transform: translateX(0);
}

.mobile-filter-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
}

/* ===== EMERGENCY STICKY HEADER FIX ===== */
/* This ensures the header is sticky on all mobile devices */
@media screen and (max-width: 992px) {
  html body header.header,
  body > header.header,
  header.header,
  .header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  /* Sticky header doesn't require body padding since it takes up space in flow */
  html body {
    padding-top: 0 !important;
  }
}

.mobile-filter-overlay.active {
  display: block;
}

.mobile-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: var(--green-primary);
  color: white;
}

.mobile-filter-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.mobile-filter-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-filter-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.mobile-filter-content .filter-section {
  margin-bottom: 20px;
}

.mobile-filter-content .filter-title {
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.mobile-filter-content .filter-options {
  padding: 10px 0;
}

.mobile-filter-content .filter-option {
  padding: 10px 0;
}

.mobile-filter-content .clear-filters-btn {
  margin-top: 20px;
  padding: 14px;
  font-size: 1rem;
}

/* Mobile Products Grid Enhancements */
@media (max-width: 768px) {
  /* Show mobile filter button on mobile */
  .mobile-filter-btn {
    display: flex !important;
  }
  
  /* Products page specific optimizations */
  .category-page-layout .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }
  
  .category-page-layout .product-card {
    padding: 0;
    overflow: hidden;
  }
  
  .category-page-layout .product-image {
    aspect-ratio: 3 / 4;
    height: auto;
    overflow: hidden;
  }
  
  .category-page-layout .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .category-page-layout .product-details {
    padding: 10px;
  }
  
  .category-page-layout .product-title {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .category-page-layout .product-price {
    font-size: 14px;
  }
  
  .category-page-layout .product-mrp {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .category-page-layout .products-grid {
    gap: 8px;
    padding: 8px;
  }
  
  .category-page-layout .product-card {
    padding: 0;
  }
  
  .category-page-layout .product-image {
    aspect-ratio: 3 / 4;
  }
  
  .category-page-layout .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .category-page-layout .product-details {
    padding: 8px;
  }
  
  .category-page-layout .product-title {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .category-page-layout .product-price {
    font-size: 13px;
  }
  
  .category-page-layout .product-category {
    font-size: 11px;
  }
  
  .mobile-filter-btn {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .category-page-layout .products-grid {
    gap: 6px;
    padding: 6px;
  }
  
  .category-page-layout .product-title {
    font-size: 11px;
  }
  
  .category-page-layout .product-price {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .category-page-layout .products-grid {
    gap: 5px;
    padding: 5px;
  }
  
  .category-page-layout .product-card {
    padding: 5px;
  }
}

/* ===== PRODUCT PAGE MOBILE FIXES ===== */
@media (max-width: 768px) {
  /* Product image should fit within viewport */
  .product-images .main-image,
  .product-images .main-image img,
  #productImageGrid .grid-image-container,
  #productImageGrid .grid-image-container img {
    width: 100% !important;
    height: auto !important;
    max-height: 60vh !important;
    object-fit: contain !important;
    /* Prevent image layout shifts */
    aspect-ratio: 1/1;
  }
  
  /* Image gallery container */
  .product-images,
  .hero-gallery,
  #productImageGrid {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: scroll;
    overflow-y: hidden;
    /* Optimize for performance */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
    scrollbar-width: none; /* Firefox hide scrollbar */
    -ms-overflow-style: none; /* IE/Edge hide scrollbar */
  }
  
  /* Hide scrollbar for WebKit browsers */
  #productImageGrid::-webkit-scrollbar {
    display: none;
  }
  
  /* Carousel images */
  .mobile-image-carousel img,
  .grid-image-container img {
    width: 100% !important;
    height: auto !important;
    max-height: 60vh !important;
    object-fit: contain !important;
    /* Prevent image layout shifts */
    aspect-ratio: 1/1;
  }
  
  /* Grid container for images - ensure consistent sizing */
  #productImageGrid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    gap: 0 !important;
  }
  
  #productImageGrid::-webkit-scrollbar {
    display: none !important;
  }
  
  .grid-image-container {
    min-width: 100% !important;
    width: 100% !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    flex-shrink: 0 !important;
    aspect-ratio: 3/4 !important;
  }
  
  /* Make "You May Also Like" cards wider */
  .related-products-carousel .related-product-card,
  .related-products .product-card {
    min-width: 200px !important;
    width: 200px !important;
  }
}

/* ===== PRODUCT PAGE UI FIXES ===== */

/* Fix for benefits list - prevent overlapping tick marks */
.highlight-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-points li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 8px 0 !important;
}

.highlight-points li i.fas.fa-check-circle,
.highlight-points li i {
  flex-shrink: 0 !important;
  color: var(--green-primary);
  font-size: 1.1rem;
  margin-top: 2px;
  margin-right: 0 !important;
  min-width: 20px;
  display: inline-block;
}

/* Hide collapsible icons on desktop by default */
.collapsible-icon,
.why-choose-header .toggle-icon,
.fabric-care-header .toggle-icon,
.section-toggle-icon {
  display: none;
}

/* Show collapsible icons only on mobile */
@media (max-width: 768px) {
  .collapsible-icon,
  .why-choose-header .toggle-icon,
  .fabric-care-header .toggle-icon,
  .section-toggle-icon {
    display: inline-block;
  }
}

/* ========================================
   MOBILE TAP HIGHLIGHT & PREMIUM INTERACTIONS
   ======================================== */

@media (max-width: 768px) {
  /* Remove blue tap highlight from non-interactive elements */
  div, span, img, p, h1, h2, h3, h4, h5, h6,
  .container, .wrapper, .section, .row, .col,
  header, footer, nav, aside, main, article,
  figure, figcaption, label:not(.interactive),
  .product-image, .banner-image, .category-image,
  .footer-column, .footer-section, .trust-badge,
  .highlight-points, .product-details, .product-info,
  .hero-section, .shop-categories, .best-sellers,
  .mobile-menu-overlay, .mobile-search-section,
  .carousel-container, .carousel-track, .carousel-slide {
    -webkit-tap-highlight-color: transparent;
  }

  /* Premium click effect for important interactive elements */
  /* Primary buttons */
  .btn-primary:active,
  .btn-add-to-cart:active,
  .btn-checkout:active,
  .btn-buy-now:active,
  .btn-submit:active,
  .btn-view-all:active,
  button[type="submit"]:active,
  .add-to-cart-btn:active,
  .checkout-btn:active,
  .place-order-btn:active,

  /* Quantity buttons */
  .quantity-btn:active,
  .qty-btn:active,
  .qty-plus:active,
  .qty-minus:active,

  /* Navigation links */
  .nav-link:active,
  .main-nav a:active,
  .mobile-menu-overlay a:active,
  .footer-column a:active,

  /* Category cards/links */
  .category-card:active,
  .category-link:active,
  .shop-category-card:active,

  /* Product cards */
  .product-card:active,
  .product-item:active,
  .related-product-card:active,

  /* CTA buttons */
  .cta-button:active,
  .banner-btn:active,
  .gold-link:active,
  .app-btn:active,

  /* Utility buttons */
  .carousel-nav:active,
  .carousel-dot:active,
  .mobile-menu-close:active,
  .mobile-cart-btn:active,
  .wishlist-btn:active,
  .wishlist-action-btn:active,
  .remove-item-btn:active,
  .continue-shopping-btn:active,

  /* Auth buttons */
  .login-btn:active,
  .signup-btn:active,
  .google-btn:active,

  /* Form buttons */
  .apply-coupon-btn:active,
  .select-address-btn:active,
  .add-address-btn:active,
  .track-order-btn:active,

  /* Social buttons */
  .social-icons a:active,
  .footer-social-section .social-icons a:active {
    transform: scale(0.97);
    transition: transform 120ms ease-out;
  }

  /* Cursor pointer for better UX */
  .btn-primary,
  .btn-add-to-cart,
  .btn-checkout,
  .btn-buy-now,
  .btn-submit,
  .quantity-btn,
  .nav-link,
  .category-card,
  .product-card,
  .cta-button,
  .carousel-nav,
  .carousel-dot,
  .wishlist-btn,
  .mobile-cart-btn {
    cursor: pointer;
  }
}

/* ===== IMAGE UPLOAD UI COMPONENTS ===== */
.upload-zone {
  border: 2px dashed var(--neutral-medium);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--white);
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--green-primary);
  background: rgba(13, 94, 56, 0.05);
}

.upload-zone i {
  font-size: 3rem;
  color: var(--green-primary);
  margin-bottom: 15px;
  display: block;
}

.upload-zone p {
  color: var(--neutral-medium);
  margin-bottom: 10px;
}

.upload-zone input[type="file"] {
  display: none;
}

.uploaded-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.uploaded-image-card {
  position: relative;
  border: 1px solid var(--neutral-medium);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.uploaded-image-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.image-preview-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

.image-preview-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.uploaded-image-card:hover .image-preview-wrapper img {
  transform: scale(1.05);
}

.image-delete-btn,
.image-select-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  opacity: 0;
  transform: translateY(-1);
}

.uploaded-image-card:hover .image-delete-btn,
.uploaded-image-card:hover .image-select-btn {
  opacity: 1;
  transform: translateY(0);
}

.image-delete-btn {
  background: rgba(220, 53, 69, 0.9);
  color: white;
  right: 8px;
}

.image-delete-btn:hover {
  background: var(--danger);
  transform: scale(1.1);
}

.image-select-btn {
  background: rgba(40, 167, 69, 0.9);
  color: white;
  right: 48px;
}

.image-select-btn:hover {
  background: var(--success);
  transform: scale(1.1);
}

.image-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.image-info .filename {
  font-size: 0.75rem;
  color: var(--neutral-dark);
  word-break: break-word;
  line-height: 1.3;
}

.image-info .size {
  font-size: 0.7rem;
  color: var(--neutral-medium);
}

/* Upload progress indicator */
.upload-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: var(--neutral-bg);
  border-radius: 8px;
  margin-top: 10px;
}

.upload-progress .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--neutral-medium);
  border-top-color: var(--green-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.upload-progress span {
  font-size: 0.85rem;
  color: var(--neutral-dark);
}

/* Image upload toolbar */
.image-upload-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.image-upload-toolbar .btn {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* Variant image selector */
.image-selector-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.image-selector-modal .modal-content {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.image-selector-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--neutral-medium);
}

.image-selector-modal .modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-primary);
}

.image-selector-modal .modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--neutral-medium);
  padding: 5px;
  line-height: 1;
}

.image-selector-modal .modal-close:hover {
  color: var(--neutral-dark);
}

/* Gallery thumbnail strip */
.gallery-thumbnail-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  margin-top: 10px;
}

.gallery-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
  border-color: var(--green-primary);
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Empty state for no images */
.no-images-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--neutral-medium);
}

.no-images-state i {
  font-size: 3rem;
  opacity: 0.5;
  margin-bottom: 15px;
  display: block;
}

.no-images-state p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* ===== HOMEPAGE REDESIGN - NEW STYLES ===== */

/* Section Header (Global) */
.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
  border-radius: 2px;
}

.section-header .subtitle {
  font-size: 1.1rem;
  color: var(--neutral-medium);
  margin-top: 15px;
}

/* ===== BANNER CAROUSEL ===== */
.banner-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #ffffff;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.carousel-slide {
  display: block;
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
  background: var(--gold-accent);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--gold-accent);
  transform: scale(1.3);
  border-color: var(--gold-accent);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--white);
  padding: 25px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.trust-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-align: center;
  padding: 0 15px;
  margin: 10px 0;
}

.trust-item i {
  color: var(--green-primary);
  font-size: 1.5rem;
}

/* ===== BEST SELLERS SECTION ===== */
.best-sellers {
  background: #ffffff;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.best-sellers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold-accent), var(--green-primary));
}

.best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--green-primary);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 94, 56, 0.3);
}

.btn-view-all:hover {
  background: #0a7a47;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 94, 56, 0.4);
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #fff;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  color: var(--neutral-medium);
  opacity: 0.3;
}

.product-details {
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.product-card:hover .product-title {
  color: var(--green-primary);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-current {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-primary);
}

.product-mrp {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

/* Hot/Trending Badge - Dynamic tags with pill background */
.hot-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 1.1rem;
  z-index: 11;
  background: rgba(255,255,255,0.9);
  padding: 4px 10px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-weight: 700;
  pointer-events: none;
}

/* Bestseller Badges (old - keep for compatibility) */
.bestseller-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  z-index: 11;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  animation: badgePulse 2s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.badge-0 { background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%); }
.badge-1 { background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%); color: #1a1a1a; }
.badge-2 { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.badge-3 { background: linear-gradient(135deg, #0D5E38 0%, #2ecc71 100%); }
.badge-4 { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); }
.badge-5 { background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%); }
.badge-6 { background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%); }
.badge-7 { background: linear-gradient(135deg, #D4AF37 0%, #F4E04D 100%); color: #1a1a1a; }

/* ===== SHOP BY CATEGORY ===== */
.shop-categories {
  padding: 60px 0 50px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Category grid uses same layout as best-sellers-grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== QUALITY CERTIFICATIONS ===== */
.quality-certifications {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, #f8faf9 0%, #e8f5e9 50%, #f0f7f4 100%);
  position: relative;
  overflow: hidden;
}

.quality-certifications::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0D5E38, #2ecc71, #0D5E38);
}

.quality-certifications .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.certification-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.certification-card {
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(13, 94, 56, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.certification-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0D5E38, #2ecc71);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.certification-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(13, 94, 56, 0.15);
  border-color: #2ecc71;
}

.certification-card:hover::before { transform: scaleX(1); }

.cert-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  animation: certPulse 3s ease-in-out infinite;
}

@keyframes certPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.certification-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 600;
}

.certification-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cert-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #0D5E38 0%, #1a8f5a 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.certification-card:hover .cert-badge {
  background: linear-gradient(135deg, #2ecc71 0%, #0D5E38 100%);
  transform: scale(1.05);
}

/* ===== COLLECTIONS BANNER CAROUSEL ===== */
.collections-banner-carousel {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.collections-carousel-container {
  width: 1350px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  height: 500px;
  overflow: visible;
  background: #ffffff;
}

.collections-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collections-carousel-slide {
  min-width: 100%;
  display: block;
}

.collections-carousel-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.collections-banner-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.collections-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collections-carousel-prev { left: 15px; }
.collections-carousel-next { right: 15px; }

.collections-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.collections-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.collections-carousel-dot.active { background: white; }

/* ===== MOBILE HEADER SEARCH BAR ===== */
.mobile-header-search {
  display: none;
  padding: 8px 0;
  background: var(--white);
  border-top: 1px solid #eee;
}
@media (max-width: 768px) {
  .mobile-header-search {
    display: block;
  }
}
.mobile-search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-search-input-wrapper .search-icon {
  position: absolute;
  left: 14px;
  color: #999;
  font-size: 0.9rem;
  pointer-events: none;
}
.mobile-search-input-wrapper input {
  width: 100%;
  border: none;
  background: #f5f5f5;
  border-radius: 25px;
  padding: 10px 16px 10px 40px;
  font-size: 0.95rem;
  outline: none;
  color: var(--neutral-dark);
}
.mobile-search-input-wrapper input:focus {
  background: #fff;
  box-shadow: 0 0 0 2px var(--green-primary);
}
/* Live search dropdown */
.mobile-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  margin-top: 5px;
}
.mobile-search-dropdown.active {
  display: block;
}
.mobile-search-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.mobile-search-result:hover,
.mobile-search-result:last-child {
  border-bottom: none;
}
.mobile-search-result:hover {
  background: #f8f9fa;
}
.mobile-search-result img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.mobile-search-result .result-info {
  flex: 1;
  min-width: 0;
}
.mobile-search-result .result-name {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-search-result .result-price {
  font-size: 0.85rem;
  color: var(--green-primary);
  font-weight: 700;
}
.mobile-search-result .result-view-all {
  text-align: center;
  padding: 12px;
  color: var(--green-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== RECODED HEADER LAYOUT ===== */

/* 1. Hide Mobile Wrappers on Desktop */
.mobile-col-left,
.mobile-col-center,
.mobile-col-right {
  display: none;
}

/* 2. Logo Image Styling */
.site-logo-img {
  max-height: 100px; /* Larger desktop height */
  width: auto;
  display: block;
}

/* 3. Mobile Layout Grid */
@media (max-width: 768px) {
  /* Turn nav-inner into a 3-column grid */
  .main-nav .nav-inner {
    display: grid !important;
    grid-template-columns: 50px 1fr 50px !important; /* [Hamburger] [Logo Centered] [Spacer] */
    align-items: center !important;
    gap: 0 !important;
    padding: 10px 16px !important;
  }

  /* Column 1: Hamburger */
  .mobile-col-left {
    display: flex !important;
    grid-column: 1 !important;
    justify-self: start !important;
  }

  /* Column 2: Logo */
  .mobile-col-center {
    display: flex !important;
    grid-column: 2 !important;
    justify-self: center !important;
    justify-content: center !important;
  }

  /* Column 3: Right Spacer */
  .mobile-col-right {
    display: flex !important;
    grid-column: 3 !important;
    justify-self: end !important;
  }

  /* Hide Desktop Elements on Mobile */
  .main-nav .nav-links,
  .main-nav .nav-actions {
    display: none !important;
  }

  /* Logo Styling Reset */
  .main-nav .logo {
    display: inline-block !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    text-align: center !important;
    line-height: 0 !important; /* Remove line-height gap for images */
  }

  /* Mobile Logo Image Size */
  .main-nav .site-logo-img {
    max-height: 50px !important; /* Larger mobile height */
    width: auto !important;
    display: inline-block !important;
  }

  /* Hamburger Styling Reset */
  .main-nav .mobile-menu-toggle {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* ===== BANNER HEIGHT REDUCTION ===== */
@media (max-width: 768px) {
  .banner-carousel { height: 200px !important; }
}
@media (max-width: 480px) {
  .banner-carousel { height: 180px !important; }
}
@media (max-width: 768px) {
  .carousel-track {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    transition: none !important;
  }
  .carousel-track::-webkit-scrollbar { display: none !important; }
  .carousel-slide {
    min-width: 100% !important;
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
  }
}

/* Trust Strip Responsive */
@media (max-width: 768px) {
  .trust-strip {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
  }
  .trust-strip .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 15px;
    max-width: 500px;
    margin: 0 auto;
  }
  .trust-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .trust-item i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 94, 56, 0.1);
    border-radius: 50%;
  }
  .trust-item span { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .trust-strip { padding: 15px 0; }
  .trust-strip .container { gap: 10px; padding: 0 12px; }
  .trust-item { padding: 12px 8px; gap: 6px; }
  .trust-item i { font-size: 1.3rem; height: 36px; width: 36px; }
  .trust-item span { font-size: 0.75rem; }
}

/* Best Sellers Responsive */
@media (max-width: 992px) {
  .best-sellers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .best-sellers .section-header h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
  .best-sellers-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 15px 20px;
  }
  .best-sellers-grid::-webkit-scrollbar { display: none; }
  .best-sellers-grid .product-card {
    flex: 0 0 75%;
    min-width: 0;
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
  }
  .best-sellers-grid .product-image {
    aspect-ratio: 3 / 4;
    width: 100%;
  }
  .best-sellers-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .best-sellers-grid .product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .best-sellers-grid .product-details {
    padding: 10px 12px;
    background: #fff;
  }
  .best-sellers-grid .product-title {
    font-size: 14px;
    -webkit-line-clamp: 1;
    font-weight: 600;
  }
  .best-sellers .section-header h2 { font-size: 1.5rem; }
  .best-sellers .subtitle { font-size: 0.95rem; }
  .hot-badge { font-size: 1.3rem; top: 10px; left: 10px; }
  .discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    padding: 4px 8px;
    font-size: 0.7rem;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .best-sellers { padding: 40px 0 30px; }
  .best-sellers-grid { gap: 10px; padding: 0 12px 16px; }
  .best-sellers-grid .product-card { flex: 0 0 75%; }
  .best-sellers-grid .product-details { padding: 8px 10px; }
  .best-sellers-grid .product-title { font-size: 13px; -webkit-line-clamp: 2; line-clamp: 2; line-height: 1.35; }
  .price-current { font-size: 15px; font-weight: 700; }
  .product-mrp { font-size: 12px; }
  .product-image-placeholder { font-size: 2.5rem; }
  .hot-badge { font-size: 1.2rem; top: 8px; left: 8px; }
  .discount-badge { top: 8px; right: 8px; padding: 3px 6px; font-size: 0.65rem; }
}

/* Category Grid Responsive with touch scroll on mobile */
@media (max-width: 992px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .shop-categories .section-header h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
  .category-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 15px 15px;
    gap: 14px;
    max-width: 100%;
  }
  .category-grid::-webkit-scrollbar { display: none; }
  .category-grid .product-card {
    flex: 0 0 calc(50% - 7px);
    min-width: 0;
    scroll-snap-align: start;
  }
  .category-grid .product-image { aspect-ratio: 3 / 4; }
  .category-grid .product-details { padding: 10px; }
  .category-grid .product-title { font-size: 13px; margin-bottom: 4px; }
}

@media (max-width: 480px) {
  .shop-categories { padding: 40px 0 30px; }
  .category-grid { gap: 10px; padding: 0 12px 12px; }
  .category-grid .product-card { flex: 0 0 calc(50% - 5px); }
  .category-grid .product-details { padding: 8px; }
  .category-grid .product-title { font-size: 12px; }
  .category-grid .product-image-placeholder { font-size: 2.5rem; }
}

/* Certifications Responsive */
@media (max-width: 992px) {
  .certification-carousel { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .quality-certifications .section-header h2 { font-size: 2rem; }
}

@media (max-width: 576px) {
  .quality-certifications { padding: 50px 0 40px; }
  .certification-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    gap: 15px;
  }
  .certification-carousel::-webkit-scrollbar { display: none; }
  .certification-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 25px 20px;
  }
  .quality-certifications .section-header h2 { font-size: 1.75rem; }
  .cert-icon { font-size: 40px; }
}

/* Collections Carousel Responsive */
@media (max-width: 992px) {
  .collections-carousel-container { height: auto; max-height: 75vh; }
  .collections-carousel-slide { min-height: 400px; }
  .collections-banner-image { width: 100%; height: auto; max-height: 75vh; object-fit: contain; }
}

@media (max-width: 768px) {
  .collections-carousel-container { height: auto; max-height: 75vh; }
  .collections-carousel-slide { min-height: 350px; }
  .collections-banner-image { width: 100%; height: auto; max-height: 75vh; object-fit: contain; }
  .collections-carousel-nav { width: 40px; height: 40px; }
  .collections-carousel-prev { left: 10px; }
  .collections-carousel-next { right: 10px; }
}

@media (max-width: 480px) {
  .collections-carousel-container { height: auto; max-height: 75vh; }
  .collections-carousel-slide { min-height: 300px; }
  .collections-banner-image { width: 100%; height: auto; max-height: 75vh; object-fit: contain; }
  .collections-carousel-nav { width: 32px; height: 32px; font-size: 0.9rem; }
  .collections-carousel-prev { left: 5px; }
  .collections-carousel-next { right: 5px; }
  .collections-carousel-dots { bottom: 10px; gap: 6px; }
  .collections-carousel-dot { width: 8px; height: 8px; }
}

/* Mobile scroll-snap for collections */
@media (max-width: 768px) {
  .collections-carousel-track {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    transition: none !important;
  }
  .collections-carousel-track::-webkit-scrollbar { display: none !important; }
  .collections-carousel-slide {
    min-width: 100% !important;
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
  }
}

/* Section Header Responsive */
@media (max-width: 768px) {
  .section-header h2 { font-size: 2rem; }
  .section-header .subtitle { font-size: 1rem; }
}

@media (max-width: 480px) {
  .section-header { margin-bottom: 30px; }
  .section-header h2 { font-size: 1.75rem; }
  .section-header .subtitle { font-size: 0.95rem; }
  .btn-view-all { padding: 12px 24px; font-size: 0.9rem; }
}

/* ===== CUSTOMER TESTIMONIALS ===== */
.testimonials {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold-accent), var(--green-primary));
}

/* Testimonials - Pure CSS scroll-snap, no JS */
.testimonials-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5px 10px;
}

.testimonials-scroll::-webkit-scrollbar { display: none; }

/* Desktop: single card centered */
@media (min-width: 769px) {
  .testimonials-scroll {
    overflow-x: hidden;
    scroll-snap-type: none;
  }
  .testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }
}

/* Mobile: horizontal scroll with 85% visible cards */
@media (max-width: 768px) {
  .testimonials-scroll {
    max-width: 100%;
    padding: 0 15px 15px;
    gap: 15px;
  }
  .testimonial-card {
    flex: 0 0 calc(85% - 8px);
    min-width: 0;
    scroll-snap-align: center;
    padding: 25px;
  }
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-header .stars { color: #FFB400; font-size: 1.1rem; }
.testimonial-header .stars i { margin-right: 2px; }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.verified-badge i { font-size: 0.9rem; }

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1a1a1a;
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--gold-accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.author-info { display: flex; flex-direction: column; gap: 3px; }
.author-info strong { color: #1a1a1a; font-size: 1rem; }
.author-info .location { color: #999; font-size: 0.85rem; }
.author-info .purchase-info { color: var(--green-primary); font-size: 0.85rem; font-weight: 500; }

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-nav:hover { background: var(--green-primary); color: white; }
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active, .dot:hover { background: var(--green-primary); transform: scale(1.2); }

.testimonial-summary {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.summary-rating {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rating-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-primary);
  font-family: 'Montserrat', sans-serif;
}

.rating-stars i { color: #FFB400; font-size: 1.1rem; margin-right: 2px; }
.rating-count { font-size: 0.9rem; color: var(--neutral-medium); }

/* Google Review Badge */
.google-review-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 20px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 30px auto 0;
  max-width: 450px;
  justify-content: center;
  flex-wrap: wrap;
}

.google-review-link {
  color: var(--green-primary);
  font-weight: 600;
  text-decoration: underline;
  font-size: 0.95rem;
}

.google-review-link:hover { color: var(--green-dark); }

/* Google Review Section - Clean class-based styles */
.google-review-section {
  padding: 40px 0;
  background: var(--neutral-bg);
}

.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.google-review-badge .fab.fa-google { font-size: 2rem; color: #4285F4; }
.google-review-badge .stars { color: #FFB400; font-size: 1rem; }
.google-review-badge .stars i { margin-right: 2px; }
.google-review-badge .rating-text { font-weight: 700; color: var(--neutral-dark); font-size: 0.95rem; }

.google-review-link {
  color: var(--green-primary);
  font-weight: 600;
  text-decoration: underline;
  font-size: 0.85rem;
}

.google-review-link:hover { color: var(--green-dark); }

/* Category CTA Link */
.category-cta-link {
  color: var(--green-primary);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: all 0.3s ease;
}

.category-cta-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.product-card:hover .category-cta-link {
  font-weight: 700;
}

.product-card:hover .category-cta-link i {
  transform: translateX(3px);
}

/* Testimonials Responsive */
@media (max-width: 768px) {
  .testimonials { padding: 50px 0 40px; }
  .testimonials .section-header h2 { font-size: 1.75rem; }
  .testimonial-nav { display: none; }
  .testimonial-dots { margin-top: 20px; }
  .google-review-badge { padding: 12px 20px; border-radius: 40px; }
}

@media (max-width: 480px) {
  .testimonials { padding: 40px 0 30px; }
  .testimonial-card { padding: 20px; }
  .testimonial-text { font-size: 0.95rem; line-height: 1.6; }
  .testimonial-dots { gap: 8px; }
  .dot { width: 10px; height: 10px; }
  .author-avatar { width: 40px; height: 40px; font-size: 1rem; }
  .testimonial-author { gap: 10px; }
  .author-info strong { font-size: 0.9rem; }
  .author-info .location { font-size: 0.8rem; }
  .author-info .purchase-info { font-size: 0.8rem; }
  .summary-rating { padding: 10px 15px; border-radius: 40px; }
  .rating-number { font-size: 1.8rem; }
  .rating-stars i { font-size: 1rem; }
  .rating-count { font-size: 0.8rem; }
  .google-review-badge { padding: 12px 15px; border-radius: 35px; margin: 20px 10px 0; }
  .google-review-badge i { font-size: 1.5rem !important; }
  .google-review-badge .stars { font-size: 0.9rem !important; }
  .google-review-badge .rating-text { font-size: 0.85rem !important; }
  .google-review-link { font-size: 0.85rem; }
}

/* ===== MOBILE HEADER & MENU ===== */

/* Store Badge */
.store-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.gold-link {
  color: var(--gold-accent);
  text-decoration: underline;
  font-weight: 600;
}

/* Main Nav - Full width, no container constraints */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  width: 100%;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Nav Links (Desktop) */
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--neutral-dark);
  font-weight: 600;
  padding: 8px 3px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--green-primary); transform: translateY(-1px); }
.nav-links a::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--green-primary); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 80%; }
.nav-links a.active { color: var(--green-primary); font-weight: 700; }

/* Nav Actions (Desktop search, etc.) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-only { display: inline-flex; }

/* Search Container (Desktop) */
.search-container {
  position: relative;
}

.search-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--neutral-dark);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.search-btn:hover { color: var(--green-primary); }

.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 10000;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.search-container.active .search-overlay { display: block; }

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--green-primary);
  border-radius: 25px;
  padding: 12px 18px;
}

.search-input {
  flex: 1;
  border: none;
  background: none;
  font-size: 1.1rem;
  outline: none;
  color: var(--neutral-dark);
}

.search-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--neutral-dark);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-close:hover { color: var(--green-primary); }

.search-suggestions {
  display: none;
  max-width: 800px;
  margin: 15px auto 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-height: 400px;
  overflow-y: auto;
}

.search-suggestions.show { display: block; }

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  text-decoration: none;
  color: var(--neutral-dark);
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.search-suggestion-item:hover { background: #f8f9fa; }
.search-suggestion-item img { width: 45px; height: 45px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }

.suggestion-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.suggestion-content .product-name { font-weight: 600; font-size: 0.95rem; }
.suggestion-content .product-meta { font-size: 0.8rem; color: var(--neutral-medium); }
.search-suggestion-item .price { font-weight: 700; color: var(--green-primary); font-size: 0.95rem; white-space: nowrap; }
.search-suggestion-item.no-results { justify-content: center; color: var(--neutral-medium); padding: 20px; border: none; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--neutral-dark);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-toggle:hover { color: var(--green-primary); }

/* Mobile Cart Button */
.mobile-cart-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--neutral-dark);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.mobile-cart-btn:hover { color: var(--green-primary); }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: white !important;
  z-index: 2147483647 !important;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
  display: flex;
  transform: translateX(0);
}

body.menu-open { overflow: hidden; }

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: var(--green-primary);
  color: white;
}

.mobile-menu-title { font-size: 1.3rem; font-weight: 700; }

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Search Section */
.mobile-search-section {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #f8f9fa;
}

.mobile-search-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 25px;
  padding: 12px 18px;
  border: 2px solid var(--green-primary);
}

.mobile-search-wrapper i { color: var(--green-primary); font-size: 1.1rem; }

.mobile-search-wrapper input {
  flex: 1;
  border: none;
  background: none;
  font-size: 1rem;
  outline: none;
  color: var(--neutral-dark);
}

.mobile-search-suggestions {
  display: none;
  margin-top: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-height: 200px;
  overflow-y: auto;
}

.mobile-search-suggestions.active { display: block; }

/* Mobile Quick Actions */
.mobile-quick-actions {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  background: white;
}

.mobile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--neutral-dark);
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  min-width: 60px;
}

.mobile-action-btn i { font-size: 1.4rem; color: var(--green-primary); }

/* Mobile Menu Links */
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px;
  overflow-y: auto;
  flex: 1;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 15px;
  text-decoration: none;
  color: var(--neutral-dark);
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
  min-height: 54px;
}

.mobile-menu-links a:hover { color: var(--green-primary); background: #f8f9fa; padding-left: 20px; }
.mobile-menu-links a i { width: 24px; text-align: center; color: var(--green-primary); flex-shrink: 0; }

/* ===== RESPONSIVE HEADER ===== */

@media (max-width: 992px) {
  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    position: relative;
    width: 100%;
  }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 15px;
  }
  .mobile-menu-toggle { display: flex; order: 1; }
  .logo { order: 2; flex: 1; text-align: center; align-items: center; }
  .nav-actions { display: none; }
  .desktop-only { display: none !important; }
  .nav-links { display: none; }
  .logo-green { font-size: 1.4rem; }
  .logo-gold { font-size: 0.95rem; }
  .heritage-badge { font-size: 0.65rem; padding: 2px 6px; margin-top: 3px; }
  .search-container { display: none; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .main-nav { padding: 10px 0; }
  .nav-inner { padding: 0 12px; }
  .logo { flex: 1; text-align: center; align-items: center; }
  .mobile-menu-toggle { order: 1; display: flex; }
  .logo-green { font-size: 1.3rem; }
  .logo-gold { font-size: 0.9rem; }
  .heritage-badge { margin: 5px auto 0; }
  input, select, textarea { font-size: 16px !important; }
  body { overflow-x: hidden; max-width: 100vw; }
  .mobile-menu-overlay a { -webkit-tap-highlight-color: transparent; }
}

@media (max-width: 480px) {

  /* Prevent horizontal scroll */
  body { overflow-x: hidden; max-width: 100vw; }

  /* Remove tap highlight */
  .mobile-menu-overlay a { -webkit-tap-highlight-color: transparent; }
}

@media (max-width: 480px) {
  .main-nav { padding: 8px 10px; }
  .logo-green { font-size: 1.2rem; }
  .logo-gold { font-size: 0.85rem; }
  .heritage-badge { font-size: 0.6rem; padding: 1px 5px; }
  .mobile-menu-toggle { font-size: 1.3rem; min-width: 40px; min-height: 40px; padding: 6px; }
  .mobile-quick-actions { padding: 15px 10px; }
  .mobile-action-btn { font-size: 0.8rem; min-width: 50px; }
  .mobile-action-btn i { font-size: 1.2rem; }
}

/* ===== MOBILE-ONLY OVERRIDES ===== */

/* ===== MOBILE HEADER - Clean Rebuild ===== */
@media (max-width: 768px) {
  /* Remove any sticky positioning issues */
  .site-header { position: relative !important; }
  .top-bar { display: none !important; }

  .main-nav {
    display: block;
    padding: 0;
    width: 100%;
  }

  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    padding: 14px 20px;
    min-height: 60px;
  }

  .mobile-menu-toggle {
    justify-self: start;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo {
    justify-self: center;
    text-align: center;
    display: block;
    position: static !important;
    transform: none !important;
    margin: 0;
    padding: 0;
    /* Remove ALL possible underlines */
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  /* Remove any pseudo-element underlines */
  .logo::before,
  .logo::after {
    display: none !important;
    content: none !important;
    border: none !important;
    background: none !important;
  }

  .logo-green {
    font-size: 1.5rem;
    text-decoration: none !important;
    border: none !important;
    display: block;
    line-height: 1.1;
  }

  .logo-gold {
    font-size: 1.1rem;
    text-decoration: none !important;
    border: none !important;
    display: block;
    line-height: 1.1;
  }

  .heritage-badge { display: none !important; }
  .nav-links { display: none !important; }
  .nav-actions { display: none !important; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 12px 16px; min-height: 54px; }
  .logo-green { font-size: 1.4rem; }
  .logo-gold { font-size: 1rem; }
  .mobile-menu-toggle { padding: 6px 8px; font-size: 1.2rem; }
}

/* 2. FEATURE MARQUEE STRIP */
.feature-marquee {
  background: var(--green-primary);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 3. PRODUCT TAG BADGES - Premium ecommerce style */
.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  z-index: 11;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.product-tag.tag-fire {
  background: linear-gradient(135deg, #ff6b35, #ff4500);
  font-size: 0.85rem;
  padding: 5px 10px;
}

.product-tag.tag-lightning {
  background: linear-gradient(135deg, #f7b733, #fc4a1a);
  color: #fff;
  font-weight: 700;
}

.product-tag.tag-hot {
  background: linear-gradient(135deg, #e53935, #d81b60);
  font-weight: 900;
  letter-spacing: 1px;
}

.product-tag.tag-trending {
  background: linear-gradient(135deg, #0D5E38, #00bfa5);
  font-weight: 700;
}

/* 4. GOOGLE REVIEW - Perfect center */
.google-review-section {
  text-align: center;
}

.google-review-badge {
  display: inline-flex;
  margin: 0 auto;
}

/* Mobile overrides for all */
@media (max-width: 768px) {
  /* Hero: 4:5 portrait, no arrows */
  .banner-carousel { height: 80vh; min-height: 500px; }
  .banner-image { object-fit: cover; object-position: center top; }
  .carousel-nav { display: none !important; }
  .carousel-dots { bottom: 15px; }
  .carousel-dot { width: 10px; height: 10px; }

  /* Category: 75% carousel */
  .category-grid { gap: 12px; padding: 0 15px 20px; }
  .category-grid .product-card {
    flex: 0 0 75%;
    min-width: 0;
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
  }
  .category-grid .product-image { aspect-ratio: 3 / 4; width: 100%; }
  .category-grid .product-image img { width: 100%; height: 100%; object-fit: cover; }
  .category-grid .product-details { padding: 10px 12px; background: #fff; }
  .category-grid .product-title { font-size: 14px; font-weight: 600; }
  .category-cta-link { font-size: 0.9rem; }

  /* Google review: compact center */
  .google-review-section { padding: 20px 0; }
  .google-review-badge {
    padding: 10px 18px;
    border-radius: 40px;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .google-review-badge .fab.fa-google { font-size: 1.5rem !important; }
  .google-review-badge .stars { font-size: 0.9rem !important; }
  .google-review-badge .rating-text { font-size: 0.85rem !important; }
  .google-review-link { font-size: 0.8rem !important; }

  /* Best sellers: 75% carousel + tags */
  .best-sellers-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 15px 20px;
  }
  .best-sellers-grid::-webkit-scrollbar { display: none; }
  .best-sellers-grid .product-card {
    flex: 0 0 75%;
    min-width: 0;
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
  }
  .best-sellers-grid .product-image { aspect-ratio: 3 / 4; width: 100%; }
  .best-sellers-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .best-sellers-grid .product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .best-sellers-grid .product-details { padding: 10px 12px; background: #fff; }
  .best-sellers-grid .product-title { font-size: 14px; -webkit-line-clamp: 2; line-clamp: 2; line-height: 1.35; max-height: 2.7em; font-weight: 600; }
  .product-tag { font-size: 0.7rem; padding: 3px 10px; }
  .discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    padding: 4px 8px;
    font-size: 0.7rem;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .banner-carousel { height: 75vh; min-height: 400px; }
  .nav-inner { padding: 8px 16px; }
  .logo-green { font-size: 1.4rem; }
  .logo-gold { font-size: 1rem; }
  .mobile-menu-toggle { font-size: 1.2rem; padding: 5px; }
  .category-grid { gap: 10px; padding: 0 12px 16px; }
  .category-grid .product-card { flex: 0 0 75%; }
  .category-grid .product-details { padding: 8px 10px; }
  .category-grid .product-title { font-size: 13px; }
  .best-sellers-grid { gap: 10px; padding: 0 12px 16px; }
  .best-sellers-grid .product-card { flex: 0 0 75%; }
  .best-sellers-grid .product-details { padding: 8px 10px; }
  .best-sellers-grid .product-title { font-size: 13px; -webkit-line-clamp: 2; line-clamp: 2; line-height: 1.35; }
  .price-current { font-size: 15px; font-weight: 700; }
  .product-mrp { font-size: 12px; }
  .google-review-badge { padding: 8px 14px; gap: 8px; }
}

/* ===== DEFINITIVE MOBILE HEADER FIX - Overrides ALL previous rules ===== */
@media (max-width: 768px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    overflow: visible !important;
    background: #fff !important;
  }
  .main-nav {
    display: block !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .nav-inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    width: 100% !important;
    padding: 14px 16px !important;
    min-height: 68px !important;
  }
  /* Hamburger: 3rd grid cell, moved inward with padding */
  .mobile-menu-toggle {
    grid-column: 3 !important;
    justify-self: end !important;
    padding: 8px 12px !important;
    display: flex !important;
    order: 0 !important;
    margin: 0 !important;
  }
  /* Logo: center grid cell, perfectly centered */
  .logo {
    grid-column: 2 !important;
    justify-self: center !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
  a.logo, a.logo:hover, a.logo:focus, a.logo:active {
    text-decoration: none !important;
    border-bottom: none !important;
  }
  .logo::before, .logo::after, a.logo::before, a.logo::after {
    display: none !important;
    content: none !important;
  }
  .logo-green {
    font-size: 1.65rem !important;
    display: block !important;
    line-height: 1.1 !important;
    text-decoration: none !important;
    border: none !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-align: center !important;
  }
  .logo-gold {
    font-size: 1.15rem !important;
    display: block !important;
    line-height: 1.1 !important;
    text-decoration: none !important;
    border: none !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
    margin-top: 1px !important;
  }
  .heritage-badge, .nav-links, .nav-actions { display: none !important; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 12px 14px !important; min-height: 60px !important; }
  .mobile-menu-toggle { padding: 8px 10px !important; }
  .logo-green { font-size: 1.5rem !important; }
  .logo-gold { font-size: 1.05rem !important; margin-top: 0 !important; }
}

/* ===== LOGO SIZE & POSITIONING UPDATE ===== */

/* 1. Header Container - Keep Compact */
.main-nav .nav-inner {
    position: relative !important; /* Essential for absolute logo positioning */
    min-height: 60px !important;   /* Locks the header bar height */
    padding: 10px 20px !important;
    z-index: 999 !important;
}

/* 2. Logo Absolute Positioning */
.main-nav .logo {
    position: absolute !important;
    z-index: 50 !important;
    margin: 0 !important;
    line-height: 0 !important;
}

/* 3. DESKTOP: Left Aligned, 180px */
@media (min-width: 769px) {
    .main-nav .logo {
        left: 10px !important;
        top: 70% !important;
        transform: translateY(-50%) !important;
    }

    .main-nav .site-logo-img {
        max-height: 165px !important; /* DESKTOP SIZE */
        width: auto !important;
    }

    /* Shift Nav Links to the Right so they don't overlap the logo */
    .main-nav .nav-links {
        margin-left: 250px !important; /* Space for the logo */
        width: calc(100% - 250px) !important;
        justify-content: flex-end !important;
    }
}

/* 4. MOBILE: Center Aligned, 120px */
@media (max-width: 768px) {
    .main-nav .nav-inner {
        padding: 8px 16px !important; /* Compact mobile header */
    }

    .main-nav .logo {
        left: 40% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .main-nav .site-logo-img {
        max-height: 120px !important; /* MOBILE SIZE */
        width: auto !important;
    }
    
    /* Ensure Hamburger stays clickable above the logo */
    .main-nav .mobile-menu-toggle {
        position: relative !important;
        z-index: 100 !important;
    }
}


