/* ============================================
   247VERDICT — Main CSS
   Design: Sharp editorial. Navy + coral red.
   Fonts: Sora (headings) + Source Sans 3 (body)
   ============================================ */

/* --- CSS Variables --- */
:root {
  --navy:       #1a1a2e;
  --navy-mid:   #16213e;
  --navy-light: #0f3460;
  --coral:      #e94560;
  --coral-dark: #c73652;
  --white:      #ffffff;
  --off-white:  #f8f9fa;
  --grey-light: #f1f3f5;
  --grey:       #dee2e6;
  --grey-mid:   #adb5bd;
  --grey-dark:  #6c757d;
  --text:       #212529;
  --text-light: #495057;
  --green:      #2d9b5a;
  --green-bg:   #edf7f2;
  --red-bg:     #fff0f3;
  --amber:      #f59f00;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
  --radius:     8px;
  --radius-lg:  14px;
  --font-head:  'Sora', system-ui, sans-serif;
  --font-body:  'Source Sans 3', system-ui, sans-serif;
  --max-width:  1200px;
  --container:  1100px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Utilities --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.section-pad { padding: 3.5rem 0; }
.section-pad--grey { background: var(--grey-light); }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

.section-header { margin-bottom: 2rem; }
.section-sub { color: var(--grey-dark); font-size: 1.05rem; margin-top: 0.25rem; margin-bottom: 0; }

/* --- Disclosure Bar --- */
.disclosure-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  text-align: center;
}
.disclosure-bar .container { display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.disclosure-bar a { color: var(--coral); text-decoration: underline; }
.disclosure-icon { font-style: normal; font-size: 0.9rem; }

/* --- Header & Navigation --- */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--grey-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-247 { color: var(--coral); }
.logo-verdict { color: var(--navy); }
.footer-logo { font-size: 1.3rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--grey-light); color: var(--navy); }
.nav-about { color: var(--grey-dark) !important; font-weight: 400 !important; font-size: 0.88rem !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.25s; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-light); color: var(--white); }
.btn--secondary { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn--secondary:hover { background: var(--navy); color: var(--white); }
.btn--amazon { font-size: 0.88rem; padding: 0.55rem 1rem; }
.btn--uk { background: #003078; color: var(--white); }
.btn--uk:hover { background: #001f55; color: var(--white); }
.btn--us { background: #B12704; color: var(--white); }
.btn--us:hover { background: #8a1f03; color: var(--white); }
.btn--review { background: var(--grey-light); color: var(--navy); border: 1px solid var(--grey); }
.btn--review:hover { background: var(--grey); color: var(--navy); }
.btn--lg { padding: 0.8rem 1.5rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn-flag { font-size: 1rem; }

/* --- Hero (Homepage) --- */
.hero { background: var(--navy); padding: 4rem 0; }
.hero__inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.hero__title { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; }
.hero__title--accent { color: var(--coral); display: block; }
.hero__sub { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 540px; margin-bottom: 1.75rem; }
.hero__cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__cta .btn--primary { background: var(--coral); }
.hero__cta .btn--primary:hover { background: var(--coral-dark); }
.hero__stats { display: flex; flex-direction: column; gap: 1.5rem; padding: 1.5rem 2rem; background: rgba(255,255,255,0.07); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--coral); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }

/* --- Category Hero --- */
.cat-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 3rem 0; }
.cat-hero__inner { display: flex; align-items: center; gap: 1.5rem; }
.cat-icon { font-size: 3rem; flex-shrink: 0; }
.cat-hero__title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--white); margin-bottom: 0.5rem; }
.cat-hero__intro { color: rgba(255,255,255,0.8); max-width: 680px; font-size: 1.1rem; margin: 0; }

/* --- Page Hero (generic) --- */
.page-hero { background: var(--navy); padding: 2.5rem 0; }
.page-hero__title { color: var(--white); margin-bottom: 0.5rem; }
.page-hero__sub { color: rgba(255,255,255,0.75); max-width: 680px; font-size: 1.1rem; }
.page-hero__meta { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1rem; }
.meta-item { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* --- Quick Nav --- */
.quick-nav { background: var(--grey-light); border-bottom: 1px solid var(--grey); padding: 0.65rem 0; overflow-x: auto; }
.quick-nav .container { display: flex; align-items: center; gap: 0.75rem; white-space: nowrap; }
.quick-nav__label { font-size: 0.82rem; font-weight: 600; color: var(--grey-dark); text-transform: uppercase; letter-spacing: 0.05em; flex-shrink: 0; }
.quick-nav__link { font-size: 0.88rem; color: var(--navy-light); font-weight: 500; padding: 0.2rem 0.5rem; border-radius: 4px; }
.quick-nav__link:hover { background: var(--grey); color: var(--navy); }

/* --- Category Cards Grid --- */
.cat-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.cat-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  color: inherit;
}
.cat-card:hover { box-shadow: var(--shadow); border-color: var(--coral); transform: translateY(-2px); }
.cat-card__icon { font-size: 2.25rem; }
.cat-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--navy); margin: 0; }
.cat-card__desc { color: var(--grey-dark); font-size: 0.93rem; flex: 1; }
.cat-card__link { color: var(--coral); font-weight: 600; font-size: 0.9rem; margin-top: 0.5rem; }

