/* ASA Herbal & Healthcare - Custom Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --gold: #e6b422;
  --radius: 0.5rem;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #f7fdf8;
  color: #1a2e1a;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(20,83,45,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #dcfce7;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo img {
  height: 96px;
  width: 96px;
  object-fit: contain;
  border-radius: 50%;
}

.navbar-logo-text .brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #166534;
  line-height: 1.2;
}

.navbar-logo-text .brand-sub {
  font-size: 0.72rem;
  color: #6b7280;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #15803d;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(37,211,102,0.3);
  transition: all 0.3s ease;
}

.navbar-cta:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: scale(1.04);
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #166534;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px;
  background: #fff;
  border-top: 1px solid #dcfce7;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-link {
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  background: #f0fdf4;
  color: #15803d;
}

.mobile-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 700;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a5c20 0%, #2d8a34 40%, #3da844 70%, #5abf5e 100%);
  color: #fff;
  padding: 64px 16px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
  }
}

.hero-text {
  flex: 1;
  text-align: center;
  animation: slideInLeft 0.6s ease-out;
}

@media (min-width: 768px) {
  .hero-text {
    text-align: left;
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero h1 span {
  color: var(--gold);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.2rem;
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  text-align: left;
  display: inline-flex;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.hero-bullets li::before {
  content: '✅';
  font-size: 0.85rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-btns {
    justify-content: flex-start;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: all 0.3s;
  animation: pulseGreen 2s infinite;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: scale(1.04);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.3);
}

.hero-image-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-image-col {
    width: auto;
  }
}

.hero-img-main {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .hero-img-main {
    width: 380px;
    height: 380px;
  }
}

.hero-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: linear-gradient(135deg, #c9970d, #e6b422, #f5ca3a);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: scrollLeft 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a2e1a;
}

/* ===== SECTIONS ===== */
.section {
  padding: 64px 16px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #166534;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(20,83,45,0.08);
  border: 1px solid #f0fdf4;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(20,83,45,0.15);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .product-img-wrap {
    height: 240px;
  }
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
  position: absolute;
  top: 0; left: 0;
}

.product-img-wrap img.back {
  opacity: 0;
}

.product-img-wrap:hover img.front,
.product-img-wrap.flipped img.front {
  opacity: 0;
}

.product-img-wrap:hover img.back,
.product-img-wrap.flipped img.back {
  opacity: 1;
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}

.product-info {
  padding: 16px;
}

.product-name {
  font-weight: 700;
  color: #1a2e1a;
  font-size: 1rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-weight {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 12px;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.price-current {
  font-size: 1.3rem;
  font-weight: 800;
  color: #15803d;
}

.price-mrp {
  font-size: 0.85rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  width: 100%;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.order-btn:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: scale(1.02);
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f0fdf4;
  color: #15803d;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 8px;
  width: 100%;
  border: 1px solid #dcfce7;
  transition: all 0.2s;
}

.view-btn:hover {
  background: #dcfce7;
}

/* ===== BENEFITS ===== */
.benefits-section {
  background: #f0fdf4;
}

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

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(20,83,45,0.07);
  border: 1px solid #dcfce7;
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(20,83,45,0.12);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.benefit-title {
  font-weight: 700;
  color: #166534;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.benefit-desc {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.4;
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, #1a5c20, #2d8a34);
  color: #fff;
  padding: 56px 16px;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: #86efac;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(20,83,45,0.07);
  border: 1px solid #f0fdf4;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5c20, #3da844);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}

.testimonial-name {
  font-weight: 700;
  color: #1a2e1a;
  font-size: 0.9rem;
}

.testimonial-location {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* ===== ABOUT ===== */
.about-section {
  background: #fff;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-inner {
    flex-direction: row;
    gap: 64px;
  }
}

.about-text {
  flex: 1;
}

.about-title {
  font-size: 2rem;
  font-weight: 800;
  color: #166534;
  margin-bottom: 16px;
}

.about-desc {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 auto;
}

@media (min-width: 640px) {
  .about-cards {
    min-width: 300px;
  }
}

.about-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(20,83,45,0.07);
  border: 1px solid #f0fdf4;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.about-card h4 {
  font-weight: 700;
  color: #166534;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.about-card p {
  color: #6b7280;
  font-size: 0.82rem;
}

/* ===== ORDER CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #166534, #15803d);
  color: #fff;
  text-align: center;
  padding: 72px 16px;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-section p {
  color: #86efac;
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-number {
  color: #86efac;
  margin-top: 14px;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
footer {
  background: #14532d;
  color: #fff;
  padding: 48px 16px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}

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

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-brand-sub {
  font-size: 0.8rem;
  color: #86efac;
}

.footer-desc {
  color: #86efac;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #86efac;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: #86efac;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #86efac;
  margin-bottom: 10px;
}

.footer-contact-item a {
  color: #86efac;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid #166534;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #4ade80;
}

/* ===== PRODUCT PAGE ===== */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  padding: 12px 16px;
}

.breadcrumb-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #9ca3af;
}

.breadcrumb a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #16a34a;
}

.breadcrumb .current {
  color: #166534;
  font-weight: 600;
}

.product-page-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 16px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.product-main-img {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(20,83,45,0.1);
  margin-bottom: 12px;
}

