/* =========================================================
   NISRAA — Official Brand Stylesheet
   Brand Colours: Warm Brown #6C4323 + Ivory Cream #F1E9DB
   ========================================================= */

/* ---- CSS Variables — Nisraa Official Brand Palette ---- */
:root {
  /* === PRIMARY BRAND COLOUR: Warm Chocolate Brown === */
  --primary: #6C4323;        /* Main Nisraa brown */
  --primary-light: #8B5A30;  /* Lighter brown hover */
  --primary-dark: #4A2D14;   /* Deeper brown for dark backgrounds */

  /* === SECONDARY: Warm Cream / Ivory — brand background === */
  --accent: #C49A6C;         /* Warm tan/gold — complements brown */
  --accent-light: #E8D5B7;   /* Light ivory-gold */
  --accent-dark: #9E7245;    /* Deeper warm tan */

  /* === BACKGROUNDS === */
  --bg: #FDFAF5;             /* Warm off-white — very close to brand cream */
  --bg-alt: #F1E9DB;         /* Nisraa brand cream/ivory — exact brand BG */
  --bg-cream: #EAE0CE;       /* Slightly deeper cream for accents */
  --bg-dark: #2A1A0A;        /* Very deep warm brown for footer */

  /* === TEXT === */
  --text: #2C1A0E;           /* Near-black warm brown — on-brand */
  --text-secondary: #6B4C34; /* Mid-brown secondary text */
  --text-light: #A07850;     /* Warm tan for hints/captions */

  /* === NEUTRALS === */
  --white: #ffffff;
  --border: #DDD0BB;         /* Warm cream border */
  --border-light: #EDE4D3;   /* Very light cream border */

  /* === SHADOWS — warm brown tones === */
  --shadow-sm: 0 2px 8px rgba(108,67,35,0.07);
  --shadow-md: 0 8px 32px rgba(108,67,35,0.11);
  --shadow-lg: 0 20px 60px rgba(108,67,35,0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* ---- 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);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Spacing ---- */
.section { padding: 80px 0; }
.section-alt { padding: 80px 0; background: var(--bg-alt); }

/* ---- Utility ---- */
.center { text-align: center; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }

/* ---- Eyebrow Tag ---- */
.eyebrow-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.eyebrow-tag.light {
  color: var(--accent-light);
  background: rgba(201,169,110,0.2);
}

/* ---- Section Headers ---- */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-copy {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  background: none;
}
/* Ensure <button> elements with .btn class look like link buttons */
button.btn, button.btn-full {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  background: none;
}
button.btn.btn-primary {
  border: 2px solid var(--primary);
}
button.btn.btn-outline {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}
button.btn.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,46,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announcement-bar {
  background: var(--primary);
  color: var(--accent-light);
  text-align: center;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,250,245,0.97);  /* Brand cream white */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
}
/* ---- Logo Image — Black-background PNG ---- */

/*
  The logo PNG has a solid BLACK background.
  FIX:
  - On LIGHT backgrounds (header): use mix-blend-mode: multiply
    → black bg becomes invisible, brown logo shows on cream
  - On DARK backgrounds (footer, hero): use mix-blend-mode: screen
    → black bg becomes invisible, brown logo glows warm on dark
*/

/* Header — light cream background */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
  mix-blend-mode: multiply;   /* black disappears on white/cream bg */
}
.logo-img:hover { opacity: 0.80; }

/* Footer — very dark brown background */
.footer-logo .logo-img {
  height: 52px;
  border-radius: 10px;
  opacity: 0.95;
}

.logo-icon { display: none; }
.logo-text { display: none; }
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--bg-alt);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 15px;
}
.header-icon:hover {
  color: var(--primary);
  background: var(--bg-alt);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.hamburger:hover { background: var(--bg-alt); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  font-size: 15px;
  padding: 10px 12px;
}
.nav-mobile .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* =========================================================
   HERO
   ========================================================= */
/* =========================================================
   HERO — Deep Rich Dark Brown · Premium White
   ========================================================= */
.hero {
  position: relative;
  /* Deep, rich near-black brown — far darker than before for maximum contrast */
  background: #1C0F06;
  color: var(--white);
  overflow: hidden;
  padding: 52px 0 80px;
}

/* Subtle warm texture overlay — adds depth without muddying */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 80%, rgba(196,154,108,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(108,67,35,0.25) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- Logo at top of hero ---- */
.hero-logo-top {
  display: flex;
  justify-content: center;
  padding-bottom: 28px;
  position: relative;
  z-index: 2;
}
.hero-logo-top-img {
  height: 100px;
  width: auto;
  border-radius: 12px;
  display: block;
}

/* Elegant thin divider below logo */
.hero-logo-divider {
  width: 60px;
  height: 1px;
  background: rgba(196,154,108,0.45);
  margin: 0 auto 44px;
  position: relative;
  z-index: 2;
}

/* ---- Two-column layout ---- */
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- Left column ---- */
.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C49A6C;
  border: 1px solid rgba(196,154,108,0.35);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.12;
  /* Pure crisp white — maximum contrast on dark bg */
  color: #FFFFFF;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hero-copy {
  font-size: 15.5px;
  line-height: 1.78;
  /* High-contrast white — readable, not washed out */
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 13px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.01em;
}
.trust-pill i { color: #C49A6C; font-size: 10px; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

/* Hero-specific buttons — on dark bg */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  /* Warm gold/cream on dark — premium feel */
  background: #C49A6C;
  color: #1C0F06;
  border: 2px solid #C49A6C;
}
.btn-hero-primary:hover {
  background: #D4AE88;
  border-color: #D4AE88;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(196,154,108,0.35);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 2px solid rgba(255,255,255,0.30);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

.hero-micro {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
}

/* ---- Right column — credential panel ---- */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-credential-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 32px 28px;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(8px);
}
.hero-cred-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
}
.hero-cred-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(196,154,108,0.14);
  border: 1px solid rgba(196,154,108,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #C49A6C;
  flex-shrink: 0;
}
.hero-cred-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
}
.hero-cred-item span {
  font-size: 11.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.4;
}
.hero-cred-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 14px 0;
}