/* --- Trust Grid --- */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.trust-item { padding: 1.5rem; background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius-lg); }
.trust-icon { font-size: 1.8rem; display: block; margin-bottom: 0.75rem; }
.trust-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--navy); }
.trust-item p { font-size: 0.93rem; color: var(--text-light); margin: 0; }

/* --- Guides Grid --- */
.guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.guide-card { background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; transition: box-shadow 0.2s; color: inherit; }
.guide-card:hover { box-shadow: var(--shadow); }
.guide-cat { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--coral); }
.guide-title { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.05rem; margin: 0; }
.guide-desc { font-size: 0.92rem; color: var(--grey-dark); flex: 1; }
.guide-link { color: var(--coral); font-weight: 600; font-size: 0.88rem; margin-top: auto; }

/* --- Promise Section --- */
.promise-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.promise-inner h2 { color: var(--navy); margin-bottom: 1rem; }
.promise-inner p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 1.5rem; }

/* --- Filter Bar --- */
.filter-bar { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; padding: 0.75rem 1rem; background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius); }
.filter-label { font-size: 0.88rem; font-weight: 600; color: var(--grey-dark); margin-right: 0.25rem; }
.filter-btn { padding: 0.35rem 0.9rem; border-radius: 99px; font-size: 0.85rem; font-weight: 600; border: 2px solid var(--grey); color: var(--text); transition: all 0.15s; background: var(--white); }
.filter-btn:hover, .filter-btn--active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* --- Products Table --- */
.products-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--grey); }
.products-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; background: var(--white); }
.products-table th { background: var(--navy); color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.8rem 1rem; text-align: left; }
.products-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--grey-light); vertical-align: middle; }
.products-table tr:last-child td { border-bottom: none; }
.products-table tr:hover td { background: var(--off-white); }
.product-link { font-weight: 600; color: var(--navy-light); }
.product-link:hover { color: var(--coral); }
.table-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.45rem; border-radius: 4px; margin-left: 0.4rem; text-transform: uppercase; letter-spacing: 0.04em; }
.badge--pick { background: var(--coral); color: var(--white); }
.badge--value { background: var(--green); color: var(--white); }
.score-pill { display: inline-block; background: var(--navy); color: var(--white); font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 99px; }
.table-stars { font-weight: 700; color: var(--amber); }
.table-review-count { font-size: 0.8rem; color: var(--grey-dark); }
.table-cta-cell { white-space: nowrap; }
.table-btn { display: inline-block; padding: 0.25rem 0.6rem; border-radius: 4px; font-size: 0.78rem; font-weight: 700; margin-right: 0.25rem; }
.table-btn--uk { background: #003078; color: var(--white); }
.table-btn--us { background: #B12704; color: var(--white); }

/* --- Use Case Grid --- */
.usecase-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; }
.usecase-card { background: var(--white); border: 2px solid var(--grey); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; transition: all 0.2s; color: inherit; }
.usecase-card:hover { border-color: var(--coral); color: var(--coral); transform: translateX(4px); }
.usecase-card__title { font-weight: 600; font-size: 0.93rem; color: var(--navy); }
.usecase-card:hover .usecase-card__title { color: var(--coral); }
.usecase-card__count { font-size: 0.78rem; color: var(--grey-dark); }
.usecase-card__arrow { font-size: 1.1rem; }

/* --- Buying Criteria Grid --- */
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.criterion-card { background: var(--white); border: 1px solid var(--grey); border-left: 4px solid var(--coral); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.criterion-name { font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.criterion-explanation { font-size: 0.93rem; color: var(--text-light); margin: 0; }
.guide-cta { text-align: center; margin-top: 2rem; }

/* --- Common Mistakes --- */
.mistakes-inner { max-width: 720px; margin: 0 auto; }
.mistakes-list { display: flex; flex-direction: column; gap: 0.75rem; }
.mistakes-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.25rem; background: var(--white); border: 1px solid var(--grey); border-left: 4px solid var(--amber); border-radius: var(--radius); font-size: 0.95rem; color: var(--text); }
.mistake-icon { flex-shrink: 0; font-size: 1.1rem; }

/* --- Subcategory Grid --- */
.subcat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.subcat-card { background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius-lg); padding: 1.25rem; display: flex; flex-direction: column; gap: 0.3rem; transition: box-shadow 0.2s, border-color 0.2s; color: inherit; }
.subcat-card:hover { box-shadow: var(--shadow); border-color: var(--navy-light); }
.subcat-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--navy); margin: 0; }
.subcat-card__desc { font-size: 0.88rem; color: var(--grey-dark); flex: 1; }
.subcat-card__link { color: var(--coral); font-weight: 600; font-size: 0.85rem; margin-top: 0.25rem; }

