/* ===== DESIGN TOKENS ===== */
:root {
  --surface: #fff9eb;
  --surface-dim: #e0daca;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #faf3e3;
  --surface-container: #f4eedd;
  --surface-container-high: #eee8d8;
  --surface-container-highest: #e8e2d2;
  --on-surface: #1e1c12;
  --on-surface-variant: #504533;
  --inverse-surface: #333026;
  --inverse-on-surface: #f7f0e0;
  --outline: #827561;
  --outline-variant: #d4c4ac;
  --primary: #7b5800;
  --on-primary: #ffffff;
  --primary-container: #f4b41a;
  --on-primary-container: #664800;
  --secondary: #96482e;
  --on-secondary: #ffffff;
  --secondary-container: #fd997a;
  --tertiary: #3a6843;
  --on-tertiary: #ffffff;
  --tertiary-container: #99cb9e;
  --error: #ba1a1a;

  --font-heading: 'Newsreader', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --rounded-sm: 0.25rem;
  --rounded: 0.5rem;
  --rounded-md: 0.75rem;
  --rounded-lg: 1rem;
  --rounded-xl: 1.5rem;
  --rounded-full: 9999px;

  --space-xs: 4px;
  --space-sm: 12px;
  --space-base: 8px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --container-max: 1280px;
  --gutter: 24px;

  --shadow-warm: 0 2px 8px rgba(58, 104, 67, 0.04), 0 4px 24px rgba(150, 72, 46, 0.03);
  --shadow-warm-lg: 0 4px 16px rgba(58, 104, 67, 0.06), 0 8px 40px rgba(150, 72, 46, 0.05);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--on-surface);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.label-caps {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondary);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}
.section-header .label-caps { margin-bottom: var(--space-sm); display: block; }
.section-header h2 { margin-bottom: var(--space-sm); }
.section-header p { color: var(--on-surface-variant); font-size: 18px; line-height: 1.6; }
.section-cta { text-align: center; margin-top: var(--space-lg); }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--on-surface); }
h1 { font-size: 48px; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h2 { font-size: 36px; font-weight: 600; line-height: 1.2; }
h3 { font-size: 24px; font-weight: 600; line-height: 1.3; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.3; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--rounded);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--primary-container);
  color: var(--on-primary-container);
  border-color: var(--primary-container);
}
.btn-primary:hover {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-warm-lg);
}
.btn-outline {
  background: transparent;
  color: var(--tertiary);
  border-color: var(--tertiary);
}
.btn-outline:hover {
  background: var(--tertiary);
  color: var(--on-tertiary);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: var(--on-primary);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--rounded-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.chip-green { background: var(--tertiary); color: var(--on-tertiary); }
.chip-orange { background: var(--secondary); color: var(--on-secondary); }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 249, 235, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.header.scrolled {
  border-bottom-color: var(--outline-variant);
  box-shadow: 0 1px 12px rgba(30,28,18,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header__logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 28px; }
.logo-text { font-family: var(--font-heading); font-size: 20px; color: var(--tertiary); }
.logo-text strong { color: var(--primary); }
.header__nav { display: flex; gap: 32px; }
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--on-surface-variant);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--primary-container);
  border-radius: 2px;
}
.header__menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.header__menu-toggle span { display: block; width: 24px; height: 2px; background: var(--on-surface); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 var(--space-xl);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-container-low) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.hero__badge { display: inline-block; margin-bottom: var(--space-md); }
.hero h1 { color: var(--tertiary); margin-bottom: var(--space-md); }
.hero__sub { font-size: 18px; line-height: 1.6; color: var(--on-surface-variant); margin-bottom: 32px; max-width: 540px; }
.hero__actions { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--on-surface-variant); }
.hero__image {
  position: relative;
}
.hero__image img {
  border-radius: var(--rounded-xl);
  box-shadow: var(--shadow-warm-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* ===== STATS ===== */
.stats {
  padding: var(--space-xl) 0;
  background: var(--surface-container);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.stat-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--surface-container-lowest);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--outline-variant);
  box-shadow: var(--shadow-warm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm-lg); }
.stat-card__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--tertiary);
  margin-bottom: 12px;
}
.stat-card__desc { font-size: 14px; color: var(--on-surface-variant); line-height: 1.5; }

