/* ═══════════════════════════════════════════════════════════════════
   Sleep Reviews — Main Stylesheet
   Shared across all templates. Page-specific styles below.
═══════════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #F8F9FB;
  color: #2D3748;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ─── Design Tokens ─────────────────────────────────────────────── */
:root {
  --navy:       #1B2A4A;
  --navy-light: #253659;
  --teal:       #4DC9A8;
  --teal-dark:  #38B090;
  --gold:       #FFB347;
  --gold-dark:  #E09A30;
  --bg:         #F8F9FB;
  --white:      #FFFFFF;
  --text:       #2D3748;
  --text-light: #718096;
  --border:     #E2E8F0;
  --card-shadow: 0 2px 12px rgba(0,0,0,.07);
  --card-shadow-hover: 0 8px 30px rgba(0,0,0,.13);
  --radius:     14px;
  --radius-sm:  8px;
  /* CTA colour system */
  --cta-info:   #4DC9A8;
  --cta-buy:    #1B2A4A;
  --cta-deal:   #FFB347;
}

/* ─── Typography ────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.25;
}
.entry-content h2 { font-size: clamp(22px,3vw,28px); margin: 32px 0 14px; }
.entry-content h3 { font-size: 19px; margin: 24px 0 10px; }
.entry-content p  { font-size: 16px; margin-bottom: 18px; }
.entry-content ul, .entry-content ol { padding-left: 22px; margin-bottom: 18px; }
.entry-content li { margin-bottom: 6px; font-size: 15px; }
.entry-content blockquote {
  border-left: 3px solid var(--teal); padding: 12px 20px;
  background: rgba(77,201,168,.05); border-radius: 0 8px 8px 0;
  margin: 24px 0; font-style: italic; color: var(--text-light);
}
.entry-content table {
  width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 14px;
}
.entry-content table th {
  background: var(--navy); color: #fff; padding: 10px 14px; text-align: left;
}
.entry-content table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.entry-content table tr:last-child td { border-bottom: none; }
.entry-content table tr:nth-child(even) td { background: rgba(248,249,251,.6); }
.entry-content img { border-radius: var(--radius-sm); margin: 24px auto; }
.entry-content a { color: var(--teal-dark); text-decoration: underline; }
.entry-content a:hover { color: var(--navy); }
.entry-content strong { font-weight: 700; color: var(--navy); }

/* ─── Utilities ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px,4vw,38px);
  color: var(--navy); line-height: 1.25; margin-bottom: 14px;
}
.section-sub { color: var(--text-light); font-size: 16px; max-width: 560px; }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 100px; font-size: 14px;
  font-weight: 600; cursor: pointer; transition: all .2s ease;
  border: none; white-space: nowrap; font-family: 'Inter', sans-serif;
}
.btn-info  { background: var(--cta-info);  color: #fff; }
.btn-info:hover  { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(77,201,168,.35); }
.btn-buy   { background: var(--cta-buy);   color: #fff; }
.btn-buy:hover   { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,42,74,.3); }
.btn-deal  { background: var(--cta-deal);  color: var(--navy); }
.btn-deal:hover  { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,179,71,.4); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--teal); color: var(--white); transform: translateY(-1px); }
.btn-sm  { padding: 8px 16px; font-size: 13px; }
.btn-lg  { padding: 15px 30px; font-size: 16px; }

/* ─── Stars ─────────────────────────────────────────────────────── */
.stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.rating-num   { font-size: 13px; font-weight: 700; color: var(--navy); margin-left: 5px; }
.rating-count { font-size: 12px; color: var(--text-light); margin-left: 3px; }

/* ─── Header ────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  height: 64px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--white); white-space: nowrap; flex-shrink: 0;
}
.site-logo span { color: var(--teal); }
.site-logo img  { max-height: 40px; width: auto; }
.primary-nav { display: flex; gap: 4px; flex: 1; list-style: none; }
.primary-nav .nav-item a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.75);
  padding: 6px 14px; border-radius: 6px; transition: all .2s;
}
.primary-nav .nav-item a:hover,
.primary-nav .nav-item.active a { color: #fff; background: rgba(255,255,255,.1); }
/* Hide submenus until dropdown CSS is implemented */
.primary-nav .sub-menu { display: none; }
.header-cta {
  background: var(--teal); color: #fff; font-size: 13px;
  font-weight: 600; padding: 8px 18px; border-radius: 100px;
  transition: background .2s; flex-shrink: 0;
}
.header-cta:hover { background: var(--teal-dark); }
.menu-toggle {
  display: none; background: none; border: none;
  color: #fff; font-size: 22px; cursor: pointer; padding: 4px;
}

