/* ============================================================
   Reigvinny — Tech-magazine review theme (CNET-inspired)
   Class names kept identical (gp-*) so PHP renderers don't break.
   ============================================================ */

:root {
  --rv-red:      #fa0c2e;     /* signature red */
  --rv-red-dark: #c80a24;
  --rv-red-soft: #fff0f2;
  --rv-ink:      #14181c;     /* near-black */
  --rv-ink-2:    #2b2f36;
  --rv-mute:     #5c6670;
  --rv-faint:    #8b939c;
  --rv-line:     #e3e6ea;
  --rv-line-2:   #cfd4da;
  --rv-bg:       #ffffff;
  --rv-bg-2:     #f5f6f8;     /* light gray section */
  --rv-ink-bg:   #14181c;

  --rv-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --rv-max:    1280px;
  --rv-radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--rv-sans);
  color: var(--rv-ink);
  background: var(--rv-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--rv-sans); line-height: 1.2; color: var(--rv-ink); letter-spacing: -.01em; }

.gp-container { max-width: var(--rv-max); margin: 0 auto; padding: 0 1.5rem; }

/* ── Topbar ── */
.gp-topbar {
  background: var(--rv-ink);
  color: #c7ccd2;
  font-size: .78rem;
  padding: .4rem 0;
  text-align: center;
  letter-spacing: .01em;
}

/* ── Header ── */
.gp-header {
  background: var(--rv-bg);
  border-bottom: 1px solid var(--rv-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.gp-header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 66px;
}
.gp-logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--rv-ink);
  flex-shrink: 0;
  margin-right: .5rem;
}
.gp-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--rv-red);
  color: #fff;
  border-radius: 4px;
  font-size: .8rem;
  transform: rotate(0deg);
}
.gp-logo-text { font-weight: 800; }
.gp-logo-text strong { font-weight: 900; color: var(--rv-red); }

.gp-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex: 1;
}
.gp-nav a {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--rv-ink);
  padding: .4rem 0;
  position: relative;
  white-space: nowrap;
  transition: color .15s;
}
.gp-nav a:hover { color: var(--rv-red); }
.gp-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 3px;
  background: var(--rv-red);
  transition: width .2s;
}
.gp-nav a:hover::after { width: 100%; }
.gp-nav-all {
  margin-left: auto;
  background: var(--rv-red) !important;
  color: #fff !important;
  padding: .5rem 1rem !important;
  border-radius: var(--rv-radius);
  text-transform: uppercase;
}
.gp-nav-all:hover { background: var(--rv-red-dark) !important; }
.gp-nav-all::after { display: none; }

.gp-menu-toggle {
  display: none;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--rv-ink);
}

