/* ==========================================================================
   WGP Theme — weightgainerprotein.com
   Ghost 5.x Custom Theme Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  --gh-font-heading: 'Cabinet Grotesk', sans-serif;
  --gh-font-body: 'Source Serif 4', Georgia, serif;
  --navy: #1A1A2E;
  --navy-mid: #2C3E6B;
  --green: #2ECC71;
  --green-dark: #27AE60;
  --amazon: #FF9900;
  --amazon-dark: #E68900;
  --white: #FFFFFF;
  --surface: #F7F8FA;
  --border: #E8ECF0;
  --text: #1E2226;
  --text-mid: #4A5568;
  --text-light: #718096;
  --max-w: 760px;
  --max-w-wide: 1100px;
}

/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.8;
  font-size: 17px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input { font: inherit; }

/* --------------------------------------------------------------------------
   2. NAVIGATION — DESKTOP
   -------------------------------------------------------------------------- */
.site-nav {
  background: var(--navy);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: white;
}
.logo span { color: var(--green); }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  background: var(--green);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--green-dark); color: white; }

/* --------------------------------------------------------------------------
   2b. NAVIGATION — MOBILE
   -------------------------------------------------------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 2px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger .h-line {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  display: block;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger .h-line:nth-child(2) { width: 18px; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.is-open { transform: translateX(0); }

.menu-bar {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 3px solid var(--green);
  flex-shrink: 0;
}
.menu-logo {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: white;
}
.menu-logo span { color: var(--green); }

.close-x {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  position: relative;
}
.close-x::before,
.close-x::after {
  content: '';
  position: absolute;
  width: 18px; height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
}
.close-x::before { transform: rotate(45deg); }
.close-x::after { transform: rotate(-45deg); }

.menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}
.menu-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.menu-item-text {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.2px;
}
.menu-chevron { flex-shrink: 0; opacity: 0.5; }

.menu-bottom {
  padding: 20px 24px 28px;
  flex-shrink: 0;
}
.menu-sep {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.menu-cta-primary {
  display: block;
  background: var(--green);
  color: var(--navy);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 800;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.menu-cta-secondary {
  display: block;
  text-align: center;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* --------------------------------------------------------------------------
   3. HERO — HOMEPAGE
   -------------------------------------------------------------------------- */
.hero-home {
  background: var(--navy);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(44,62,107,0.8) 0%, transparent 70%);
  pointer-events: none;
}
.hero-home-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.hero-eyebrow {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 16px;
}
.hero-home h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.05;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero-home h1 span { color: var(--green); }