/* ─── Breadcrumb ────────────────────────────────────────────────── */
.breadcrumb-bar {
  background: #fff; border-bottom: 1px solid var(--border); padding: 12px 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-light);
}
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--border); }

/* ─── Disclosure Banner ─────────────────────────────────────────── */
.disclosure {
  background: rgba(255,179,71,.08); border: 1px solid rgba(255,179,71,.25);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 12px; color: #7a5c10; margin-bottom: 36px;
  display: flex; gap: 10px; align-items: flex-start;
}
.disclosure a { color: var(--teal-dark); font-weight: 600; }

/* ─── Update Badge ──────────────────────────────────────────────── */
.update-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(77,201,168,.1); border: 1px solid rgba(77,201,168,.3);
  color: var(--teal-dark); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
}
.update-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* ─── Trust Bar ─────────────────────────────────────────────────── */
.trust-bar {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 20px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 24px; flex-wrap: wrap;
}
.trust-author { display: flex; align-items: center; gap: 10px; }
.trust-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff; font-weight: 700; overflow: hidden;
}
.trust-avatar img { width: 100%; height: 100%; object-fit: cover; }
.trust-author-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.trust-author-role { font-size: 12px; color: var(--text-light); }
.trust-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.trust-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-light); }
.trust-item strong { color: var(--navy); font-weight: 600; }

/* ─── Criteria Chips ────────────────────────────────────────────── */
.criteria-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.criteria-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff; border: 1px solid var(--border);
  font-size: 12px; font-weight: 500; color: var(--text);
  padding: 6px 12px; border-radius: 100px;
}

