/*
Theme Name: WellTech Picks
Theme URI: https://mercatoresonline.com
Author: Mercatores Online
Author URI: https://mercatoresonline.com
Description: A premium affiliate review theme for health technology, AI wearables, pet health, natural wellness, and neurodevelopmental tools. Editorial magazine aesthetic with clean, trustworthy design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: welltech-picks
Tags: affiliate, reviews, health, technology, magazine, responsive
*/

/* ═══════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════ */
:root {
  --cream: #F7F4EF;
  --white: #FFFFFF;
  --ink: #1A1814;
  --ink2: #3D3A35;
  --ink3: #6B6760;
  --teal: #0B6E6E;
  --teal-lt: #E0F2F2;
  --teal-dk: #084F4F;
  --gold: #B8860B;
  --gold-lt: #FBF3DC;
  --sage: #4A7C59;
  --sage-lt: #EAF3ED;
  --violet: #5B4FCF;
  --violet-lt: #EEEDFE;
  --red: #C23B2A;
  --red-lt: #FAEAE7;
  --border: rgba(26,24,20,.1);
  --border-md: rgba(26,24,20,.18);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'DM Mono', 'Courier New', monospace;
  --nav-h: 68px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 2px 12px rgba(26,24,20,.07);
  --shadow-md: 0 8px 32px rgba(26,24,20,.10);
  --shadow-lg: 0 20px 60px rgba(26,24,20,.13);
  --max-w: 1160px;
}

/* ═══════════════════════════════════
   RESET & BASE
═══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }
::selection { background: var(--teal-lt); color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-dk); }
ul, ol { padding-left: 1.5em; }
table { width: 100%; border-collapse: collapse; }

/* ═══════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700;
}
h1 { font-size: clamp(32px, 4.5vw, 52px); letter-spacing: -1px; }
h2 { font-size: clamp(24px, 3vw, 36px); letter-spacing: -.6px; }
h3 { font-size: clamp(20px, 2.5vw, 26px); letter-spacing: -.3px; }
h4 { font-size: 20px; }
h5 { font-size: 17px; font-family: var(--sans); font-weight: 600; }
h6 { font-size: 15px; font-family: var(--sans); font-weight: 600; }
p { color: var(--ink2); line-height: 1.78; margin-bottom: 1.2em; font-size: 16px; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 600; color: var(--ink); }
em, i { font-style: italic; }
small { font-size: 13px; color: var(--ink3); }
code, pre { font-family: var(--mono); font-size: 14px; background: rgba(26,24,20,.05); border-radius: 4px; padding: 2px 6px; }
blockquote {
  border-left: 4px solid var(--teal);
  margin: 2em 0;
  padding: 1.2em 1.5em;
  background: var(--teal-lt);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
}

/* ═══════════════════════════════════
   LAYOUT
═══════════════════════════════════ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-sidebar { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
#page { display: flex; flex-direction: column; min-height: 100vh; }
#content { flex: 1; padding-top: var(--nav-h); }

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
#masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(247,244,239,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#masthead.scrolled { box-shadow: 0 2px 24px rgba(26,24,20,.08); }
.nav-inner {
  display: flex; align-items: center; height: var(--nav-h);
  gap: 0; max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
}
.site-branding { margin-right: 32px; flex-shrink: 0; }
.site-title { margin: 0; font-family: var(--serif); font-size: 22px; font-weight: 700; letter-spacing: -.4px; }
.site-title a { color: var(--ink); }
.site-title a em { color: var(--teal); font-style: italic; }
.site-description { display: none; }
.custom-logo-link img { height: 40px; width: auto; }

/* Main navigation */
#site-navigation { flex: 1; }
.nav-menu { list-style: none; display: flex; gap: 2px; padding: 0; margin: 0; }
.nav-menu li a {
  display: block; padding: 7px 14px;
  font-size: 14px; color: var(--ink2);
  border-radius: 24px; transition: all .18s;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current-page-ancestor a {
  background: var(--ink); color: var(--white);
}
.nav-menu .menu-item-has-children { position: relative; }
.nav-menu .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border-md);
  border-radius: var(--r-md); padding: 8px; min-width: 200px;
  box-shadow: var(--shadow-md); z-index: 100;
}
.nav-menu .menu-item-has-children:hover .sub-menu { display: block; }
.nav-menu .sub-menu li a { border-radius: var(--r-sm); font-size: 14px; }

