/* ═══════════════════════════════════════════════════════════
   PoweredUpReviews.com — Main Stylesheet
   Aesthetic: Industrial utility meets sharp editorial.
   Fonts: Barlow Condensed (headings) + Lora (body) + DM Sans (UI)
════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --col-black:    #0d0d0d;
  --col-dark:     #1a1a1a;
  --col-charcoal: #2c2c2c;
  --col-mid:      #555;
  --col-muted:    #888;
  --col-border:   #e0e0e0;
  --col-bg:       #f7f6f3;
  --col-white:    #ffffff;
  --col-accent:   #e8590c;     /* electric orange — energy */
  --col-accent2:  #f5a623;     /* amber — warmth, solar */
  --col-green:    #1a7a4a;     /* money/positive */
  --col-red:      #c0392b;     /* warning/negative */
  --col-info-bg:  #fff8f0;
  --col-sidebar-bg: #f0ede8;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Lora', Georgia, serif;
  --font-ui:      'DM Sans', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.13);

  --container:  1160px;
  --sidebar-w:  300px;
  --gap:        2rem;

  --transition: 200ms ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--col-dark);
  background: var(--col-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--col-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden;
  background: var(--col-accent); color: #fff; padding: .5rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; width: auto; height: auto; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ══════════════════════════════
   TOP BAR
══════════════════════════════ */
.top-bar {
  background: var(--col-black);
  color: rgba(255,255,255,.75);
  font-family: var(--font-ui);
  font-size: .75rem;
  letter-spacing: .03em;
  padding: .4rem 0;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar__tag { color: var(--col-accent2); font-weight: 600; }

/* ══════════════════════════════
   SITE HEADER
══════════════════════════════ */
.site-header {
  background: var(--col-white);
  border-bottom: 3px solid var(--col-black);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: .9rem;
  padding-bottom: .9rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-bolt {
  font-size: 1.5rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--col-black);
  text-transform: uppercase;
}
.logo-text strong { color: var(--col-accent); font-weight: 700; }
.site-logo--footer .logo-text { font-size: 1.25rem; }

/* Nav */
.site-nav { margin-left: auto; }
.nav-list  {
  display: flex;
  list-style: none;
  gap: .25rem;
  align-items: center;
}
.nav-item { position: relative; }
.nav-link {
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 600;
  color: var(--col-dark);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover, .nav-item:hover > .nav-link {
  background: var(--col-bg);
  color: var(--col-accent);
  text-decoration: none;
}
.caret { font-size: .7rem; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--col-white);
  border: 1px solid var(--col-border);
  border-top: 3px solid var(--col-accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  list-style: none;
  min-width: 240px;
  z-index: 200;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: .6rem 1.1rem;
  font-family: var(--font-ui);
  font-size: .85rem;
  color: var(--col-dark);
  border-bottom: 1px solid var(--col-border);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--col-bg); color: var(--col-accent); }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--col-black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════
   PAGE LAYOUT
══════════════════════════════ */
.page-wrapper {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: var(--gap);
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  align-items: start;
}
.page-wrapper--full { grid-template-columns: 1fr; }
.main-content { min-width: 0; }

/* ══════════════════════════════
   HERO (homepage)
══════════════════════════════ */
.site-hero {
  background: var(--col-black);
  color: var(--col-white);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.03) 0px,
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 60px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.03) 0px,
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 60px
    );
  pointer-events: none;
}
.site-hero .container { position: relative; }
.site-hero__eyebrow {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--col-accent2);
  margin-bottom: .75rem;
}
.site-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  max-width: 700px;
}
.site-hero h1 em { color: var(--col-accent); font-style: normal; }
.site-hero__sub {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════ */
.page-hero {
  background: var(--col-black);
  color: var(--col-white);
  padding: 2.5rem 0 2rem;
  border-bottom: 4px solid var(--col-accent);
}
.page-hero__eyebrow {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--col-accent2);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.page-hero__eyebrow a { color: rgba(255,255,255,.5); text-decoration: none; }
.page-hero__eyebrow a:hover { color: var(--col-accent2); }
.page-hero__eyebrow .sep { color: rgba(255,255,255,.3); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color:#fff !important;
  letter-spacing: -.01em;
  margin-bottom: .75rem;
}
.page-hero__meta {
  font-family: var(--font-ui);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   TYPOGRAPHY
══════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.2;
  color: var(--col-black);
}
.main-content h2 {
  font-size: 1.9rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 3px solid var(--col-black);
}
.main-content h3 {
  font-size: 1.35rem;
  margin: 1.75rem 0 .6rem;
  color: var(--col-charcoal);
}
.main-content h4 {
  font-size: 1.1rem;
  margin: 1.25rem 0 .4rem;
  color: var(--col-charcoal);
}
p { margin-bottom: 1.1rem; }
ul, ol { margin: 0 0 1.1rem 1.5rem; }
li { margin-bottom: .35rem; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--col-accent);
  color: var(--col-white);
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--col-accent);
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.btn-buy:hover { background: #c94a07; border-color: #c94a07; text-decoration: none; transform: translateY(-1px); }
.btn-buy--sm { font-size: .8rem; padding: .45rem 1rem; }
.btn-buy--outline {
  background: transparent;
  color: var(--col-accent);
  border: 2px solid var(--col-accent);
}
.btn-buy--outline:hover { background: var(--col-accent); color: #fff; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--col-dark);
  color: var(--col-white);
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 600;
  padding: .65rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition);
}
.btn-secondary:hover { background: var(--col-charcoal); text-decoration: none; }

