/* ============================================================
   VXC Emporium — Consumer reviews (Which?-inspired)
   Magenta + navy palette, magazine-style, rounded cards.
   Same gp-* class names (PHP renderers unchanged).
   ============================================================ */

:root {
  --vx-magenta:      #cb0067;   /* primary accent */
  --vx-magenta-dark: #9b0050;
  --vx-magenta-soft: #fdf0f6;
  --vx-navy:         #002554;   /* dark headline + topbar */
  --vx-navy-2:       #14305a;
  --vx-ink:          #1d2125;
  --vx-ink-2:        #3a4148;
  --vx-mute:         #5e6770;
  --vx-faint:        #8b929a;
  --vx-line:         #e1e3e8;
  --vx-line-2:       #c8ccd2;
  --vx-bg:           #ffffff;
  --vx-bg-2:         #f5f6f8;
  --vx-best:         #d4001f;   /* "Best Buy" red badge */
  --vx-best-dark:    #a80019;
  --vx-gold:         #f4a200;   /* star rating */

  --vx-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --vx-max: 1240px;
  --vx-radius: 8px;
  --vx-radius-sm: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--vx-sans);
  color: var(--vx-ink);
  background: var(--vx-bg-2);
  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(--vx-sans); line-height: 1.22; color: var(--vx-navy); letter-spacing: -.005em; }

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