/* Hero Product Image (replaces credential panel) */
.hero-product-img-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  aspect-ratio: 4 / 4.5;
  background: #f5ede3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.hero-product-img-wrap:hover .hero-product-img { transform: scale(1.04); }

/* Award tag overlay */
.hero-product-tag {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(10,5,2,0.72);
  border: 1px solid rgba(196,154,108,0.35);
  border-radius: 12px;
  padding: 10px 14px;
  backdrop-filter: blur(6px);
}
.hero-product-tag i {
  font-size: 18px; color: var(--accent); flex-shrink: 0;
}
.hero-product-tag strong {
  display: block; font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 1px;
}
.hero-product-tag span {
  font-size: 10.5px; color: rgba(255,255,255,0.5);
}

/* Price pill overlay */
.hero-product-price-pill {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(10,5,2,0.82);
  border: 1px solid rgba(196,154,108,0.3);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 2px;
  backdrop-filter: blur(6px);
}
.hero-pill-orig {
  font-size: 11px; text-decoration: line-through; color: rgba(255,255,255,0.38);
}
.hero-pill-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--accent); line-height: 1;
}
.hero-pill-save {
  font-size: 10px; font-weight: 700;
  background: #C84B00; color: #fff;
  padding: 2px 8px; border-radius: 100px;
}
  max-width: 420px;
}
.product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201,169,110,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-product-cards {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 16px;
  align-items: end;
}
.mini-product-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  position: relative;
}
.mini-product-card:hover { transform: translateY(-4px); }
.mini-product-card.featured-mini {
  background: rgba(201,169,110,0.18);
  border-color: rgba(201,169,110,0.35);
  padding: 28px 14px;
}
.mini-product-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
  color: var(--accent);
}
.mini-product-card span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  display: block;
}
.mini-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.hero-award-badge {
  margin-top: 20px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
}
.hero-award-badge i { font-size: 24px; color: var(--accent); }
.hero-award-badge span { font-size: 14px; font-weight: 600; color: var(--white); }
.hero-award-badge small { display: block; font-size: 11px; color: rgba(255,255,255,0.55); }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}
.trust-icon {
  font-size: 20px;
  color: var(--accent-dark);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.trust-item span {
  font-size: 11.5px;
  color: var(--text-light);
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* =========================================================
   SHOP NOW SECTION
   ========================================================= */
.shop-now-section {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
}
.shop-now-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.shop-benefit-line {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-top: 8px;
}
.shop-benefit-line i { color: var(--primary); margin-right: 2px; }

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.product-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}
.product-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  color: var(--text-secondary);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.product-badge.featured-badge {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  font-size: 11.5px;
}
.product-icon-wrapper { text-align: center; margin-bottom: 20px; }
.product-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 28px;
}
.product-icon-circle.trial { background: var(--bg-alt); color: var(--primary); }
.product-icon-circle.full { background: rgba(201,169,110,0.2); color: var(--accent); }
.product-icon-circle.tonic { background: var(--bg-alt); color: var(--primary); }
.product-card.featured .product-icon-circle { background: rgba(255,255,255,0.12); color: var(--accent); }

.product-info { flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.product-card.featured .product-name { color: var(--white); }
.product-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.product-card.featured .product-desc { color: rgba(255,255,255,0.7); }
.product-includes {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.product-includes li {
  font-size: 13.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card.featured .product-includes li { color: rgba(255,255,255,0.75); }
.product-includes i { font-size: 11px; color: var(--accent-dark); flex-shrink: 0; }
.product-card.featured .product-includes i { color: var(--accent); }
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
}
.product-card.featured .product-price { color: var(--accent); }
.product-price-note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}
.product-card.featured .product-price-note { color: rgba(255,255,255,0.5); }
.product-card.featured .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.product-card.featured .btn-outline:hover {
  background: rgba(255,255,255,0.15);
}
.product-card.featured .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
}
.product-card.featured .btn-primary:hover {
  background: var(--accent-light);
}

