/* =============================================================
   AVYUKTA MOBILE — Complete Theme CSS
   Version 2.0 | Redesigned for conversion & trust
   ============================================================= */

/* 1. CSS VARIABLES */
:root {
  /* Brand Colors */
  --c-brand:           #2D7A5F;   /* Primary green — deep and reliable */
  --c-brand-hover:     #246650;   
  --c-brand-light:     #48A880;   
  --c-brand-deep:      #1B4D3E;   /* Footer and header background */
  --c-brand-tint:      #E8F7F1;   
  --c-brand-tint-2:    #D0EFE3;   

  /* Offer / Urgency Colors */
  --c-offer:           #E8521C;   /* Discount badges */
  --c-offer-bg:        #FEF0EB;   
  --c-flash:           #F5A623;   /* Best seller and low stock */
  --c-flash-bg:        #FEF6E7;   

  /* Text Colors */
  --c-text:            #0F1923;   
  --c-text-body:       #2D3748;   
  --c-text-muted:      #718096;   
  --c-text-hint:       #A0AEC0;   
  --c-text-white:      #FFFFFF;

  /* Background Colors */
  --c-bg:              #F7F8FA;   
  --c-bg-section:      #F0F4F2;   
  --c-card:            #FFFFFF;   /* Clean white for product listings */
  --c-card-hover:      #FAFBFD;

  /* Border Colors */
  --c-border:          #E2E8F0;
  --c-border-light:    #EDF2F7;
  --c-border-brand:    #B2D9CA;

  /* Typography */
  --font-display:      'Sora', sans-serif;
  --font-body:         'DM Sans', sans-serif;

  /* Spacing & Radius */
  --space-md:          16px;
  --space-lg:          24px;
  --r-md:              8px;
  --r-lg:              12px;
  --r-full:            9999px;

  /* Shadows */
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:         0 4px 16px rgba(0,0,0,0.10);
  --shadow-brand:      0 4px 16px rgba(45,122,95,0.25);

  /* Transitions */
  --t-fast:            0.15s ease;
  --t-normal:          0.25s ease;
}

/* 2. GLOBAL RESETS */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  color: var(--c-text-body);
  background-color: var(--c-bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* 3. ANNOUNCEMENT BAR */
.sh-announcement-bar {
  background-color: var(--c-brand-deep);
  color: var(--c-text-white);
  text-align: center;
  padding: 8px var(--space-md);
  font-size: 13px;
  font-weight: 500;
}

/* 4. HEADER & NAVIGATION */
.sh-header-main {
  background-color: var(--c-card);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--c-border);
}
.sh-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
  gap: var(--space-md);
}
.sh-header-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-brand-deep);
}
.sh-header-logo span { color: var(--c-brand); }

/* 5. SEARCH BAR */
.sh-header-search-wrap { flex: 1; position: relative; max-width: 500px; }
.sh-header-search-input {
  width: 100%;
  height: 40px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 0 20px;
  outline: none;
}
.sh-header-search-input:focus { border-color: var(--c-brand); }

/* 6. TRUST STRIP */
.sh-trust-strip {
  background: var(--c-card);
  border-bottom: 1px solid var(--c-border-light);
  padding: 10px 0;
}
.sh-trust-strip-inner {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.sh-trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}

/* 7. HERO SECTION */
.sh-hero {
  background: linear-gradient(135deg, var(--c-brand-deep) 0%, var(--c-brand) 100%);
  color: white;
  padding: 60px var(--space-md);
  text-align: center;
}
.sh-hero-title {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 16px;
}
.sh-hero-cta-primary {
  background: white;
  color: var(--c-brand-deep);
  padding: 12px 32px;
  border-radius: var(--r-full);
  font-weight: 700;
  display: inline-block;
}

/* 8. PRODUCT CARDS */
.sh-product-card {
  background: var(--c-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-light);
  overflow: hidden;
  transition: transform var(--t-normal), box-shadow var(--t-normal);
  position: relative;
}
.sh-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.sh-product-card-image-wrap { aspect-ratio: 1; background: var(--c-bg); }
.sh-product-card-body { padding: 12px; }
.sh-product-card-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sh-product-card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-brand);
}
.sh-product-card-discount-tag {
  position: absolute;
  top: 0; left: 0;
  background: var(--c-offer);
  color: white;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 0 0 var(--r-md) 0;
}

/* 9. MOBILE STICKY CTA */
.sh-mobile-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  padding: 10px;
  display: none;
  gap: 10px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}
@media (max-width: 768px) { .sh-mobile-sticky-cta { display: flex; } }

/* 10. WHATSAPP BUTTON */
.sh-whatsapp-float {
  position: fixed;
  bottom: 80px; right: 20px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 99;
}

/* 11. FOOTER */
.sh-footer-main {
  background: var(--c-brand-deep);
  color: rgba(255,255,255,0.7);
  padding: 40px var(--space-md);
  font-size: 13px;
}
.sh-footer-logo { color: white; font-weight: 700; font-size: 20px; margin-bottom: 12px; }

/* 12. CATEGORY GRID */
.sh-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  padding: 20px var(--space-md);
}
.sh-category-card {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
.sh-category-card-icon {
  width: 60px; height: 60px;
  background: white;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}