/* --- FAQ --- */
.faq-block { display: flex; flex-direction: column; gap: 0.5rem; max-width: 820px; }
.faq-item { border: 1px solid var(--grey); border-radius: var(--radius); overflow: hidden; }
.faq-question { padding: 1.1rem 1.25rem; font-family: var(--font-head); font-weight: 600; font-size: 0.97rem; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--coral); flex-shrink: 0; }
details[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 0 1.25rem 1.1rem; }
.faq-answer p { font-size: 0.95rem; color: var(--text-light); margin: 0; }

/* --- Breadcrumb --- */
.breadcrumb { padding: 0.85rem 0; background: var(--white); border-bottom: 1px solid var(--grey-light); }
.breadcrumb__list { display: flex; align-items: center; gap: 0.2rem; flex-wrap: wrap; }
.breadcrumb__item { display: flex; align-items: center; gap: 0.2rem; font-size: 0.85rem; }
.breadcrumb__item a { color: var(--navy-light); font-weight: 500; }
.breadcrumb__item a:hover { color: var(--coral); }
.breadcrumb__item--current span { color: var(--grey-dark); }
.breadcrumb__sep { color: var(--grey-mid); }

/* --- Last Updated --- */
.last-updated { font-size: 0.8rem; color: var(--grey-dark); display: flex; align-items: center; gap: 0.4rem; margin-left: auto; }

/* --- Related Pages --- */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem; }
.related-card { background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; transition: border-color 0.2s; color: var(--navy); }
.related-card:hover { border-color: var(--coral); color: var(--coral); }
.related-card__title { font-weight: 600; font-size: 0.92rem; }
.related-card__arrow { font-size: 1.1rem; }

/* --- Affiliate Note --- */
.affiliate-note { font-size: 0.8rem; color: var(--grey-dark); text-align: center; margin-top: 1rem; }

/* --- Why These --- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.why-item { background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius-lg); padding: 1.5rem; }
.why-item__name { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.75rem; }
.why-item__who-for { font-size: 0.9rem; margin-bottom: 0.5rem; }
.why-item__summary { font-size: 0.93rem; color: var(--text-light); }
.why-item__cta { margin-top: 1rem; }
.link-arrow { color: var(--coral); font-weight: 600; font-size: 0.9rem; }
.link-arrow:hover { color: var(--coral-dark); }

/* --- Who Not Section --- */
.who-not__inner { max-width: 900px; margin: 0 auto; }
.who-not__intro { color: var(--text-light); font-size: 1rem; margin-bottom: 1.5rem; }
.who-not__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.who-not__item { background: var(--red-bg); border: 1px solid #ffd6de; border-radius: var(--radius); padding: 1.25rem; }
.who-not__item h3 { font-size: 0.97rem; color: var(--navy); margin-bottom: 0.4rem; }
.who-not__item p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* --- Price Bands --- */
.price-bands { margin-top: 2rem; }
.price-bands h3 { margin-bottom: 1rem; }
.price-bands__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.price-band-item { background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius); padding: 1rem; }
.price-band-item__label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.04em; }
.price-band-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* --- Review Layout --- */
.review-hero { padding: 2.5rem 0; border-bottom: 1px solid var(--grey-light); }
.review-hero__inner { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; align-items: start; }
.review-hero__image img { width: 280px; height: 280px; object-fit: contain; border-radius: var(--radius-lg); background: var(--grey-light); padding: 1rem; }
.review-hero__brand { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--coral); margin-bottom: 0.4rem; }
.review-hero__title { font-size: clamp(1.5rem, 3.5vw, 2.1rem); color: var(--navy); margin-bottom: 0.5rem; }
.review-hero__tagline { font-size: 1.1rem; color: var(--text-light); margin-bottom: 1rem; }
.review-hero__scores { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.amazon-rating { display: flex; align-items: center; gap: 0.5rem; }
.amazon-rating .stars { color: var(--amber); font-size: 1.05rem; font-weight: 700; }
.review-count { font-size: 0.85rem; color: var(--grey-dark); }
.review-hero__who { display: flex; flex-direction: column; gap: 0.5rem; }
.who-for, .who-not { font-size: 0.93rem; }
.who-label { font-weight: 700; margin-right: 0.4rem; }
.who-label--for { color: var(--green); }
.who-label--not { color: var(--coral); }

/* --- Buy Bar --- */
.buy-bar { background: var(--navy); padding: 0.85rem 0; position: sticky; top: 64px; z-index: 90; }
.buy-bar__inner { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.buy-bar__label { color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 600; margin-right: 0.25rem; white-space: nowrap; }

/* --- Review Grid Layout --- */
.review-layout { padding: 2.5rem 0; }
.review-grid { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
.review-main { }
.review-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--grey-light); }
.review-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.review-summary-box { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 1.5rem 2rem; margin-bottom: 2.5rem; }
.review-summary-box h2 { color: var(--coral); margin-bottom: 0.75rem; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.review-summary-box p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin: 0; line-height: 1.7; }

/* --- Verdict Score --- */
.verdict-score { display: flex; align-items: center; gap: 0.4rem; }
.score-number { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--coral); line-height: 1; }
.score-label { font-family: var(--font-head); font-size: 1rem; color: var(--grey-dark); }
.score-text { font-size: 0.88rem; font-weight: 700; background: var(--coral); color: var(--white); padding: 0.2rem 0.6rem; border-radius: 99px; text-transform: uppercase; letter-spacing: 0.04em; }

