/* ========================================
   FRIEND BACK HOME — v2
   Modern community platform
   ======================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary — warm saffron / turmeric */
  --primary: #D97706;
  --primary-light: #F59E0B;
  --primary-soft: #FFFBEB;
  --primary-glow: rgba(217, 119, 6, 0.10);
  --primary-deep: #92400E;

  /* Accent — terracotta / festive red */
  --accent: #DC2626;
  --accent-light: #F87171;
  --accent-soft: #FEF2F2;

  /* Teal for sellers — earthy green */
  --teal: #047857;
  --teal-light: #34D399;
  --teal-soft: #ECFDF5;

  /* Warm highlight */
  --warm: #EA580C;
  --warm-soft: #FFF7ED;

  /* Neutrals — warmer tones */
  --white: #FFFFFF;
  --bg: #FEFDF8;
  --bg-alt: #FDF8F0;
  --border: #E7DDD0;
  --border-light: #F5EFE6;
  --text-primary: #1C1917;
  --text-secondary: #57534E;
  --text-muted: #A8A29E;

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

  /* Shadows — warm tinted */
  --shadow-xs: 0 1px 2px rgba(28,25,23,0.04);
  --shadow-sm: 0 1px 4px rgba(28,25,23,0.06);
  --shadow-md: 0 4px 12px rgba(217,119,6,0.08);
  --shadow-lg: 0 8px 28px rgba(217,119,6,0.10);
  --shadow-xl: 0 16px 40px rgba(217,119,6,0.12);
  --shadow-glow: 0 0 30px rgba(217,119,6,0.15);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--primary-deep);
  color: rgba(255,255,255,0.95);
  text-align: center;
  padding: 10px 0;
  font-size: 0.92rem;
  font-weight: 600;
  overflow: hidden;
  height: 40px;
  letter-spacing: 0.3px;
}

.announcement-content {
  display: flex;
  gap: 50px;
  animation: tickerScroll 18s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.announcement-content .announce-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.announcement-content .announce-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SOCIAL PROOF TOAST ── */
.proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 14px 18px;
  max-width: 340px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}