/* ─── Top Pick Hero ─────────────────────────────────────────────── */
.top-pick-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius); padding: 28px 32px; margin-bottom: 36px;
  display: flex; gap: 28px; align-items: center;
  position: relative; overflow: hidden;
}
.top-pick-hero::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 320px;
  background-size: cover; background-position: center; opacity: .18;
}
.top-pick-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px; margin-bottom: 10px;
}
.top-pick-label  { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.top-pick-name   { font-family: 'Playfair Display', serif; font-size: 26px; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.top-pick-why    { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 18px; max-width: 460px; }
.top-pick-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.top-pick-content { flex: 1; position: relative; z-index: 1; }
.top-pick-img {
  flex-shrink: 0; width: 220px; height: 140px;
  border-radius: 10px; object-fit: cover; box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

/* ─── Picks at a Glance Grid ────────────────────────────────────── */
.picks-glance { margin-bottom: 48px; }
.picks-glance-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
}
.picks-glance-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); }
.picks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pick-card-mini {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .2s, transform .2s;
}
.pick-card-mini:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.mini-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--teal-dark); background: rgba(77,201,168,.1);
  padding: 3px 8px; border-radius: 100px; width: fit-content;
}
.mini-badge.deal { background: rgba(255,179,71,.15); color: var(--gold-dark); }
.mini-img-wrap { height: 100px; border-radius: 8px; overflow: hidden; background: var(--bg); }
.mini-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.mini-name { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.mini-stars-row { display: flex; align-items: center; gap: 4px; }
.mini-price { font-size: 13px; color: var(--text-light); }
.mini-price strong { color: var(--navy); font-size: 15px; }
.mini-link { font-size: 12px; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 4px; }

/* Comparison Table */
.compare-table-wrap { margin-top: 20px; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.compare-table th {
  background: var(--navy); color: #fff; padding: 12px 16px;
  text-align: left; font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: .06em; font-family: 'Inter', sans-serif;
}
.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child  { border-radius: 0 8px 0 0; }
.compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(248,249,251,.6); }
.compare-table tr:hover td { background: rgba(77,201,168,.05); }
.compare-table td:first-child { font-weight: 600; color: var(--navy); }
.compare-badge { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 100px; text-transform: uppercase; }
.badge-overall { background: rgba(255,179,71,.2);   color: #b07820; }
.badge-value   { background: rgba(77,201,168,.15);  color: var(--teal-dark); }
.badge-luxury  { background: rgba(27,42,74,.1);     color: var(--navy); }
.badge-side    { background: rgba(100,150,255,.15); color: #4060c0; }
.badge-back    { background: rgba(200,100,200,.15); color: #904090; }
.badge-cooling { background: rgba(100,200,255,.15); color: #2080b0; }
.compare-jump  { font-size: 12px; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 3px; }
.compare-jump:hover { color: var(--teal-dark); text-decoration: underline; }

/* ─── Full Pick Cards ───────────────────────────────────────────── */
.pick-full {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 48px; overflow: hidden;
  scroll-margin-top: 90px;
}
.pick-header {
  display: flex; align-items: center; gap: 16px; padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, #fafbfc 0%, #fff 100%);
}
.pick-number {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
}
.pick-award {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--teal-dark); background: rgba(77,201,168,.1);
  padding: 3px 9px; border-radius: 100px; margin-bottom: 4px; display: inline-block;
}
.pick-award.gold-award { background: rgba(255,179,71,.15); color: var(--gold-dark); }
.pick-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); line-height: 1.2; }
.pick-rating-row { display: flex; align-items: center; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.pick-score { background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.pick-price-range { font-size: 13px; color: var(--text-light); }
.pick-price-range strong { color: var(--navy); }
.pick-deal-tag {
  background: rgba(255,179,71,.15); color: var(--gold-dark);
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px;
}
.pick-header-info { flex: 1; }

/* Pick body layout */
.pick-body { display: flex; }
.pick-img-col {
  width: 280px; flex-shrink: 0; border-right: 1px solid var(--border);
}
.pick-img-col > img { width: 100%; height: 200px; object-fit: cover; }
.pick-sticky-cta { padding: 20px; position: sticky; top: 90px; }
.pick-price-display { margin-bottom: 14px; }
.pick-price-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; }
.pick-price-val   { font-size: 22px; font-weight: 800; color: var(--navy); }
.pick-price-sale  { font-size: 13px; color: var(--text-light); text-decoration: line-through; margin-left: 4px; }
.pick-price-save  {
  font-size: 11px; font-weight: 700; color: var(--teal-dark);
  background: rgba(77,201,168,.12); padding: 2px 7px; border-radius: 100px;
  margin-top: 3px; display: inline-block;
}
.pick-cta-stack { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.pick-cta-stack .btn { justify-content: center; width: 100%; }
.pick-quick-specs { font-size: 12px; color: var(--text-light); }
.pick-spec-row {
  display: flex; justify-content: space-between;
  padding: 5px 0; border-bottom: 1px solid var(--border);
}
.pick-spec-row:last-child { border-bottom: none; }
.pick-spec-row span:last-child { font-weight: 600; color: var(--navy); }
.pick-trial-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-light);
  padding: 8px 12px; background: var(--bg); border-radius: var(--radius-sm); margin-top: 10px;
}
.pick-content-col { flex: 1; padding: 28px; min-width: 0; }
.pick-summary { font-size: 15px; color: var(--text); margin-bottom: 22px; line-height: 1.75; }

/* Pros / Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.pros, .cons { border-radius: var(--radius-sm); padding: 16px; }
.pros { background: rgba(77,201,168,.07); border: 1px solid rgba(77,201,168,.2); }
.cons { background: rgba(255,100,100,.05); border: 1px solid rgba(255,100,100,.15); }
.pros h4, .cons h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.pros h4 { color: var(--teal-dark); }
.cons h4 { color: #c0392b; }
.pros li, .cons li { font-size: 13px; color: var(--text); padding: 4px 0; display: flex; gap: 8px; align-items: flex-start; }
.pros li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.cons li::before { content: '✗'; color: #c0392b; font-weight: 700; flex-shrink: 0; }

/* Who it's for */
.who-for { background: var(--bg); border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 20px; }
.who-for h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--navy); margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.who-for ul { display: flex; flex-wrap: wrap; gap: 7px; }
.who-for li { background: #fff; border: 1px solid var(--border); font-size: 12px; color: var(--text); padding: 4px 11px; border-radius: 100px; }
.who-for li::before { content: none; }

/* Verdict */
.verdict {
  border-left: 3px solid var(--teal); padding: 12px 16px;
  background: rgba(77,201,168,.05); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 20px;
}
.verdict-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal-dark); margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.verdict p { font-size: 13px; color: var(--text); margin-bottom: 0; }

/* Jump next */
.pick-footer {
  padding: 14px 28px; border-top: 1px solid var(--border); background: var(--bg);
  display: flex; align-items: center; justify-content: space-between;
}
.pick-footer-meta { font-size: 12px; color: var(--text-light); display: flex; gap: 16px; flex-wrap: wrap; }
.jump-next {
  font-size: 13px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 5px;
  padding: 7px 16px; border: 1.5px solid var(--border); border-radius: 100px; transition: all .2s;
}
.jump-next:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

/* ─── Inline Recirc ─────────────────────────────────────────────── */
.recirc-inline {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; margin: 36px 0;
  display: flex; gap: 20px;
}
.recirc-inline-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.recirc-inline-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal-dark); margin-bottom: 4px; }
.recirc-inline-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.recirc-inline-desc  { font-size: 13px; color: var(--text-light); margin-bottom: 10px; }
.recirc-inline-link  { font-size: 13px; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 4px; }
.recirc-inline-link:hover { color: var(--teal-dark); text-decoration: underline; }