.shop-reassurance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-reassurance p {
  font-size: 13.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-reassurance i { color: var(--primary); }
.view-all-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.view-all-link:hover { color: var(--primary-light); }
.view-all-link i { font-size: 11px; }

/* =========================================================
   DIFFERENCE SECTION
   ========================================================= */
.diff-section .container { max-width: 920px; }
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
.comparison-card {
  padding: 32px;
  border-radius: var(--radius-lg);
}
.comparison-card.ordinary {
  background: var(--white);
  border: 1px solid var(--border);
}
.comparison-card.nisraa {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.comparison-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.comparison-card.ordinary .comparison-icon { color: var(--text-light); }
.comparison-card.nisraa .comparison-icon { color: var(--accent); }
.comparison-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}
.comparison-card.nisraa h3 { color: var(--white); }
.comparison-card ul { display: flex; flex-direction: column; gap: 12px; }
.comparison-card li {
  font-size: 14px;
  padding-left: 18px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.5;
}
.comparison-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--border);
}
.comparison-card.nisraa li { color: rgba(255,255,255,0.8); }
.comparison-card.nisraa li::before { color: var(--accent); }
.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comparison-vs span {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 13px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.hair-anatomy-note {
  background: var(--white);
  border: 1px solid var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.anatomy-icon {
  font-size: 22px;
  color: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.hair-anatomy-note p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =========================================================
   TECHNOLOGY SECTION
   ========================================================= */
.tech-section { background: var(--white); }
.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tech-proof-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 32px;
}
.tech-proof-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.tech-proof-item i {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
.tech-proof-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.tech-proof-item span {
  font-size: 13px;
  color: var(--text-light);
}

/* Hair Diagram Visual */
.tech-visual {
  display: flex;
  justify-content: center;
}
.hair-diagram {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  width: 100%;
  max-width: 380px;
  position: relative;
}
.hair-layer {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.layer-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  width: 80px;
  flex-shrink: 0;
  text-align: right;
  line-height: 1.4;
}
.layer-label small { color: var(--text-light); font-weight: 400; }
.layer-bar {
  flex: 1;
  border-radius: 100px;
  padding: 10px 14px;
  font-size: 11.5px;
  font-weight: 500;
}
.cuticle-bar {
  background: rgba(100,100,100,0.12);
  color: var(--text-secondary);
}
.cortex-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.9);
}
.ordinary-reach { display: block; font-style: italic; opacity: 0.7; }
.nisraa-reach { display: block; font-weight: 600; }
.hair-repair-arrow {
  text-align: center;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hair-repair-arrow i { font-size: 18px; }

/* =========================================================
   CONCERNS SECTION
   ========================================================= */
.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.concern-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.concern-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.concern-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 16px;
}
.concern-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.concern-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =========================================================
   WEBSITE BENEFITS
   ========================================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
/* ── Expert Collaboration — Simple Cards (matches ingredient card style) ── */
.expert-simple-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.expert-simple-card {
  background: var(--white);
  border: 1.5px solid #e8ddd5;
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  flex: 0 0 calc(33.333% - 14px);
  max-width: 260px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.expert-simple-card:hover {
  box-shadow: 0 8px 32px rgba(44,26,14,0.10);
  transform: translateY(-3px);
}
.expert-simple-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f5ede4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 20px;
  color: var(--primary);
}
.expert-simple-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.expert-simple-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 700px) {
  .expert-simple-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 701px) and (max-width: 900px) {
  .expert-simple-card {
    flex: 0 0 calc(50% - 10px);
    max-width: none;
  }
}

/* ── Safety & Quality grid (Why Nisraa) ── */
.safety-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

/* Mobile: stack both grids to single column */
@media (max-width: 700px) {
  .expert-cards-grid,
  .safety-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
  .expert-card {
    padding: 28px 20px;
  }
}

/* Tablet: 2 columns */
@media (min-width: 701px) and (max-width: 900px) {
  .expert-cards-grid,
  .safety-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.benefit-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin: 0 auto 18px;
}
.benefit-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.website-summary-banner {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.website-summary-banner p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
}
.website-summary-banner strong { color: var(--accent); }

/* =========================================================
   REWARDS SECTION
   ========================================================= */