/* Nav search */
.nav-search-wrap {
  display: flex; align-items: center;
  background: var(--white); border: 1px solid var(--border-md);
  border-radius: 28px; padding: 7px 14px; margin-right: 12px;
  transition: all .2s; width: 220px;
}
.nav-search-wrap:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(11,110,110,.1); width: 280px; }
.nav-search-wrap input[type="search"] {
  border: none; background: none; outline: none;
  font-size: 13px; font-family: var(--sans); color: var(--ink); width: 100%;
}
.nav-search-wrap input[type="search"]::placeholder { color: var(--ink3); }
.nav-search-wrap .search-icon { color: var(--ink3); font-size: 15px; flex-shrink: 0; margin-right: 6px; }
.nav-cta {
  background: var(--teal); color: var(--white); border: none;
  padding: 9px 20px; border-radius: 24px; font-size: 14px; font-weight: 500;
  transition: all .2s; white-space: nowrap; flex-shrink: 0;
  font-family: var(--sans); cursor: pointer;
}
.nav-cta:hover { background: var(--ink); transform: translateY(-1px); color: var(--white); }

/* Mobile menu toggle */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px; flex-shrink: 0;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; z-index: 199; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 12px; font-size: 16px; color: var(--ink2);
  border-radius: 10px; transition: background .15s;
}
.mobile-nav a:hover { background: var(--teal-lt); color: var(--ink); }
.mobile-nav .mobile-search { margin-bottom: 10px; }
.mobile-nav .mobile-search input {
  width: 100%; padding: 12px 16px; border-radius: 28px;
  border: 1px solid var(--border-md); background: var(--white);
  font-size: 14px; font-family: var(--sans); outline: none;
}

/* ═══════════════════════════════════
   BUTTONS & BADGES
═══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: 28px; font-size: 14px;
  font-weight: 500; border: none; transition: all .2s; cursor: pointer;
  letter-spacing: .01em; font-family: var(--sans); text-decoration: none;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); color: var(--white); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border-md); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--ink); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

.badge {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
}
.b-teal { background: var(--teal-lt); color: var(--teal); }
.b-gold { background: var(--gold-lt); color: var(--gold); }
.b-sage { background: var(--sage-lt); color: var(--sage); }
.b-violet { background: var(--violet-lt); color: var(--violet); }
.b-red { background: var(--red-lt); color: var(--red); }
.b-ink { background: var(--ink); color: var(--white); }
.b-gray { background: rgba(26,24,20,.07); color: var(--ink2); }

/* Stars */
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.score-chip {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--gold-lt); border-radius: var(--r-sm); padding: 4px 10px;
}
.score-chip .score-n { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--gold); }
.score-chip .score-max { font-size: 11px; color: var(--ink3); }

/* ═══════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════ */
.section-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.eyebrow-line { width: 28px; height: 2px; background: var(--teal); flex-shrink: 0; }
.eyebrow-text { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .09em; color: var(--teal); }
.section-hdr-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.section-hdr-row h2 { font-size: clamp(26px, 3vw, 38px); letter-spacing: -.7px; }
.section-hdr-row .section-desc { color: var(--ink2); margin-top: 6px; font-weight: 300; font-size: 16px; }

