/* ============================================================
   Saturn Formulations — Global Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:        #1E4D0F;
  --primary-light:  #2E7D1A;
  --accent:         #6BBF2D;
  --accent-light:   #EEF7E2;
  --accent-warm:    #FFF8EE;
  --orange:         #F97316;
  --orange-light:   #FEF3EB;
  --pink-light:     #FFF0F3;
  --blue-light:     #EFF6FF;
  --text:           #1A1A2E;
  --text-muted:     #5C6370;
  --border:         #E5E7EB;
  --white:          #FFFFFF;
  --bg:             #FAFAF8;
  --dark:           #1A2210;
  --dark-card:      #253015;
  --gold:           #D4AF37;
  --radius:         12px;
  --radius-lg:      20px;
  --shadow:         0 4px 24px rgba(30,77,15,0.10);
  --shadow-lg:      0 12px 40px rgba(30,77,15,0.16);
  --transition:     0.25s ease;
  --font-heading:   'Playfair Display', 'Georgia', serif;
  --font-body:      'Inter', 'Segoe UI', sans-serif;
}

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

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }
.italic-accent { font-style: italic; color: var(--accent); }
.highlight { color: var(--primary); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent-light);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-label.orange { background: var(--orange-light); color: var(--orange); }
.section-label.gold { background: #FBF5E0; color: var(--gold); }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: var(--white);
  box-shadow: 0 4px 16px rgba(30,77,15,0.25);
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,77,15,0.3); }
.btn-outline {
  border: 2px solid var(--primary); color: var(--primary); background: transparent;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--accent-light); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--primary-light); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-light); color: var(--primary);
  transition: all var(--transition);
}
.btn-icon:hover { background: var(--primary); color: var(--white); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-body { padding: 1.5rem; }

/* ---------- Badges ---------- */
.badge {
  display: inline-block; padding: 0.25rem 0.7rem;
  border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-green { background: var(--accent-light); color: var(--primary-light); }
.badge-orange { background: var(--orange-light); color: var(--orange); }
.badge-blue { background: var(--blue-light); color: #2563EB; }

/* ---------- Stars ---------- */
.stars { color: #F59E0B; font-size: 0.9rem; display: inline-flex; gap: 2px; }
.rating-text { font-size: 0.82rem; color: var(--text-muted); margin-left: 0.4rem; }

/* ---------- NAVIGATION ---------- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-icon {
  width: 38px; height: 38px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white; font-weight: 800;
}
.nav-logo-text { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.nav-logo-text span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.9rem; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--text);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--accent-light); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-cart {
  position: relative; width: 40px; height: 40px;
  border-radius: 10px; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.1rem;
}
.cart-count {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; background: var(--orange);
  border-radius: 50%; font-size: 0.65rem; font-weight: 700;
  color: white; display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex; align-items: center; gap: 3rem;
  padding: 0.65rem 0;
  animation: scrollTrust 30s linear infinite;
  white-space: nowrap;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.trust-item svg { color: var(--accent); flex-shrink: 0; }
@keyframes scrollTrust {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--accent-light) 0%, #FFFFFF 60%, #F0FAE6 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  padding: 4rem 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E7D1A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.35rem 1rem 0.35rem 0.5rem;
  font-size: 0.78rem; font-weight: 600; color: var(--primary-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 1.25rem;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.hero h1 { margin-bottom: 1.25rem; }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 480px; margin-bottom: 2rem; }
.hero-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-link { font-size: 0.9rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 0.4rem; }
.hero-link:hover { text-decoration: underline; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-stat-value { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-circle {
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #C8EAAA, #8FCF3A, #3A7D1A);
  display: flex; align-items: center; justify-content: center;
  position: relative; box-shadow: 0 20px 60px rgba(30,77,15,0.25);
}
.hero-product-icon { font-size: 5rem; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2)); }
.hero-float-card {
  position: absolute;
  background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 600; color: var(--text);
}
.hero-float-card.top-right { top: 10%; right: -5%; }
.hero-float-card.bottom-left { bottom: 15%; left: -8%; }
.hero-float-icon { font-size: 1.4rem; }
.hero-float-sub { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; }

/* ---------- GOALS SECTION ---------- */
.goal-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.75rem;
  cursor: pointer; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.goal-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--accent); transform: scaleX(0);
  transform-origin: left; transition: transform var(--transition);
}
.goal-card:hover::before { transform: scaleX(1); }
.goal-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.goal-icon { font-size: 2.2rem; }
.goal-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; }
.goal-count { font-size: 0.78rem; color: var(--text-muted); }
.goal-arrow { margin-left: auto; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--primary); }