.rewards-section { background: var(--bg-alt); }
.rewards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.rewards-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px;
}
.reward-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: var(--text-secondary);
}
.step-num {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Loyalty Tracker Widget */
.loyalty-tracker {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.tracker-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.tracker-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tracker-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
  position: relative;
}
.tracker-dot span { font-size: 11px; font-weight: 600; }
.tracker-dot i { font-size: 12px; }
.tracker-dot.filled {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
}
.tracker-dot.current {
  border-color: var(--accent);
  color: var(--white);
  animation: pulse 2s infinite;
}
.tracker-dot.reward {
  background: rgba(201,169,110,0.15);
  border-color: var(--accent);
  color: var(--accent);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
  50% { box-shadow: 0 0 0 6px rgba(201,169,110,0.3); }
}
.tracker-status {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}
.tracker-message {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* =========================================================
   PROOF SECTION
   ========================================================= */
.proof-section { background: var(--white); }
.proof-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 24px;
}
.proof-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--bg-alt);
  transition: var(--transition);
  cursor: pointer;
}
.proof-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.proof-btn.shopee:hover { border-color: #ee4d2d; }
.proof-btn.tiktok:hover { border-color: #010101; }
.proof-btn.viral:hover { border-color: var(--accent); }
.proof-btn.live:hover { border-color: var(--primary); }
.proof-btn-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.proof-btn.shopee .proof-btn-icon { background: rgba(238,77,45,0.1); color: #ee4d2d; }
.proof-btn.tiktok .proof-btn-icon { background: rgba(0,0,0,0.06); color: #010101; }
.proof-btn.viral .proof-btn-icon { background: rgba(201,169,110,0.15); color: var(--accent-dark); }
.proof-btn.live .proof-btn-icon { background: rgba(26,58,46,0.08); color: var(--primary); }
.proof-btn-content { flex: 1; }
.proof-btn-content strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.proof-btn-content span {
  font-size: 12.5px;
  color: var(--text-light);
}
.proof-btn-arrow {
  font-size: 12px;
  color: var(--text-light);
}
.proof-footnote {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-light);
  font-style: italic;
}

/* =========================================================
   TESTIMONIAL SCREENSHOT SLIDER
   ========================================================= */
.testimonial-slider-section {
  margin-top: 48px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  border: 1px solid var(--border-light);
}
.testimonial-slider-header {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.tab-group {
  display: flex;
  gap: 8px;
  background: var(--white);
  border-radius: 40px;
  padding: 4px;
  border: 1px solid var(--border);
}
.tab-btn {
  background: transparent;
  border: none;
  border-radius: 36px;
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn.active {
  background: var(--primary);
  color: var(--white);
}
.testimonial-tab { display: none; }
.testimonial-tab.active { display: block; }
.tslider-track {
  display: flex;
  gap: 16px;
  min-height: 420px;
}
.tslide {
  flex: 0 0 calc(50% - 8px);
  display: flex;
}
.tslide-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  text-align: center;
  color: var(--text-light);
  gap: 10px;
  min-height: 260px;
}
.tslide-placeholder i { font-size: 36px; color: #ee4d2d; }
.tslide-placeholder.tiktok-slide i { color: #010101; font-size: 36px; }
.tslide-placeholder span { font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.tslide-placeholder p { font-size: 12px; color: var(--text-light); }
.tslide img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: top;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border: 1px solid var(--border-light);
}
@media (max-width: 768px) {
  .tslide img { height: 320px; }
}
.tslider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.tslider-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--primary);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.tslider-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.tslider-dots { display: flex; gap: 6px; }
.tdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.tdot.active { background: var(--primary); transform: scale(1.2); }
.slider-view-more {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 20px;
}
.slider-view-more a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.slider-view-more a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .testimonial-slider-section { padding: 24px 16px 20px; }
  .tslide { flex: 0 0 100%; }
  .tab-btn { padding: 9px 14px; font-size: 12.5px; }
}

/* =========================================================
   SHOP FOMO INLINE BANNER
   ========================================================= */
.shop-fomo-inline {
  background: linear-gradient(90deg, #b84a00 0%, #e06000 60%, #d45a00 100%);
  color: #fff;
  text-align: center;
  padding: 13px 20px;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}
.shop-fomo-inline .fomo-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.2s infinite;
  flex-shrink: 0;
}
.shop-fomo-inline i.fa-fire { color: #ffe08a; font-size: 15px; }
.fomo-inline-cta {
  background: #fff;
  color: #b84a00;
  font-weight: 700;
  font-size: 13px;
  padding: 5px 16px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.fomo-inline-cta:hover { background: #ffe08a; }
@media (max-width: 480px) {
  .shop-fomo-inline { font-size: 13px; padding: 11px 14px; gap: 7px; }
}

/* =========================================================
   FAQ + SUPPORT SIDE BY SIDE
   ========================================================= */
.faq-support-section { background: var(--bg-alt); }
.faq-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.faq-column .section-header,
.support-column .section-header { margin-bottom: 28px; }

/* Support Card */
.support-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.support-wa-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.support-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.support-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.support-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border-left: 3px solid #25D366;
}
.support-hour-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-secondary);
}
.support-hour-item i { color: #25D366; font-size: 13px; }
.btn-wa-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37,211,102,0.25);
  letter-spacing: 0.01em;
}
.btn-wa-support:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-wa-support i { font-size: 20px; }
.support-topics-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}
.support-topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.support-topic-tags span {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12.5px;
  padding: 5px 11px;
  border-radius: 20px;
  font-weight: 500;
}
.support-topic-tags span i { color: var(--primary); font-size: 11px; }

@media (max-width: 1024px) {
  .faq-support-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .support-card { padding: 24px 20px; }
}

/* =========================================================
   BRAND STORY
   ========================================================= */
.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.brand-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.credential i { color: var(--primary); font-size: 14px; }
.credential-badge-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.big-badge {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.big-badge.secondary {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
}
.big-badge i { font-size: 24px; color: var(--accent); margin-bottom: 4px; }
.big-badge.secondary i { color: var(--primary); }
.big-badge strong { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.big-badge.secondary strong { color: var(--primary); }
.big-badge p { font-size: 14px; opacity: 0.75; }
.big-badge.secondary p { color: var(--text-secondary); }

/* =========================================================
   INGREDIENTS SECTION
   ========================================================= */
.ingredients-section { background: var(--white); }
.ingredients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.ingredient-card {
  flex: 0 0 calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  box-sizing: border-box;
  min-width: 220px;
}
.ingredient-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.ingredient-card:hover {
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ingredient-card:hover .ing-icon { background: rgba(255,255,255,0.12); color: var(--accent); }
.ingredient-card:hover h4 { color: var(--white); }
.ingredient-card:hover p { color: rgba(255,255,255,0.7); }
.ing-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.ingredient-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  transition: var(--transition);
}
.ingredient-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  transition: var(--transition);
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); background: var(--bg-alt); }
.faq-icon { font-size: 13px; color: var(--text-light); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }
/* =========================================================
   FAQ ACCORDION — base collapsed state only
   (faq.html inline style block handles fonts & full styling)
   ========================================================= */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  padding-bottom: 0;
  transition: max-height 0.4s ease, padding-bottom 0.3s ease;
}
@media (max-width: 600px) {
  .faq-answer { padding: 0 14px; padding-bottom: 0; }
}

/* =========================================================
   FINAL CTA SECTION
   ========================================================= */
.final-cta-section {
  background: #1C0F06;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(201,169,110,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.final-cta-copy {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-reassurance {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.final-reassurance a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.final-proof-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.final-proof-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.final-proof-links a:hover { color: var(--accent); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { margin-bottom: 14px; display: inline-flex; }
.footer-logo .logo-img { border-radius: 10px; opacity: 0.95; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cert-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.55);
}
.cert-tag i { font-size: 9px; }
.footer-nav-group h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-nav-group a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-nav-group a:hover { color: var(--accent); }
.footer-nav-group a i { font-size: 11px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* =========================================================
   MOBILE STICKY BOTTOM BAR
   ========================================================= */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 16px 12px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 600;
  transition: var(--transition);
}
.sticky-btn.primary {
  background: var(--primary);
  color: var(--white);
  flex: 1.5;
}
.sticky-btn.primary:hover { background: var(--primary-light); }
.sticky-btn.secondary { color: var(--text-secondary); }
.sticky-btn.secondary:hover { color: var(--primary); background: var(--bg-alt); }
.sticky-btn i { font-size: 16px; }

/* =========================================================
   SHOP PAGE STYLES
   ========================================================= */
.page-hero {
  background: #1C0F06;
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.page-hero .eyebrow-tag { color: var(--accent-light); background: rgba(196,154,108,0.20); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.featured-product-section { padding: 80px 0; }
.featured-product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.featured-product-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
}
.featured-product-name {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}
.featured-product-desc {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}
.product-what-includes {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.product-what-includes h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.product-what-includes ul { display: flex; flex-direction: column; gap: 8px; }
.product-what-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.product-what-includes i { color: var(--primary); font-size: 12px; }
.product-price-big {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.product-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.product-guarantee {
  font-size: 12.5px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-guarantee i { color: var(--primary); }

.product-visual-box {
  background: linear-gradient(135deg, var(--bg-alt), var(--white));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-visual-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.product-icon-big {
  font-size: 80px;
  color: var(--primary);
  margin-bottom: 20px;
  opacity: 0.7;
}
.product-visual-badge {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

/* Products list grid */
.products-section { padding: 64px 0; background: var(--bg-alt); }
.products-section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 32px;
}
.products-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-list-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.product-list-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-list-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
}
.product-list-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.product-list-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.product-list-price {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

/* =========================================================
   PARTNER / AFFILIATE PAGE
   ========================================================= */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.stat-icon { font-size: 32px; color: var(--accent-dark); margin-bottom: 12px; }
.stat-label { font-size: 13px; color: var(--text-secondary); margin-bottom: 6px; }
.stat-val {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.how-it-works-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.how-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.how-step p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

/* Dashboard Preview */
.dashboard-preview {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: var(--white);
}
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.dashboard-title { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.9); }
.dashboard-badge {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(201,169,110,0.2);
  color: var(--accent);
  border-radius: 100px;
  font-weight: 600;
}
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.d-stat {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.d-stat-val {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.d-stat-label { font-size: 11.5px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.dashboard-link-box {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dashboard-link-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 3px; }
.dashboard-link-val { font-size: 13px; color: var(--accent); font-family: monospace; flex: 1; }
.dashboard-copy-btn {
  font-size: 11px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

/* =========================================================
   REWARDS PAGE
   ========================================================= */
.big-loyalty-tracker {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.big-tracker-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}
.big-tracker-sub { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.big-tracker-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.big-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.big-dot.filled {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
}
.big-dot i { font-size: 16px; }
.big-dot.reward {
  background: rgba(201,169,110,0.2);
  border-color: var(--accent);
  color: var(--accent);
}
.big-tracker-cta { margin-top: 24px; }

/* =========================================================
   REVIEW PAGE
   ========================================================= */
.large-proof-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.large-proof-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.large-proof-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.large-proof-btn.shopee:hover { border-color: #ee4d2d; }
.large-proof-btn.tiktok:hover { border-color: #010101; }
.large-proof-btn.viral:hover { border-color: var(--accent); }
.large-proof-btn.live:hover { border-color: var(--primary); }
.large-proof-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.large-proof-btn.shopee .large-proof-icon { background: rgba(238,77,45,0.08); color: #ee4d2d; }
.large-proof-btn.tiktok .large-proof-icon { background: rgba(0,0,0,0.05); color: #010101; }
.large-proof-btn.viral .large-proof-icon { background: rgba(201,169,110,0.1); color: var(--accent-dark); }
.large-proof-btn.live .large-proof-icon { background: rgba(26,58,46,0.06); color: var(--primary); }
.large-proof-content { flex: 1; }
.large-proof-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.large-proof-content span { font-size: 13px; color: var(--text-light); }
.large-proof-btn .proof-btn-arrow { font-size: 14px; color: var(--text-light); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,58,46,0.08);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.contact-info-item span { font-size: 13.5px; color: var(--text-secondary); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .hero-logo-top-img { height: 72px; }
  .tech-inner { grid-template-columns: 1fr; }
  .tech-visual { display: none; }
  .brand-story-inner { grid-template-columns: 1fr; }
  .brand-story-visual { display: none; }
  .rewards-inner { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .website-summary-banner { flex-direction: column; text-align: center; }
  .featured-product-inner { grid-template-columns: 1fr; }
  .product-visual-box { display: none; }
}

@media (max-width: 768px) {
  /* ── Our Story / Founder Section Mobile Fix ── */
  .founder-img-wrap { position: relative !important; top: auto !important; max-width: 280px; margin: 0 auto; }
  .founder-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .brand-story-inner { gap: 32px !important; }
  .story-timeline { padding-left: 20px; margin-left: 4px; }
  .story-beat::before { left: -28px; }

  .section, .section-alt { padding: 56px 0; }
  .hero { padding: 40px 0 60px; }
  .hero-logo-top { padding-bottom: 20px; }
  .hero-logo-top-img { height: 60px; }
  .hero-logo-divider { margin-bottom: 32px; }
  .hero-eyebrow { font-size: 9.5px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-outline { width: 100%; justify-content: center; }
  .product-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .product-card.featured { transform: none; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-vs { display: none; }
  .concerns-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .ingredients-grid { gap: 16px; }
  .ingredient-card { flex: 0 0 calc(50% - 8px); width: calc(50% - 8px); min-width: 0; }
  .proof-buttons-grid { grid-template-columns: 1fr; }
  .large-proof-buttons { grid-template-columns: 1fr; }
  .trust-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-divider { display: none; }
  .how-it-works-steps { grid-template-columns: repeat(2, 1fr); }
  .how-it-works-steps::before { display: none; }
  .stat-grid { grid-template-columns: 1fr; }
  .dashboard-stats { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 64px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .products-list-grid { grid-template-columns: 1fr; }
  .final-cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 26px; }
  .hero-trust-pills .trust-pill { font-size: 10.5px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .concerns-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .ingredients-grid { gap: 14px; }
  .ingredient-card { flex: 0 0 100%; width: 100%; min-width: 0; }
  .how-it-works-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .website-summary-banner { padding: 28px 20px; }
  .big-loyalty-tracker { padding: 32px 20px; }
}

/* ============================================================
   NEW SECTIONS CSS — FIBERHANCE, VIDEOS, FOMO, PRICING,
   WHATSAPP, PROGRESS WIDGET, BUNDLE, ORDER SUCCESS
   ============================================================ */

/* FOMO BAR */
.fomo-bar {
  background: linear-gradient(90deg, #7B2D00, #C84B00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 999;
  flex-wrap: wrap;
}
.fomo-pulse {
  width: 10px; height: 10px;
  background: #FFD700;
  border-radius: 50%;
  display: inline-block;
  animation: fomoGlow 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes fomoGlow {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 rgba(255,215,0,0.6); }
  50% { opacity:0.7; transform:scale(1.3); box-shadow: 0 0 0 6px rgba(255,215,0,0); }
}
.fomo-cta {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
.fomo-cta:hover { background: rgba(255,255,255,0.3); }

/* PRODUCT CARD IMAGES */
.product-img-wrapper {
  width: 100%;
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  background: #f5ede3;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  margin-bottom: 0;
  padding: 12px;
  box-sizing: border-box;
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.product-card-img:hover { transform: scale(1.04); }

/* PRICING — ORIGINAL + PROMO */
.product-price-original {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 13px;
  margin-right: 6px;
}
.product-savings-badge {
  background: #C84B00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.product-list-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.product-list-original {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 13px;
}
.product-price-original-sm { text-decoration: line-through; color: var(--text-light); font-size: 12px; }

/* BUNDLE DEAL CARD — homepage */
.bundle-deal-card {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.bundle-deal-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(201,169,110,0.15), transparent 60%);
  pointer-events: none;
}
.bundle-deal-badge {
  position: absolute; top: 16px; right: 20px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 11px; font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.bundle-deal-content { flex: 1; }
.bundle-deal-content h3 { font-family: 'DM Sans','Inter',sans-serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.bundle-deal-content p { font-size: 13.5px; color: rgba(255,255,255,0.75); margin-bottom: 12px; }
.bundle-price-row { display: flex; align-items: center; gap: 10px; }
.bundle-price-row .product-price-original { color: rgba(255,255,255,0.5); font-size: 14px; }
.bundle-price-row .product-price { color: var(--accent); font-size: 26px; font-weight: 700; }

/* BUNDLE CARD in shop product list */
.bundle-card { border: 2px solid var(--accent) !important; background: linear-gradient(to bottom, rgba(201,169,110,0.05), #fff) !important; }

/* VIDEO SECTION */
.video-section { background: var(--bg-alt); }
.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.video-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.video-card-label {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.video-card-label i { color: var(--primary); }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrapper.short {
  padding-bottom: 177%;
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-card.featured-video { grid-row: span 2; }
.fh-video-embed .video-label {
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.fh-video-embed .video-label i { color: var(--primary); }

/* FIBERHANCE SECTION */
.fiberhance-section { background: var(--bg); }
.fiberhance-award-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--primary-dark);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.fh-award-item {
  display: flex; align-items: center; gap: 12px; color: #fff; padding: 0 24px;
}
.fh-award-item i { font-size: 22px; color: var(--accent); }
.fh-award-item strong { display: block; font-size: 14px; color: #fff; }
.fh-award-item span { font-size: 12px; color: rgba(255,255,255,0.6); }
.fh-award-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.fiberhance-what {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.fiberhance-what-text h3 {
  font-family: 'DM Sans','Inter',sans-serif;
  font-size: 22px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 16px;
}
.fiberhance-what-text p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.fiberhance-how-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 40px;
}
.fh-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.fh-step-num {
  font-family: 'DM Sans','Inter',sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--accent-dark); margin-bottom: 12px;
  text-transform: uppercase;
}
.fh-step-icon {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 22px;
  margin: 0 auto 14px;
}
.fh-step h4 { font-family: 'DM Sans','Inter',sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.fh-step p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }
.fh-step-arrow {
  font-size: 18px; color: var(--accent);
  padding-top: 48px;
  flex-shrink: 0;
}
.fiberhance-vs {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.fh-vs-label { font-size: 13px; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.ordinary-label { color: #9e3a2a; }
.nisraa-label { color: var(--primary); }
.fh-vs-bar { display: flex; align-items: center; gap: 12px; }
.fh-bar-inner {
  height: 10px; border-radius: 100px;
}
.fh-bar-inner.ordinary { width: 30%; background: #d9ccc4; }
.fh-bar-inner.nisraa { width: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.fh-vs-bar span { font-size: 12.5px; color: var(--text-light); }

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 1100;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  color: #fff;
}
.whatsapp-tooltip {
  position: absolute;
  right: 62px;
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ORDER SUCCESS PANEL */
.order-success-inner {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  margin-top: 24px;
}
.order-success-icon { font-size: 48px; color: #2d7a4f; margin-bottom: 16px; }
.order-success-inner h3 { font-family: 'DM Sans','Inter',sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.order-success-inner p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.progress-reveal h4 { font-family: 'DM Sans','Inter',sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.loyalty-track { margin: 0 auto 16px; max-width: 400px; }
.loyalty-bar-wrap {
  height: 12px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
.loyalty-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 100px;
  transition: width 1s ease;
}
.loyalty-steps {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--text-light); font-weight: 600;
}
.loyalty-steps .free-step { color: var(--accent); }
.loyalty-msg { font-size: 14px; font-weight: 600; color: var(--primary); }

/* =========================================================
   YOUTUBE THUMBNAIL — OPENS ON YOUTUBE (avoids Error 153)
   ========================================================= */
.yt-facade {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  cursor: pointer;
  overflow: hidden;
  background: #000;
  display: block;
  text-decoration: none;
}
.yt-facade img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s, transform 0.3s;
  opacity: 0.85;
}
.yt-facade:hover img {
  opacity: 0.55;
  transform: translate(-50%, -50%) scale(1.03);
}
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(255,0,0,0.92);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  padding-left: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  pointer-events: none; /* clicks go to parent facade */
}
.yt-facade:hover .yt-play-btn {
  background: #ff0000;
  transform: translate(-50%, -50%) scale(1.12);
}
/* "Watch on YouTube" label */
.yt-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.2s;
}
.yt-facade:hover .yt-label { opacity: 1; }
@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-card.featured-video { grid-row: auto; }
  .yt-play-btn { width: 52px; height: 52px; font-size: 18px; }
  .yt-label { opacity: 1; font-size: 10px; } /* always visible on mobile */
}

/* CHECK MY PROGRESS WIDGET */
.progress-widget {
  max-width: 720px; margin: 0 auto 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.progress-widget .pw-icon { font-size: 40px; color: var(--accent); margin-bottom: 12px; }
.progress-widget h3 { font-family: 'DM Sans','Inter',sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.progress-widget p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.pw-input-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.pw-input-row input {
  flex: 1; min-width: 220px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.pw-input-row input:focus { border-color: var(--primary); }
.pw-hint { font-size: 12px; color: var(--text-light); margin-top: 10px; }
.pw-results-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.pw-back-btn { background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 14px; font-size: 12px; cursor: pointer; color: var(--text-secondary); }
.pw-cat-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.pw-cat-card.free-earned { border-color: var(--accent); background: linear-gradient(to right, rgba(201,169,110,0.06), #fff); }
.pw-cat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.pw-cat-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 17px; flex-shrink: 0; }
.pw-cat-header strong { display: block; font-size: 15px; font-weight: 700; color: var(--text-primary); }
.pw-cat-header span { font-size: 13px; color: var(--text-light); }
.pw-free-badge { margin-left: auto; background: var(--accent); color: var(--primary-dark); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.pw-cat-bar { position: relative; margin-bottom: 10px; }
.pw-cat-bar-fill { height: 8px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 100px; transition: width 1s ease; }
.pw-cat-steps { display: flex; justify-content: space-between; font-size: 11px; margin-top: 4px; color: var(--text-light); }
.pw-cat-steps .done { color: var(--primary); font-weight: 700; }
.pw-cat-msg { font-size: 13px; color: var(--text-secondary); }
.pw-summary-inner { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 24px 0; }
.pw-stat { text-align: center; background: var(--bg-alt); border-radius: var(--radius-sm); padding: 14px 24px; }
.pw-stat strong { display: block; font-size: 24px; font-weight: 700; color: var(--primary); }
.pw-stat span { font-size: 12px; color: var(--text-light); }
.pw-stat.highlight { background: var(--primary); }
.pw-stat.highlight strong, .pw-stat.highlight span { color: #fff; }
.pw-cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.pw-notfound { text-align: center; padding: 32px 0; }
.pw-notfound i { font-size: 40px; color: var(--text-light); margin-bottom: 12px; display: block; }
.pw-notfound h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pw-notfound p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.pw-notfound .btn { margin: 0 6px; }

/* COUNTING RULES */
.counting-rules {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.counting-rules h4 { font-family: 'DM Sans','Inter',sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.counting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.counting-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px; text-align: center; }
.counting-item i { font-size: 18px; color: var(--primary); display: block; margin-bottom: 6px; }
.counting-item span { display: block; font-size: 12px; color: var(--text-secondary); margin-bottom: 2px; }
.counting-item strong { font-size: 13px; color: var(--accent-dark); }
.counting-note { font-size: 12.5px; color: var(--text-light); font-style: italic; }

/* RESPONSIVE for new sections */
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card.featured-video { grid-column: span 2; }
  .fiberhance-what { grid-template-columns: 1fr; }
  .fiberhance-how-grid { flex-direction: column; align-items: center; }
  .fh-step-arrow { padding-top: 0; transform: rotate(90deg); }
}
@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-card.featured-video { grid-column: span 1; grid-row: span 1; }
  .fomo-bar { font-size: 12px; gap: 8px; }
  .bundle-deal-card { flex-direction: column; text-align: center; }
  .counting-grid { grid-template-columns: repeat(2, 1fr); }
  .progress-widget { padding: 24px 18px; }
  .fiberhance-award-bar { flex-direction: column; gap: 16px; }
  .fh-award-divider { width: 40px; height: 1px; }
}


/* =========================================================
   VIDEO SECTION LAYOUT FIX
   Paste at the VERY BOTTOM of css/style.css
   ========================================================= */

.video-section {
  background: var(--bg-alt);
}

.video-section .container {
  max-width: 1240px;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(26, 58, 46, 0.08);
  min-width: 0;
}

.video-card.featured-video {
  grid-row: span 2;
}

.video-card-label {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  background: #fcfaf7;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-card-label i {
  color: var(--primary);
}

.video-wrapper,
.video-wrapper.short {
  position: relative;
  height: auto;
  padding-bottom: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper {
  aspect-ratio: 16 / 9;
}

.video-wrapper.short {
  aspect-ratio: 9 / 16;
}

.video-wrapper iframe,
.video-wrapper .yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper .yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tablet */
@media (max-width: 1100px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-card.featured-video {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .video-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-card {
    border-radius: 16px;
  }

  .video-card.featured-video {
    grid-column: auto;
    grid-row: auto;
  }

  .video-card-label {
    padding: 11px 14px;
    font-size: 12.5px;
  }

  .video-wrapper {
    aspect-ratio: 16 / 9;
  }

  .video-wrapper.short {
    aspect-ratio: 9 / 16;
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .yt-play-btn {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }

  .yt-label {
    opacity: 1;
    font-size: 10px;
  }
}