/* ─── Buying Guide ──────────────────────────────────────────────── */
.guide-tab-row { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.guide-tab {
  font-size: 13px; font-weight: 600; padding: 10px 18px; border-radius: 6px 6px 0 0;
  cursor: pointer; color: var(--text-light); border: none; background: none;
  transition: all .2s; margin-bottom: -2px; font-family: 'Inter', sans-serif;
}
.guide-tab.active { color: var(--navy); border-bottom: 2px solid var(--navy); background: #fff; }
.guide-tab-content p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 0; }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
.guide-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.guide-card-icon { font-size: 24px; margin-bottom: 10px; }
.guide-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.guide-card p  { font-size: 13px; color: var(--text-light); line-height: 1.65; margin-bottom: 0; }

/* ─── Trust Signals Block ───────────────────────────────────────── */
.trust-signals {
  background: var(--navy); border-radius: var(--radius); padding: 36px 40px;
  margin-bottom: 48px; color: #fff;
}
.trust-signals h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; margin-bottom: 6px; }
.trust-signals > p { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 28px; }
.trust-signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-signal-item { display: flex; gap: 14px; align-items: flex-start; }
.ts-icon {
  width: 44px; height: 44px; background: rgba(77,201,168,.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.ts-info h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; font-family: 'Inter', sans-serif; }
.ts-info p  { font-size: 12px; color: rgba(255,255,255,.65); margin-bottom: 0; }

/* ─── Sidebar ───────────────────────────────────────────────────── */
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 20px; overflow: hidden; }
.sidebar-card-header { background: var(--navy); padding: 14px 18px; }
.sidebar-card-header h3 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .08em; font-family: 'Inter', sans-serif; }
.toc-list { padding: 8px 0; }
.toc-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 18px;
  border-left: 3px solid transparent; font-size: 13px; color: var(--text);
  transition: all .15s; text-decoration: none;
}
.toc-item:hover, .toc-item.active { background: var(--bg); color: var(--navy); font-weight: 600; border-left-color: var(--teal); }
.toc-num {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--text-light);
}
.toc-item.active .toc-num { background: var(--navy); border-color: var(--navy); color: #fff; }
.toc-award-chip { font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 100px; margin-left: auto; white-space: nowrap; }
.chip-gold { background: rgba(255,179,71,.2);  color: var(--gold-dark); }
.chip-teal { background: rgba(77,201,168,.15); color: var(--teal-dark); }
.toc-divider { height: 1px; background: var(--border); margin: 4px 0; }
.sidebar-search { padding: 14px; display: flex; gap: 8px; }
.sidebar-search input {
  flex: 1; padding: 9px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 13px; outline: none; font-family: 'Inter', sans-serif; color: var(--text);
}
.sidebar-search input:focus { border-color: var(--teal); }
.sidebar-search button {
  width: 36px; height: 36px; border-radius: 8px; background: var(--navy); border: none;
  cursor: pointer; color: #fff; font-size: 15px; display: flex; align-items: center; justify-content: center;
}
.related-guide-item {
  display: flex; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); align-items: flex-start;
}
.related-guide-item:last-child { border-bottom: none; }
.related-guide-img { width: 60px; height: 46px; border-radius: 6px; object-fit: cover; background: var(--bg); flex-shrink: 0; }
.related-guide-title { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 3px; }
.related-guide-meta  { font-size: 11px; color: var(--text-light); }

