@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --orange: #E8622A;
  --orange-dark: #c44f1e;
  --orange-light: #fef0e9;
  --black: #111111;
  --gray-1: #1a1a1a;
  --gray-2: #333333;
  --gray-3: #666666;
  --gray-4: #999999;
  --gray-5: #cccccc;
  --gray-6: #e8e8e8;
  --gray-7: #f5f5f3;
  --white: #ffffff;
  --font-head: 'Times New Roman', Times, Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--black); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar { background: var(--black); color: var(--white); height: 40px; overflow: hidden; position: relative; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 35s linear infinite; align-items: center; height: 100%; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; padding: 0 40px; letter-spacing: 0.02em; }
.ticker-item a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── NAVIGATION ─── */
.nav-wrapper { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--gray-6); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 68px; max-width: 1400px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 800; font-size: 22px; letter-spacing: -0.5px; }
.nav-logo-icon { width: 32px; height: 32px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.nav-logo-icon span { color: white; font-size: 16px; font-weight: 800; font-family: var(--font-head); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link { font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); transition: background 0.2s; color: var(--gray-2); position: relative; }
.nav-link:hover { background: var(--gray-7); color: var(--black); }
.nav-link.has-mega:hover .mega-menu { display: block; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-store-link { font-size: 13.5px; font-weight: 500; color: var(--gray-3); padding: 7px 14px; border-radius: var(--radius-sm); transition: all 0.2s; }
.nav-store-link:hover { background: var(--gray-7); color: var(--black); }
.cart-btn { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; background: var(--black); color: var(--white); padding: 8px 18px; border-radius: var(--radius-sm); transition: background 0.2s; }
.cart-btn:hover { background: var(--gray-1); }
.cart-count { background: var(--orange); color: white; width: 18px; height: 18px; border-radius: 50%; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* ─── MEGA MENU ─── */
.mega-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-6); border-bottom: 1px solid var(--gray-6); box-shadow: var(--shadow-lg); z-index: 200; }
.nav-link.has-mega { position: static; }
.mega-inner { max-width: 1400px; margin: 0 auto; padding: 32px 40px; }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mega-category { }
.mega-cat-title { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-4); margin-bottom: 14px; }
.mega-product { display: flex; align-items: center; gap: 12px; padding: 8px; border-radius: var(--radius-md); transition: background 0.2s; }
.mega-product:hover { background: var(--gray-7); }
.mega-product-img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; background: var(--gray-6); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.mega-product-info { }
.mega-product-name { font-size: 13px; font-weight: 600; color: var(--black); }
.mega-product-sub { font-size: 12px; color: var(--gray-3); margin-top: 1px; }
.mega-badge { display: inline-block; background: var(--orange-light); color: var(--orange); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-left: 4px; }

/* ─── HERO ─── */
.hero { min-height: 88vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; max-width: 1400px; margin: 0 auto; padding: 60px 40px; gap: 60px; }
.hero-content { }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-light); color: var(--orange-dark); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 14px; border-radius: 99px; margin-bottom: 24px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero-title { font-family: var(--font-head); font-size: clamp(42px, 5.5vw, 72px); font-weight: 800; line-height: 1.0; letter-spacing: -2px; color: var(--black); margin-bottom: 20px; }
.hero-title em { font-style: normal; color: var(--orange); }
.hero-subtitle { font-size: 18px; color: var(--gray-3); line-height: 1.7; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: white; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 14px 28px; border-radius: var(--radius-sm); transition: all 0.2s; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,98,42,0.35); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--black); font-size: 14px; font-weight: 600; padding: 14px 28px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-5); transition: all 0.2s; }
.btn-secondary:hover { border-color: var(--black); background: var(--gray-7); }
.hero-trust { display: flex; align-items: center; gap: 24px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--gray-6); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--gray-2); }
.trust-icon { width: 20px; height: 20px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 10px; height: 10px; fill: white; }
.hero-visual { position: relative; }
.hero-product-display { background: var(--gray-7); border-radius: var(--radius-xl); padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 480px; position: relative; overflow: hidden; }
.hero-product-emoji { font-size: 140px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); animation: floatAnim 4s ease-in-out infinite; }
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.hero-rating-badge { position: absolute; bottom: 28px; left: 28px; background: white; border-radius: var(--radius-md); padding: 12px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; }
.rating-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.rating-text { font-size: 13px; font-weight: 600; }
.rating-sub { font-size: 11px; color: var(--gray-4); }
.hero-nsf-badge { position: absolute; top: 28px; right: 28px; background: white; border-radius: var(--radius-md); padding: 10px 14px; box-shadow: var(--shadow); text-align: center; }
.nsf-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); }
.nsf-value { font-size: 12px; font-weight: 700; color: var(--black); margin-top: 2px; }
.hero-bg-shape { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(232,98,42,0.06); top: -60px; right: -60px; pointer-events: none; }