.proof-toast-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.proof-toast-flag {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.proof-toast-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-toast-text {
  font-size: 0.82rem;
  color: #1F2937;
  line-height: 1.4;
  margin: 0;
}

.proof-toast-text strong {
  color: #111827;
}

.proof-toast-time {
  font-size: 0.72rem;
  color: #9CA3AF;
}

@media (max-width: 480px) {
  .proof-toast {
    left: 12px;
    right: 12px;
    bottom: 16px;
    max-width: none;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: var(--r-md);
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-white {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 1.5rem; }
.logo-icon-img { width: 36px; height: 30px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-btn {
  position: relative;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.cart-btn:hover { border-color: var(--primary); }

.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  background: #ffffff;
}
.mobile-menu a {
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 80px;
  background: linear-gradient(160deg, #FFFBEB 0%, #FEFDF8 30%, #FFF7ED 60%, #FEF2F2 100%);
  position: relative;
  overflow: hidden;
}

/* Rangoli-inspired decorative circles */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(217,119,6,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  bottom: -200px; left: -100px;
  background: radial-gradient(circle, rgba(234,88,12,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating diyas */
.hero-diya {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.3;
  animation: floatDiya 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero-diya-left { top: 30%; left: 5%; animation-delay: 0s; }
.hero-diya-right { top: 25%; right: 5%; animation-delay: 2s; }

@keyframes floatDiya {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title em {
  color: var(--primary);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero testimonials */
.hero-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.hero-testimonial {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-testimonial:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hero-testimonial span {
  font-size: 1.2rem;
}
.hero-testimonial p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.55;
  margin: 6px 0 8px;
}
.hero-testimonial strong {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-alt { background: var(--white); }

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

.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-tag.indigo { color: var(--primary); }
.section-tag.teal { color: var(--teal); }
.section-tag.coral { color: var(--accent); }
.section-tag.warm { color: var(--warm); }

.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--warm));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.step-card:hover::after { transform: scaleX(1); }
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.3rem;
  color: var(--text-muted);
  align-self: center;
  margin-top: 30px;
}

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 7px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Teal variant for sellers section */
.filter-bar.teal .filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
}
.filter-bar.teal .filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ── FRIENDS GRID (warehouse partners) ── */
.friends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.friend-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.friend-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.friend-avatar {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.friend-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--primary);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
}

.friend-info { padding: 18px 20px 22px; }

.friend-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.friend-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.friend-services {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.service-tag {
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.friend-stats {
  display: flex;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.friend-stat {
  display: flex;
  flex-direction: column;
}
.friend-stat-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.friend-stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── SELLERS GRID (business women) ── */
.sellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.seller-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.seller-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.seller-avatar {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.seller-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--teal);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.seller-info { padding: 18px 20px 22px; }

.seller-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.seller-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.seller-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.seller-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.specialty-tag {
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
  display: inline-block;
  line-height: 1.4;
}
.specialty-tag--link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.specialty-tag--link:hover {
  background: var(--teal);
  color: #fff;
}
.specialty-tag--coming-soon {
  background: #FEF9C3;
  color: #92400E;
}
.specialty-tag--durable {
  background: #ECFDF5;
  color: #065F46;
}


.seller-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.seller-products-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.seller-products-count strong {
  color: var(--text-primary);
}

.view-products-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  transition: color 0.2s;
}
.view-products-link:hover {
  color: var(--primary);
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  position: relative;
}

.product-homemade {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--teal);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.product-stock {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.product-stock.in-stock {
  background: #ECFDF5;
  color: #059669;
}
.product-stock.low-stock {
  background: #FEF3C7;
  color: #D97706;
}

.product-info { padding: 16px 20px 20px; }

.product-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.product-by {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
}
.product-price small {
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.add-to-cart-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--r-sm);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.add-to-cart-btn:hover {
  background: var(--primary-light);
  transform: scale(1.04);
}

/* ── STORIES ── */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.story-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.story-quote {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--primary-light);
}

.story-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-author strong {
  display: block;
  font-size: 0.88rem;
}
.story-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── CTA SECTION ── */
.section-cta {
  background: linear-gradient(135deg, #92400E 0%, #78350F 50%, #451A03 100%);
  text-align: center;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.section-cta h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.section-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  margin-bottom: 28px;
}

/* ── FOOTER ── */
/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white, #fff);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text, #1e293b);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}
.faq-q:hover { background: var(--primary-soft, #FFFBEB); }
.faq-arrow {
  font-size: 0.65rem;
  color: var(--primary, #D97706);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-arrow { transform: rotate(90deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-light, #475569);
  line-height: 1.65;
}
.faq-a a { color: var(--primary, #D97706); }
.faq-item.open .faq-a { display: block; }

/* ── SEO static store index (visually hidden from users but readable by crawlers) ── */
.seo-store-index {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer {
  background: #111827;
  padding: 56px 0 0;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 600;
}
.footer-links a, .footer-links p {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── PRODUCT SEARCH ── */
.product-search-wrap {
  margin-bottom: 24px;
}

.product-search-input {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.product-search-input:focus {
  border-color: var(--primary, #D97706);
  box-shadow: 0 0 0 3px var(--primary-glow, rgba(217, 119, 6, 0.10));
}

.search-match-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.search-match-tag {
  font-size: 0.72rem;
  background: var(--primary-soft, #FFFBEB);
  color: var(--primary-deep, #92400E);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 500;
}

.search-no-results {
  text-align: center;
  padding: 48px 16px;
  grid-column: 1 / -1;
}

.search-no-results p {
  font-size: 1.1rem;
  color: #374151;
}

.search-no-results .search-no-results-sub {
  font-size: 0.9rem;
  color: #6B7280;
  margin-top: 8px;
}

.search-no-results a {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}

/* ── STORES ── */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.store-card {
  background: var(--white, #fff);
  border-radius: var(--r-lg, 20px);
  overflow: hidden;
  border: 1px solid var(--border, #e2e8f0);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  animation: fadeInUp 0.5s ease both;
  display: flex;
  flex-direction: column;
  position: relative;
}
.store-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.12));
}
.store-card-cta {
  border: 2px dashed #25D366;
  background: #F0FFF4;
}
.store-card-cta:hover {
  border-color: #128C7E;
}

.store-avatar {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.store-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--teal, #047857);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full, 100px);
}

.store-info { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }

.store-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.store-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
}
.store-shipping-ribbon {
  position: absolute;
  top: 14px;
  right: 0;
  background: #B91C1C;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  z-index: 2;
  line-height: 1;
  display: flex;
  align-items: center;
}
.store-shipping-ribbon::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 12px solid #B91C1C;
  border-bottom: 12px solid #B91C1C;
  border-left: 10px solid transparent;
}
.store-shipping-ribbon::after {\n  display: none;\n}

.store-location {
  font-size: 0.82rem;
  color: var(--text-muted, #94a3b8);
  margin-bottom: 8px;
}

.store-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 2px;
}

.store-bio-mr {
  font-size: 0.8rem;
  color: var(--text-light, #64748b);
  margin: 0 0 12px;
}

.store-cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
  flex: 1;
  align-content: flex-start;
}

.store-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-light, #f1f5f9);
}

.store-products-count {
  font-size: 0.82rem;
  color: var(--text-muted, #94a3b8);
}
.store-products-count strong {
  color: var(--text-primary);
}

/* Store modal specifics */
.store-modal-tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light, #f1f5f9);
  line-height: 1.6;
}

.store-tagline-mr {
  font-size: 0.85rem;
  color: var(--text-light, #64748b);
}

.store-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.store-cat-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-deep, #92400E);
  margin: 0 0 10px;
}

.store-cat-mr {
  font-weight: 400;
  color: var(--text-light, #64748b);
  font-size: 0.82rem;
}

/* Store product rows with qty controls */
.store-products-list {
  display: flex;
  flex-direction: column;
}

.store-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid #f1f5f9;
  border-radius: 8px;
  transition: background 0.2s;
  gap: 12px;
}
.store-product-row:last-child { border-bottom: none; }
.store-product-row.in-cart {
  background: #ecfdf5;
}

.product-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.product-name-col {
  flex: 1;
  min-width: 0;
}
.product-name-col .prod-en {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
}
.product-name-col .prod-mr {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light, #64748b);
}
.product-name-col .prod-price {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-deep, #92400E);
  margin-top: 2px;
}

.product-name-col .prod-vendor {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: #888;
  margin-top: 1px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: #e2e8f0; }
.qty-plus:hover { background: var(--teal, #047857); color: white; }
.qty-minus:hover { background: #fee2e2; color: #dc2626; }

.qty-value {
  width: 28px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Add to Basket bar — pinned at bottom of modal */
.store-view-basket {
  flex-shrink: 0;
  background: #fff;
  border-top: 2px solid var(--primary, #D97706);
  padding: 16px 20px;
}

.cart-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.cart-clear-btn {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
}
.cart-clear-btn:hover { background: #fee2e2; }

.cart-summary-items {
  margin-bottom: 12px;
  max-height: 120px;
  overflow-y: auto;
}

.cart-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.cart-item-qty {
  font-weight: 700;
  color: var(--primary-deep, #92400E);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .stores-grid { grid-template-columns: 1fr; }
  .store-avatar { height: 150px; font-size: 2.8rem; }
  .store-name { font-size: 1rem; }
  .store-product-row { padding: 8px 8px; }
  .store-cart-summary { margin: 24px -16px -16px; padding: 14px 16px; }
}

/* Old store-products (no longer used in modal but kept for safety) */
.store-products {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}

.store-products li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid #f8fafc;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.prod-en {
  color: var(--text-primary);
  font-weight: 500;
}

.prod-mr {
  color: var(--text-light, #64748b);
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .stores-grid { grid-template-columns: 1fr; }
  .store-avatar { height: 150px; font-size: 2.8rem; }
  .store-products { grid-template-columns: 1fr; }
  .store-name { font-size: 1rem; }
}

/* ── SHIPPING CALCULATOR ── */
.calc-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.calc-form-group {
  margin-bottom: 1.25rem;
}

.calc-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-light, #64748b);
}

.calc-card select,
.calc-card input[type="number"] {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  background: #f8fafc;
  color: var(--text, #1e293b);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  min-height: 48px;
  font-family: inherit;
}

.calc-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.calc-card select:focus,
.calc-card input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.calc-btn {
  width: 100%;
  margin-top: 0.5rem;
}

.calc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Volumetric weight */
.calc-vol-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  user-select: none;
}

.calc-vol-toggle .arrow {
  transition: transform 0.2s;
  font-size: 0.7rem;
}

.calc-vol-toggle.open .arrow {
  transform: rotate(90deg);
}

.calc-vol-section {
  display: none;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--primary-soft, #FFFBEB);
  border-radius: 8px;
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.calc-vol-section.open {
  display: block;
}

.calc-vol-hint {
  font-size: 0.78rem;
  color: var(--text-light, #64748b);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.calc-dim-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.calc-dim-row label {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  display: block;
  font-weight: 600;
  color: var(--text-light, #64748b);
}

.calc-vol-result {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  background: white;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  display: none;
}

.calc-vol-result.show {
  display: block;
}

.calc-vol-result .vol-val {
  font-weight: 700;
  color: var(--primary);
}

.calc-vol-result .vol-higher {
  color: #ef4444;
  font-weight: 600;
}

/* Error */
.calc-error {
  display: none;
  padding: 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.calc-error.show {
  display: block;
}

/* Result */
.calc-result {
  display: none;
  animation: fadeIn 0.3s ease;
}

.calc-result.show {
  display: block;
}

.calc-result-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.calc-result-flag {
  font-size: 2rem;
}

.calc-result-country {
  font-size: 1.1rem;
  font-weight: 700;
}

.calc-result-service {
  font-size: 0.85rem;
  color: var(--text-light, #64748b);
}

.calc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.calc-badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.calc-badge-delivery {
  background: #dbeafe;
  color: #1e40af;
}

.calc-badge-tax {
  background: #fef3c7;
  color: #92400e;
}

.calc-price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.95rem;
}

.calc-price-row + .calc-price-row {
  border-top: 1px dashed #e2e8f0;
}

.calc-price-row .label {
  color: var(--text-light, #64748b);
}

.calc-price-row .value {
  font-weight: 600;
}

.calc-total-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 0;
  margin-top: 0.5rem;
  border-top: 2px solid var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.calc-weight-used-row {
  background: var(--primary-soft, #FFFBEB);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  margin-bottom: 0.25rem;
}

.calc-notes-list {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: #fffbeb;
  border-radius: 8px;
  border-left: 3px solid #f59e0b;
}

.calc-notes-list p {
  font-size: 0.82rem;
  color: #92400e;
  margin-bottom: 0.3rem;
}

.calc-notes-list p:last-child {
  margin-bottom: 0;
}

/* Terms */
.calc-terms {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.25rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.calc-terms h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-light, #64748b);
}

.calc-terms ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.calc-terms li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.25rem;
  font-size: 0.82rem;
  color: var(--text-light, #64748b);
  line-height: 1.5;
}

.calc-terms li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0.4rem;
  font-size: 0.85rem;
  color: var(--primary, #D97706);
  font-weight: 700;
}

@media (max-width: 600px) {
  .calc-dim-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .calc-card {
    padding: 1.15rem;
    border-radius: 12px;
  }

  .calc-total-row {
    font-size: 1.1rem;
  }

  .calc-price-row {
    font-size: 0.9rem;
  }
}

/* ── FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  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.25);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: var(--shadow-xl);
}
.cart-sidebar.open { right: 0; }

/* Sidebar store groups */
.sidebar-store-group {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light, #f1f5f9);
}
.sidebar-store-group:last-child { border-bottom: none; }

.sidebar-store-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-deep, #92400E);
  margin-bottom: 8px;
}

.sidebar-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  gap: 8px;
  border-bottom: 1px solid var(--border, #f1f5f9);
}

.cart-remove-btn {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.15s;
}
.cart-remove-btn:hover {
  background: #fef2f2;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.cart-qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 6px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.cart-qty-btn:hover {
  background: #f0fdf4;
  border-color: #25D366;
}
.cart-qty-value {
  min-width: 20px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.sidebar-ecom-section {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border, #e2e8f0);
}
.sidebar-ecom-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted, #64748b);
  margin-bottom: 8px;
}
.sidebar-ecom-item .ecom-link-url {
  font-size: 0.8rem;
  color: #2563eb;
  text-decoration: none;
  word-break: break-all;
}
.sidebar-ecom-item .ecom-link-url:hover {
  text-decoration: underline;
}

.sidebar-item-name {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-primary);
}
.sidebar-item-name .prod-mr {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light, #64748b);
}

.sidebar-item-qty {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-deep, #92400E);
  white-space: nowrap;
  margin-left: 12px;
}

.cart-sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border, #e2e8f0);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-country-select {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.cart-country-select label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text, #1e293b);
}
.country-dropdown-wrapper {
  position: relative;
}
.country-dropdown-wrapper input {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.9rem;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}
.country-dropdown-wrapper input:focus {
  border-color: #25D366;
}
.country-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 180px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  margin: 4px 0 0 0;
  padding: 4px 0;
  list-style: none;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 100;
}
.country-dropdown-list.open {
  display: block;
}
.country-dropdown-list li {
  padding: 8px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s;
}
.country-dropdown-list li:hover,
.country-dropdown-list li.active {
  background: #f0fdf4;
}
.cart-footer-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cart-clear-link {
  background: none;
  border: none;
  color: var(--text-muted, #94a3b8);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 0;
  text-align: center;
  width: 100%;
}
.cart-clear-link:hover {
  color: #dc2626;
}

/* ── E-commerce Links Section ── */
.ecom-links-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ecom-links-list {
  margin-bottom: 12px;
}
.ecom-link-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f8fafc;
  margin-bottom: 8px;
  gap: 10px;
}
.ecom-link-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted, #94a3b8);
  flex-shrink: 0;
}
.ecom-link-url {
  font-size: 0.85rem;
  color: #2563eb;
  text-decoration: none;
  word-break: break-all;
  flex: 1;
}
.ecom-link-url:hover {
  text-decoration: underline;
}
.ecom-link-remove {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.15s;
}
.ecom-link-remove:hover {
  background: #fef2f2;
}
.ecom-link-input-row {
  display: flex;
  gap: 10px;
}
.ecom-link-input-row input {
  flex: 1;
  padding: 12px 14px;
  font-size: 0.9rem;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}
.ecom-link-input-row input:focus {
  border-color: #25D366;
}
.ecom-link-input-row input.input-error {
  border-color: #ef4444;
}
.ecom-link-add-btn {
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--primary, #f59e0b);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.ecom-link-add-btn:hover {
  background: var(--primary-deep, #d97706);
}
.ecom-link-actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.section-tag.purple {
  background: #f3e8ff;
  color: #7c3aed;
}

.cart-price-note {
  font-size: 0.75rem;
  color: var(--text-muted, #94a3b8);
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 8px 12px;
  margin: 0 16px 12px;
  line-height: 1.4;
}
.cart-cost-summary {
  margin: 12px 0 0;
  border-top: 1px solid var(--border, #e2e8f0);
  padding: 12px 16px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-cost-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text, #1e293b);
}
.cart-cost-row em {
  font-style: normal;
  color: var(--text-muted, #94a3b8);
  font-size: 0.78rem;
}
.cart-cost-row span:last-child {
  font-weight: 600;
  text-align: right;
}
.cart-cost-row--muted {
  color: var(--text-muted, #94a3b8);
  font-size: 0.78rem;
}
.cart-cost-row--muted span:last-child {
  font-weight: 400;
  font-style: italic;
}
.sidebar-item-price {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--primary-deep, #92400E);
  white-space: nowrap;
}
.sidebar-item-unit {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted, #94a3b8);
  margin-top: 1px;
}
.charge-info-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted, #94a3b8);
  font-size: 0.78rem;
  padding: 0 2px;
  vertical-align: middle;
  line-height: 1;
}
.charge-info-btn:hover { color: var(--primary, #D97706); }
.charge-info-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.charge-info-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  max-width: 320px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.charge-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.charge-info-header strong { font-size: 0.95rem; color: var(--primary-deep, #92400E); }
.charge-info-header button {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-muted, #94a3b8);
  line-height: 1;
}
.charge-info-box p {
  font-size: 0.85rem;
  color: var(--text, #1e293b);
  line-height: 1.55;
  margin: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

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

.cart-empty {
  text-align: center;
  padding: 56px 20px;
  color: var(--text-muted);
}
.cart-empty p:first-child {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.cart-empty-sub {
  font-size: 0.82rem;
  margin-top: 6px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-emoji {
  font-size: 1.8rem;
  width: 50px; height: 50px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-details { flex: 1; }
.cart-item-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.cart-item-price {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cart-item-qty span {
  font-weight: 600;
  min-width: 18px;
  text-align: center;
  font-size: 0.88rem;
}

.cart-footer {
  padding: 18px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 700;
}

.cart-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ── PROFILE / SELLER MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 24px;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--white);
  border-radius: var(--r-xl);
  max-width: 580px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.modal-body-scroll {
  overflow-y: auto;
  flex: 1;
  padding: 36px;
}

.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--text-primary); }

.profile-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.profile-avatar-lg {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  flex-shrink: 0;
}

.profile-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
}

.profile-location {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.profile-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.profile-verified.indigo {
  background: var(--primary-soft);
  color: var(--primary);
}
.profile-verified.teal {
  background: var(--teal-soft);
  color: var(--teal);
}

.profile-section {
  margin-bottom: 20px;
}
.profile-section h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.profile-section p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.profile-stat-card {
  text-align: center;
  background: var(--bg);
  padding: 14px;
  border-radius: var(--r-md);
}
.profile-stat-card .val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}
.profile-stat-card .val.teal { color: var(--teal); }
.profile-stat-card .lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-products {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.profile-product-tag {
  background: var(--bg);
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 500;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.friend-card, .seller-card, .product-card, .step-card, .story-card {
  animation: fadeInUp 0.4s ease forwards;
}

/* ── LIVE COMMUNITY TICKER ── */
.community-ticker {
  background: var(--primary-deep);
  color: rgba(255,255,255,0.9);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  font-size: 0.82rem;
}

.ticker-label {
  flex-shrink: 0;
  padding-left: 24px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ticker-content {
  display: flex;
  gap: 40px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.ticker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── COMMUNITY SECTION ── */
.community-section {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--warm-soft) 100%);
  position: relative;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.community-stat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.community-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--warm));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.community-stat-card:hover::after { transform: scaleX(1); }
.community-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.community-stat-emoji {
  font-size: 2rem;
  margin-bottom: 10px;
}

.community-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 4px;
}

.community-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.community-voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.voice-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.voice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.voice-card .voice-emoji {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.voice-card p {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px;
}
.voice-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── TESTIMONIAL STRIP ── */
.testimonial-strip {
  background: var(--warm-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial-featured {
  border-color: var(--primary);
  border-width: 2px;
  position: relative;
}
.testimonial-featured::before {
  content: '⭐ First testimonial';
  position: absolute;
  top: -12px; left: 20px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--r-full);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trust-new-badge {
  font-size: 1.2rem !important;
  background: var(--primary);
  color: white !important;
  padding: 2px 14px;
  border-radius: var(--r-full);
}

/* ── CTA WARM UPGRADES ── */
.cta-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cta-community-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cta-community-note span {
  animation: pulse 2s ease-in-out infinite;
}

/* ── WARM CARD HOVER EFFECTS ── */
.friend-card:hover,
.seller-card:hover {
  box-shadow: var(--shadow-glow);
  border-color: rgba(217,119,6,0.2);
}

.friend-badge {
  background: var(--primary) !important;
}

.service-tag {
  background: var(--primary-soft) !important;
  color: var(--primary-deep) !important;
}

/* ── STORY CARD UPGRADES ── */
.story-card {
  position: relative;
  overflow: hidden;
}
.story-card::before {
  content: '\u201C';
  position: absolute;
  top: 10px; left: 16px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--primary-soft);
  line-height: 1;
  pointer-events: none;
}
.story-quote {
  border-left-color: var(--primary) !important;
}
.story-avatar {
  background: var(--primary-soft) !important;
  color: var(--primary-deep) !important;
}

/* ── GANESH UTSAV SECTION ── */
.ganesh-utsav-section {
  background: none;
}

.ganesh-tag {
  background: transparent;
  color: var(--accent);
}

/* ── GANESH UTSAV BANNER ── */
.ganesh-banner {
  padding: 120px 0 0;
  background: var(--bg);
}

.ganesh-banner-link {
  display: block;
  max-width: 1400px;
  margin: 0 auto;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ganesh-banner-link:hover {
  transform: none;
  box-shadow: none;
}

.ganesh-banner-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.ganesh-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ganesh-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 48px 24px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.1) 25%,
    transparent 55%
  );
}

.ganesh-banner-badge {
  display: inline-block;
  width: fit-content;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.ganesh-banner-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

.ganesh-banner-sub {
  font-size: 1rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  max-width: 520px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.ganesh-banner-cta {
  width: fit-content;
  font-size: 0.95rem;
  cursor: pointer;
}

.ganesh-banner-below-cta {
  display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .step-arrow { display: none; }
  .community-stats { grid-template-columns: repeat(2, 1fr); }
  .community-voices { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .ganesh-banner-title { font-size: 1.6rem; }
  .ganesh-banner-overlay { padding: 28px 32px; }
}

@media (max-width: 640px) {
  .navbar { background: #ffffff; backdrop-filter: none; }
  .announcement-content { gap: 40px; font-size: 0.82rem; }
  .nav-links, .nav-actions .btn { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-menu.open { display: flex; }
  .hero-title { font-size: 1.9rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero { min-height: auto; padding: 40px 24px 60px; }
  .hero-diya { display: none; }
  .hero-testimonials { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.6rem; }
  .section-cta h2 { font-size: 1.7rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100vw; right: -100vw; }
  .modal-content { padding: 24px; }
  .profile-header { flex-direction: column; text-align: center; }
  .community-stats { grid-template-columns: 1fr 1fr; }
  .ticker-label { padding-left: 12px; font-size: 0.68rem; }
  .ganesh-banner { padding: 116px 0 0; }
  .ganesh-banner-link { border-radius: 0; }
  .ganesh-banner-img-wrap { aspect-ratio: 2 / 1; }
  .ganesh-banner-overlay { background: none; }
  .ganesh-banner-overlay .ganesh-banner-cta { display: none; }
  .ganesh-banner-below-cta { display: flex; justify-content: center; padding: 14px 16px; background: var(--bg); }
  .ganesh-banner-title { display: none; }
  .ganesh-banner-sub { display: none; }
}