.product-main-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.product-thumbs {
  display: flex;
  gap: 12px;
}

.product-thumb {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  padding: 0;
}

.product-thumb.active {
  border-color: #16a34a;
  box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}

.product-thumb img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  display: block;
}

.product-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.product-detail-title {
  font-size: 1.9rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 6px;
}

.product-detail-meta {
  font-size: 0.88rem;
  color: #9ca3af;
  margin-bottom: 20px;
}

.price-box {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.price-main {
  font-size: 2.2rem;
  font-weight: 900;
  color: #15803d;
}

.price-mrp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.mrp-strike {
  font-size: 0.9rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.off-badge {
  background: #dc2626;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
}

.savings-box {
  margin-left: auto;
  text-align: right;
}

.savings-label {
  font-size: 0.75rem;
  color: #9ca3af;
}

.savings-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: #dc2626;
}

.order-btn-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 24px;
  border-radius: 16px;
  text-decoration: none;
  width: 100%;
  margin-bottom: 16px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
  transition: all 0.3s;
}

.order-btn-large:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: scale(1.02);
}

.delivery-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.delivery-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
}

/* Tabs */
.tabs {
  margin-top: 8px;
}

.tab-buttons {
  display: flex;
  gap: 4px;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 16px;
  overflow-x: auto;
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s;
  white-space: nowrap;
}

.tab-btn.active {
  background: #fff;
  color: #166534;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.ingredients-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ingredients-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
  font-size: 0.9rem;
}

.ingredients-list li::before {
  content: '🌿';
  font-size: 0.85rem;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
  font-size: 0.9rem;
}

.benefits-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-radius: 50%;
  flex-shrink: 0;
}

.howtouse-box {
  background: #f0fdf4;
  border-radius: 14px;
  padding: 20px;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-cta-box {
  background: linear-gradient(135deg, #166534, #15803d);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  color: #fff;
  margin-top: 40px;
}

.product-cta-box h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.product-cta-box p {
  color: #86efac;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.related-products {
  margin-top: 48px;
}

.related-products h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #166534;
  margin-bottom: 20px;
}

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

@media (min-width: 640px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(20,83,45,0.07);
  border: 1px solid #f0fdf4;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(20,83,45,0.12);
}

.related-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.related-card-info {
  padding: 12px;
}

.related-card-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #1a2e1a;
  margin-bottom: 4px;
}

.related-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.related-price-row .current {
  font-weight: 700;
  color: #15803d;
  font-size: 0.9rem;
}

.related-price-row .mrp {
  font-size: 0.75rem;
  color: #9ca3af;
  text-decoration: line-through;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

.animate-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-up.visible,
.animate-left.visible,
.animate-right.visible,
.animate-scale.visible {
  opacity: 1;
  transform: none;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  animation: pulseGreen 2s infinite;
  transition: transform 0.3s;
}

.wa-float:hover {
  transform: scale(1.1);
}

/* ===== SUNNAH & BENEFITS SECTION ===== */
.hadith-box {
  background: linear-gradient(135deg, #fffbea, #fff8e1);
  border-left: 5px solid #c9a227;
  border-radius: 14px;
  padding: 28px 32px;
  margin: 20px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(201,162,39,0.12);
}
.hadith-box-alt {
  background: linear-gradient(135deg, #f0f9f4, #e8f5ee);
  border-left-color: #1a7a4a;
  box-shadow: 0 4px 20px rgba(26,122,74,0.1);
}
.hadith-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.hadith-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #2d2d2d;
  line-height: 1.7;
  margin: 0 0 10px 0;
  font-weight: 500;
}
.hadith-source {
  font-size: 0.82rem;
  color: #7a6a2a;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
}
.hadith-box-alt .hadith-source {
  color: #1a7a4a;
}

.sunnah-intro {
  background: #f8f8f8;
  border-radius: 14px;
  padding: 28px 32px;
  margin: 24px 0 36px 0;
}
.sunnah-intro h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}
.sunnah-intro p {
  color: #444;
  line-height: 1.75;
  margin: 0;
  font-size: 1rem;
}

.sunnah-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.sunnah-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1.5px solid #f0ede8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.sunnah-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}
.sunnah-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.sunnah-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}
.sunnah-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 768px) {
  .sunnah-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hadith-box {
    padding: 32px 40px;
  }
}
@media (max-width: 480px) {
  .hadith-box {
    flex-direction: column;
    gap: 10px;
    padding: 22px 18px;
  }
  .hadith-text {
    font-size: 1rem;
  }
  .sunnah-intro {
    padding: 22px 18px;
  }
}

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
  position: relative;
  width: 100%;
  min-height: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: #f5f0e8;
}

@media (min-width: 768px) {
  .hero-slideshow {
    width: 420px;
    min-height: unset;
  }
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.9s ease;
  border-radius: 24px;
  padding: 8px;
  box-sizing: border-box;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(0,0,0,0.15);
  transition: background 0.3s, transform 0.3s;
  cursor: default;
}
.slide-dot.active {
  background: #c9a227;
  transform: scale(1.3);
}

/* OVERFLOW FIX FINAL */
html, body {
  overflow-x: hidden !important;
  width: 100%;
}

* {
  box-sizing: border-box;
}

img, video {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  padding: 0;
}