/* ─── PRESS SECTION ─── */
.press-section { background: var(--gray-7); padding: 40px 40px; border-top: 1px solid var(--gray-6); border-bottom: 1px solid var(--gray-6); }
.press-inner { max-width: 1400px; margin: 0 auto; }
.press-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-4); margin-bottom: 24px; }
.press-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.press-logo { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--gray-4); transition: color 0.2s; letter-spacing: -0.5px; cursor: default; }
.press-logo:hover { color: var(--black); }
.press-logo.vogue { font-style: italic; font-size: 22px; }
.press-logo.forbes { font-size: 20px; letter-spacing: 2px; }
.press-logo.gq { font-size: 24px; }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.section-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1.5px; color: var(--black); line-height: 1.1; }
.section-title em { font-style: normal; color: var(--orange); }
.section-sub { font-size: 17px; color: var(--gray-3); margin-top: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ─── PRODUCTS SECTION ─── */
.products-section { padding: 80px 40px; max-width: 1400px; margin: 0 auto; }
.product-tabs { display: flex; align-items: center; gap: 4px; background: var(--gray-7); border-radius: var(--radius-md); padding: 4px; width: fit-content; margin: 0 auto 40px; }
.product-tab { font-size: 13px; font-weight: 600; padding: 8px 20px; border-radius: 9px; transition: all 0.2s; color: var(--gray-3); cursor: pointer; }
.product-tab.active { background: white; color: var(--black); box-shadow: var(--shadow); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.products-grid.hidden { display: none; }
.product-card { background: var(--white); border: 1px solid var(--gray-6); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; cursor: pointer; position: relative; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card-img { background: var(--gray-7); padding: 28px; display: flex; align-items: center; justify-content: center; min-height: 200px; position: relative; }
.product-card-img .product-emoji { font-size: 80px; transition: transform 0.3s; }
.product-card:hover .product-emoji { transform: scale(1.08); }
.product-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 8px; border-radius: 5px; }
.badge-new { background: var(--black); color: white; }
.badge-bestseller { background: var(--orange); color: white; }
.badge-value { background: #16a34a; color: white; }
.badge-limited { background: #7c3aed; color: white; }
.product-card-body { padding: 18px 20px 20px; }
.product-flavor-name { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.product-desc { font-size: 13px; color: var(--gray-3); line-height: 1.5; margin-bottom: 14px; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 16px; font-weight: 700; color: var(--black); }
.product-price-sub { font-size: 11px; color: var(--gray-4); margin-top: 1px; }
.add-to-cart-btn { background: var(--black); color: white; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 9px 16px; border-radius: var(--radius-sm); transition: all 0.2s; }
.add-to-cart-btn:hover { background: var(--orange); }
.flavor-dots { display: flex; gap: 5px; margin-bottom: 12px; }
.flavor-dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--gray-5); cursor: pointer; transition: border-color 0.15s; }
.flavor-dot:hover, .flavor-dot.active { border-color: var(--black); }

/* ─── BUNDLE SECTION ─── */
.bundles-section { background: var(--gray-7); padding: 80px 40px; }
.bundles-inner { max-width: 1400px; margin: 0 auto; }
.bundles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bundle-card { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-6); transition: all 0.25s; cursor: pointer; }
.bundle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bundle-card.featured { border-color: var(--orange); border-width: 2px; }
.bundle-img { background: linear-gradient(135deg, #fef0e9, #fff); padding: 30px; display: flex; align-items: center; justify-content: center; min-height: 170px; font-size: 60px; }
.bundle-body { padding: 20px; }
.bundle-name { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.bundle-desc { font-size: 13px; color: var(--gray-3); margin-bottom: 14px; }
.bundle-savings { display: inline-block; background: var(--orange-light); color: var(--orange-dark); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; margin-bottom: 12px; }
.bundle-price { font-size: 18px; font-weight: 800; color: var(--black); }
.bundle-old-price { font-size: 13px; color: var(--gray-4); text-decoration: line-through; margin-left: 6px; font-weight: 400; }

/* ─── BENEFITS SECTION ─── */
.benefits-section { padding: 80px 40px; max-width: 1400px; margin: 0 auto; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.benefit-card { text-align: center; padding: 32px 20px; border: 1px solid var(--gray-6); border-radius: var(--radius-lg); transition: all 0.25s; }
.benefit-card:hover { border-color: var(--orange); box-shadow: 0 4px 24px rgba(232,98,42,0.1); transform: translateY(-3px); }
.benefit-icon { font-size: 42px; margin-bottom: 16px; }
.benefit-stat { font-family: var(--font-head); font-size: 34px; font-weight: 800; color: var(--orange); margin-bottom: 6px; }
.benefit-name { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.benefit-desc { font-size: 13px; color: var(--gray-3); line-height: 1.6; }
.benefit-stats-row { display: flex; justify-content: center; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.mini-stat { text-align: center; }
.mini-stat-val { font-size: 13px; font-weight: 700; color: var(--orange); }
.mini-stat-label { font-size: 11px; color: var(--gray-4); }

/* ─── QUALITY SECTION ─── */
.quality-section { background: var(--black); padding: 80px 40px; color: white; }
.quality-inner { max-width: 1400px; margin: 0 auto; }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.quality-content .section-title { color: white; }
.quality-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.quality-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 24px; }
.quality-badge-icon { font-size: 28px; margin-bottom: 12px; }
.quality-badge-name { font-size: 14px; font-weight: 700; color: white; margin-bottom: 6px; }
.quality-badge-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.quality-visual { display: flex; flex-direction: column; gap: 16px; }
.quality-stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 24px 28px; display: flex; align-items: center; gap: 20px; }
.quality-stat-num { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--orange); line-height: 1; }
.quality-stat-label { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.4; }
.quality-stat-sublabel { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ─── COMPARISON ─── */
.comparison-section { padding: 80px 40px; max-width: 900px; margin: 0 auto; }
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.comparison-table th { padding: 14px 20px; font-size: 13px; font-weight: 700; text-align: center; }
.comparison-table th:first-child { text-align: left; }
.comparison-table th.create-col { background: var(--black); color: white; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.comparison-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--gray-6); text-align: center; }
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--gray-2); }
.comparison-table .create-col-data { background: rgba(232,98,42,0.04); }
.check { color: #16a34a; font-size: 18px; }
.cross { color: var(--gray-5); font-size: 18px; }

/* ─── REVIEWS ─── */
.reviews-section { background: var(--gray-7); padding: 80px 40px; }
.reviews-inner { max-width: 1400px; margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.review-card { background: white; border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--gray-6); }
.review-card.featured { border-color: var(--orange); }
.review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--gray-2); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--orange-light); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--orange); flex-shrink: 0; }
.author-name { font-size: 13px; font-weight: 700; color: var(--black); }
.author-verified { font-size: 11px; color: #16a34a; font-weight: 500; }
.review-product-tag { display: inline-block; background: var(--gray-7); color: var(--gray-3); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 4px; margin-top: 14px; }
.celebrity-review { position: relative; overflow: hidden; }
.celebrity-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%); }
.celebrity-review * { position: relative; }
.celebrity-review .review-text { color: rgba(255,255,255,0.8); }
.celebrity-review .author-name { color: white; }
.celebrity-review .author-verified { color: var(--orange); }
.celebrity-review .review-product-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }

/* ─── NEWSLETTER ─── */
.newsletter-section { padding: 80px 40px; max-width: 640px; margin: 0 auto; text-align: center; }
.newsletter-form { display: flex; gap: 8px; margin-top: 28px; }
.newsletter-input { flex: 1; padding: 13px 18px; border: 1.5px solid var(--gray-5); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-body); transition: border-color 0.2s; }
.newsletter-input:focus { outline: none; border-color: var(--black); }
.newsletter-note { font-size: 12px; color: var(--gray-4); margin-top: 12px; }

/* ─── FOOTER ─── */
footer { background: var(--black); color: white; padding: 60px 40px 32px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-name { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.footer-brand-desc { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 300px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-link:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: gap; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── CART DRAWER ─── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 500; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: 420px; background: white; z-index: 501; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.12); }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--gray-6); }
.cart-drawer-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; }
.cart-close { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background 0.2s; }
.cart-close:hover { background: var(--gray-7); }
.cart-shipping-bar { padding: 14px 24px; background: var(--gray-7); font-size: 13px; }
.shipping-progress { margin-top: 8px; background: var(--gray-6); border-radius: 99px; height: 4px; }
.shipping-progress-fill { background: var(--orange); height: 100%; border-radius: 99px; transition: width 0.5s; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty-icon { font-size: 52px; margin-bottom: 16px; }
.cart-empty-text { font-size: 16px; font-weight: 600; color: var(--gray-2); margin-bottom: 6px; }
.cart-empty-sub { font-size: 13px; color: var(--gray-4); margin-bottom: 24px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--gray-6); }
.cart-item-img { width: 70px; height: 70px; background: var(--gray-7); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 3px; }
.cart-item-variant { font-size: 12px; color: var(--gray-4); }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--black); margin-top: 6px; }
.cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 24px; height: 24px; border-radius: 6px; background: var(--gray-7); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; transition: background 0.15s; }
.qty-btn:hover { background: var(--gray-6); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove { font-size: 11px; color: var(--gray-4); text-decoration: underline; cursor: pointer; background: none; border: none; margin-top: 4px; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--gray-6); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-subtotal-label { font-size: 14px; color: var(--gray-3); }
.cart-subtotal-amount { font-size: 18px; font-weight: 800; color: var(--black); }
.checkout-btn { width: 100%; background: var(--black); color: white; font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 16px; border-radius: var(--radius-sm); transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.checkout-btn:hover { background: var(--orange); }
.cart-policies { display: flex; justify-content: center; gap: 20px; margin-top: 14px; }
.cart-policy { font-size: 11px; color: var(--gray-4); display: flex; align-items: center; gap: 4px; }

/* ─── SUBSCRIBE POPUP ─── */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 600; display: none; align-items: center; justify-content: center; }
.popup-overlay.show { display: flex; }
.popup-box { background: white; border-radius: var(--radius-xl); padding: 48px 40px; max-width: 440px; width: 90%; position: relative; animation: popIn 0.3s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes popIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-close-btn { position: absolute; top: 16px; right: 16px; width: 30px; height: 30px; border-radius: 50%; background: var(--gray-7); display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; }
.popup-icon { font-size: 44px; margin-bottom: 16px; text-align: center; }
.popup-title { font-family: var(--font-head); font-size: 26px; font-weight: 800; letter-spacing: -1px; text-align: center; margin-bottom: 8px; }
.popup-sub { font-size: 14px; color: var(--gray-3); text-align: center; line-height: 1.6; margin-bottom: 24px; }
.popup-form { display: flex; flex-direction: column; gap: 10px; }
.popup-input { padding: 13px 16px; border: 1.5px solid var(--gray-5); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-body); }
.popup-input:focus { outline: none; border-color: var(--black); }
.popup-note { font-size: 11px; color: var(--gray-4); text-align: center; }

/* ─── TOAST ─── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--black); color: white; padding: 12px 24px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; z-index: 700; opacity: 0; transition: all 0.3s; pointer-events: none; white-space: nowrap; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 40px 24px; }
  .hero-visual { order: -1; }
  .quality-grid { grid-template-columns: 1fr; gap: 40px; }
  .bundles-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav { padding: 0 20px; }
  .products-section, .bundles-section .bundles-inner, .benefits-section, .comparison-section, .reviews-inner, footer .footer-inner { padding-left: 20px; padding-right: 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .bundles-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .press-logos { gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .newsletter-form { flex-direction: column; }
}

/* ─── ADDITIONAL POLISH ─── */
/* Smooth page transitions */
body { animation: pageFade 0.3s ease; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* Product card hover image zoom */
.product-card-img { overflow: hidden; }

/* Sticky add-to-cart bar on mobile product page */
.sticky-atc {
  position: fixed; bottom: 0; left: 0; right: 0; background: white;
  padding: 12px 20px; border-top: 1px solid var(--gray-6); z-index: 200;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}
@media(max-width:680px) { .sticky-atc { display: flex; } }
.sticky-atc-name { font-size: 14px; font-weight: 700; }
.sticky-atc-price { font-size: 13px; color: var(--gray-3); }

/* Better focus states for accessibility */
a:focus-visible, button:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* Loading skeleton animation */
.skeleton { background: linear-gradient(90deg, var(--gray-6) 25%, var(--gray-7) 50%, var(--gray-6) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 6px; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* Scroll snap on product carousel */
@media(max-width:680px) {
  .products-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 12px; }
  .products-grid::-webkit-scrollbar { height: 3px; }
  .products-grid::-webkit-scrollbar-track { background: var(--gray-6); border-radius: 99px; }
  .products-grid::-webkit-scrollbar-thumb { background: var(--gray-4); border-radius: 99px; }
  .product-card { min-width: 240px; scroll-snap-align: start; flex-shrink: 0; }
}

/* Print styles */
@media print {
  .announcement-bar, .nav-wrapper, .cart-drawer, .cart-overlay, .popup-overlay, .toast, footer { display: none !important; }
  body { font-size: 12pt; }
}

/* Selection color */
::selection { background: var(--orange); color: white; }

/* ═══════════════════════════════════════════════════════
   SECTION 1 — SCIENTIFICALLY PROVEN RESULTS
════════════════════════════════════════════════════════ */
.sci-results-section { padding: 80px 40px; background: var(--white); }
.sci-results-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sci-results-title { font-family: var(--font-head); font-size: clamp(26px,3.2vw,42px); font-weight: 700; letter-spacing: -0.5px; line-height: 1.15; color: var(--black); margin-bottom: 32px; }
.sci-orange { color: var(--orange); display: block; }
.sci-tabs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.sci-tab { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border: 1.5px solid var(--gray-6); border-radius: var(--radius-md); cursor: pointer; transition: all 0.22s; background: white; }
.sci-tab:hover { border-color: var(--orange); background: var(--orange-light); }
.sci-tab.active { border-color: var(--black); background: white; box-shadow: 0 2px 12px rgba(0,0,0,0.09); }
.sci-tab-icon { font-size: 20px; flex-shrink: 0; width: 28px; }
.sci-tab-name { font-size: 14px; font-weight: 700; color: var(--black); }
.sci-tab-desc { font-size: 13px; color: var(--gray-3); line-height: 1.5; margin-top: 3px; max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.sci-tab.active .sci-tab-desc { max-height: 60px; }
.sci-tab-arrow { margin-left: auto; font-size: 16px; color: var(--gray-3); flex-shrink: 0; transition: color 0.2s; }
.sci-tab.active .sci-tab-arrow,
.sci-tab:hover .sci-tab-arrow { color: var(--orange); }
.sci-shop-btn { display: inline-block; background: white; color: var(--black); font-size: 13px; font-weight: 800; letter-spacing: 0.1em; padding: 13px 28px; border: 2px solid var(--black); border-radius: var(--radius-sm); transition: all 0.2s; cursor: pointer; text-decoration: none; }
.sci-shop-btn:hover { background: var(--black); color: white; }
.sci-results-right { display: flex; gap: 16px; height: 440px; }
.sci-stats-col { display: flex; flex-direction: column; gap: 12px; justify-content: center; flex: 0 0 160px; }
.sci-stat-card { background: white; border: 1.5px solid var(--gray-6); border-radius: var(--radius-lg); padding: 20px 16px; transition: all 0.25s; }
.sci-stat-card.active { border-color: var(--orange); box-shadow: 0 4px 18px rgba(232,98,42,0.12); }
.sci-stat-val { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.sci-stat-label { font-size: 12px; color: var(--gray-3); line-height: 1.5; }
.sci-img-col { flex: 1; border-radius: var(--radius-xl); background: linear-gradient(135deg, #1a1a1a 0%, #3a2a1a 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.sci-gym-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }
@media(max-width:900px) {
  .sci-results-inner { grid-template-columns: 1fr; gap: 40px; }
  .sci-results-right { height: 300px; }
}
@media(max-width:580px) { .sci-results-section { padding: 56px 20px; } }

/* ═══════════════════════════════════════════════════════
   SECTION 2 — HOW WE'RE RAISING THE BAR
════════════════════════════════════════════════════════ */
.raising-bar-section { padding: 80px 40px; background: var(--white); border-top: 1px solid var(--gray-6); }
.raising-bar-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.raising-bar-title { font-family: var(--font-head); font-size: clamp(32px,5vw,58px); font-weight: 400; letter-spacing: -1px; color: var(--black); margin-bottom: 14px; }
.raising-bar-sub { font-size: 16px; color: var(--gray-3); max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }
.raising-bar-tabs { display: inline-flex; background: var(--gray-7); border-radius: 99px; padding: 4px; margin-bottom: 60px; }
.rb-tab { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; padding: 10px 24px; border-radius: 99px; cursor: pointer; border: none; background: transparent; color: var(--gray-3); transition: all 0.25s; }
.rb-tab.active { background: var(--orange); color: white; box-shadow: 0 2px 12px rgba(232,98,42,0.3); }
.raising-bar-diagram { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; }
.rb-pillars-left { display: flex; flex-direction: column; gap: 40px; align-items: flex-end; }
.rb-pillars-right { display: flex; flex-direction: column; gap: 40px; align-items: flex-start; }
.rb-pillar { cursor: pointer; text-align: right; }
.rb-pillars-right .rb-pillar { text-align: left; }
.rb-pillar-inner { display: flex; align-items: center; gap: 10px; }
.rb-pillars-right .rb-pillar-inner { flex-direction: row; }
.rb-pillars-left .rb-pillar-inner { flex-direction: row-reverse; }
.rb-plus { font-size: 16px; font-weight: 700; color: var(--orange); flex-shrink: 0; }
.rb-pillar-label { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; color: var(--black); }
.rb-pillar-icon { font-size: 20px; flex-shrink: 0; }
.rb-pillar-detail { font-size: 12px; color: var(--gray-3); line-height: 1.6; margin-top: 8px; max-height: 0; overflow: hidden; transition: max-height 0.4s; }
.rb-pillar.open .rb-pillar-detail { max-height: 80px; }
.rb-pillar.open .rb-plus { transform: rotate(45deg); display: inline-block; }
.rb-center-visual { display: flex; align-items: center; justify-content: center; }
.rb-dotted-ring { width: 300px; height: 300px; border-radius: 50%; border: none; position: relative; display: flex; align-items: center; justify-content: center; }
.rb-dotted-ring::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px dashed var(--gray-5); animation: spinSlow 30s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.rb-gummy-hex { width: 220px; height: 220px; background: radial-gradient(circle at 40% 35%, #ffcc88, #e8622a 60%, #b84010); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 48px rgba(232,98,42,0.4); animation: floatAnim 4s ease-in-out infinite; position: relative; overflow: hidden; }
.rb-hex-emoji { font-size: 80px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
@media(max-width:760px) {
  .raising-bar-diagram { grid-template-columns: 1fr; }
  .rb-pillars-left, .rb-pillars-right { flex-direction: row; flex-wrap: wrap; gap: 16px; align-items: flex-start; justify-content: center; }
  .rb-pillar { text-align: left; }
  .rb-pillars-left .rb-pillar-inner { flex-direction: row; }
  .rb-dotted-ring { width: 200px; height: 200px; }
  .rb-gummy-hex { width: 160px; height: 160px; }
  .rb-hex-emoji { font-size: 56px; }
  .raising-bar-section { padding: 56px 20px; }
}

/* ═══════════════════════════════════════════════════════
   SECTION 3 — ANSWERED BY RESEARCHERS
════════════════════════════════════════════════════════ */
.researchers-section { padding: 72px 0 40px; background: white; }
.researchers-inner { max-width: 1400px; margin: 0 auto; }
.researchers-title { font-family: var(--font-head); font-size: clamp(28px,4.5vw,52px); font-weight: 400; letter-spacing: -1px; text-align: center; color: var(--black); margin-bottom: 40px; line-height: 1.2; padding: 0 40px; }
.researchers-scroll-wrap { overflow-x: auto; overflow-y: visible; scrollbar-width: none; -ms-overflow-style: none; padding: 0 40px 16px; }
.researchers-scroll-wrap::-webkit-scrollbar { display: none; }
.researchers-track { display: flex; gap: 14px; width: max-content; padding-bottom: 4px; }
.researcher-card { width: 240px; height: 320px; border-radius: 18px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 14px; cursor: pointer; transition: transform 0.2s; overflow: hidden; position: relative; }
.researcher-card:hover { transform: translateY(-4px); }
.rc-tags { display: flex; align-items: center; justify-content: space-between; }
.rc-tag { background: rgba(255,255,255,0.22); backdrop-filter: blur(4px); color: white; font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 99px; display: flex; align-items: center; gap: 5px; }
.rc-expand { width: 24px; height: 24px; background: rgba(255,255,255,0.22); border-radius: 50%; color: white; font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.rc-bottom { margin-top: auto; }
.rc-question { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: white; line-height: 1.35; }
.researchers-scroll-bar { padding: 0 40px; margin-top: 16px; }
.researchers-scroll-track { background: var(--gray-6); height: 3px; border-radius: 99px; position: relative; }
.researchers-scroll-thumb { background: var(--black); height: 3px; border-radius: 99px; width: 30%; position: absolute; left: 0; top: 0; transition: left 0.1s; }
@media(max-width:580px) {
  .researchers-title { font-size: 28px; padding: 0 20px; }
  .researchers-scroll-wrap { padding: 0 20px 16px; }
}

/* ═══════════════════════════════════════════════════════
   SECTION 4 — THE REVIEWS ARE IN
════════════════════════════════════════════════════════ */
.reviews-in-section { padding: 72px 0 40px; background: white; border-top: 1px solid var(--gray-6); }
.reviews-in-inner { max-width: 1400px; margin: 0 auto; }
.reviews-in-title { font-family: var(--font-head); font-size: clamp(28px,4.5vw,52px); font-weight: 400; letter-spacing: -1px; text-align: center; color: var(--black); margin-bottom: 36px; padding: 0 40px; }
.reviews-in-scroll-wrap { overflow-x: auto; overflow-y: visible; scrollbar-width: none; -ms-overflow-style: none; padding: 0 40px 16px; }
.reviews-in-scroll-wrap::-webkit-scrollbar { display: none; }
.reviews-in-track { display: flex; gap: 14px; width: max-content; }
.rv-card { width: 220px; flex-shrink: 0; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: transform 0.2s; }
.rv-card:hover { transform: translateY(-4px); }
/* Video card */
.rv-video-card { }
.rv-video-bg { height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 16px; position: relative; }
.rv-avatar-ring { display: flex; align-items: center; gap: 8px; align-self: flex-start; }
.rv-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); color: white; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,0.4); }
.rv-name-overlay { }
.rv-celeb-name { font-size: 12px; font-weight: 700; color: white; }
.rv-celeb-title { font-size: 10px; color: rgba(255,255,255,0.65); }
.rv-play-btn { width: 48px; height: 48px; background: rgba(255,255,255,0.2); border-radius: 50%; backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; font-size: 16px; color: white; border: 1.5px solid rgba(255,255,255,0.4); align-self: center; margin: auto; }
/* Text card */
.rv-text-card { padding: 20px; border: 1px solid var(--gray-6); }
.rv-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; }
.rv-text-title { font-size: 14px; font-weight: 800; color: var(--black); margin-bottom: 8px; line-height: 1.3; }
.rv-text-body { font-size: 12px; color: var(--gray-2); line-height: 1.6; margin-bottom: 14px; }
.rv-author-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.rv-author-name { font-size: 12px; font-weight: 700; color: var(--black); }
.rv-verified { font-size: 11px; color: var(--gray-3); }
/* Product row — shared */
.rv-product-row { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: white; border-top: 1px solid var(--gray-6); margin-top: auto; }
.rv-video-card .rv-product-row { background: white; }
.rv-product-dot { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.rv-for-label { font-size: 11px; color: var(--gray-3); flex: 1; }
.rv-for-label strong { color: var(--black); }
.rv-shop-tag { background: var(--orange); color: white; font-size: 10px; font-weight: 800; padding: 5px 10px; border-radius: 5px; letter-spacing: 0.06em; text-decoration: none; flex-shrink: 0; }
.rv-shop-tag:hover { background: var(--orange-dark); }
/* scrollbar */
.reviews-in-scrollbar { padding: 0 40px; margin-top: 16px; }
.ri-scroll-track { background: var(--gray-6); height: 3px; border-radius: 99px; position: relative; }
.ri-scroll-thumb { background: var(--black); height: 3px; border-radius: 99px; width: 35%; position: absolute; left: 0; transition: left 0.1s; }
@media(max-width:580px) {
  .reviews-in-title { font-size: 28px; padding: 0 20px; }
  .reviews-in-scroll-wrap { padding: 0 20px 16px; }
}