/* ══════════════════════════════
   PRODUCT CARDS
══════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.product-card {
  background: var(--col-white);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-card__badge {
  background: var(--col-accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  display: inline-block;
}
.product-card__badge--value  { background: var(--col-green); }
.product-card__badge--budget { background: var(--col-charcoal); }
.product-card__img-wrap {
  /*background: #f0ede8;*/
  background: #ffffff !important;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.product-card__img-wrap img { max-height: 140px; width: auto; object-fit: contain; }
.product-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: .4rem;
  color: var(--col-black);
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-ui);
  font-size: .8rem;
  color: var(--col-mid);
  margin-bottom: .75rem;
}
.product-card__summary { font-size: .9rem; margin-bottom: 1rem; flex: 1; }
.product-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .75rem;
  margin-bottom: 1rem;
}
.product-card__spec {
  font-family: var(--font-ui);
  font-size: .78rem;
}
.product-card__spec-label { color: var(--col-muted); display: block; }
.product-card__spec-value { font-weight: 600; color: var(--col-dark); }
.product-card__actions { display: flex; gap: .5rem; flex-wrap: wrap; }

/* ══════════════════════════════
   COMPARISON TABLE
══════════════════════════════ */
.comparison-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: .9rem;
}
.comparison-table th {
  background: var(--col-black);
  color: var(--col-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: .8rem 1rem;
  text-align: left;
  white-space: nowrap;
}
.comparison-table th.highlight { background: var(--col-accent); }
.comparison-table td {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--col-border);
  vertical-align: middle;
}
.comparison-table tr:nth-child(even) td { background: rgba(0,0,0,.02); }
.comparison-table tr:hover td { background: var(--col-info-bg); }
.comparison-table td.highlight { background: #fff8f0; border-left: 3px solid var(--col-accent); }
.comparison-table td:first-child { font-weight: 600; color: var(--col-charcoal); white-space: nowrap; }
.check { color: var(--col-green); font-size: 1.1rem; }
.cross { color: var(--col-red); font-size: 1.1rem; }

/* ══════════════════════════════
   REVIEW SCORE BOX
══════════════════════════════ */
.score-box {
  background: var(--col-black);
  color: var(--col-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.score-box__number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--col-accent2);
  flex-shrink: 0;
}
.score-box__number span { font-size: 2rem; color: rgba(255,255,255,.4); }
.score-box__breakdown { flex: 1; min-width: 200px; }
.score-row {
  display: grid;
  grid-template-columns: 120px 1fr 32px;
  align-items: center;
  gap: .5rem;
  margin-bottom: .4rem;
  font-family: var(--font-ui);
  font-size: .8rem;
}
.score-bar { background: rgba(255,255,255,.15); border-radius: 2px; height: 6px; }
.score-bar__fill { background: var(--col-accent2); border-radius: 2px; height: 100%; }
.score-box__verdict {
  font-family: var(--font-ui);
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem;
  margin-top: 1rem;
  width: 100%;
}

/* ══════════════════════════════
   PROS / CONS
══════════════════════════════ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}
.pros, .cons {
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}
.pros { background: #f0faf4; border: 1px solid #a8e6be; }
.cons { background: #fef5f5; border: 1px solid #f5b7b7; }
.pros h4, .cons h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.pros h4 { color: var(--col-green); }
.cons h4 { color: var(--col-red); }
.pros ul, .cons ul { margin: 0; padding: 0; list-style: none; }
.pros li, .cons li {
  font-family: var(--font-ui);
  font-size: .875rem;
  padding: .3rem 0 .3rem 1.4rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--col-green); font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--col-red); font-weight: 700; }

/* ══════════════════════════════
   SPEC TABLE (single product)
══════════════════════════════ */
.spec-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-family: var(--font-ui); font-size: .9rem; }
.spec-table th {
  background: var(--col-charcoal);
  color: #fff;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: .95rem;
  padding: .65rem 1rem;
  text-align: left;
}
.spec-table td { padding: .6rem 1rem; border-bottom: 1px solid var(--col-border); }
.spec-table tr:nth-child(even) td { background: rgba(0,0,0,.025); }
.spec-table td:first-child { font-weight: 600; color: var(--col-charcoal); width: 45%; }