/* ── Search ── */
.gp-search-toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--rv-bg-2);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: var(--rv-ink);
  transition: all .15s;
  flex-shrink: 0;
}
.gp-search-toggle:hover { background: var(--rv-red); color: #fff; }
.gp-search-toggle.is-active { background: var(--rv-ink); color: #fff; }

.gp-search-panel {
  display: none;
  background: var(--rv-bg);
  border-bottom: 3px solid var(--rv-red);
  padding: 1.5rem 0;
  animation: gpSearchSlide .2s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}
.gp-search-panel.is-open { display: block; }
.gp-search-label {
  display: block;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--rv-red); margin-bottom: .6rem;
}
.gp-search-row {
  display: flex; align-items: center; gap: .6rem;
  border-bottom: 2px solid var(--rv-ink);
  padding-bottom: .5rem;
}
.gp-search-icon { color: var(--rv-faint); flex-shrink: 0; }
.gp-search-row input[type="search"] {
  flex: 1; border: none; outline: none;
  font-size: 1.15rem; font-family: var(--rv-sans);
  padding: .5rem 0; background: transparent; color: var(--rv-ink); min-width: 0;
}
.gp-search-row input[type="search"]::placeholder { color: var(--rv-faint); }
.gp-search-row input[type="search"]::-webkit-search-cancel-button { display: none; }
.gp-search-submit { padding: .6rem 1.25rem !important; font-size: .8rem !important; flex-shrink: 0; }
.gp-search-close {
  background: transparent; border: none; color: var(--rv-faint);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; flex-shrink: 0; transition: background .15s;
}
.gp-search-close:hover { background: var(--rv-line); color: var(--rv-ink); }
.gp-search-hint { font-size: .8rem; color: var(--rv-faint); margin-top: .6rem; }
.gp-search-hint kbd {
  background: var(--rv-bg-2); border: 1px solid var(--rv-line-2);
  border-radius: 3px; padding: 1px 6px; font-family: ui-monospace, monospace;
  font-size: .75rem; color: var(--rv-ink);
}
@keyframes gpSearchSlide { from { opacity:0; transform:translateY(-8px);} to {opacity:1; transform:translateY(0);} }

/* ── Hero (homepage) — CNET-style featured + intro ── */
.gp-hero {
  background: var(--rv-ink);
  color: #fff;
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}
.gp-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--rv-red);
}
.gp-hero-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: #fff; background: var(--rv-red);
  padding: .3rem .7rem; border-radius: var(--rv-radius);
  margin-bottom: 1rem;
}
.gp-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 900; line-height: 1.08;
  max-width: 880px; letter-spacing: -.025em;
}
.gp-hero h1 em { font-style: normal; color: var(--rv-red); }
.gp-hero p {
  color: #b7bdc5; font-size: 1.05rem;
  max-width: 620px; margin: 1rem 0 1.5rem;
}
.gp-hero-meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
  font-size: .85rem; color: #8b939c;
  padding-top: 1.25rem; border-top: 1px solid #2b2f36;
}
.gp-hero-meta strong { color: #fff; font-weight: 800; }

/* ── Sections ── */
.gp-section { padding: 3rem 0; }
.gp-section-tinted { background: var(--rv-bg-2); }
.gp-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.75rem; gap: 1rem;
  border-bottom: 2px solid var(--rv-ink); padding-bottom: .6rem;
}
.gp-section-head h2 {
  font-size: 1.4rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: -.01em;
  display: inline-flex; align-items: center; gap: .5rem;
}
.gp-section-head h2::before {
  content: ''; display: inline-block;
  width: 5px; height: 1.4rem; background: var(--rv-red); border-radius: 2px;
}
.gp-section-icon { display: none; } /* replaced by red bar */
.gp-section-head a {
  font-size: .78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; color: var(--rv-red); white-space: nowrap;
}
.gp-section-head a:hover { color: var(--rv-red-dark); text-decoration: underline; }

/* ── Top Pick (featured) — big horizontal card ── */
.gp-top-pick {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem;
  align-items: center;
  background: var(--rv-bg); border: 1px solid var(--rv-line);
  border-top: 4px solid var(--rv-red);
  border-radius: var(--rv-radius); padding: 2rem; position: relative;
}
.gp-top-pick-media { overflow: hidden; border-radius: var(--rv-radius); aspect-ratio: 16/10; }
.gp-top-pick-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gp-top-pick:hover .gp-top-pick-media img { transform: scale(1.04); }
.gp-top-pick-cat {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--rv-red); margin-bottom: .7rem;
}
.gp-top-pick h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 900; margin-bottom: .9rem; line-height: 1.15; }
.gp-top-pick h2 a { color: var(--rv-ink); }
.gp-top-pick h2 a:hover { color: var(--rv-red); }
.gp-top-pick-excerpt { font-size: 1rem; color: var(--rv-mute); margin-bottom: 1.3rem; line-height: 1.65; }
.gp-top-pick-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 1.3rem; padding: 1rem 0; border-top: 1px solid var(--rv-line); border-bottom: 1px solid var(--rv-line);
}
.gp-stat-block { display: flex; flex-direction: column; }
.gp-stat-val { font-size: 1.6rem; font-weight: 900; color: var(--rv-red); line-height: 1; }
.gp-stat-lbl { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--rv-faint); margin-top: .35rem; }
.gp-cta-row { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ── Buttons ── */
.gp-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .7rem 1.3rem; border-radius: var(--rv-radius);
  font-size: .82rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; transition: all .15s; border: 2px solid transparent; font-family: var(--rv-sans);
}
.gp-btn-primary { background: var(--rv-red); color: #fff; }
.gp-btn-primary:hover { background: var(--rv-red-dark); }
.gp-btn-buy { background: var(--rv-red); color: #fff; }
.gp-btn-buy:hover { background: var(--rv-red-dark); }
.gp-btn-outline { background: transparent; color: var(--rv-ink); border-color: var(--rv-ink); }
.gp-btn-outline:hover { background: var(--rv-ink); color: #fff; }

/* ── Score badges ── */
.gp-score {
  display: inline-flex; align-items: baseline; gap: .25rem;
  background: var(--rv-red); color: #fff; padding: .4rem .65rem;
  border-radius: var(--rv-radius); font-weight: 800; font-size: .85rem;
}
.gp-score-big {
  width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; background: var(--rv-red); color: #fff;
  border-radius: var(--rv-radius); position: relative;
}
.gp-score-big::after {
  content: '/10'; position: absolute; bottom: 6px; right: 6px;
  font-size: .5rem; font-weight: 700; opacity: .85;
}

/* ── Card grids ── */
.gp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.gp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.gp-card {
  background: var(--rv-bg); border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius); overflow: hidden;
  display: flex; flex-direction: column; transition: all .18s;
}
.gp-card:hover { box-shadow: 0 8px 26px rgba(0,0,0,.1); transform: translateY(-2px); border-color: var(--rv-line-2); }
.gp-card-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.gp-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gp-card:hover .gp-card-media img { transform: scale(1.05); }
.gp-card-score-tag {
  position: absolute; top: 0; left: 0;
  background: var(--rv-red); color: #fff;
  padding: .25rem .55rem; font-weight: 800; font-size: .8rem;
  border-bottom-right-radius: var(--rv-radius);
}
.gp-card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.gp-card-cat { font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--rv-red); margin-bottom: .5rem; }
.gp-card h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: .55rem; line-height: 1.28; }
.gp-card h3 a { color: var(--rv-ink); }
.gp-card h3 a:hover { color: var(--rv-red); }
.gp-card p { font-size: .87rem; color: var(--rv-mute); flex: 1; margin-bottom: .9rem; }
.gp-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .72rem; color: var(--rv-faint); padding-top: .7rem; border-top: 1px solid var(--rv-line);
}