/* ── Topbar (with live indicator + links right) ── */
.gp-topbar {
  background: var(--vx-navy);
  color: #d6e0f0;
  font-size: .78rem;
  padding: .55rem 0;
}
.gp-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.gp-topbar-live { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; }
.gp-topbar-live strong { color: #ffd1e3; font-weight: 800; }
.gp-topbar-dot {
  width: 8px; height: 8px; background: #2ecc71; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46,204,113,.7);
  animation: gpDotPulse 2s infinite;
}
@keyframes gpDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.gp-topbar-links { display: inline-flex; align-items: center; gap: .8rem; }
.gp-topbar-links a { color: #d6e0f0; transition: color .15s; }
.gp-topbar-links a:hover { color: #fff; }
.gp-topbar-sep { color: #4a6285; }
.gp-topbar-cta {
  background: var(--vx-magenta) !important;
  color: #fff !important;
  padding: .2rem .7rem; border-radius: 999px;
  font-weight: 700;
}
.gp-topbar-cta:hover { background: var(--vx-magenta-dark) !important; color: #fff !important; }

/* ── Sub-nav (horizontal category pills under main header) ── */
.gp-subnav {
  background: var(--vx-bg-2);
  border-bottom: 1px solid var(--vx-line);
  padding: .6rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.gp-subnav-inner {
  display: flex;
  align-items: center;
  gap: .6rem;
  white-space: nowrap;
  min-width: max-content;
}
.gp-subnav-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .14em;
  color: var(--vx-faint); margin-right: .4rem;
}
.gp-subnav-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .85rem;
  background: var(--vx-bg);
  border: 1px solid var(--vx-line);
  border-radius: 999px;
  font-size: .8rem; font-weight: 600;
  color: var(--vx-navy);
  transition: all .15s;
}
.gp-subnav-pill:hover { background: var(--vx-magenta); border-color: var(--vx-magenta); color: #fff; }
.gp-subnav-pill span {
  font-size: .7rem; font-weight: 700;
  background: var(--vx-magenta-soft); color: var(--vx-magenta);
  padding: 1px 7px; border-radius: 999px;
}
.gp-subnav-pill:hover span { background: rgba(255,255,255,.25); color: #fff; }

/* "News" pill in main nav */
.gp-nav-news {
  background: var(--vx-magenta-soft);
  color: var(--vx-magenta) !important;
  padding: .35rem .85rem !important;
  border-radius: 999px;
  font-size: .82rem !important;
}
.gp-nav-news::after { display: none !important; }
.gp-nav-news:hover { background: var(--vx-magenta); color: #fff !important; }

/* ── Header ── */
.gp-header {
  background: var(--vx-bg);
  border-bottom: 1px solid var(--vx-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.gp-header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}
.gp-logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--vx-navy);
  flex-shrink: 0;
}
.gp-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--vx-magenta);
  color: #fff;
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 900;
}
.gp-logo-text { font-weight: 800; }
.gp-logo-text strong { font-weight: 900; color: var(--vx-magenta); }

.gp-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex: 1;
}
.gp-nav a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--vx-navy);
  padding: .5rem 0;
  position: relative;
  white-space: nowrap;
  transition: color .15s;
}
.gp-nav a:hover { color: var(--vx-magenta); }
.gp-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 3px;
  background: var(--vx-magenta);
  transition: width .2s;
}
.gp-nav a:hover::after { width: 100%; }
.gp-nav-all {
  margin-left: auto;
  background: var(--vx-magenta) !important;
  color: #fff !important;
  padding: .55rem 1.1rem !important;
  border-radius: 999px;
  font-weight: 700;
}
.gp-nav-all:hover { background: var(--vx-magenta-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(--vx-navy);
}

/* ── Search ── */
.gp-search-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--vx-bg-2); border: 1px solid var(--vx-line);
  border-radius: 50%; cursor: pointer; color: var(--vx-navy);
  transition: all .15s; flex-shrink: 0;
}
.gp-search-toggle:hover { background: var(--vx-magenta); border-color: var(--vx-magenta); color: #fff; }
.gp-search-toggle.is-active { background: var(--vx-navy); border-color: var(--vx-navy); color: #fff; }

.gp-search-panel {
  display: none;
  background: var(--vx-bg);
  border-bottom: 3px solid var(--vx-magenta);
  padding: 1.5rem 0;
  animation: gpSearchSlide .2s ease;
  box-shadow: 0 10px 22px rgba(0,37,84,.08);
}
.gp-search-panel.is-open { display: block; }
.gp-search-label {
  display: block; font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--vx-magenta); margin-bottom: .6rem;
}
.gp-search-row {
  display: flex; align-items: center; gap: .6rem;
  border-bottom: 2px solid var(--vx-navy);
  padding-bottom: .5rem;
}
.gp-search-icon { color: var(--vx-faint); flex-shrink: 0; }
.gp-search-row input[type="search"] {
  flex: 1; border: none; outline: none;
  font-size: 1.15rem; font-family: var(--vx-sans);
  padding: .5rem 0; background: transparent; color: var(--vx-ink); min-width: 0;
}
.gp-search-row input[type="search"]::placeholder { color: var(--vx-faint); }
.gp-search-row input[type="search"]::-webkit-search-cancel-button { display: none; }
.gp-search-submit { padding: .6rem 1.25rem !important; font-size: .82rem !important; flex-shrink: 0; border-radius: 999px !important; }
.gp-search-close {
  background: transparent; border: none; color: var(--vx-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(--vx-line); color: var(--vx-navy); }
.gp-search-hint { font-size: .8rem; color: var(--vx-faint); margin-top: .6rem; }
.gp-search-hint kbd {
  background: var(--vx-bg-2); border: 1px solid var(--vx-line-2);
  border-radius: 3px; padding: 1px 6px; font-family: ui-monospace, monospace;
  font-size: .75rem; color: var(--vx-navy);
}
@keyframes gpSearchSlide { from { opacity:0; transform:translateY(-8px);} to {opacity:1; transform:translateY(0);} }

/* ── Magazine-style hero card (which.co.uk featured story) ── */
.gp-hero-magazine {
  padding: 2.25rem 0 1.5rem;
  background: var(--vx-bg-2);
}
.gp-hero-card {
  position: relative;
  border-radius: var(--vx-radius);
  overflow: hidden;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 40px rgba(0,37,84,.18);
}
.gp-hero-card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
  background: linear-gradient(180deg, rgba(0,37,84,0) 0%, rgba(0,37,84,.55) 55%, rgba(0,37,84,.92) 100%);
  color: #fff;
}
.gp-hero-card-overlay .gp-hero-eyebrow {
  background: var(--vx-magenta);
  display: inline-block; width: max-content;
  padding: .35rem .85rem; border-radius: 999px;
  font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  margin-bottom: 1rem;
}
.gp-hero-card-overlay h1 {
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 900; line-height: 1.12;
  max-width: 760px; letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.gp-hero-card-overlay h1 a { color: #fff; }
.gp-hero-card-overlay h1 a:hover { color: #ffd1e3; }
.gp-hero-card-overlay p {
  color: rgba(255,255,255,.92);
  font-size: 1rem; max-width: 640px;
  margin-bottom: 1.25rem;
}
.gp-hero-card-foot {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.gp-hero-card-score {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  padding: .5rem 1rem;
  border-radius: 999px;
  font-weight: 800; font-size: .9rem;
  border: 1px solid rgba(255,255,255,.3);
}

/* ── Hero (legacy — kept for non-homepage use) — Which-style magenta panel ── */
.gp-hero {
  background: linear-gradient(135deg, var(--vx-magenta) 0%, #8a0046 100%);
  color: #fff;
  padding: 3.25rem 0;
  position: relative;
}
.gp-hero-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  background: rgba(255,255,255,.18); color: #fff;
  padding: .35rem .85rem; border-radius: 999px;
  margin-bottom: 1.1rem;
  backdrop-filter: blur(4px);
}
.gp-hero h1 {
  color: #fff;
  font-size: clamp(1.95rem, 4.2vw, 3.2rem);
  font-weight: 900; line-height: 1.08;
  max-width: 880px; letter-spacing: -.025em;
}
.gp-hero h1 em { font-style: italic; color: #ffd1e3; font-weight: 800; }
.gp-hero p {
  color: rgba(255,255,255,.92); 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: rgba(255,255,255,.78);
  padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.25);
}
.gp-hero-meta strong { color: #fff; font-weight: 800; }

/* ── Sections ── */
.gp-section { padding: 3.25rem 0; background: var(--vx-bg-2); }
.gp-section-tinted { background: var(--vx-bg); }
.gp-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1.75rem; gap: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--vx-line);
}
.gp-section-head h2 {
  font-size: 1.55rem; font-weight: 800;
  color: var(--vx-navy);
  display: inline-flex; align-items: center; gap: .6rem;
}
.gp-section-head h2::before {
  content: ''; display: inline-block;
  width: 4px; height: 1.45rem; background: var(--vx-magenta); border-radius: 2px;
}
.gp-section-icon { display: none; }
.gp-section-head a {
  font-size: .85rem; font-weight: 700;
  color: var(--vx-magenta); white-space: nowrap;
}
.gp-section-head a:hover { color: var(--vx-magenta-dark); text-decoration: underline; }

/* ── Top Pick / Featured ── */
.gp-top-pick {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 2.5rem;
  align-items: center;
  background: var(--vx-bg);
  border: 1px solid var(--vx-line);
  border-radius: var(--vx-radius);
  padding: 2rem; position: relative; overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,37,84,.06);
}
.gp-top-pick::before {
  content: 'BEST BUY';
  position: absolute; top: 1.25rem; right: -2.5rem;
  background: var(--vx-best); color: #fff;
  font-size: .72rem; font-weight: 900;
  letter-spacing: .15em;
  padding: .35rem 3rem;
  transform: rotate(35deg);
  box-shadow: 0 4px 8px rgba(212,0,31,.3);
}
.gp-top-pick-media { overflow: hidden; border-radius: var(--vx-radius-sm); 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(--vx-magenta); margin-bottom: .7rem;
}
.gp-top-pick h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); font-weight: 800; margin-bottom: .9rem; line-height: 1.18; color: var(--vx-navy); }
.gp-top-pick h2 a { color: var(--vx-navy); }
.gp-top-pick h2 a:hover { color: var(--vx-magenta); }
.gp-top-pick-excerpt { font-size: 1rem; color: var(--vx-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(--vx-line); border-bottom: 1px solid var(--vx-line);
}
.gp-stat-block { display: flex; flex-direction: column; }
.gp-stat-val { font-size: 1.7rem; font-weight: 900; color: var(--vx-magenta); line-height: 1; }
.gp-stat-lbl { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--vx-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: .75rem 1.4rem; border-radius: 999px;
  font-size: .85rem; font-weight: 700; letter-spacing: .02em;
  cursor: pointer; transition: all .15s; border: 2px solid transparent; font-family: var(--vx-sans);
}
.gp-btn-primary { background: var(--vx-navy); color: #fff; }
.gp-btn-primary:hover { background: var(--vx-navy-2); }
.gp-btn-buy { background: var(--vx-magenta); color: #fff; }
.gp-btn-buy:hover { background: var(--vx-magenta-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(203,0,103,.25); }
.gp-btn-outline { background: transparent; color: var(--vx-navy); border-color: var(--vx-navy); }
.gp-btn-outline:hover { background: var(--vx-navy); color: #fff; }

/* ── Score badges ── */
.gp-score {
  display: inline-flex; align-items: baseline; gap: .25rem;
  background: var(--vx-magenta); color: #fff;
  padding: .4rem .7rem; border-radius: 999px;
  font-weight: 800; font-size: .85rem;
}
.gp-score-big {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; font-weight: 900;
  background: var(--vx-magenta); color: #fff;
  border-radius: 50%; position: relative;
  box-shadow: 0 4px 14px rgba(203,0,103,.35);
}
.gp-score-big::after {
  content: '/10'; position: absolute; bottom: 8px; right: 6px;
  font-size: .55rem; 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(--vx-bg); border: 1px solid var(--vx-line);
  border-radius: var(--vx-radius); overflow: hidden;
  display: flex; flex-direction: column; transition: all .2s;
}
.gp-card:hover {
  box-shadow: 0 12px 30px rgba(0,37,84,.1);
  transform: translateY(-3px);
  border-color: var(--vx-magenta);
}
.gp-card-media { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--vx-bg-2); }
.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: .85rem; right: .85rem;
  background: var(--vx-magenta); color: #fff;
  padding: .3rem .65rem; font-weight: 800; font-size: .8rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.gp-card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.gp-card-cat {
  font-size: .66rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--vx-magenta); margin-bottom: .55rem;
}
.gp-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .55rem; line-height: 1.3; color: var(--vx-navy); }
.gp-card h3 a { color: var(--vx-navy); }
.gp-card h3 a:hover { color: var(--vx-magenta); }
.gp-card p { font-size: .88rem; color: var(--vx-mute); flex: 1; margin-bottom: .9rem; }
.gp-card-cta { margin: .9rem 0 .25rem; }
.gp-card-buy {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem 1rem;
  background: var(--vx-navy);
  color: #fff !important;
  border-radius: 999px;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .02em;
  transition: all .18s;
  border: 2px solid var(--vx-navy);
  text-decoration: none !important;
  width: auto;
}
.gp-card-buy svg { transition: transform .18s; }
.gp-card-buy:hover {
  background: var(--vx-magenta);
  border-color: var(--vx-magenta);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(203,0,103,.28);
}
.gp-card-buy:hover svg { transform: translate(1px,-1px); }

.gp-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .73rem; color: var(--vx-faint);
  padding-top: .8rem; border-top: 1px solid var(--vx-line);
}

/* ── Category grid ── */
.gp-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gp-cat-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--vx-bg); border: 1px solid var(--vx-line);
  border-radius: var(--vx-radius);
  padding: 1.25rem 1.5rem; transition: all .18s; position: relative;
}
.gp-cat-card:hover {
  background: var(--vx-magenta-soft);
  border-color: var(--vx-magenta);
  transform: translateY(-2px);
}
.gp-cat-emoji {
  font-size: 1.6rem;
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--vx-magenta-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.gp-cat-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: .15rem; color: var(--vx-navy); }
.gp-cat-count { font-size: .78rem; color: var(--vx-mute); font-weight: 600; }

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

