
  :root {
    --cream: #FAF6F0;
    --warm-white: #FDF9F4;
    --honey: #C8831A;
    --honey-light: #F5A623;
    --amber: #E8792A;
    --teal: #1A6B5A;
    --teal-dark: #0F4A3D;
    --teal-light: #2A8A72;
    --blush: #F2E8DF;
    --charcoal: #1C1C1E;
    --mid-grey: #5A5A5A;
    --light-grey: #9A9A9A;
    --red-alert: #C0392B;
    --border: #E8DDD0;
    --shadow: rgba(28,28,30,0.08);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── ALERT BAR ─── */
  .alert-bar {
    background: var(--teal-dark);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .alert-bar span { color: var(--honey-light); font-weight: 700; }

  /* ─── TICKER ─── */
  .ticker-wrap {
    background: var(--teal);
    color: #fff;
    padding: 9px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .ticker-track {
    display: inline-block;
    animation: ticker 28s linear infinite;
    font-size: 12.5px;
    letter-spacing: 0.01em;
  }
  .ticker-track .dot { color: var(--honey-light); margin: 0 12px; }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── HEADER ─── */
  header {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px var(--shadow);
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--teal-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .logo span { color: var(--honey); }
  .header-trust {
    font-size: 12px;
    color: var(--mid-grey);
    text-align: right;
    line-height: 1.4;
  }
  .header-trust strong { color: var(--teal); display: block; font-size: 13px; }

  /* ─── HERO ─── */
  .hero {
    background: linear-gradient(160deg, #0F4A3D 0%, #1A6B5A 60%, #2A8A72 100%);
    color: #fff;
    padding: 52px 20px 44px;
    text-align: center;
    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='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 40px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--honey-light);
    margin-bottom: 18px;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5.5vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 em { color: var(--honey-light); font-style: italic; }
  .hero-sub {
    font-size: clamp(15px, 2.5vw, 18px);
    opacity: 0.88;
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.55;
  }
  .viral-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 32px;
    font-size: 14px;
  }
  .viral-count .num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--honey-light);
    line-height: 1;
  }
  .viral-count .label { text-align: left; opacity: 0.9; font-size: 13px; }

  /* ─── PRODUCT HERO BOX ─── */
  .product-hero {
    background: var(--warm-white);
    border-radius: 20px;
    max-width: 680px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
  }
  .product-hero-img {
    background: linear-gradient(135deg, #f0f9f6 0%, #e8f5f0 100%);
    padding: 28px 20px 16px;
    text-align: center;
    position: relative;
  }
  .product-hero-img img {
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
  }
  .stock-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--red-alert);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .product-hero-body {
    padding: 20px 24px 24px;
    color: var(--charcoal);
  }
  .stars { color: #F5A623; font-size: 18px; letter-spacing: 2px; }
  .review-line { font-size: 13px; color: var(--mid-grey); margin-bottom: 12px; }
  .price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
  }
  .price-big {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--teal-dark);
    line-height: 1;
  }
  .price-was { font-size: 16px; color: var(--light-grey); text-decoration: line-through; }
  .price-note { font-size: 13px; color: var(--mid-grey); margin-bottom: 16px; }
  .bogo-pill {
    display: inline-block;
    background: #FFF3E0;
    border: 1.5px solid var(--honey);
    color: var(--honey);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
  }
  .hero-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 100%);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 20px rgba(200,131,26,0.4);
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .hero-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,131,26,0.5); }
  .hero-cta-sub {
    font-size: 12px;
    color: var(--mid-grey);
    text-align: center;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
  .hero-cta-sub span { display: flex; align-items: center; gap: 4px; }

  /* ─── SECTION WRAPPER ─── */
  .section { padding: 56px 20px; max-width: 760px; margin: 0 auto; }
  .section-sm { padding: 40px 20px; max-width: 760px; margin: 0 auto; }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 8px;
  }
  .section-title em { color: var(--teal); font-style: italic; }
  .section-sub {
    text-align: center;
    color: var(--mid-grey);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.6;
  }
  .divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--honey), var(--amber));
    margin: 12px auto 28px;
    border-radius: 2px;
  }

  /* ─── PRESS LOGOS ─── */
  .press-bar {
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 20px;
    text-align: center;
  }
  .press-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--light-grey);
    margin-bottom: 12px;
  }
  .press-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 28px;
  }
  .press-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 14px;
    color: #aaa;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ─── SOCIAL PROOF STRIP ─── */
  .social-strip {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E5 100%);
    border: 1px solid #F0DFC8;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .stat-block { flex: 1; min-width: 130px; text-align: center; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1;
  }
  .stat-label { font-size: 12px; color: var(--mid-grey); margin-top: 4px; }
  .stat-divider { width: 1px; height: 48px; background: #E8DDD0; }

  /* ─── SYMPTOM CHECKER ─── */
  .symptom-box {
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 28px;
  }
  .symptom-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--teal-dark);
  }
  .symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.1s;
  }
  .symptom-item:last-child { border-bottom: none; }
  .symptom-item input[type="checkbox"] { display: none; }
  .check-box {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid var(--border);
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    background: #fff;
  }
  .symptom-item.checked .check-box {
    background: var(--teal);
    border-color: var(--teal);
  }
  .symptom-item.checked .check-box::after {
    content: '✓';
    color: #fff;
    font-size: 14px;
    font-weight: 700;
  }
  .symptom-text { font-size: 15px; color: var(--charcoal); }
  .symptom-result {
    display: none;
    margin-top: 20px;
    background: linear-gradient(135deg, #FFF3E0, #FFEDE0);
    border-left: 4px solid var(--amber);
    border-radius: 8px;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.7;
  }
  .symptom-result.show { display: block; }
  .symptom-result strong { color: var(--teal-dark); }

  /* ─── OFFER SECTION ─── */
  .offer-section {
    background: linear-gradient(160deg, #0F4A3D 0%, #1A6B5A 100%);
    padding: 56px 20px;
    text-align: center;
    color: #fff;
  }
  .offer-section .section-title { color: #fff; }
  .offer-section .section-title em { color: var(--honey-light); }
  .offer-section .section-sub { color: rgba(255,255,255,0.75); }
  .offer-section .divider { background: linear-gradient(90deg, var(--honey-light), var(--amber)); }
  .bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 700px;
    margin: 0 auto 28px;
  }
  .bundle-card {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 22px 18px;
    position: relative;
    transition: transform 0.15s, border-color 0.15s;
    cursor: pointer;
  }
  .bundle-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.35); }
  .bundle-card.popular {
    border-color: var(--honey-light);
    background: rgba(245,166,35,0.1);
  }
  .bundle-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--honey);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .bundle-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; opacity: 0.9; }
  .bundle-supply { font-size: 12px; opacity: 0.6; margin-bottom: 14px; }
  .bundle-price {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--honey-light);
    line-height: 1;
  }
  .bundle-price-note { font-size: 12px; opacity: 0.6; margin-bottom: 14px; }
  .bundle-tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
  }
  .bundle-cta {
    display: block;
    background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 100%);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    max-width: 480px;
    margin: 0 auto 14px;
    display: block;
    box-shadow: 0 8px 24px rgba(200,131,26,0.4);
    transition: transform 0.15s;
  }
  .bundle-cta:hover { transform: translateY(-2px); }
  .offer-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    opacity: 0.8;
    margin-top: 8px;
  }
  .offer-trust span { display: flex; align-items: center; gap: 5px; }

  /* ─── WHY IT WORKS ─── */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 8px;
  }
  .why-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
  }
  .why-icon { font-size: 30px; margin-bottom: 10px; }
  .why-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; color: var(--teal-dark); }
  .why-desc { font-size: 13px; color: var(--mid-grey); line-height: 1.6; }

  /* ─── INGREDIENTS ─── */
  .ingredient-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .ingredient-row:last-child { border-bottom: none; }
  .ing-num {
    width: 36px;
    height: 36px;
    background: var(--teal);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .ing-body { flex: 1; }
  .ing-name { font-weight: 700; font-size: 15px; color: var(--teal-dark); margin-bottom: 3px; }
  .ing-role { font-size: 12px; color: var(--honey); font-weight: 600; margin-bottom: 4px; letter-spacing: 0.02em; text-transform: uppercase; }
  .ing-desc { font-size: 13.5px; color: var(--mid-grey); line-height: 1.6; }

  /* ─── TESTIMONIALS ─── */
  .testimonials-bg { background: var(--blush); padding: 56px 20px; }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 760px;
    margin: 0 auto;
  }
  .testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 4px 16px var(--shadow);
  }
  .testi-stars { color: var(--honey-light); font-size: 14px; margin-bottom: 10px; }
  .testi-quote {
    font-size: 14px;
    line-height: 1.65;
    color: var(--charcoal);
    margin-bottom: 14px;
    font-style: italic;
  }
  .testi-quote strong { font-style: normal; color: var(--teal-dark); }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
    flex-shrink: 0;
  }
  .testi-name { font-weight: 700; font-size: 13px; color: var(--charcoal); }
  .testi-verified { font-size: 11px; color: var(--teal); }

  /* ─── COMPARISON TABLE ─── */
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
  }
  .compare-table thead tr { background: var(--teal-dark); color: #fff; }
  .compare-table thead th {
    padding: 14px 16px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
  }
  .compare-table thead th:first-child { text-align: left; }
  .compare-table tbody tr { background: #fff; border-bottom: 1px solid var(--border); }
  .compare-table tbody tr:nth-child(even) { background: var(--warm-white); }
  .compare-table td { padding: 12px 16px; text-align: center; }
  .compare-table td:first-child { text-align: left; font-weight: 500; color: var(--charcoal); }
  .yes { color: var(--teal); font-weight: 700; font-size: 16px; }
  .no { color: #C0392B; font-size: 16px; }

  /* ─── GUARANTEE ─── */
  .guarantee-box {
    background: linear-gradient(135deg, #F0F9F6 0%, #E8F5F0 100%);
    border: 2px solid #C5E8DC;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
  }
  .guarantee-icon { font-size: 52px; margin-bottom: 12px; }
  .guarantee-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 10px;
  }
  .guarantee-text { font-size: 15px; color: var(--mid-grey); line-height: 1.7; }

  /* ─── FAQ ─── */
  .faq-item {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .faq-q {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--teal-dark);
    user-select: none;
  }
  .faq-q::after { content: '+'; font-size: 22px; color: var(--honey); transition: transform 0.2s; }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--mid-grey); line-height: 1.7; }
  .faq-item.open .faq-a { display: block; }

  /* ─── STICKY CTA (MOBILE) ─── */
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    z-index: 200;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  }
  .sticky-cta-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 480px;
    margin: 0 auto;
  }
  .sticky-price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--teal-dark); white-space: nowrap; }
  .sticky-price small { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 400; color: var(--light-grey); display: block; }
  .sticky-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
  }

  /* ─── FOOTER DISCLAIMER ─── */
  .disclaimer {
    background: #F0EDE8;
    border-top: 1px solid var(--border);
    padding: 28px 20px;
    text-align: center;
    font-size: 11px;
    color: #888;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
  }
  footer { 
    background: #EDEBE6;
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 16px 20px 100px;
    font-size: 12px;
    color: #999;
  }
  footer a { color: #888; text-decoration: none; margin: 0 8px; }

  /* ─── LIVE NOTIFICATION ─── */
  .notif {
    position: fixed;
    bottom: 20px;
    left: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    max-width: 260px;
    z-index: 300;
    display: none;
    animation: slideIn 0.3s ease;
  }
  .notif.show { display: block; }
  @keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  .notif-dot { display: inline-block; width: 8px; height: 8px; background: #2ECC71; border-radius: 50%; margin-right: 6px; }
  .notif-name { font-weight: 700; color: var(--teal-dark); }

  /* ─── URGENCY BAR ─── */
  .urgency-bar {
    background: var(--red-alert);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
  }
  .urgency-bar span { font-weight: 800; font-size: 16px; }
  #countdown { font-weight: 800; color: var(--honey-light); }

  /* ─── MOBILE ─── */
  @media (max-width: 600px) {
    .header-trust { display: none; }
    .product-hero-img img { height: 160px; }
    .stat-divider { display: none; }
    .stat-block { min-width: 80px; }
    .sticky-cta { display: block; }
    .bundle-cta { margin-bottom: 80px; }
    .testi-grid { grid-template-columns: 1fr; }
  }