/* ── Category grid ── */
.gp-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gp-cat-card {
  position: relative; display: flex; align-items: center; gap: 1rem;
  background: var(--rv-bg); border: 1px solid var(--rv-line);
  border-left: 4px solid var(--rv-red);
  border-radius: var(--rv-radius); padding: 1.25rem 1.5rem; transition: all .15s;
}
.gp-cat-card:hover { background: var(--rv-red-soft); transform: translateX(3px); }
.gp-cat-emoji { font-size: 1.8rem; line-height: 1; }
.gp-cat-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: .15rem; }
.gp-cat-count { font-size: .78rem; color: var(--rv-faint); font-weight: 600; }

/* ── Trust strip ── */
.gp-trust-strip { background: var(--rv-ink); color: #fff; padding: 2.5rem 0; }
.gp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.gp-trust-num { font-size: 2.4rem; font-weight: 900; color: var(--rv-red); line-height: 1; margin-bottom: .4rem; }
.gp-trust-lbl { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #b7bdc5; }

/* ── Newsletter ── */
.gp-newsletter { background: var(--rv-red); color: #fff; padding: 3.5rem 0; text-align: center; }
.gp-newsletter h2 { color: #fff; font-size: 1.9rem; font-weight: 900; margin-bottom: .4rem; }
.gp-newsletter p { color: #ffe0e4; max-width: 540px; margin: 0 auto 1.6rem; }
.gp-nl-form { display: flex; gap: .5rem; max-width: 460px; margin: 0 auto; }
.gp-nl-form input { flex: 1; padding: .85rem 1rem; border: none; border-radius: var(--rv-radius); font-size: .95rem; font-family: inherit; }
.gp-nl-form button {
  background: var(--rv-ink); color: #fff; border: none; padding: 0 1.5rem;
  border-radius: var(--rv-radius); font-weight: 800; font-size: .82rem; cursor: pointer;
  text-transform: uppercase; letter-spacing: .05em; font-family: inherit;
}
.gp-nl-form button:hover { background: #000; }
.gp-nl-success { text-align: center; padding: .5rem 0; }
.gp-nl-check {
  width: 56px; height: 56px; border-radius: 50%; background: #fff; color: var(--rv-red);
  font-size: 1.7rem; font-weight: 900; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.gp-nl-success h2 { color: #fff; }
.gp-nl-success p { color: #ffe0e4; max-width: 480px; margin: .5rem auto 0; }
@keyframes gpNlFade { from { opacity:0; transform:translateY(8px);} to {opacity:1; transform:translateY(0);} }

/* ── Footer ── */
.gp-footer { background: var(--rv-ink); color: #9aa1aa; padding: 3.25rem 0 1.5rem; }
.gp-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.gp-footer h4 { color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--rv-red); display: inline-block; }
.gp-footer p { font-size: .86rem; line-height: 1.7; }
.gp-footer a { display: block; color: #9aa1aa; font-size: .86rem; margin-bottom: .4rem; transition: color .15s; }
.gp-footer a:hover { color: #fff; }
.gp-footer-brand .gp-logo { color: #fff; margin-bottom: 1rem; }
.gp-footer-brand .gp-logo-text strong { color: var(--rv-red); }
.gp-footer-bottom { border-top: 1px solid #2b2f36; padding-top: 1.5rem; text-align: center; font-size: .8rem; color: #6b7177; }
.gp-footer-bottom a { display: inline; color: #9aa1aa; }
.gp-footer-bottom a:hover { color: #fff; }

/* ── Page template ── */
.gp-page-wrap { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.gp-page-title { font-size: 2.3rem; font-weight: 900; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 3px solid var(--rv-red); }
.gp-page-content h2 { font-size: 1.4rem; font-weight: 800; margin: 2.5rem 0 .75rem; }
.gp-page-content h3 { font-size: 1.15rem; font-weight: 700; margin: 1.75rem 0 .5rem; }
.gp-page-content p { color: var(--rv-ink-2); margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.8; }
.gp-page-content ul, .gp-page-content ol { padding-left: 1.4rem; margin-bottom: 1.5rem; }
.gp-page-content li { list-style: disc; margin-bottom: .4rem; color: var(--rv-ink-2); line-height: 1.7; }
.gp-page-content a { color: var(--rv-red); text-decoration: underline; text-underline-offset: 2px; }
.gp-page-content strong { color: var(--rv-ink); font-weight: 700; }

/* ── Single review ── */
.gp-review-header { background: var(--rv-bg); padding: 2.5rem 0 1.75rem; border-bottom: 1px solid var(--rv-line); }
.gp-review-eyebrow { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--rv-red); margin-bottom: .8rem; }
.gp-review-title { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 900; line-height: 1.12; margin-bottom: 1.1rem; max-width: 920px; letter-spacing: -.02em; }
.gp-review-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; font-size: .85rem; color: var(--rv-faint); }
.gp-review-meta strong { color: var(--rv-ink); font-weight: 700; }
.gp-review-meta-divider { color: var(--rv-line-2); }
.gp-review-hero { margin: 0 0 2rem; }
.gp-review-hero img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--rv-radius); }
.gp-review-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: flex-start; }
.gp-review-content { font-size: 1.05rem; }
.gp-review-content h2 { font-size: 1.5rem; font-weight: 800; margin: 2.25rem 0 .85rem; }
.gp-review-content h3 { font-size: 1.2rem; font-weight: 700; margin: 1.6rem 0 .6rem; }
.gp-review-content p { margin-bottom: 1.2rem; line-height: 1.8; color: var(--rv-ink-2); }
.gp-review-content ul { padding-left: 1.4rem; margin-bottom: 1.4rem; }
.gp-review-content li { list-style: disc; margin-bottom: .4rem; line-height: 1.7; }
.gp-review-content a { color: var(--rv-red); text-decoration: underline; }
/* Buttons inside review content must keep button colors (not the red link color) */
.gp-review-content a.gp-btn { text-decoration: none; }
.gp-review-content a.gp-btn-buy,
.gp-review-content a.gp-btn-primary { color: #fff; }
.gp-review-content a.gp-btn-outline { color: var(--rv-ink); }
.gp-review-content a.gp-btn-outline:hover { color: #fff; }

.gp-verdict-card { background: var(--rv-bg); border: 1px solid var(--rv-line); border-top: 4px solid var(--rv-red); border-radius: var(--rv-radius); padding: 1.5rem; position: sticky; top: 90px; }
.gp-verdict-score-row { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.2rem; margin-bottom: 1.2rem; border-bottom: 2px solid var(--rv-line); }
.gp-verdict-score-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rv-faint); margin-bottom: .3rem; }
.gp-verdict-score-stars { color: var(--rv-red); font-size: 1rem; }
.gp-verdict-h { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--rv-faint); margin-bottom: .5rem; }
.gp-verdict-text { font-size: .92rem; color: var(--rv-mute); line-height: 1.6; margin-bottom: 1.2rem; }
.gp-verdict-cta { width: 100%; justify-content: center; margin-top: .5rem; }

/* Pros / Cons */
.gp-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; padding: 1.5rem; background: var(--rv-bg-2); border-radius: var(--rv-radius); border-left: 4px solid var(--rv-red); }
.gp-proscons h4 { font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .8rem; }
.gp-pros h4 { color: #15803d; }
.gp-cons h4 { color: var(--rv-red); }
.gp-proscons ul { padding: 0; }
.gp-proscons li { list-style: none; padding-left: 1.4rem; position: relative; font-size: .92rem; line-height: 1.6; margin-bottom: .55rem; color: var(--rv-ink-2); }
.gp-pros li::before { content: '✓'; position: absolute; left: 0; color: #15803d; font-weight: 900; }
.gp-cons li::before { content: '✕'; position: absolute; left: 0; color: var(--rv-red); font-weight: 900; }

/* Rating bars */
.gp-rating-bars { margin: 1.5rem 0; }
.gp-rating-bar { display: flex; align-items: center; gap: .9rem; margin-bottom: .65rem; }
.gp-rating-bar-lbl { width: 130px; font-size: .82rem; font-weight: 600; color: var(--rv-ink); flex-shrink: 0; }
.gp-rating-bar-track { flex: 1; height: 7px; background: var(--rv-line); border-radius: 999px; overflow: hidden; }
.gp-rating-bar-fill { height: 100%; background: var(--rv-red); border-radius: 999px; }
.gp-rating-bar-val { font-weight: 800; font-size: .82rem; color: var(--rv-red); width: 35px; text-align: right; }

/* Buy box */
.gp-buy-box { background: var(--rv-red-soft); border: 2px solid var(--rv-red); border-radius: var(--rv-radius); padding: 1.5rem 1.75rem; margin: 2.5rem 0; text-align: center; }
.gp-buy-box-label { font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--rv-red); margin-bottom: .5rem; }
.gp-buy-box h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: .8rem; }
.gp-buy-box p { color: var(--rv-mute); font-size: .92rem; margin-bottom: 1.2rem; }

/* Archive */
.gp-archive-header { text-align: center; padding: 3rem 0 2.5rem; border-bottom: 2px solid var(--rv-ink); margin-bottom: 2.5rem; }
.gp-archive-header h1 { font-size: 2.6rem; font-weight: 900; letter-spacing: -.02em; }
.gp-archive-header p { color: var(--rv-mute); margin-top: .8rem; max-width: 620px; margin-left: auto; margin-right: auto; }
.gp-archive-header .gp-hero-eyebrow { background: var(--rv-red); color: #fff; }

.gp-pagination { margin: 3rem 0; text-align: center; }
.gp-pagination a, .gp-pagination span {
  display: inline-block; padding: .55rem .85rem; margin: 0 .15rem;
  border: 1px solid var(--rv-line-2); border-radius: var(--rv-radius);
  font-weight: 700; font-size: .9rem; color: var(--rv-ink); background: var(--rv-bg);
}
.gp-pagination a:hover { background: var(--rv-red); color: #fff; border-color: var(--rv-red); }
.gp-pagination .current { background: var(--rv-ink); color: #fff; border-color: var(--rv-ink); }

/* ── Mobile ── */
@media (max-width: 960px) {
  .gp-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gp-category-grid { grid-template-columns: repeat(2, 1fr); }
  .gp-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .gp-top-pick { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
  .gp-review-layout { grid-template-columns: 1fr; }
  .gp-verdict-card { position: static; }
  .gp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .gp-nav { display: none; }
  .gp-nav.is-open {
    display: flex; flex-direction: column; position: absolute;
    top: 66px; left: 0; right: 0; background: var(--rv-bg);
    padding: 1.5rem; gap: 1rem; border-bottom: 3px solid var(--rv-red);
    box-shadow: 0 8px 24px rgba(0,0,0,.1); align-items: stretch;
  }
  .gp-nav.is-open a::after { display: none; }
  .gp-nav-all { margin-left: 0 !important; text-align: center; }
  .gp-menu-toggle { display: block; margin-left: auto; }
  .gp-search-toggle { margin-left: 0; }
  .gp-hero { padding: 2.25rem 0; }
  .gp-section { padding: 2.25rem 0; }
  .gp-section-head { flex-wrap: wrap; }
  .gp-section-head h2 { font-size: 1.2rem; }
  .gp-proscons { grid-template-columns: 1fr; }
  .gp-top-pick-stats { gap: 1.25rem; }
  .gp-search-submit { padding: .55rem .8rem !important; font-size: .75rem !important; }
  .gp-search-row input[type="search"] { font-size: 1rem; }
}
@media (max-width: 480px) {
  .gp-grid-3, .gp-grid-4 { grid-template-columns: 1fr; }
  .gp-category-grid { grid-template-columns: 1fr; }
  .gp-trust-grid { grid-template-columns: 1fr 1fr; }
  .gp-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gp-nl-form { flex-direction: column; }
  .gp-page-title { font-size: 1.7rem; }
  .gp-header-inner { gap: 1rem; }
}