/* ═══════════════════════════════════
   HERO (Homepage)
═══════════════════════════════════ */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px; top: -180px; right: -120px;
  background: radial-gradient(circle, var(--teal-lt) 0%, transparent 68%); opacity: .55;
}
.hero-orb-2 {
  width: 380px; height: 380px; bottom: -80px; left: -60px;
  background: radial-gradient(circle, var(--sage-lt) 0%, transparent 70%); opacity: .4;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; position: relative; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hero-eyebrow p { font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin: 0; }
.hero h1 { font-size: clamp(40px, 5.2vw, 64px); font-weight: 700; line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-sub { font-size: 17px; color: var(--ink2); line-height: 1.72; max-width: 500px; margin-bottom: 32px; font-weight: 300; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 28px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border); }
.hs-num { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); }
.hs-lbl { font-size: 12px; color: var(--ink3); margin-top: 2px; }
.hero-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.hc-img { height: 230px; background: linear-gradient(145deg, #0B3D3D, #1A6B6B); display: flex; align-items: center; justify-content: center; font-size: 88px; position: relative; }
.hc-score { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--white); padding: 4px 12px; border-radius: 20px; font-family: var(--serif); font-size: 13px; font-weight: 600; }
.hc-body { padding: 22px 26px; }
.hc-body h3 { font-family: var(--serif); font-size: 20px; margin: 8px 0 6px; }
.hc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.hc-price { font-size: 23px; font-weight: 600; color: var(--red); }

/* Ticker */
.ticker-wrap { overflow: hidden; padding: 13px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ticker-track { display: flex; gap: 48px; animation: ticker 35s linear infinite; white-space: nowrap; }
.ticker-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink2); flex-shrink: 0; }
.ticker-sep { color: var(--teal); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════
   NICHE TABS
═══════════════════════════════════ */
.niche-tabs { display: flex; gap: 6px; flex-wrap: wrap; padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.niche-tab {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 28px; border: 1px solid var(--border-md);
  background: var(--white); font-size: 14px; cursor: pointer; transition: .18s;
  font-family: var(--sans); color: var(--ink); text-decoration: none;
}
.niche-tab:hover, .niche-tab.active { background: var(--teal); color: var(--white); border-color: var(--teal); }
.niche-tab .nt-icon { font-size: 16px; }

/* ═══════════════════════════════════
   CARDS
═══════════════════════════════════ */
/* Review card */
.rv-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: all .28s;
}
.rv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-md); }
.rv-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; overflow: hidden; flex-shrink: 0; }
.rv-img img { width: 100%; height: 100%; object-fit: cover; }
.rv-img-badge { position: absolute; top: 12px; left: 12px; }
.rv-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.rv-body h3 { font-family: var(--serif); font-size: 17px; margin: 7px 0 8px; line-height: 1.3; color: var(--ink); }
.rv-body p { font-size: 13.5px; color: var(--ink2); flex: 1; font-weight: 300; line-height: 1.65; margin: 0; }
.rv-footer { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; gap: 8px; }
.rv-price { font-size: 19px; font-weight: 600; color: var(--ink); }
.rv-price small { font-size: 12px; font-weight: 400; color: var(--ink3); }

/* Blog/article card */
.bl-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all .28s; }
.bl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bl-img { height: 180px; overflow: hidden; background: linear-gradient(135deg, #2A2418, #4A3F30); display: flex; align-items: center; justify-content: center; font-size: 52px; }
.bl-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bl-card:hover .bl-img img { transform: scale(1.04); }
.bl-body { padding: 18px 20px; }
.bl-body h3 { font-family: var(--serif); font-size: 17px; margin: 8px 0 8px; line-height: 1.3; color: var(--ink); }
.bl-body p { font-size: 13px; color: var(--ink2); font-weight: 300; line-height: 1.65; margin: 0; }
.bl-footer { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; border-top: 1px solid var(--border); }
.bl-author { font-size: 12px; color: var(--ink3); }
.bl-time { font-size: 12px; color: var(--ink3); font-family: var(--mono); }
.bl-cat { font-size: 11px; }

/* ═══════════════════════════════════
   PAGE HERO
═══════════════════════════════════ */
.page-hero { padding: 56px 0 44px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(34px, 4vw, 52px); letter-spacing: -.9px; margin-top: 10px; }
.page-hero p { font-size: 17px; font-weight: 300; color: var(--ink2); margin-top: 10px; max-width: 560px; }

/* Filter bar */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.filter-btn {
  padding: 8px 18px; border-radius: 28px; border: 1px solid var(--border-md);
  background: var(--white); font-size: 13px; cursor: pointer; transition: .18s; font-family: var(--sans); color: var(--ink);
}
.filter-btn:hover, .filter-btn.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ═══════════════════════════════════
   SINGLE REVIEW PAGE
═══════════════════════════════════ */
.review-hero { padding: 48px 0 0; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink3); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--ink3); transition: color .15s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { color: var(--border-md); }
.review-hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.review-meta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.review-by { font-size: 13px; color: var(--ink3); margin-bottom: 16px; }
.review-updated { font-size: 12px; color: var(--ink3); font-family: var(--mono); }

/* Score bars */
.score-bars { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px 22px; margin-top: 20px; }
.score-bars-title { font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink3); margin-bottom: 14px; }
.rsb-bar-row { margin-bottom: 11px; }
.rsb-bar-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 4px; color: var(--ink2); }
.rsb-bar-label span:last-child { font-weight: 600; color: var(--ink); }
.rsb-bar { height: 6px; background: var(--cream); border-radius: 3px; overflow: hidden; border: 1px solid var(--border); }
.rsb-fill { height: 100%; border-radius: 3px; background: var(--teal); }
.verdict-box { background: var(--teal); color: var(--white); border-radius: var(--r-md); padding: 16px 20px; margin-top: 16px; }
.vb-label { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; opacity: .7; margin-bottom: 4px; }
.verdict-box p { font-size: 14px; line-height: 1.65; opacity: .9; font-weight: 300; color: var(--white); margin: 0; }