/* ---------- PRODUCT CARD ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: all var(--transition); position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.product-img {
  height: 220px; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative;
}
.product-badge { position: absolute; top: 0.75rem; left: 0.75rem; }
.product-wishlist {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 32px; height: 32px; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); cursor: pointer;
  transition: all var(--transition); font-size: 0.9rem;
}
.product-wishlist:hover { background: #FEE2E2; }
.product-info { padding: 1.25rem; }
.product-brand { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.25rem; }
.product-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; }
.product-rating { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.75rem; }
.product-price { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.price-current { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.price-original { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.price-discount { font-size: 0.78rem; font-weight: 700; color: var(--orange); }
.product-add {
  width: 100%; background: var(--primary); color: white;
  padding: 0.65rem; border-radius: 10px; font-weight: 600;
  font-size: 0.88rem; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.product-add:hover { background: var(--primary-light); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: var(--radius-lg); padding: 3.5rem;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: '🧬'; position: absolute; right: 3rem; top: 50%;
  transform: translateY(-50%); font-size: 6rem; opacity: 0.15;
}
.cta-banner h2 { color: white; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 540px; }
.cta-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.15); color: white;
  padding: 0.3rem 0.9rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; margin-bottom: 1rem;
}

/* ---------- REVIEWS ---------- */
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; border: 1px solid var(--border);
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: white; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.95rem; }
.reviewer-tag { font-size: 0.75rem; color: var(--text-muted); }
.review-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; font-style: italic; }
.google-badge {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border);
}
.google-g { width: 16px; height: 16px; border-radius: 3px; background: #4285F4; color: white; font-size: 0.6rem; font-weight: 900; display: flex; align-items: center; justify-content: center; }

/* ---------- NEWSLETTER ---------- */
.newsletter {
  background: var(--accent-light);
  border: 1px solid rgba(107,191,45,0.2);
  border-radius: var(--radius-lg);
  padding: 3.5rem; text-align: center;
}
.newsletter h2 { color: var(--primary); }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 460px; margin: 1.5rem auto 0; }
.newsletter-form input {
  flex: 1; padding: 0.8rem 1.2rem; border: 1.5px solid var(--border);
  border-radius: 50px; font-size: 0.9rem; font-family: inherit;
  outline: none; transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--accent); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.85rem; max-width: 280px; margin-top: 0.75rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: all var(--transition);
}
.social-icon:hover { background: var(--accent); color: white; }
.footer-col h5 { color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.85rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem;
}
.footer-payments { display: flex; gap: 0.5rem; align-items: center; }
.payment-icon {
  background: rgba(255,255,255,0.1); border-radius: 4px;
  padding: 0.2rem 0.5rem; font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.7);
}
.footer-logo-text { font-family: var(--font-heading); font-size: 1.2rem; color: white; font-weight: 700; }
.footer-logo-text span { color: var(--accent); }

/* ---------- FLOATING WIDGETS ---------- */
.floating-widgets {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  z-index: 9999;
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  cursor: pointer; transition: all var(--transition);
  border: none; text-decoration: none;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.float-whatsapp { background: #25D366; color: white; }
.float-phone {
  background: var(--primary); color: white;
  animation: phonePulse 2s infinite;
}
.float-query { background: var(--orange); color: white; font-size: 1.1rem; }
@keyframes phonePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(30,77,15,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(30,77,15,0); }
}

/* ---------- QUERY MODAL ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: white; border-radius: var(--radius-lg);
  width: 90%; max-width: 520px; padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: scale(0.92) translateY(20px);
  transition: all 0.3s ease;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%; background: var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: all var(--transition);
}
.modal-close:hover { background: var(--primary); color: white; }
.modal-header { position: relative; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; font-family: inherit; outline: none;
  transition: border-color var(--transition); color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--accent-light) 0%, white 60%);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* ---------- ABOUT PAGE ---------- */
.mission-card {
  background: var(--accent-light); border-radius: var(--radius-lg);
  padding: 2rem; border-left: 4px solid var(--accent);
}
.team-card {
  text-align: center; padding: 2rem;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; color: white;
}
.cert-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 1.25rem;
  transition: all var(--transition);
}
.cert-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.cert-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: #FBF5E0; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0;
}
.cert-badge { margin-top: 0.5rem; }