/* Final Verdict Box */
.final-verdict .verdict-box { background: var(--grey-light); border: 2px solid var(--navy); border-radius: var(--radius-lg); padding: 2rem; }
.final-verdict .verdict-score { margin-bottom: 1rem; }
.final-verdict p { font-size: 1.05rem; margin-bottom: 1.5rem; }
.verdict-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* --- Sidebar --- */
.review-sidebar { }
.sidebar-sticky { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-buy-card { background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; }
.sidebar-buy-card img { margin: 0 auto 1rem; width: 160px; height: 160px; object-fit: contain; background: var(--grey-light); border-radius: var(--radius); }
.sidebar-buy-card h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.75rem; }
.sidebar-cta { display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0 0.5rem; }
.sidebar-disclosure { font-size: 0.75rem; color: var(--grey-mid); margin: 0; }
.sidebar-alternatives, .sidebar-related { background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius-lg); padding: 1.25rem; }
.sidebar-alternatives h3, .sidebar-related h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--grey-light); }
.alt-item { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; padding: 0.5rem 0; border-bottom: 1px solid var(--grey-light); color: var(--text); font-size: 0.88rem; }
.alt-item:last-child { border-bottom: none; }
.alt-item__name { font-weight: 500; flex: 1; }
.alt-item__score { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; background: var(--navy); color: var(--white); padding: 0.15rem 0.45rem; border-radius: 4px; flex-shrink: 0; }
.sidebar-link { display: block; font-size: 0.88rem; color: var(--navy-light); padding: 0.4rem 0; border-bottom: 1px solid var(--grey-light); font-weight: 500; }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--coral); }

/* --- Comparison Table --- */
.comparison-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--grey); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table th { background: var(--navy); color: var(--white); font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.8rem 1rem; text-align: left; }
.comparison-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--grey-light); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--off-white); }

/* --- Pros/Cons --- */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.pros-block, .cons-block { border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.pros-block { background: var(--green-bg); border: 1px solid #c3e6d4; }
.cons-block { background: var(--red-bg); border: 1px solid #ffd6de; }
.pros-heading { color: var(--green); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.cons-heading { color: var(--coral); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.pros-list, .cons-list { display: flex; flex-direction: column; gap: 0.5rem; }
.pros-list li, .cons-list li { font-size: 0.93rem; color: var(--text); position: relative; padding-left: 1.25rem; }
.pros-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons-list li::before { content: '✗'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }

/* --- Specs Table --- */
.specs-table-wrap { overflow-x: auto; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; border: 1px solid var(--grey); border-radius: var(--radius); overflow: hidden; }
.specs-table th { background: var(--grey-light); padding: 0.7rem 1rem; text-align: left; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--navy); width: 40%; border-bottom: 1px solid var(--grey); }
.specs-table td { padding: 0.7rem 1rem; color: var(--text-light); border-bottom: 1px solid var(--grey-light); }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: none; }

/* --- YouTube Facade --- */
.yt-section { }
.yt-heading { margin-bottom: 0.75rem; }
.yt-facade {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.yt-facade__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: background 0.2s;
}
.yt-facade:hover .yt-facade__overlay { background: rgba(0,0,0,0.5); }
.yt-play-btn { transition: transform 0.2s; }
.yt-facade:hover .yt-play-btn { transform: scale(1.1); }
.yt-label { color: var(--white); font-size: 0.88rem; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

/* --- Static Pages --- */
.static-page-content { padding: 3rem 0; }
.prose-container { max-width: 780px; }
.prose-container h2 { margin: 2rem 0 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--grey-light); }
.prose-container h2:first-child { border-top: none; margin-top: 0; }
.prose-container p, .prose-container li { font-size: 1rem; line-height: 1.75; color: var(--text-light); }
.prose-container ul { list-style: disc; padding-left: 1.5rem; }
.prose-container ul li { margin-bottom: 0.4rem; }
.prose-container a { color: var(--coral); text-decoration: underline; }

/* --- Guide Layout --- */
.guide-layout { padding: 2.5rem 0; }
.guide-grid { display: grid; grid-template-columns: 1fr 260px; gap: 2.5rem; align-items: start; }
.guide-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--grey-light); }
.guide-section:last-child { border-bottom: none; }
.criteria-list { display: flex; flex-direction: column; gap: 1rem; }
.criterion-item { border-left: 4px solid var(--coral); padding-left: 1.25rem; }
.criterion-item h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.criterion-item p { font-size: 0.93rem; margin: 0; }
.price-guide { display: flex; flex-direction: column; gap: 0.75rem; }
.price-guide__item { background: var(--grey-light); border-radius: var(--radius); padding: 1rem 1.25rem; }
.price-guide__band { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.04em; }
.guide-sidebar .sidebar-toc { background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1.5rem; }
.guide-sidebar .sidebar-toc h3 { font-size: 0.95rem; margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--grey-light); }
.guide-sidebar .sidebar-toc nav { display: flex; flex-direction: column; gap: 0.2rem; }
.guide-sidebar .sidebar-toc a { font-size: 0.88rem; color: var(--navy-light); padding: 0.35rem 0.5rem; border-radius: 4px; font-weight: 500; }
.guide-sidebar .sidebar-toc a:hover { background: var(--grey-light); }