/* ===== PRODUCTS ===== */
.products { padding: var(--space-xl) 0; }
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-container-lowest);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--outline-variant);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-warm-lg); }
.product-card__image {
  position: relative;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 6px 14px;
  border-radius: var(--rounded-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-premium { background: var(--primary-container); color: var(--on-primary-container); }
.badge-popular { background: var(--secondary); color: var(--on-secondary); }
.product-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card__body h3 { font-size: 20px; }
.product-card__body p { font-size: 14px; color: var(--on-surface-variant); line-height: 1.5; flex: 1; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }

/* ===== FACTORY ===== */
.factory { padding: var(--space-xl) 0; background: var(--surface-container-low); }
.factory__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.factory__image img {
  border-radius: var(--rounded-xl);
  box-shadow: var(--shadow-warm-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.factory__content .label-caps { display: block; margin-bottom: var(--space-sm); }
.factory__content h2 { color: var(--tertiary); margin-bottom: var(--space-md); }
.factory__content > p { color: var(--on-surface-variant); font-size: 16px; line-height: 1.6; margin-bottom: 32px; }
.factory__features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.factory__features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--rounded-full);
  background: var(--tertiary);
  color: var(--on-tertiary);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.factory__features li div { font-size: 14px; line-height: 1.5; color: var(--on-surface-variant); }
.factory__features li strong { color: var(--on-surface); font-size: 15px; }

/* ===== CERTIFICATIONS ===== */
.certs { padding: var(--space-lg) 0; background: var(--surface-container-high); }
.certs__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.certs__text { max-width: 480px; }
.certs__text .label-caps { display: block; margin-bottom: var(--space-sm); }
.certs__text h2 { font-size: 28px; margin-bottom: var(--space-sm); }
.certs__text p { font-size: 14px; color: var(--on-surface-variant); line-height: 1.5; }
.certs__logos { display: flex; gap: var(--space-md); }
.cert-logo {
  text-align: center;
  padding: var(--space-md);
  background: var(--surface-container-lowest);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--outline-variant);
  min-width: 110px;
}
.cert-icon { font-size: 32px; display: block; margin-bottom: 8px; }
.cert-logo strong { font-size: 14px; color: var(--on-surface); }
.cert-logo small { font-size: 11px; color: var(--outline); }

/* ===== PRICE TABLE ===== */
.price-update { padding: var(--space-xl) 0; background: var(--surface); }
.price-table-wrapper {
  overflow-x: auto;
  border-radius: var(--rounded-lg);
  border: 1px solid var(--outline-variant);
  box-shadow: var(--shadow-warm);
  background: var(--surface-container-lowest);
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  background: var(--tertiary);
  color: var(--on-tertiary);
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
}
.price-table td {
  padding: 14px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--outline-variant);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--surface-container-low); }
.trend { font-weight: 600; font-size: 13px; }
.trend-up { color: var(--tertiary); }
.trend-stable { color: var(--outline); }

/* ===== INSIGHTS ===== */
.insights { padding: var(--space-xl) 0; background: var(--surface-container-low); }
.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.insight-card {
  background: var(--surface-container-lowest);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--outline-variant);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm-lg); }
.insight-card__image { position: relative; overflow: hidden; }
.insight-card__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s;
}
.insight-card:hover .insight-card__image img { transform: scale(1.04); }
.insight-card__date {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--primary-container);
  color: var(--on-primary-container);
  padding: 4px 12px;
  border-radius: var(--rounded-full);
  font-size: 12px;
  font-weight: 600;
}
.insight-card__body { padding: var(--space-md); }
.insight-card__body .label-caps { display: block; margin-bottom: 8px; }
.insight-card__body h3 { font-size: 20px; margin-bottom: 8px; }
.insight-card__body p { font-size: 14px; color: var(--on-surface-variant); line-height: 1.5; }