/* ── Newsletter ── */
.gp-newsletter {
  background: linear-gradient(135deg, var(--vx-magenta) 0%, #8a0046 100%);
  color: #fff; padding: 3.75rem 0; text-align: center;
}
.gp-newsletter h2 { color: #fff; font-size: 1.9rem; font-weight: 800; margin-bottom: .4rem; }
.gp-newsletter p { color: rgba(255,255,255,.9); max-width: 540px; margin: 0 auto 1.6rem; }
.gp-nl-form { display: flex; gap: .5rem; max-width: 480px; margin: 0 auto; }
.gp-nl-form input { flex: 1; padding: .9rem 1.1rem; border: none; border-radius: 999px; font-size: .95rem; font-family: inherit; }
.gp-nl-form button {
  background: var(--vx-navy); color: #fff; border: none; padding: 0 1.6rem;
  border-radius: 999px; font-weight: 800; font-size: .85rem; cursor: pointer;
  letter-spacing: .03em; font-family: inherit;
}
.gp-nl-form button:hover { background: #001a3d; }
.gp-nl-success { text-align: center; padding: .5rem 0; }
.gp-nl-check {
  width: 60px; height: 60px; border-radius: 50%; background: #fff; color: var(--vx-magenta);
  font-size: 1.8rem; font-weight: 900; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.gp-nl-success h2 { color: #fff; }
.gp-nl-success p { color: rgba(255,255,255,.92); max-width: 480px; margin: .5rem auto 0; }
@keyframes gpNlFade { from { opacity:0; transform:translateY(8px);} to {opacity:1; transform:translateY(0);} }

/* ── Footer (5-col dense, brand row on top) ── */
.gp-footer { background: var(--vx-navy); color: #b7c3d7; padding: 3rem 0 1.25rem; }

.gp-footer-brand-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #14305a;
}
.gp-footer-brand-row--solo { grid-template-columns: 1fr; }
.gp-footer-badges {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  margin-top: 1.1rem;
}
.gp-footer-badge {
  font-size: .78rem; font-weight: 600;
  color: #ffd1e3;
  letter-spacing: .01em;
}
.gp-footer-brand-row .gp-logo { color: #fff; font-size: 1.7rem; margin-bottom: .8rem; }
.gp-footer-brand-row .gp-logo-text { color: #fff; }
.gp-footer-brand-row .gp-logo-text strong { color: #ffd1e3; }
.gp-footer-tagline { font-size: .92rem; max-width: 480px; line-height: 1.6; color: #b7c3d7; }
.gp-footer-tagline strong { color: #ffd1e3; font-weight: 800; }

.gp-footer-social { display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; }
.gp-footer-social-label { font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: #8b929a; }
.gp-footer-social-row { display: flex; gap: .5rem; }
.gp-footer-social-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: #14305a; color: #b7c3d7;
  border-radius: 50%; margin: 0;
  transition: all .15s;
}
.gp-footer-social-row a:hover { background: var(--vx-magenta); color: #fff; transform: translateY(-2px); }

.gp-footer-grid-5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.3fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.gp-footer h4 {
  color: #fff; font-size: .76rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--vx-magenta);
  display: inline-block;
}
.gp-footer p { font-size: .87rem; line-height: 1.65; color: #b7c3d7; }
.gp-footer a {
  display: block; color: #b7c3d7; font-size: .85rem;
  margin-bottom: .5rem; transition: color .15s;
}
.gp-footer a:hover { color: #ffd1e3; }

.gp-footer-mini-nl p { font-size: .83rem; margin-bottom: .8rem; }
.gp-footer-mini-nl form {
  display: flex; gap: .35rem; margin-bottom: .6rem;
}
.gp-footer-mini-nl input {
  flex: 1; min-width: 0; padding: .5rem .75rem;
  border: 1px solid #14305a; background: #001a3d;
  color: #fff; border-radius: 999px;
  font-size: .82rem; font-family: inherit;
  outline: none;
}
.gp-footer-mini-nl input::placeholder { color: #5e6770; }
.gp-footer-mini-nl input:focus { border-color: var(--vx-magenta); }
.gp-footer-mini-nl button {
  background: var(--vx-magenta); color: #fff;
  border: none; padding: .5rem 1rem;
  border-radius: 999px; cursor: pointer;
  font-weight: 700; font-size: .78rem; font-family: inherit;
  flex-shrink: 0;
}
.gp-footer-mini-nl button:hover { background: var(--vx-magenta-dark); }
.gp-footer-mini-note { font-size: .75rem !important; color: #8b929a !important; }

.gp-footer-bottom {
  border-top: 1px solid #14305a;
  padding-top: 1.25rem;
  font-size: .78rem; color: #8b929a;
  display: flex; flex-wrap: wrap; gap: .75rem;
  align-items: center; justify-content: center;
  text-align: center;
}
.gp-footer-bottom a { display: inline; color: #b7c3d7; margin: 0; }
.gp-footer-bottom a:hover { color: #ffd1e3; }
.gp-footer-bottom-sep { color: #14305a; }

/* ── Page template ── */
.gp-page-wrap { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem 5rem; background: var(--vx-bg); }
.gp-page-title { font-size: 2.3rem; font-weight: 800; color: var(--vx-navy); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 3px solid var(--vx-magenta); }
.gp-page-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--vx-navy); margin: 2.5rem 0 .75rem; }
.gp-page-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--vx-navy); margin: 1.75rem 0 .5rem; }
.gp-page-content p { color: var(--vx-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(--vx-ink-2); line-height: 1.7; }
.gp-page-content a { color: var(--vx-magenta); text-decoration: underline; text-underline-offset: 2px; }
.gp-page-content strong { color: var(--vx-navy); font-weight: 700; }

/* ── Single review ── */
.gp-review-header { background: var(--vx-bg); padding: 2.5rem 0 1.75rem; border-bottom: 1px solid var(--vx-line); }
.gp-review-eyebrow { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--vx-magenta); margin-bottom: .8rem; }
.gp-review-title { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 800; color: var(--vx-navy); 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(--vx-faint); }
.gp-review-meta strong { color: var(--vx-navy); font-weight: 700; }
.gp-review-meta-divider { color: var(--vx-line-2); }
.gp-review-hero { margin: 0 0 2rem; background: var(--vx-bg); padding: 0 1.5rem; }
.gp-review-hero img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--vx-radius); margin: 0 auto; }
.gp-review-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: flex-start; background: var(--vx-bg); padding: 0 1.5rem; }
.gp-review-content { font-size: 1.05rem; }
.gp-review-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--vx-navy); margin: 2.25rem 0 .85rem; }
.gp-review-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--vx-navy); margin: 1.6rem 0 .6rem; }
.gp-review-content p { margin-bottom: 1.2rem; line-height: 1.8; color: var(--vx-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(--vx-magenta); text-decoration: underline; }
/* Buttons in review content keep their button colors */
.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(--vx-navy); }
.gp-review-content a.gp-btn-outline:hover { color: #fff; }

.gp-verdict-card {
  background: var(--vx-bg); border: 1px solid var(--vx-line);
  border-top: 4px solid var(--vx-magenta);
  border-radius: var(--vx-radius);
  padding: 1.5rem; position: sticky; top: 96px;
  box-shadow: 0 6px 20px rgba(0,37,84,.06);
}
.gp-verdict-score-row { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.2rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--vx-line); }
.gp-verdict-score-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--vx-faint); margin-bottom: .3rem; font-weight: 700; }
.gp-verdict-score-stars { color: var(--vx-gold); font-size: 1rem; }
.gp-verdict-h { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--vx-faint); margin-bottom: .5rem; }
.gp-verdict-text { font-size: .92rem; color: var(--vx-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(--vx-magenta-soft); border-radius: var(--vx-radius);
  border-left: 4px solid var(--vx-magenta);
}
.gp-proscons h4 { font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .8rem; }
.gp-pros h4 { color: #0f7a3a; }
.gp-cons h4 { color: var(--vx-best); }
.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(--vx-ink-2); }
.gp-pros li::before { content: '✓'; position: absolute; left: 0; color: #0f7a3a; font-weight: 900; }
.gp-cons li::before { content: '✕'; position: absolute; left: 0; color: var(--vx-best); 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: 140px; font-size: .82rem; font-weight: 600; color: var(--vx-navy); flex-shrink: 0; }
.gp-rating-bar-track { flex: 1; height: 8px; background: var(--vx-line); border-radius: 999px; overflow: hidden; }
.gp-rating-bar-fill { height: 100%; background: linear-gradient(90deg, var(--vx-magenta), #ff4d9a); border-radius: 999px; }
.gp-rating-bar-val { font-weight: 800; font-size: .82rem; color: var(--vx-magenta); width: 35px; text-align: right; }

/* Buy box */
.gp-buy-box {
  background: var(--vx-magenta-soft);
  border: 2px solid var(--vx-magenta);
  border-radius: var(--vx-radius);
  padding: 1.75rem 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(--vx-magenta); margin-bottom: .5rem; }
.gp-buy-box h3 { font-size: 1.3rem; font-weight: 800; color: var(--vx-navy); margin-bottom: .8rem; }
.gp-buy-box p { color: var(--vx-mute); font-size: .95rem; margin-bottom: 1.2rem; }

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

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

/* ── 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-5 { grid-template-columns: 1fr 1fr 1fr; }
  .gp-footer-brand-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .gp-footer-social { align-items: flex-start; }
  .gp-hero-card { min-height: 380px; }
  .gp-hero-card-overlay { padding: 1.75rem; }
}
@media (max-width: 720px) {
  .gp-nav { display: none; }
  .gp-nav.is-open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: var(--vx-bg);
    padding: 1.5rem; gap: 1rem; border-bottom: 3px solid var(--vx-magenta);
    box-shadow: 0 8px 24px rgba(0,37,84,.12); 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.5rem 0; }
  .gp-section { padding: 2.25rem 0; }
  .gp-section-head { flex-wrap: wrap; }
  .gp-section-head h2 { font-size: 1.3rem; }
  .gp-proscons { grid-template-columns: 1fr; }
  .gp-top-pick-stats { gap: 1.25rem; }
  .gp-search-submit { padding: .55rem 1rem !important; font-size: .78rem !important; }
}
@media (max-width: 720px) {
  .gp-topbar-inner { justify-content: center; }
  .gp-topbar-links a:not(.gp-topbar-cta) { display: none; }
  .gp-footer-grid-5 { grid-template-columns: 1fr 1fr; }
  .gp-hero-card { min-height: 320px; }
  .gp-hero-card-overlay { padding: 1.25rem; }
  .gp-hero-card-overlay h1 { font-size: 1.4rem; }
}
@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-5 { grid-template-columns: 1fr; gap: 1.75rem; }
  .gp-nl-form { flex-direction: column; }
  .gp-page-title { font-size: 1.7rem; }
  .gp-header-inner { gap: 1rem; }
  .gp-top-pick::before { right: -3.5rem; }
  .gp-subnav-label { display: none; }
}