/* --- Error Page --- */
.error-page { padding: 5rem 0; text-align: center; }
.error-code { font-family: var(--font-head); font-size: 6rem; font-weight: 800; color: var(--grey-light); line-height: 1; margin-bottom: 1rem; }
.error-page h1 { margin-bottom: 0.75rem; }
.error-page p { margin-bottom: 2rem; }
.error-cats { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.error-cat-link { background: var(--grey-light); border: 1px solid var(--grey); border-radius: var(--radius); padding: 0.75rem 1.25rem; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.error-cat-link:hover { background: var(--navy); color: var(--white); }

/* --- Footer --- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); margin-top: 4rem; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; padding: 3rem 1.25rem 2rem; }
.footer-brand { max-width: 280px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 0.75rem; }
.footer-links { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom { background: rgba(0,0,0,0.2); }
.footer-bottom .container { padding: 1.25rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin: 0; line-height: 1.6; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-sidebar { order: -1; }
  .sidebar-sticky { position: static; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-sidebar { order: -1; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: row; justify-content: center; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.is-open { display: flex; flex-direction: column; align-items: stretch; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--grey-light); padding: 0.5rem; box-shadow: var(--shadow); z-index: 99; }
  .nav-toggle { display: flex; }
  .review-hero__inner { grid-template-columns: 1fr; }
  .review-hero__image { display: none; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .hero__stats { flex-wrap: wrap; }
  .buy-bar { top: 0; }
}

@media (max-width: 540px) {
  .aff-cards-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 2.5rem 0; }
  .cat-hero { padding: 2rem 0; }
}

/* ============================================
   AMAZON CTA BUTTONS — OneLink prominent style
   ============================================ */

/* --- Main card CTA (affiliate card, verdict box) --- */
.btn-amazon-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #FF9900;
  color: #111 !important;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  width: 100%;
  border: 2px solid #e68a00;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 3px 10px rgba(255,153,0,0.35);
  position: relative;
  overflow: hidden;
}
.btn-amazon-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.btn-amazon-main:hover {
  background: #e68a00;
  color: #111 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,153,0,0.45);
}
.btn-amazon-main:active {
  transform: translateY(0);
}
.btn-amazon-main__icon { font-size: 1.15rem; flex-shrink: 0; }
.btn-amazon-main__text { flex: 1; text-align: center; }
.btn-amazon-main__arrow { font-size: 1.1rem; flex-shrink: 0; opacity: 0.75; }
.btn-amazon-main--lg {
  font-size: 1.1rem;
  padding: 1rem 1.75rem;
}
.btn-amazon-main--full { width: 100%; }

/* --- Hero buy-bar CTA (sticky on product review pages) --- */
.btn-amazon-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #FF9900;
  color: #111 !important;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid #e68a00;
  box-shadow: 0 2px 8px rgba(255,153,0,0.4);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn-amazon-hero:hover {
  background: #e68a00;
  color: #111 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,153,0,0.5);
}
.btn-amazon-hero__icon { font-size: 1.15rem; }
.btn-amazon-hero__text { }
.btn-amazon-hero__arrow { opacity: 0.7; }

/* --- Table buy button --- */
.table-btn--amz {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #FF9900;
  color: #111 !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid #e68a00;
  transition: background 0.15s;
}
.table-btn--amz:hover {
  background: #e68a00;
  color: #111 !important;
}

/* Override buy-bar background with matching dark for contrast */
.buy-bar { background: var(--navy); padding: 0.85rem 0; position: sticky; top: 64px; z-index: 90; }
.buy-bar__inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   COMPARISON PAGE STYLES
   ============================================ */

/* Hero */
.comp-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 2.5rem 0; }
.comp-hero__title { color: var(--white); font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 0.5rem; }
.comp-hero__sub { color: rgba(255,255,255,0.75); max-width: 680px; font-size: 1.05rem; margin-bottom: 0.75rem; }