/* ══════════════════════════════
   VERDICT BOX
══════════════════════════════ */
.verdict-box {
  background: var(--col-info-bg);
  border: 1px solid #f5a623;
  border-left: 5px solid var(--col-accent);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.verdict-box__label {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--col-accent);
  margin-bottom: .4rem;
}
.verdict-box p { margin: 0; font-size: .95rem; }

/* ══════════════════════════════
   INFO / WARNING CALLOUT
══════════════════════════════ */
.callout {
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-family: var(--font-ui);
  font-size: .9rem;
  display: flex;
  gap: .75rem;
}
.callout--info { background: #e8f4fd; border: 1px solid #b3d8f5; }
.callout--warn { background: #fff8e0; border: 1px solid #f5d76e; }
.callout--tip  { background: #f0faf4; border: 1px solid #a8e6be; }
.callout__icon { font-size: 1.25rem; flex-shrink: 0; line-height: 1.4; }

/* ══════════════════════════════
   STARS
══════════════════════════════ */
.stars { font-size: 1rem; line-height: 1; }
.star.full  { color: var(--col-accent2); }
.star.half  { color: var(--col-accent2); opacity: .6; }
.star.empty { color: var(--col-border); }

/* ══════════════════════════════
   AFFILIATE BUTTON BLOCK
══════════════════════════════ */
.buy-block {
  background: var(--col-bg);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.buy-block__info { flex: 1; font-family: var(--font-ui); font-size: .85rem; color: var(--col-mid); }
.buy-block__info strong { display: block; font-size: 1rem; color: var(--col-dark); margin-bottom: .15rem; }
.buy-block__disclaimer { font-family: var(--font-ui); font-size: .72rem; color: var(--col-muted); margin-top: .25rem; }

/* ══════════════════════════════
   WINNER BADGE (comparison pages)
══════════════════════════════ */
.winner-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--col-accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: var(--radius-sm);
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq { margin: 1rem 0; }
.faq-item {
  border-bottom: 1px solid var(--col-border);
}
.faq-question {
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 600;
  padding: 1rem 2.5rem 1rem 0;
  cursor: pointer;
  position: relative;
  color: var(--col-dark);
  list-style: none;
  user-select: none;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: .25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--col-accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  font-family: var(--font-ui);
  font-size: .9rem;
  color: var(--col-mid);
  padding: 0 0 1rem;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ══════════════════════════════
   HOME — CATEGORY GRID
══════════════════════════════ */
.category-section { padding: 3rem 0; }
.category-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 3px solid var(--col-black);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.category-card {
  background: var(--col-white);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: block;
}
.category-card:hover { border-color: var(--col-accent); box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.category-card__icon { font-size: 2rem; margin-bottom: .75rem; }
.category-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--col-black);
  margin-bottom: .4rem;
}
.category-card__desc { font-family: var(--font-ui); font-size: .83rem; color: var(--col-mid); margin: 0; }

/* ══════════════════════════════
   SIDEBAR WIDGETS
══════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.widget {
  background: var(--col-white);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}
.widget__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .85rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--col-black);
  color: var(--col-black);
}
.widget--top-picks { border-top: 4px solid var(--col-accent); }
.widget--cta {
  background: var(--col-black);
  color: var(--col-white);
  text-align: center;
}
.widget--cta h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--col-white);
  margin: .5rem 0 .4rem;
}
.widget--cta p { font-family: var(--font-ui); font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: .85rem; }
.widget-cta__icon { font-size: 2rem; }
.widget--disclosure { background: var(--col-sidebar-bg); }
.widget--disclosure p { font-family: var(--font-ui); font-size: .75rem; color: var(--col-mid); margin: 0; }

.top-picks-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .85rem; }
.top-pick { padding-bottom: .85rem; border-bottom: 1px solid var(--col-border); }
.top-pick:last-child { border-bottom: none; padding-bottom: 0; }
.top-pick__badge {
  display: inline-block;
  background: var(--col-accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .15rem .5rem;
  border-radius: 2px;
  margin-bottom: .25rem;
}
.top-pick__badge--value  { background: var(--col-green); }
.top-pick__badge--budget { background: var(--col-charcoal); }
.top-pick__name {
  display: block;
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 600;
  color: var(--col-dark);
  margin-bottom: .2rem;
  text-decoration: none;
}
.top-pick__name:hover { color: var(--col-accent); }
.top-pick__rating { display: flex; align-items: center; gap: .4rem; font-family: var(--font-ui); font-size: .75rem; color: var(--col-muted); margin-bottom: .4rem; }
.widget__see-all {
  display: block;
  font-family: var(--font-ui);
  font-size: .8rem;
  color: var(--col-accent);
  margin-top: .75rem;
  text-decoration: none;
}
.widget__see-all:hover { text-decoration: underline; }
.compare-links { list-style: none; padding: 0; margin: 0; }
.compare-links li { border-bottom: 1px solid var(--col-border); }
.compare-links li:last-child { border-bottom: none; }
.compare-links a {
  display: block;
  font-family: var(--font-ui);
  font-size: .83rem;
  color: var(--col-dark);
  padding: .5rem 0;
  text-decoration: none;
  transition: color var(--transition);
}
.compare-links a:hover { color: var(--col-accent); }

/* ══════════════════════════════
   BREADCRUMBS
══════════════════════════════ */
.breadcrumbs {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: var(--col-muted);
  padding: .75rem 0;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs a { color: var(--col-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--col-accent); }
.breadcrumbs .sep { color: rgba(255,255,255,.25); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--col-black);
  color: rgba(255,255,255,.65);
  padding: 3rem 0 0;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--col-white);
  margin-bottom: .85rem;
}
.footer-col p {
  font-family: var(--font-ui);
  font-size: .82rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  margin: .75rem 0 0;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a {
  font-family: var(--font-ui);
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--col-accent); }
.footer-disclosure {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--font-ui);
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.65;
}
.footer-disclosure strong { color: rgba(255,255,255,.5); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: var(--font-ui);
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-legal a:hover { color: var(--col-accent); }

/* ══════════════════════════════
   HOMEPAGE TRUST STRIP
══════════════════════════════ */
.trust-strip {
  background: var(--col-white);
  border-bottom: 1px solid var(--col-border);
  padding: 1.25rem 0;
}
.trust-strip__inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 600;
  color: var(--col-charcoal);
}
.trust-item__icon { font-size: 1.1rem; }

/* ══════════════════════════════
   ROUNDUP — PRODUCT ENTRY
══════════════════════════════ */
.roundup-entry {
  background: var(--col-white);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.roundup-entry__header {
  background: var(--col-black);
  color: #fff;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.roundup-entry__rank {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--col-accent2);
  line-height: 1;
  flex-shrink: 0;
}
.roundup-entry__title-group { flex: 1; }
.roundup-entry__badge {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--col-accent2);
}
.roundup-entry__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.roundup-entry__rating { display: flex; align-items: center; gap: .4rem; font-family: var(--font-ui); font-size: .8rem; color: rgba(255,255,255,.6); }
.roundup-entry__body { padding: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.roundup-entry__summary { font-size: .95rem; }
.roundup-entry__right { display: flex; flex-direction: column; gap: .75rem; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-wrapper { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--col-white);
    border-top: 2px solid var(--col-accent);
    border-bottom: 1px solid var(--col-border);
    box-shadow: var(--shadow-lg);
    z-index: 200;
  }
  .site-nav.open { display: block; }
  .site-header__inner { position: relative; }
  .nav-list { flex-direction: column; gap: 0; padding: .5rem 0; }
  .nav-link { border-radius: 0; padding: .75rem 1.5rem; }
  .dropdown { position: static; border: none; box-shadow: none; border-radius: 0; display: none; background: var(--col-bg); }
  .nav-item.open .dropdown { display: block; }
  .dropdown a { padding-left: 2.5rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .roundup-entry__body { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-col--brand { order: -1; }
  .product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .score-box { flex-direction: column; gap: 1rem; text-align: center; }
  .comparison-table { font-size: .78rem; }
  .comparison-table td, .comparison-table th { padding: .5rem .6rem; }
}

h1{
color:#fff !important;
}