.hero-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-btn-primary {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px; font-weight: 800;
  background: var(--green);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background 0.15s;
}
.hero-btn-primary:hover { background: var(--green-dark); color: white; }
.hero-btn-secondary {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px; font-weight: 700;
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust-item {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 6px;
}
.hero-trust-item span { color: var(--green); }

/* --------------------------------------------------------------------------
   3b. HERO — ARTICLE (single review)
   -------------------------------------------------------------------------- */
.hero-article {
  width: 100%;
  background: linear-gradient(135deg, #1A1A2E 0%, #2C3E6B 60%, #1a3a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-article-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-article-text { flex: 1; }
.hero-article-tag {
  display: inline-block;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green);
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.3);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.hero-article h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.15;
  color: white;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.hero-article-verdict {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}
.hero-rating { display: flex; align-items: center; gap: 8px; }
.hero-stars { color: #F5A623; font-size: 18px; letter-spacing: 1px; }
.hero-rating-text {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: white;
}
.hero-article-img {
  width: 160px; height: 200px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-article-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   3c. HERO — GUIDE / ADVICE
   -------------------------------------------------------------------------- */
.hero-guide {
  width: 100%;
  background: linear-gradient(160deg, #1A1A2E 0%, #2C3E6B 50%, #1a3a2e 100%);
  padding: 52px 24px 48px;
}
.hero-guide-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-guide h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.1;
  color: white;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.hero-guide-lead {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   3d. HERO — COMPARISON (X vs Y)
   -------------------------------------------------------------------------- */
.hero-comparison {
  width: 100%;
  background: linear-gradient(160deg, #1A1A2E 0%, #3a2e1a 50%, #2C3E6B 100%);
  padding: 52px 24px 48px;
}
.hero-comparison-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.hero-comparison h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.1;
  color: white;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.hero-comparison-lead {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   3e. HERO — PAGE (about, etc.)
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--navy);
  padding: 52px 24px 48px;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-tag {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}
.page-hero h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.page-hero-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   4. SHARED SECTION STYLES
   -------------------------------------------------------------------------- */
.section {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 52px 24px;
}
.section-label {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.section-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.section-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   5. BREADCRUMB
   -------------------------------------------------------------------------- */
.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px 0;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb .sep { margin: 0 6px; }

/* --------------------------------------------------------------------------
   6. ARTICLE HEADER (roundup — no hero image)
   -------------------------------------------------------------------------- */
.article-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px 0;
}
.article-tag {
  display: inline-block;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green-dark);
  background: #E8FFF3;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.article-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.article-lead {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
  border-left: 3px solid var(--green);
  padding-left: 16px;
}

/* --------------------------------------------------------------------------
   7. TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  max-width: var(--max-w);
  margin: 16px auto 0;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.author-block { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info { font-family: 'Cabinet Grotesk', sans-serif; }
.author-name { font-size: 13px; font-weight: 700; color: var(--navy); display: block; }
.author-cred { font-size: 11px; color: var(--text-light); display: block; }
.trust-divider { width: 1px; height: 28px; background: var(--border); }
.trust-meta {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}
.trust-meta strong { color: var(--text-mid); font-weight: 600; }

/* --------------------------------------------------------------------------
   8. METHODOLOGY COLLAPSIBLE
   -------------------------------------------------------------------------- */
.methodology-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.methodology-toggle {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--text-mid);
  text-align: left;
}
.methodology-toggle:hover { background: #EEF0F4; }
.methodology-toggle .arrow {
  transition: transform 0.2s;
  font-size: 10px;
}
.methodology-toggle.is-open .arrow { transform: rotate(180deg); }

.methodology-content {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  padding: 14px 16px;
}
.methodology-content.is-open { display: block; }
.methodology-content p {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
.methodology-content a { color: var(--navy-mid); }

/* --------------------------------------------------------------------------
   9. AFFILIATE NOTICE BAR
   -------------------------------------------------------------------------- */
.affiliate-notice {
  max-width: var(--max-w);
  margin: 1px auto 0;
  padding: 8px 24px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  background: #FFFBF0;
  border-bottom: 1px solid #F0E8C8;
  border-top: 1px solid #F0E8C8;
}
.affiliate-notice a { color: var(--text-light); }

/* --------------------------------------------------------------------------
   10. ARTICLE BODY
   -------------------------------------------------------------------------- */
.article-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 24px;
}
.article-body p { margin-bottom: 20px; color: var(--text); }
.article-body h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.article-body h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 17px; font-weight: 800;
  color: var(--navy);
  margin: 28px 0 10px;
}
.article-body a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--navy-mid); }

/* Override article-body link styles for CTA buttons */
.article-body .btn-amazon,
.article-body .btn-brand,
.article-body .btn-brand-sm,
.article-body .btn-amz,
.article-body .inline-cta-btn {
  text-decoration: none;
}
.article-body .btn-amazon,
.article-body .btn-amz { color: var(--navy); }
.article-body .btn-amazon:hover,
.article-body .btn-amz:hover { color: var(--navy); }
.article-body .btn-brand { color: white; }
.article-body .btn-brand:hover { color: white; }
.article-body .btn-brand-sm { color: white; }
.article-body .btn-brand-sm:hover { color: white; }
.article-body .inline-cta-btn { color: var(--navy); }
.article-body .inline-cta-btn:hover { color: white; }
.article-body ul, .article-body ol { margin-bottom: 20px; padding-left: 24px; list-style: disc; }
.article-body li { margin-bottom: 6px; }

/* --------------------------------------------------------------------------
   11. SUMMARY BOX (Quick Picks)
   -------------------------------------------------------------------------- */
.summary-box {
  background: var(--surface);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin-bottom: 28px;
}
.summary-box-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.summary-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
}
.summary-row:last-child { border-bottom: none; padding-bottom: 0; }
.summary-label {
  font-weight: 700;
  color: var(--navy);
  min-width: 180px;
  font-size: 13px;
}
.summary-product a {
  color: var(--navy-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --------------------------------------------------------------------------
   12. COMPARISON TABLE
   -------------------------------------------------------------------------- */
.comparison-wrap { margin-bottom: 36px; overflow-x: auto; }
.comparison-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
}
.comparison-table th {
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.comparison-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
  white-space: nowrap;
}
.comparison-table tr:hover td { background: #F0F9F4; }
.comparison-table tr.winner td { background: #F0FFF4; font-weight: 600; }
.comparison-table tr.winner td:first-child { border-left: 3px solid var(--green); }
.winner-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  background: var(--green);
  color: white;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.stars-sm { color: #F5A623; font-size: 12px; }

/* --------------------------------------------------------------------------
   13. TOC / JUMP LINKS
   -------------------------------------------------------------------------- */
.toc {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 32px;
}
.toc-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.toc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}
.toc-item {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--navy-mid);
  padding: 4px 0;
  border-bottom: 1px dotted var(--border);
  display: flex; align-items: center; gap: 6px;
}
.toc-item:hover { color: var(--green-dark); }
@media (max-width: 600px) { .toc-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   14. PRODUCT CARD
   -------------------------------------------------------------------------- */
.product-card {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  margin: 28px 0;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.09); }

.product-card-header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.product-img {
  width: 85px; height: 85px;
  border-radius: 8px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }

.product-badge {
  display: inline-block;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--navy);
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 7px;
}
.product-badge.green { background: var(--green-dark); }
.product-badge.budget { background: #1a5c38; }
.product-badge.vegan { background: #2d5a1b; }

.product-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 5px;
}
.product-verdict {
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.5;
}
.stars { display: flex; align-items: center; gap: 3px; margin-top: 8px; }
.star { color: #F5A623; font-size: 13px; }
.star.empty { color: var(--border); }
.rating-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--text-mid);
  margin-left: 4px;
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
  padding: 12px;
  background: var(--surface);
  border-radius: 6px;
}
.stat { text-align: center; }
.stat-value {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 19px; font-weight: 800;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.stat-label {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  display: block;
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   15. PROS / CONS
   -------------------------------------------------------------------------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}
.pros, .cons { padding: 14px 16px; border-radius: 6px; }
.pros { background: #F0FFF4; border: 1px solid #C6F6D5; }
.cons { background: #FFF5F5; border: 1px solid #FED7D7; }
.pros-cons-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.pros .pros-cons-title { color: #276749; }
.cons .pros-cons-title { color: #9B2335; }
.pros-cons ul { list-style: none; padding: 0; }
.pros-cons li {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  padding: 4px 0;
  display: flex; gap: 8px;
  line-height: 1.4;
}
.pros li::before { content: "\2713"; color: #276749; font-weight: 700; flex-shrink: 0; }
.cons li::before { content: "\2717"; color: #9B2335; font-weight: 700; flex-shrink: 0; }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   16. CTA BUTTONS
   -------------------------------------------------------------------------- */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.btn-amazon {
  display: flex;
  align-items: center; justify-content: center;
  gap: 8px;
  background: var(--amazon);
  color: var(--navy);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 13px 20px;
  border-radius: 6px;
  letter-spacing: 0.2px;
  transition: background 0.15s;
}
.btn-amazon:hover { background: var(--amazon-dark); }
.btn-brand {
  display: flex;
  align-items: center; justify-content: center;
  background: var(--green);
  color: white;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 13px 20px;
  border-radius: 6px;
  letter-spacing: 0.2px;
  transition: background 0.15s;
}
.btn-brand:hover { background: var(--green-dark); }
.btn-note {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  margin-top: 5px;
}

/* --------------------------------------------------------------------------
   17. PICKS GRID (Homepage top 3)
   -------------------------------------------------------------------------- */
.picks-section { border-bottom: 1px solid var(--border); }
.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pick-card {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.pick-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.pick-card-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.pick-img {
  width: 80px; height: 80px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pick-img img { width: 100%; height: 100%; object-fit: cover; }
.pick-badge {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 6px;
}
.badge-top { background: var(--navy); color: white; }
.badge-budget { background: #1a5c38; color: white; }
.badge-vegan { background: #2d5a1b; color: white; }
.pick-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 4px;
}
.pick-verdict {
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.5;
}
.pick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px;
  background: var(--surface);
  border-radius: 6px;
  margin-bottom: 14px;
}
.pick-stat-val {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  display: block;
  text-align: center;
}
.pick-stat-lbl {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  display: block;
  text-align: center;
  margin-top: 2px;
}
.pick-btns {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: auto;
}
.btn-amz {
  display: block;
  text-align: center;
  background: var(--amazon);
  color: var(--navy);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 11px;
  border-radius: 5px;
  transition: background 0.15s;
}
.btn-amz:hover { background: #E68900; }
.btn-brand-sm {
  display: block;
  text-align: center;
  background: var(--green);
  color: white;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 11px;
  border-radius: 5px;
  transition: background 0.15s;
}
.btn-brand-sm:hover { background: var(--green-dark); }
@media (max-width: 800px) { .picks-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   18. PERSONA CARDS (Homepage)
   -------------------------------------------------------------------------- */
.persona-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.persona-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.persona-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
  display: block;
  background: white;
}
.persona-card:hover { border-color: var(--green); box-shadow: 0 4px 20px rgba(46,204,113,0.12); transform: translateY(-2px); }
.persona-img {
  height: 130px;
  display: flex; align-items: flex-end;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.persona-img.muscle   { background: linear-gradient(160deg, #1a2a4a 0%, #2C3E6B 100%); }
.persona-img.hardgainer { background: linear-gradient(160deg, #1a3a28 0%, #1e5c3a 100%); }
.persona-img.older    { background: linear-gradient(160deg, #3a1a1a 0%, #6b2c2c 100%); }
.persona-img.women    { background: linear-gradient(160deg, #2a1a3a 0%, #4a2c6b 100%); }
.persona-img.vegan    { background: linear-gradient(160deg, #1a3a1a 0%, #2d5c1e 100%); }
.persona-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.persona-img-label {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 16px; font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}
.persona-body { padding: 12px 14px 14px; }
.persona-desc {
  font-family: 'Source Serif 4', serif;
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 8px;
}
.persona-link {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) { .persona-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .persona-grid { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   19. ARTICLE CARDS (Homepage grid)
   -------------------------------------------------------------------------- */
.articles-section { border-bottom: 1px solid var(--border); }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card { display: block; }
.article-card:hover .article-card-title { color: var(--green-dark); }
.article-card-img {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  margin-bottom: 14px;
  display: flex; align-items: flex-end;
  padding: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1A1A2E, #2C3E6B);
}
.article-card-img img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.article-card-img-tag {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  background: rgba(46,204,113,0.85);
  padding: 3px 8px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
}
.article-tag-sm {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dark);
  background: #E8FFF3;
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 8px;
}
.article-card-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 6px;
  transition: color 0.15s;
}
.article-card-excerpt {
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 8px;
}
.article-card-meta {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 700;
}
@media (max-width: 800px) { .articles-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   20. EMAIL CAPTURE
   -------------------------------------------------------------------------- */
.email-section {
  padding: 60px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.email-capture-block {
  max-width: 860px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  background-image:
    radial-gradient(ellipse at 100% 0%, rgba(46,204,113,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(44,62,107,0.6) 0%, transparent 50%);
}
.email-capture-inner { display: flex; align-items: stretch; }
.email-mockup {
  width: 180px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #2C3E6B 0%, #1a2a4a 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.pdf-cover {
  width: 120px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
  overflow: hidden;
  transform: rotate(-2deg);
}
.pdf-cover-header { background: var(--green); padding: 10px 10px 8px; }
.pdf-cover-header-text {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 8px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
  line-height: 1.3;
}
.pdf-cover-body { padding: 10px; background: white; }
.pdf-cover-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px; font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}
.pdf-line { height: 3px; border-radius: 2px; background: var(--border); margin-bottom: 4px; }
.pdf-line.s { width: 60%; }
.pdf-line.m { width: 80%; }
.pdf-line.l { width: 95%; }
.pdf-line.g { background: rgba(46,204,113,0.4); width: 50%; }
.pdf-cover-footer { background: var(--surface); padding: 6px 10px; border-top: 1px solid var(--border); }
.pdf-cover-footer-text {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 7px; font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pdf-cover-footer-text span { color: var(--green-dark); }

.email-content { flex: 1; padding: 28px 28px 24px; }
.email-eyebrow {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.email-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--green);
  border-radius: 1px;
}
.email-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: white;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.email-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 16px;
}
.email-bullets {
  display: flex; flex-direction: column; gap: 5px;
  margin-bottom: 18px;
}
.email-bullet {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 7px;
}
.email-bullet::before {
  content: '\2713';
  color: var(--green);
  font-size: 11px;
  flex-shrink: 0;
}
.email-social-proof {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.email-social-proof::before {
  content: '\2193';
  color: var(--green);
  font-size: 10px;
}
.email-form { display: flex; gap: 8px; }
.email-input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: white;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border 0.15s;
}
.email-input::placeholder { color: rgba(255,255,255,0.3); }
.email-input:focus { border-color: var(--green); }
.email-submit {
  background: var(--green);
  color: var(--navy);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 800;
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background 0.15s;
}
.email-submit:hover { background: var(--green-dark); color: white; }
.email-disclaimer {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  margin-top: 10px;
}

/* Email capture — inline (mid-article, simpler) */
.email-capture-inline {
  background: var(--navy);
  border-radius: 10px;
  padding: 32px 28px;
  margin: 44px 0;
  text-align: center;
}
.email-capture-inline .email-eyebrow { justify-content: center; }
.email-capture-inline .email-eyebrow::before { display: none; }
.email-capture-inline .email-form { max-width: 420px; margin: 0 auto; }

/* Email mobile responsive */
@media (max-width: 640px) {
  .email-capture-inner { flex-direction: column; }
  .email-mockup { width: 100%; flex-direction: row; padding: 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .pdf-cover { width: 64px; }
  .email-form { flex-direction: column; }
}

/* --------------------------------------------------------------------------
   21. VERDICT BOX (single review)
   -------------------------------------------------------------------------- */
.verdict-box {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}
.verdict-header {
  background: var(--navy);
  padding: 12px 18px;
}
.verdict-header-text {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}
.verdict-body {
  padding: 16px 18px;
  background: var(--surface);
}
.verdict-score-row {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.verdict-score { text-align: center; }
.score-val {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  display: block;
}
.score-label {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
}
.score-divider { width: 1px; background: var(--border); }
.verdict-text {
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* --------------------------------------------------------------------------
   22. KEY TAKEAWAY BOX (advice articles)
   -------------------------------------------------------------------------- */
.takeaway-box {
  background: var(--surface);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin: 0 0 28px;
}
.takeaway-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.takeaway-list li {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 10px;
  line-height: 1.4;
}
.takeaway-list li:last-child { border-bottom: none; }
.takeaway-list li::before {
  content: '\2192';
  color: var(--green-dark);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   23. CALLOUT & WARNING BOXES
   -------------------------------------------------------------------------- */
.callout {
  background: #F0FFF4;
  border: 1.5px solid #C6F6D5;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
}
.callout-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #276749;
  margin-bottom: 6px;
}
.callout p { font-size: 15px; color: #2d6a4f; margin: 0; line-height: 1.6; }

.warning {
  background: #FFFBF0;
  border: 1.5px solid #F0E8C8;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
}
.warning-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #7A5C00;
  margin-bottom: 6px;
}
.warning p { font-size: 15px; color: #6B5000; margin: 0; line-height: 1.6; }

/* --------------------------------------------------------------------------
   24. NUMBERED STEPS
   -------------------------------------------------------------------------- */
.steps { margin: 20px 0 28px; }
.step {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--green);
  min-width: 32px;
  flex-shrink: 0;
  line-height: 1.2;
}
.step-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-body {
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   25. INLINE CTA (advice articles — pushes to roundup)
   -------------------------------------------------------------------------- */
.inline-cta {
  background: var(--navy);
  border-radius: 8px;
  padding: 18px 20px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.inline-cta-text { flex: 1; }
.inline-cta-eyebrow {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  margin-bottom: 4px;
}
.inline-cta-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: white;
  margin-bottom: 4px;
}
.inline-cta-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}
.inline-cta-btn {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 800;
  background: var(--green);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: 6px;
  white-space: nowrap;
  text-transform: uppercase;
  transition: background 0.15s;
}
.inline-cta-btn:hover { background: var(--green-dark); color: white; }

/* --------------------------------------------------------------------------
   26. INLINE PRODUCT MENTION (single review related)
   -------------------------------------------------------------------------- */
.inline-product {
  background: white;
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--amazon);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.inline-product-img { font-size: 28px; flex-shrink: 0; }
.inline-product-info { flex: 1; }
.inline-product-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--navy);
}
.inline-product-desc {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.inline-product-link {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--amazon);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   27. NUTRITION TABLE (single review)
   -------------------------------------------------------------------------- */
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  margin: 16px 0 24px;
}
.nutrition-table th {
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nutrition-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.nutrition-table tr:nth-child(even) td { background: var(--surface); }
.nutrition-table td:first-child { font-weight: 600; color: var(--navy); }

/* --------------------------------------------------------------------------
   28. CTA BLOCK (single review buy box)
   -------------------------------------------------------------------------- */
.cta-block {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin: 32px 0;
  background: var(--surface);
}
.cta-block-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.cta-price {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   29. RELATED ARTICLES GRID
   -------------------------------------------------------------------------- */
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.related-card {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  display: block;
  transition: border-color 0.15s;
}
.related-card:hover { border-color: var(--green); }
.related-tag {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--green-dark);
  margin-bottom: 6px;
  display: block;
}
.related-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.3;
}
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   30. ABOUT PAGE COMPONENTS
   -------------------------------------------------------------------------- */
.mission-box {
  background: var(--navy);
  border-radius: 10px;
  padding: 28px;
  margin: 0 0 40px;
}
.mission-box p {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}
.mission-box p::before {
  content: '\201C';
  font-size: 32px;
  color: var(--green);
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0 32px;
}
.criteria-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
}
.criteria-number {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.criteria-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}
.criteria-desc {
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}
@media (max-width: 600px) { .criteria-grid { grid-template-columns: 1fr; } }

.team-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin: 16px 0;
  background: white;
}
.team-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 20px; font-weight: 800;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 3px;
}
.team-cred {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  display: block;
}
.team-bio {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.disclosure-box {
  background: #FFFBF0;
  border: 1.5px solid #F0E8C8;
  border-radius: 8px;
  padding: 20px 22px;
  margin: 32px 0;
}
.disclosure-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #7A5C00;
  margin-bottom: 8px;
}
.disclosure-text {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  color: #6B5000;
  line-height: 1.65;
}

.standards-list li {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 12px;
  line-height: 1.5;
}
.standards-list li:last-child { border-bottom: none; }
.standards-list li::before {
  content: '\2713';
  color: var(--green-dark);
  font-weight: 700;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Page body (about, static pages) */
.page-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.page-body p {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}
.page-body h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.page-body h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  margin: 28px 0 10px;
}

/* --------------------------------------------------------------------------
   31. MOBILE STICKY CTA (single review)
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 2px solid var(--border);
  padding: 10px 16px;
  display: none;
  gap: 8px;
  z-index: 200;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}
.sticky-cta .btn-amazon,
.sticky-cta .btn-brand { flex: 1; padding: 12px 10px; font-size: 13px; }
@media (max-width: 640px) {
  .sticky-cta.is-active { display: flex; }
}

/* --------------------------------------------------------------------------
   32. TAG ARCHIVE
   -------------------------------------------------------------------------- */
.tag-header {
  background: var(--navy);
  padding: 48px 24px 40px;
  text-align: center;
}
.tag-header h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: white;
  margin-bottom: 8px;
}
.tag-header p {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}
.tag-posts {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 48px 24px;
}
.tag-posts .articles-grid { margin-top: 0; }

/* --------------------------------------------------------------------------
   33. AUTHOR PAGE
   -------------------------------------------------------------------------- */
.author-header {
  background: var(--navy);
  padding: 48px 24px;
}
.author-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.author-header-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 28px; font-weight: 800;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.author-header-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-header h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: white;
  margin-bottom: 4px;
}
.author-header-bio {
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.6;
}
.author-posts {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 48px 24px;
}

/* --------------------------------------------------------------------------
   34. EXPERT QUOTE BLOCK
   -------------------------------------------------------------------------- */
.expert-quote {
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  margin: 28px 0;
}
.expert-quote-text {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 10px;
}
.expert-quote-attr {
  display: flex; align-items: center; gap: 10px;
}
.expert-quote-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy-mid);
  flex-shrink: 0;
}
.expert-quote-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--navy);
}
.expert-quote-cred {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   35. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 24px;
}
.footer-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: white;
}
.footer-logo span { color: var(--green); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  width: 100%;
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   36. PAGINATION
   -------------------------------------------------------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 40px 24px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.pagination a {
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pagination a:hover { color: var(--navy); }
.pagination .page-number { color: var(--text-light); }

/* --------------------------------------------------------------------------
   37. MEDICAL DISCLAIMER
   -------------------------------------------------------------------------- */
.medical-disclaimer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px;
  color: var(--text-light);
  border-top: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   38. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Ghost content helpers — kg cards */
.kg-card { margin: 28px 0; }
.kg-image-card img { border-radius: 8px; }
.kg-bookmark-card { border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; }
.kg-gallery-card { margin: 28px 0; }

/* Ghost required width classes */
.kg-width-wide {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.kg-width-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.kg-width-full img { width: 100%; }

/* Ghost custom font support classes */
.has-serif-font { font-family: 'Source Serif 4', Georgia, serif; }
.has-sans-font { font-family: 'Cabinet Grotesk', sans-serif; }
.has-serif-body { font-family: 'Source Serif 4', Georgia, serif; }
.has-sans-body { font-family: 'Cabinet Grotesk', sans-serif; }
.has-serif-title { font-family: 'Source Serif 4', Georgia, serif; }
.has-sans-title { font-family: 'Cabinet Grotesk', sans-serif; }
body.has-serif-body { font-family: 'Source Serif 4', Georgia, serif; }
body.has-sans-body { font-family: 'Cabinet Grotesk', sans-serif; }

/* --------------------------------------------------------------------------
   AVATAR INITIALS FALLBACK
   Handlebars can't extract the first character, so we render the full name
   inside a span and clip it to ~1 character width via the parent's overflow.
   -------------------------------------------------------------------------- */
.avatar-initials {
  display: inline-block;
  width: 1ch;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: white;
  line-height: 36px;
  text-align: center;
  vertical-align: middle;
}
.author-header-avatar .avatar-initials {
  font-size: 22px;
  line-height: 64px;
}

/* --------------------------------------------------------------------------
   EMAIL FORM STATES (Ghost data-members-form)
   Ghost toggles .loading, .success, .error classes on the form element.
   -------------------------------------------------------------------------- */
.email-form-message { display: none; font-family: 'Cabinet Grotesk', sans-serif; font-size: 13px; padding: 8px 0 0; }
.email-form.loading .email-form-loading { display: block; color: rgba(255,255,255,0.7); }
.email-form.success .email-form-success { display: block; color: var(--green); }
.email-form.success .email-input,
.email-form.success .email-submit { display: none; }
.email-form.error .email-form-error { display: block; color: #ff6b6b; }
.email-form.loading .email-submit { opacity: 0.6; pointer-events: none; }

/* --------------------------------------------------------------------------
   ERROR PAGES (404, 500, etc.)
   -------------------------------------------------------------------------- */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 60px 24px;
  text-align: center;
}
.error-page-inner { max-width: 480px; }
.error-code {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 96px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
}
.error-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.error-desc {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.6;
}
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   PAGE FEATURE IMAGE
   -------------------------------------------------------------------------- */
.page-feature-img {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.page-feature-img img {
  border-radius: 8px;
  width: 100%;
}

/* --------------------------------------------------------------------------
   SKIP LINK (accessibility)
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--green);
  color: var(--navy);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   IMAGE ASPECT RATIOS (CLS prevention)
   Reserves space before images load so layout doesn't shift.
   -------------------------------------------------------------------------- */
.article-card-img {
  aspect-ratio: 16 / 9;
  height: auto;
}
.hero-article-img {
  aspect-ratio: 4 / 5;
}
.hero-article-img img,
.article-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-feature-img img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.pick-img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   FOCUS STATES
   -------------------------------------------------------------------------- */
.email-input:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   LOGO IMAGE SUPPORT
   -------------------------------------------------------------------------- */
.logo img { height: 28px; width: auto; display: inline-block; }
.menu-logo img { height: 24px; width: auto; }
.footer-logo img { height: 24px; width: auto; }

/* --------------------------------------------------------------------------
   PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  .site-nav, .mobile-menu, .sticky-cta, .email-section,
  .email-capture-inline, .methodology-bar, .affiliate-notice,
  .nav-cta, .skip-link { display: none !important; }
  body { color: #000; background: #fff; font-size: 12pt; }
  .article-body a { color: #000; text-decoration: underline; }
  .article-body a::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
}