/* Cards side-by-side */
.comp-cards { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.5rem; align-items: start; }
.comp-card {
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s;
  position: relative;
}
.comp-card--winner { border-color: #FF9900; box-shadow: 0 4px 20px rgba(255,153,0,0.2); }
.comp-winner-banner {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF9900;
  color: #111;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.3rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
}
.comp-card__image { text-align: center; }
.comp-card__image img { width: 180px; height: 180px; object-fit: contain; margin: 0 auto; background: var(--grey-light); border-radius: var(--radius); padding: 0.75rem; }
.comp-card__brand { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--coral); }
.comp-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--navy); margin: 0; }
.comp-card__desc { font-size: 0.9rem; color: var(--grey-dark); margin: 0; }
.comp-card__rating { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; }
.comp-card__rating .stars { color: var(--amber); font-weight: 700; }
.comp-card__price-band { font-size: 0.85rem; }
.comp-card__review-link { font-size: 0.85rem; color: var(--coral); font-weight: 600; text-align: center; margin-top: 0.25rem; }

/* VS divider */
.comp-vs-divider { display: flex; align-items: center; justify-content: center; padding-top: 200px; }
.vs-badge {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Verdict box */
.comp-verdict__inner { max-width: 720px; margin: 0 auto; }
.verdict-summary-box {
  background: var(--white);
  border: 2px solid #FF9900;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.verdict-summary-box__winner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.winner-label { font-size: 0.85rem; font-weight: 600; color: var(--grey-dark); text-transform: uppercase; letter-spacing: 0.05em; }
.winner-name { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--navy); }
.winner-score { background: #FF9900; color: #111; font-family: var(--font-head); font-weight: 800; padding: 0.2rem 0.75rem; border-radius: 99px; font-size: 0.95rem; }
.verdict-summary-box__reason { color: var(--text-light); font-size: 1rem; line-height: 1.7; margin: 0; }

/* Criteria table */
.comp-criteria-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--grey); }
.comp-criteria-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comp-criteria-table th { background: var(--navy); color: var(--white); font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.8rem 1rem; text-align: left; }
.comp-criteria-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--grey-light); vertical-align: top; }
.comp-criteria-table tr:last-child td { border-bottom: none; }
.criterion-name { font-weight: 600; color: var(--navy); width: 22%; }
.cell--winner { background: rgba(255,153,0,0.08); font-weight: 600; }
.winner-cell { text-align: center; }
.winner-pill { display: inline-block; background: #FF9900; color: #111; font-size: 0.75rem; font-weight: 800; padding: 0.2rem 0.6rem; border-radius: 99px; }
.draw-pill { display: inline-block; background: var(--grey-light); color: var(--grey-dark); font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 99px; }

/* Specs table side-by-side */
.comp-specs-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--grey); }
.comp-specs-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comp-specs-table th { background: var(--navy); color: var(--white); font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.8rem 1rem; text-align: left; }
.comp-specs-table th:first-child { width: 28%; }
.comp-specs-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--grey-light); }
.comp-specs-table tr:last-child td { border-bottom: none; }
.comp-specs-table tr:nth-child(even) td { background: var(--off-white); }
.comp-specs-table td:first-child { font-weight: 600; color: var(--navy); }