/* ─── Article Layout ────────────────────────────────────────────── */
.article-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 40px;
  max-width: 1200px; margin: 0 auto; padding: 40px 24px 80px; align-items: start;
}
.article-main { min-width: 0; }
.article-sidebar { position: sticky; top: 84px; }
.article-category-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(77,201,168,.12); color: var(--teal-dark);
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
}
.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px,4vw,44px); color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.article-title em { font-style: italic; color: var(--teal-dark); }
.article-deck { font-size: 17px; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; max-width: 680px; }

/* ─── Newsletter ────────────────────────────────────────────────── */
.newsletter {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius); padding: 36px 40px;
  display: flex; gap: 40px; align-items: center; margin-bottom: 48px;
}
.newsletter-text { flex: 1; }
.newsletter-text h2 { font-family: 'Playfair Display', serif; font-size: 24px; color: #fff; margin-bottom: 8px; }
.newsletter-text p  { font-size: 14px; color: rgba(255,255,255,.85); margin-bottom: 0; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  padding: 12px 18px; border-radius: 100px; border: none;
  font-size: 14px; width: 240px; outline: none; font-family: 'Inter', sans-serif;
}
.newsletter-form button {
  background: var(--navy); color: #fff; padding: 12px 22px;
  border-radius: 100px; border: none; font-size: 14px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: background .2s; font-family: 'Inter', sans-serif;
}
.newsletter-form button:hover { background: var(--navy-light); }

/* ─── Footer ────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 24px; color: #fff; margin-bottom: 14px; }
.footer-logo span { color: var(--teal); }
.footer-about { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.footer-col ul,
.footer-col .menu { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; font-size: 12px;
  color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 8px;
}

/* ─── Homepage: Hero ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a5a 100%);
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234DC9A8' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; display: flex; gap: 64px; align-items: center; }
.hero-text { flex: 1; }
.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,58px);
  color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--teal); }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 32px; max-width: 520px; line-height: 1.7; }
.hero-search { display: flex; gap: 0; max-width: 480px; background: #fff; border-radius: 100px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.2); margin-bottom: 28px; }
.hero-search input {
  flex: 1; padding: 16px 24px; border: none; font-size: 15px; outline: none;
  font-family: 'Inter', sans-serif; color: var(--text); background: transparent;
}
.hero-search button {
  background: var(--teal); color: #fff; border: none; padding: 14px 24px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s;
  font-family: 'Inter', sans-serif;
}
.hero-search button:hover { background: var(--teal-dark); }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-tag {
  font-size: 12px; color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08); padding: 5px 13px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12); transition: all .2s;
}
.hero-tag:hover { background: rgba(77,201,168,.2); color: var(--teal); border-color: rgba(77,201,168,.3); }
.hero-image-col { flex-shrink: 0; width: 420px; position: relative; }
.hero-img-card {
  border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.35);
  height: 340px; background: var(--navy-light);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(77,201,168,.15), rgba(27,42,74,.4));
  border: 2px dashed rgba(77,201,168,.3);
}
.hero-placeholder-inner {
  text-align: center; color: rgba(255,255,255,.6);
}
.hero-placeholder-icon { font-size: 48px; display: block; margin-bottom: 12px; }
.hero-placeholder-text { font-size: 13px; line-height: 1.6; }
.hero-placeholder-text strong { color: var(--teal); }

.hero-trust-strip {
  display: flex; gap: 20px; justify-content: center; align-items: center;
  margin-top: 20px; flex-wrap: wrap;
}
.hero-trust-item { font-size: 12px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 5px; }

/* ─── Homepage: Category Cards ──────────────────────────────────── */
.home-section { padding: 80px 0; }
.home-section-alt { background: var(--white); }
.home-section-dark { background: var(--navy); }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.category-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.category-card-img { height: 160px; overflow: hidden; background: var(--bg); }
.category-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.category-card:hover .category-card-img img { transform: scale(1.04); }
.category-card-body { padding: 20px; }
.category-card-icon { font-size: 28px; margin-bottom: 10px; }
.category-card-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.category-card-desc  { font-size: 13px; color: var(--text-light); margin-bottom: 14px; line-height: 1.6; }
.category-card-link  { font-size: 13px; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 4px; }

/* ─── Homepage: Review Cards ────────────────────────────────────── */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.review-card-img-wrap { position: relative; height: 180px; overflow: hidden; background: var(--bg); }
.review-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.review-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.review-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.review-card-cat  { font-size: 11px; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.review-card-title { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.review-card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.review-card-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.review-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.review-card-price { font-size: 15px; font-weight: 700; color: var(--navy); }

/* ─── Blog List ─────────────────────────────────────────────────── */
.post-list { display: flex; flex-direction: column; gap: 28px; }
.post-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; gap: 24px; overflow: hidden; transition: box-shadow .2s;
}
.post-item:hover { box-shadow: var(--card-shadow-hover); }
.post-item-img { width: 200px; flex-shrink: 0; overflow: hidden; background: var(--bg); }
.post-item-img img { width: 100%; height: 100%; object-fit: cover; }
.post-item-body { padding: 24px; flex: 1; }
.post-item-meta { font-size: 12px; color: var(--text-light); margin-bottom: 8px; display: flex; gap: 12px; flex-wrap: wrap; }
.post-item-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.post-item-title a:hover { color: var(--teal-dark); }
.post-item-excerpt { font-size: 14px; color: var(--text-light); margin-bottom: 14px; }

/* ─── Pagination ────────────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 40px; }
.pagination .page-numbers {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text);
  border: 1.5px solid var(--border); transition: all .2s;
}
.pagination .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--navy); color: var(--navy); }

/* ─── Single Post ───────────────────────────────────────────────── */
.single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 40px 24px 80px; }
.single-hero { height: 400px; overflow: hidden; border-radius: var(--radius); margin-bottom: 36px; background: var(--bg); }
.single-hero img { width: 100%; height: 100%; object-fit: cover; }
.single-title { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,42px); color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.single-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.single-meta a { color: var(--teal-dark); }

/* ─── 404 ───────────────────────────────────────────────────────── */
.not-found { text-align: center; padding: 100px 24px; }
.not-found-code { font-size: 120px; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 16px; }
.not-found h1 { font-size: 32px; color: var(--navy); margin-bottom: 12px; }
.not-found p  { font-size: 16px; color: var(--text-light); margin-bottom: 32px; }

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .article-layout, .single-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .picks-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .trust-signal-grid { grid-template-columns: 1fr 1fr; }
  .top-pick-hero { flex-direction: column; }
  .top-pick-img { width: 100%; height: 200px; }
  .hero-inner { flex-direction: column; }
  .hero-image-col { width: 100%; }
  .category-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .picks-grid { grid-template-columns: 1fr; }
  .pick-body { flex-direction: column; }
  .pick-img-col { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .pick-sticky-cta { position: static; }
  .trust-signal-grid { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .menu-toggle { display: block; }
  .category-grid, .review-grid { grid-template-columns: 1fr; }
  .post-item { flex-direction: column; }
  .post-item-img { width: 100%; height: 160px; }
  .hero-title { font-size: 32px; }
  .hero { padding: 60px 0 50px; }
}

/* ─── Mobile Nav Drawer ─────────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--navy); flex-direction: column; padding: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav-close { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav li a { display: block; font-size: 20px; color: rgba(255,255,255,.85); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