/* Buy box */
.buy-box {
  background: var(--white); border: 1px solid var(--border-md);
  border-radius: var(--r-lg); padding: 26px;
  position: sticky; top: calc(var(--nav-h) + 20px);
  box-shadow: var(--shadow-sm);
}
.bb-img {
  height: 220px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 88px; margin-bottom: 18px; border: 1px solid var(--border);
  overflow: hidden;
}
.bb-img img { width: 100%; height: 100%; object-fit: cover; }
.bb-name { font-family: var(--serif); font-size: 19px; margin-bottom: 10px; color: var(--ink); }
.bb-score-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.bb-price { font-size: 30px; font-weight: 700; color: var(--ink); }
.bb-was { font-size: 14px; color: var(--ink3); text-decoration: line-through; margin-left: 6px; }
.bb-save { font-size: 13px; color: var(--red); font-weight: 500; margin-bottom: 18px; }
.bb-cta-amazon {
  display: block; width: 100%; padding: 14px; border-radius: var(--r-md);
  background: #FF9900; color: var(--ink); border: none; font-size: 15px; font-weight: 700;
  text-align: center; cursor: pointer; transition: all .2s; font-family: var(--sans); margin-bottom: 10px; text-decoration: none;
}
.bb-cta-amazon:hover { background: #e68900; transform: translateY(-1px); color: var(--ink); }
.bb-trust { border-top: 1px solid var(--border); padding-top: 14px; margin-top: 6px; }
.bb-trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink2); margin-bottom: 7px; }
.bb-disclosure { font-size: 11px; color: var(--ink3); line-height: 1.5; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }

/* Specs section */
.specs-section { padding: 48px 0; border-top: 1px solid var(--border); }
.specs-table { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.specs-table table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.specs-table thead th { background: var(--ink); color: var(--white); text-align: left; padding: 13px 18px; font-size: 12px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; font-family: var(--sans); }
.specs-table tbody tr:nth-child(even) { background: var(--cream); }
.specs-table td { padding: 11px 18px; border-bottom: 1px solid var(--border); }
.specs-table td:first-child { color: var(--ink3); font-size: 13px; width: 42%; }
.specs-table td:last-child { font-weight: 500; color: var(--ink); }
.specs-table tr:last-child td { border-bottom: none; }

/* Comparison table */
.compare-wrap { overflow-x: auto; }
.compare-table { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.compare-table table { min-width: 520px; font-size: 13px; }
.compare-table th { padding: 13px 16px; text-align: center; font-size: 12px; font-weight: 500; letter-spacing: .04em; background: var(--cream); color: var(--ink2); font-family: var(--sans); }
.compare-table th:first-child { text-align: left; }
.compare-table th.col-this { background: var(--teal); color: var(--white); }
.compare-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); text-align: center; vertical-align: middle; }
.compare-table td:first-child { text-align: left; font-size: 12.5px; color: var(--ink2); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--sage); font-weight: 700; }
.compare-table .cross { color: var(--red); }
.compare-table .best { font-weight: 700; color: var(--teal); }