/* Choose grid */
.comp-choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.comp-choose-card { background: var(--white); border: 2px solid var(--grey); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.comp-choose-card--a { border-color: var(--navy-light); }
.comp-choose-card--b { border-color: var(--coral); }
.comp-choose-card__header { display: flex; align-items: center; gap: 0.75rem; }
.comp-choose-card__icon { width: 32px; height: 32px; border-radius: 50%; background: var(--green-bg); color: var(--green); font-size: 1rem; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.comp-choose-card h3 { font-size: 1rem; color: var(--navy); margin: 0; }
.comp-choose-card p { font-size: 0.93rem; color: var(--text-light); flex: 1; margin: 0; }

/* Pros/cons grid */
.comp-pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.comp-subheading { font-size: 1rem; color: var(--navy); margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--grey-light); }

/* Final CTA */
.comp-final-cta { background: var(--navy); padding: 3rem 0; }
.comp-final-cta__inner { text-align: center; }
.comp-final-cta h2 { color: var(--white); margin-bottom: 0.5rem; }
.comp-final-cta p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.comp-final-cta__btns { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.comp-final-cta__product { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.comp-final-cta__name { color: rgba(255,255,255,0.9); font-size: 0.88rem; font-weight: 600; text-align: center; max-width: 200px; }

/* Responsive */
@media (max-width: 768px) {
  .comp-cards { grid-template-columns: 1fr; }
  .comp-vs-divider { padding-top: 0; }
  .comp-choose-grid { grid-template-columns: 1fr; }
  .comp-pros-cons-grid { grid-template-columns: 1fr; }
  .comp-final-cta__btns { flex-direction: column; align-items: center; }
}

/* ============================================
   ALL REVIEWS INDEX PAGE
   ============================================ */
.all-reviews-layout { padding-bottom: 3rem; }
.all-reviews-cat { border-bottom: 2px solid var(--grey-light); }
.all-reviews-cat:last-child { border-bottom: none; }
.all-reviews-cat__heading { font-size: 1.5rem; margin-bottom: 1.25rem; }
.all-reviews-cat__heading a { color: var(--navy); }
.all-reviews-cat__heading a:hover { color: var(--coral); }

.all-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.review-index-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  color: inherit;
}
.review-index-card:hover {
  border-color: #FF9900;
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}
.review-index-card__img { flex-shrink: 0; }
.review-index-card__img img {
  width: 48px; height: 48px;
  object-fit: contain;
  background: var(--grey-light);
  border-radius: 6px;
  padding: 2px;
}
.review-index-card__info { flex: 1; min-width: 0; }
.review-index-card__name {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-index-card__brand {
  display: block;
  font-size: 0.75rem;
  color: var(--grey-dark);
  margin-top: 1px;
}
.review-index-card__score {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  flex-shrink: 0;
}
.review-index-card__arrow { color: var(--coral); flex-shrink: 0; font-size: 0.9rem; }
.all-reviews-cat__footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

/* ============================================
   HOMEPAGE IMPROVEMENTS
   ============================================ */

/* Hero category row */
.hero__cats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.hero__cats-row a {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.15s;
}
.hero__cats-row a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

/* Top pick per category grid */
.top-picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.top-pick-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.top-pick-card:hover { box-shadow: var(--shadow); border-color: #FF9900; }
.top-pick-card__cat { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.top-pick-card__cat a { color: var(--coral); }
.top-pick-card__img-link { display: block; text-align: center; }
.top-pick-card__img-link img {
  width: 110px; height: 110px;
  object-fit: contain;
  margin: 0 auto;
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 0.5rem;
}
.top-pick-card__info { flex: 1; }
.top-pick-card__score {
  display: inline-block;
  background: #FF9900;
  color: #111;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.15rem 0.6rem;
  border-radius: 99px;
  margin-bottom: 0.4rem;
}
.top-pick-card__name { font-family: var(--font-head); font-weight: 700; font-size: 0.97rem; color: var(--navy); margin: 0 0 0.35rem; }
.top-pick-card__name a { color: var(--navy); }
.top-pick-card__name a:hover { color: var(--coral); }
.top-pick-card__desc { font-size: 0.85rem; color: var(--grey-dark); margin: 0 0 0.35rem; line-height: 1.4; }
.top-pick-card__rating { font-size: 0.78rem; color: var(--grey-dark); }

/* Category cards — show product count */
.cat-card__link { color: var(--coral); font-weight: 600; font-size: 0.88rem; margin-top: auto; }

/* Featured comparisons grid */
.featured-comps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.75rem;
}
.featured-comp-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
  color: inherit;
}
.featured-comp-card:hover {
  border-color: #FF9900;
  box-shadow: var(--shadow-sm);
}
.featured-comp-card__imgs {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}
.featured-comp-card__imgs img {
  width: 44px; height: 44px;
  object-fit: contain;
  background: var(--grey-light);
  border-radius: 6px;
  padding: 2px;
}
.featured-comp-card__vs {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.65rem;
  color: var(--grey-dark);
  background: var(--grey-light);
  padding: 0.15rem 0.3rem;
  border-radius: 4px;
}
.featured-comp-card__info { flex: 1; min-width: 0; }
.featured-comp-card__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coral);
  margin-bottom: 2px;
}
.featured-comp-card__title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-comp-card__arrow { color: var(--coral); flex-shrink: 0; }

/* hero__stats horizontal on small screens */
@media (max-width: 640px) {
  .top-picks-grid { grid-template-columns: 1fr; }
  .featured-comps-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOMEPAGE IMPROVEMENTS
   ============================================ */
.hero__cats-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.hero__cats-row a { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); padding: 0.4rem 0.9rem; border-radius: 99px; font-size: 0.88rem; font-weight: 600; transition: background 0.15s; }
.hero__cats-row a:hover { background: var(--coral); border-color: var(--coral); color: var(--white); }

.top-picks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.top-pick-card { background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius-lg); padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; transition: box-shadow 0.2s, border-color 0.2s; }
.top-pick-card:hover { box-shadow: var(--shadow); border-color: #FF9900; }
.top-pick-card__cat { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.top-pick-card__cat a { color: var(--coral); }
.top-pick-card__img-link { display: block; text-align: center; }
.top-pick-card__img-link img { width: 110px; height: 110px; object-fit: contain; margin: 0 auto; background: var(--grey-light); border-radius: var(--radius); padding: 0.5rem; }
.top-pick-card__info { flex: 1; }
.top-pick-card__score { display: inline-block; background: #FF9900; color: #111; font-family: var(--font-head); font-weight: 800; font-size: 0.82rem; padding: 0.15rem 0.6rem; border-radius: 99px; margin-bottom: 0.4rem; }
.top-pick-card__name { font-family: var(--font-head); font-weight: 700; font-size: 0.97rem; color: var(--navy); margin: 0 0 0.35rem; }
.top-pick-card__name a { color: var(--navy); }
.top-pick-card__name a:hover { color: var(--coral); }
.top-pick-card__desc { font-size: 0.85rem; color: var(--grey-dark); margin: 0 0 0.35rem; line-height: 1.4; }
.top-pick-card__rating { font-size: 0.78rem; color: var(--grey-dark); }

.featured-comps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 0.75rem; }
.featured-comp-card { display: flex; align-items: center; gap: 0.85rem; padding: 0.85rem 1rem; background: var(--white); border: 1px solid var(--grey); border-radius: var(--radius); transition: border-color 0.15s; color: inherit; }
.featured-comp-card:hover { border-color: #FF9900; box-shadow: var(--shadow-sm); }
.featured-comp-card__imgs { display: flex; align-items: center; gap: 0.3rem; flex-shrink: 0; }
.featured-comp-card__imgs img { width: 44px; height: 44px; object-fit: contain; background: var(--grey-light); border-radius: 6px; padding: 2px; }
.featured-comp-card__vs { font-family: var(--font-head); font-weight: 800; font-size: 0.65rem; color: var(--grey-dark); background: var(--grey-light); padding: 0.15rem 0.3rem; border-radius: 4px; }
.featured-comp-card__info { flex: 1; min-width: 0; }
.featured-comp-card__label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--coral); margin-bottom: 2px; }
.featured-comp-card__title { font-weight: 600; font-size: 0.85rem; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.featured-comp-card__arrow { color: var(--coral); flex-shrink: 0; }

/* ============================================
   TOP RATED PAGE
   ============================================ */
.page-hero--gold { background: linear-gradient(135deg, #1a1a2e 0%, #2d2011 100%); }
.page-hero--gold .page-hero__title { color: #FF9900; }
.page-hero--gold .page-hero__sub { color: rgba(255,255,255,0.8); }

.top-rated-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.top-rated-grid--elite {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.top-rated-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.top-rated-card:hover { box-shadow: var(--shadow); border-color: #FF9900; }
.top-rated-card--elite { border: 2px solid #FF9900; box-shadow: 0 4px 20px rgba(255,153,0,0.15); }

.top-rated-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #FF9900;
  color: #111;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  width: fit-content;
}
.top-rated-card__badge--silver {
  background: var(--grey-light);
  color: var(--navy);
  font-weight: 700;
}

.top-rated-card__img { display: block; text-align: center; }
.top-rated-card__img img {
  width: 140px; height: 140px;
  object-fit: contain;
  margin: 0 auto;
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 0.5rem;
}
.top-rated-card--elite .top-rated-card__img img { width: 160px; height: 160px; }

.top-rated-card__info { flex: 1; }
.top-rated-card__cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--coral);
  display: block;
  margin-bottom: 0.3rem;
}
.top-rated-card__info h3 { font-size: 0.97rem; color: var(--navy); margin: 0 0 0.35rem; }
.top-rated-card__info h3 a { color: var(--navy); }
.top-rated-card__info h3 a:hover { color: var(--coral); }
.top-rated-card__info p { font-size: 0.85rem; color: var(--grey-dark); margin: 0 0 0.5rem; line-height: 1.4; }
.top-rated-card__review-link { font-size: 0.82rem; color: var(--coral); font-weight: 600; text-align: center; }

.verdict-pill {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.15rem 0.6rem;
  border-radius: 99px;
}

/* Top-rated badge on product cards in tables/grids */
.top-rated-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: #FF9900;
  color: #111;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* Top-rated homepage section */
.section-pad--gold { background: linear-gradient(135deg, #fffbf0 0%, #fff8e6 100%); border-top: 2px solid #FF9900; border-bottom: 2px solid #FF9900; }
.top-pick-card--gold { border-color: #FF9900; }
.nav-top-rated { color: #FF9900 !important; font-weight: 700 !important; }

/* ============================================
   REVIEWS PAGE SEARCH & FILTER
   ============================================ */
.reviews-search-bar {
  padding: 1.5rem 0 1rem;
}
#reviews-search {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 2px solid var(--grey);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 0.75rem;
}
#reviews-search:focus { border-color: #FF9900; }

.reviews-filter-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.rfcat {
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  font-size: 0.83rem;
  font-weight: 600;
  border: 2px solid var(--grey);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
}
.rfcat:hover { border-color: var(--navy); color: var(--navy); }
.rfcat--active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.reviews-count {
  font-size: 0.88rem;
  color: var(--grey-dark);
  margin: 0.5rem 0 1rem;
}
.reviews-no-results {
  padding: 2rem;
  text-align: center;
  color: var(--grey-dark);
  font-size: 1rem;
}
.all-reviews-grid--flat {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