/* ---------- BLOG PAGE ---------- */
.blog-hero-card {
  grid-column: span 2; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
}
.blog-hero-img {
  min-height: 300px; background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.blog-hero-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.blog-tag { padding: 0.2rem 0.6rem; background: var(--accent-light); border-radius: 50px; font-size: 0.72rem; font-weight: 600; color: var(--primary); }

/* ---------- CATEGORY PAGE ---------- */
.filter-bar {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid var(--border); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.filter-chip {
  padding: 0.4rem 1rem; border-radius: 50px;
  border: 1.5px solid var(--border); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition); color: var(--text);
}
.filter-chip.active, .filter-chip:hover { border-color: var(--primary); background: var(--primary); color: white; }
.sort-select {
  margin-left: auto; padding: 0.4rem 1rem; border: 1.5px solid var(--border);
  border-radius: 50px; font-size: 0.82rem; font-family: inherit; outline: none;
  cursor: pointer;
}

/* ---------- PRODUCT PAGE ---------- */
.product-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 1rem; }
.product-thumbs { display: flex; flex-direction: column; gap: 0.75rem; }
.product-thumb {
  width: 80px; height: 80px; border-radius: 10px;
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition);
}
.product-thumb.active { border-color: var(--accent); }
.product-main-img {
  border-radius: var(--radius-lg); background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  min-height: 420px; font-size: 8rem; aspect-ratio: 1;
}
.product-title { font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 0.5rem; }
.product-meta-row { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.product-price-lg { font-size: 2rem; font-weight: 800; color: var(--primary); }
.product-original { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
.product-save { font-size: 0.85rem; font-weight: 700; color: var(--orange); background: var(--orange-light); padding: 0.2rem 0.6rem; border-radius: 50px; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; }
.qty-btn { width: 40px; height: 40px; background: var(--accent-light); color: var(--primary); font-size: 1.1rem; font-weight: 700; transition: background var(--transition); }
.qty-btn:hover { background: var(--accent); color: white; }
.qty-input { width: 48px; height: 40px; text-align: center; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); font-size: 1rem; font-weight: 700; outline: none; }
.how-to-buy { background: var(--accent-light); border-radius: var(--radius-lg); padding: 2rem; margin-top: 2rem; }
.step-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 1.5rem; gap: 0.25rem; }
.tab {
  padding: 0.75rem 1.5rem; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px;
  color: var(--text-muted); transition: all var(--transition);
}
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.ingredient-row { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.ingredient-row:last-child { border-bottom: none; }
.ingredient-icon { font-size: 1.4rem; width: 36px; text-align: center; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden; }
.faq-question {
  padding: 1.25rem 1.5rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; background: var(--white); transition: background var(--transition);
  font-size: 0.95rem;
}
.faq-question:hover { background: var(--accent-light); }
.faq-question.open { background: var(--accent-light); color: var(--primary); }
.faq-icon { font-size: 1.2rem; font-weight: 400; transition: transform var(--transition); flex-shrink: 0; color: var(--primary); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.35s ease; }
.faq-answer.open { max-height: 400px; padding: 0 1.5rem 1.25rem; }
.faq-answer p { font-size: 0.9rem; margin: 0; }

/* ---------- POLICY PAGE ---------- */
.policy-nav {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid var(--border); position: sticky; top: 90px;
}
.policy-nav h5 { margin-bottom: 1rem; color: var(--primary); }
.policy-nav a { display: block; padding: 0.4rem 0.75rem; border-radius: 8px; font-size: 0.85rem; margin-bottom: 0.25rem; transition: all var(--transition); }
.policy-nav a:hover, .policy-nav a.active { background: var(--accent-light); color: var(--primary); }
.policy-section { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.policy-section:last-child { border-bottom: none; }
.policy-section h3 { color: var(--primary); margin-bottom: 1rem; }
.policy-section ul { padding-left: 1.5rem; }
.policy-section ul li { list-style: disc; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }

/* ---------- ISO / CERT STRIP ---------- */
.cert-strip {
  background: var(--dark);
  padding: 2rem 0;
}
.cert-strip-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.cert-strip-item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.85); }
.cert-strip-icon { font-size: 2rem; }
.cert-strip-text h6 { font-size: 0.82rem; font-weight: 700; color: white; }
.cert-strip-text p { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid-4, .product-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 3rem 0; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }
  .grid-2, .grid-3, .grid-4, .product-grid { grid-template-columns: 1fr; }
  .blog-hero-card { grid-column: span 1; grid-template-columns: 1fr; }
  .blog-hero-img { min-height: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: white; padding: 1rem; border-bottom: 1px solid var(--border);
    gap: 0.25rem; box-shadow: var(--shadow);
  }
  .product-gallery { grid-template-columns: 1fr; }
  .product-thumbs { flex-direction: row; }
  .cta-banner { padding: 2rem; }
  .cta-banner::after { display: none; }
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .cert-strip-inner { gap: 1.5rem; }
  .policy-nav { position: static; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 3rem 0; }
  .floating-widgets { bottom: 1rem; right: 1rem; }
  .float-btn { width: 48px; height: 48px; font-size: 1.2rem; }
}

/* ---------- UTILITY ---------- */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-white { color: white; }
.bg-primary { background: var(--primary); }
.bg-accent-light { background: var(--accent-light); }
.bg-dark { background: var(--dark); }
.fw-bold { font-weight: 700; }
.fw-600 { font-weight: 600; }
.d-none { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