/* Review body content */
.review-content { padding: 48px 0; }
.review-content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.review-body { max-width: 720px; }
.review-body h2 { font-size: 26px; letter-spacing: -.4px; margin: 36px 0 14px; }
.review-body h2:first-child { margin-top: 0; }
.review-body p { font-size: 16px; line-height: 1.8; }
.callout-box { background: var(--teal-lt); border: 1px solid rgba(11,110,110,.2); border-radius: var(--r-md); padding: 16px 20px; margin: 20px 0; }
.callout-box p { font-size: 14px; font-weight: 500; color: var(--teal); margin: 0; }
.pros-cons-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.pc-card { border-radius: var(--r-md); padding: 18px 20px; }
.pc-card.pros { background: var(--sage-lt); border: 1px solid rgba(74,124,89,.15); }
.pc-card.cons { background: var(--red-lt); border: 1px solid rgba(194,59,42,.15); }
.pc-card h4 { font-family: var(--serif); font-size: 16px; margin-bottom: 12px; }
.pc-card.pros h4 { color: var(--sage); }
.pc-card.cons h4 { color: var(--red); }
.pc-card ul { list-style: none; padding: 0; }
.pc-card ul li { font-size: 13.5px; color: var(--ink2); display: flex; gap: 7px; line-height: 1.5; margin-bottom: 8px; }
.pc-card.pros ul li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.pc-card.cons ul li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* Review sidebar (sticky related products) */
.review-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }
.related-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; }
.related-box h4 { font-family: var(--serif); font-size: 16px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.related-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.related-item:last-child { border-bottom: none; }
.related-thumb { width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--cream); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; overflow: hidden; }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-name { font-size: 13px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.related-price { font-size: 12px; color: var(--ink3); margin-top: 2px; }

/* ═══════════════════════════════════
   NEWSLETTER
═══════════════════════════════════ */
.nl-section { background: var(--ink); color: var(--white); border-radius: var(--r-xl); padding: 60px; position: relative; overflow: hidden; }
.nl-section::before { content: ''; position: absolute; width: 450px; height: 450px; background: radial-gradient(circle, var(--teal) 0%, transparent 65%); top: -120px; right: -100px; opacity: .12; border-radius: 50%; pointer-events: none; }
.nl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.nl-grid h2 { font-size: 34px; letter-spacing: -.7px; color: var(--white); }
.nl-grid > div > p { color: rgba(247,244,239,.6); margin-top: 10px; font-weight: 300; }
.nl-form { display: flex; gap: 10px; margin-top: 22px; }
.nl-form input { flex: 1; padding: 13px 20px; border-radius: 28px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); color: var(--white); font-size: 14px; font-family: var(--sans); outline: none; transition: border-color .2s; }
.nl-form input::placeholder { color: rgba(247,244,239,.35); }
.nl-form input:focus { border-color: var(--teal); }
.nl-feats { display: flex; flex-direction: column; gap: 16px; }
.nl-feat { display: flex; align-items: flex-start; gap: 14px; }
.nl-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(11,110,110,.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.nl-feat-t { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.nl-feat-d { font-size: 13px; color: rgba(247,244,239,.5); font-weight: 300; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
#colophon { background: var(--ink); color: var(--white); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-logo { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; display: block; }
.footer-logo em { font-style: italic; color: var(--teal); }
.footer-desc { color: rgba(247,244,239,.5); font-size: 14px; font-weight: 300; line-height: 1.7; max-width: 260px; margin-bottom: 14px; }
.footer-col h5 { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(247,244,239,.35); margin-bottom: 14px; font-family: var(--sans); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { font-size: 14px; color: rgba(247,244,239,.65); transition: color .18s; }
.footer-links li a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(247,244,239,.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(247,244,239,.35); margin: 0; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 13px; color: rgba(247,244,239,.35); transition: color .18s; }
.footer-legal a:hover { color: var(--white); }
.affiliate-notice { padding: 12px 16px; background: rgba(11,110,110,.12); border: 1px solid rgba(11,110,110,.22); border-radius: var(--r-sm); font-size: 12px; color: rgba(247,244,239,.5); line-height: 1.6; }

/* ═══════════════════════════════════
   WORDPRESS CONTENT STYLES
═══════════════════════════════════ */
.entry-content { font-size: 16px; line-height: 1.8; }
.entry-content h1,.entry-content h2,.entry-content h3 { margin-top: 1.8em; margin-bottom: .6em; }
.entry-content ul,.entry-content ol { margin: 1em 0 1em 1.5em; }
.entry-content li { margin-bottom: .4em; color: var(--ink2); }
.entry-content table { margin: 1.5em 0; }
.entry-content table th { background: var(--ink); color: var(--white); padding: 10px 14px; text-align: left; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.entry-content table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.entry-content table tr:nth-child(even) td { background: var(--cream); }
.entry-content figure { margin: 2em 0; }
.entry-content figure img { border-radius: var(--r-md); width: 100%; }
.entry-content figcaption { text-align: center; font-size: 13px; color: var(--ink3); margin-top: .5em; }
.entry-content .wp-block-image { margin: 2em 0; }
.entry-content a { color: var(--teal); text-decoration: underline; text-decoration-color: rgba(11,110,110,.3); }
.entry-content a:hover { text-decoration-color: var(--teal); }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination .page-numbers { padding: 9px 16px; border-radius: 28px; border: 1px solid var(--border-md); background: var(--white); font-size: 14px; color: var(--ink2); transition: .18s; }
.pagination .page-numbers:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.pagination .page-numbers.current { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* Search results */
.search-results-grid { display: flex; flex-direction: column; gap: 24px; }
.search-result-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; display: flex; gap: 20px; align-items: flex-start; }
.search-result-thumb { width: 80px; height: 80px; border-radius: var(--r-md); background: var(--teal-lt); flex-shrink: 0; overflow: hidden; }
.search-result-thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result-title { font-family: var(--serif); font-size: 20px; margin-bottom: 8px; }
.search-result-excerpt { font-size: 14px; color: var(--ink2); font-weight: 300; }

/* 404 page */
.error-404 { text-align: center; padding: 100px 0; }
.error-404 .error-num { font-family: var(--serif); font-size: 120px; color: var(--teal-lt); line-height: 1; }
.error-404 h1 { font-size: 36px; margin-bottom: 16px; }
.error-404 p { max-width: 400px; margin: 0 auto 32px; }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.mission-card { background: var(--ink); color: var(--white); border-radius: var(--r-xl); padding: 44px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.mission-card h3 { font-size: 28px; margin-bottom: 14px; color: var(--white); }
.mission-card p { color: rgba(247,244,239,.65); font-weight: 300; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; }
.val-card { padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); }
.val-icon { font-size: 30px; margin-bottom: 14px; }
.val-card h4 { font-family: var(--serif); font-size: 19px; margin-bottom: 7px; }
.val-card p { font-size: 14px; color: var(--ink2); font-weight: 300; margin: 0; }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-top: 60px; }
.stat-cell { background: var(--white); padding: 30px; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--teal); }
.stat-lbl { font-size: 13px; color: var(--ink3); margin-top: 4px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.team-card { text-align: center; }
.team-avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 30px; border: 3px solid var(--white); overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 15px; font-weight: 500; }
.team-card p { font-size: 13px; color: var(--ink3); margin-top: 2px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 56px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 11px; margin-top: 28px; }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); }
.cm-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-lt); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.cm-label { font-size: 12px; color: var(--ink3); }
.cm-value { font-size: 14px; font-weight: 500; color: var(--ink); margin-top: 2px; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 38px; }
.contact-form-wrap h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 22px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--ink2); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 11px 15px; border-radius: 10px; border: 1px solid var(--border-md); background: var(--cream); font-size: 14px; font-family: var(--sans); color: var(--ink); transition: border-color .2s; outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); background: var(--white); }
.form-textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ═══════════════════════════════════
   WIDGET AREAS
═══════════════════════════════════ */
.widget { margin-bottom: 32px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.widget-title { font-family: var(--serif); font-size: 18px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.widget ul { list-style: none; padding: 0; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--ink2); }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--ink2); transition: color .18s; }
.widget ul li a:hover { color: var(--teal); }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .review-hero-grid, .review-content-grid { grid-template-columns: 1fr; gap: 32px; }
  .buy-box, .review-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .nl-grid { grid-template-columns: 1fr; gap: 32px; }
  .nl-section { padding: 40px 24px; }
  #site-navigation, .nav-search-wrap, .nav-cta { display: none !important; }
  .menu-toggle { display: flex; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pros-cons-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .hero h1 { font-size: 36px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
}

/* ═══════════════════════════════════
   PRINT
═══════════════════════════════════ */
@media print {
  #masthead, #colophon, .buy-box, .nl-section { display: none; }
  #content { padding-top: 0; }
  body { background: white; color: black; }
}