/* ===== BUYER GUIDE TEASER ===== */
.buyer-guide-teaser { padding: var(--space-xl) 0; }
.buyer-guide-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.buyer-guide-teaser__content .label-caps { display: block; margin-bottom: var(--space-sm); }
.buyer-guide-teaser__content h2 { color: var(--tertiary); margin-bottom: var(--space-md); }
.buyer-guide-teaser__content > p { color: var(--on-surface-variant); line-height: 1.6; margin-bottom: 24px; }
.guide-topics { margin-bottom: 32px; }
.guide-topics li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--on-surface-variant);
}
.guide-topics li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-container);
  font-weight: 700;
}
.buyer-guide-teaser__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.guide-stat {
  text-align: center;
  padding: var(--space-md);
  background: var(--surface-container);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--outline-variant);
}
.guide-stat__icon { font-size: 32px; display: block; margin-bottom: 8px; }
.guide-stat__num { display: block; font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--primary); }
.guide-stat__label { font-size: 13px; color: var(--on-surface-variant); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--tertiary) 0%, #2a5432 100%);
}
.cta-section__inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-section__inner h2 { color: var(--on-tertiary); margin-bottom: var(--space-md); }
.cta-section__inner p { color: rgba(255,255,255,0.8); font-size: 18px; line-height: 1.6; margin-bottom: 32px; }
.cta-section__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--inverse-surface); color: var(--inverse-on-surface); padding: var(--space-xl) 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.footer-logo { font-family: var(--font-heading); font-size: 22px; display: block; margin-bottom: 16px; }
.footer-logo strong { color: var(--primary-container); }
.footer__col p { font-size: 14px; line-height: 1.6; color: rgba(247,240,224,0.7); }
.footer__col h4 { font-size: 15px; margin-bottom: 16px; color: var(--primary-container); }
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(247,240,224,0.7);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--primary-container); }
.footer__bottom {
  border-top: 1px solid rgba(247,240,224,0.1);
  padding: var(--space-md) 0;
}
.footer__bottom p { font-size: 13px; color: rgba(247,240,224,0.4); text-align: center; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--surface-container-highest);
  border-bottom: 1px solid var(--outline-variant);
  font-size: 13px;
  color: var(--on-surface-variant);
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
.top-bar__left, .top-bar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar__item strong { color: var(--on-surface); }
.top-bar__lang { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.top-bar__social { display: flex; align-items: center; gap: 12px; }
.top-bar__social a {
  color: var(--on-surface-variant);
  font-weight: 600;
  transition: color 0.2s;
}
.top-bar__social a:hover { color: var(--primary); }

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE & MOBILE OVERFLOW FIXES ===== */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
}

p, span, a, h1, h2, h3, h4, li, div, td, th {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .hero__inner, .factory__inner, .buyer-guide-teaser__inner { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .insights__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .certs__inner { flex-direction: column; text-align: center; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
}

@media (max-width: 768px) {
  /* 1. Hide Top Bar on Mobile to eliminate collision & horizontal scroll */
  .top-bar { display: none !important; }

  /* 2. Fix Header & Hamburger Button Collision */
  .header__inner {
    height: 64px;
    padding: 0 16px;
    position: relative;
  }
  .header__cta { display: none !important; }
  .header__menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  .header__nav {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--surface-container-lowest);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--outline-variant);
    box-shadow: var(--shadow-warm-lg);
    z-index: 999;
  }
  .header__nav.open { display: flex !important; }

  /* 3. Mobile Container & Typography Bounds */
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  h1 { font-size: 28px !important; line-height: 1.25 !important; }
  h2 { font-size: 22px !important; line-height: 1.3 !important; }
  h3 { font-size: 18px !important; }

  /* 4. Mobile Layout Stacking */
  .products__grid, .stats__grid, .insights__grid { grid-template-columns: 1fr !important; }
  .certs__logos { flex-wrap: wrap; justify-content: center; }
  .footer__inner { grid-template-columns: 1fr !important; gap: 24px; }
  .buyer-guide-teaser__visual { grid-template-columns: 1fr 1fr; }

  /* 5. Contact Us Mobile Stacking */
  .contact-section { padding: 24px 0 !important; }
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
  }
  .contact-bio-card, .contact-form-card {
    padding: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .form-row { grid-template-columns: 1fr !important; gap: 12px !important; }
  .form-group input, .form-group select, .form-group textarea {
    font-size: 16px !important; /* Prevents iOS Safari auto-zoom */
    min-height: 46px;
    width: 100% !important;
  }
  .form-actions { flex-direction: column !important; gap: 12px; }
  .form-actions .btn { width: 100% !important; justify-content: center; }

  /* 6. Product Hero & Specs Table Mobile Stacking */
  .product-hero__inner { grid-template-columns: 1fr !important; gap: 24px !important; }
  .product-hero__actions, .hero__actions, .note-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .product-hero__actions .btn, .hero__actions .btn, .note-actions .btn {
    width: 100% !important;
    text-align: center;
    justify-content: center;
    min-height: 48px;
  }
  .spec-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    padding: 10px 0 !important;
  }

  /* 7. Price Table Mobile Touch Scroll */
  .price-table-section { padding: 24px 0 !important; }
  .price-table-wrapper {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--rounded-md);
  }
  .price-table { min-width: 320px; width: 100% !important; }
  .validity-banner {
    width: 100% !important;
    justify-content: center;
    text-align: center;
    font-size: 13px !important;
    padding: 10px 14px !important;
    box-sizing: border-box !important;
  }

  /* 8. Floating WhatsApp */
  .floating-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
    z-index: 1000;
  }
}


