/* ============================================================
   Tier5Shop — Affiliate 2026 (modern minimal, emerald + cream + amber)
   Class names kept identical (gp-*) so PHP renderers don't break.
   ============================================================ */

:root {
  --t5-primary:      #059669;   /* deep emerald */
  --t5-primary-dark: #047857;
  --t5-primary-soft: #d1fae5;
  --t5-amber:        #f59e0b;   /* warm accent for scores */
  --t5-amber-soft:   #fef3c7;
  --t5-coral:        #f43f5e;   /* hot/best badges */
  --t5-coral-soft:   #ffe4e6;
  --t5-ink:          #0f172a;
  --t5-ink-2:        #1e293b;
  --t5-mute:         #64748b;
  --t5-faint:        #94a3b8;
  --t5-line:         #e5e7eb;
  --t5-line-2:       #d1d5db;
  --t5-bg:           #fafaf6;   /* warm cream */
  --t5-card:         #ffffff;

  --t5-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --t5-max:    1240px;
  --t5-radius: 14px;
  --t5-radius-sm: 10px;
  --t5-shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.05);
  --t5-shadow-md: 0 4px 6px rgba(15,23,42,.04), 0 10px 25px rgba(15,23,42,.06);
  --t5-shadow-lg: 0 10px 15px rgba(15,23,42,.06), 0 25px 50px rgba(15,23,42,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--t5-sans);
  color: var(--t5-ink-2);
  background: var(--t5-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv11", "ss01";
}
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(--t5-sans); line-height: 1.22; color: var(--t5-ink); letter-spacing: -.018em; font-weight: 800; }

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

/* ── Topbar ── */
.gp-topbar {
  background: var(--t5-ink);
  color: #cbd5e1;
  font-size: .78rem;
  padding: .5rem 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: #d1fae5; font-weight: 800; }
.gp-topbar-dot {
  width: 8px; height: 8px; background: #34d399; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52,211,153,.6);
  animation: gpDotPulse 2s infinite;
}
@keyframes gpDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}
.gp-topbar-links { display: inline-flex; align-items: center; gap: .8rem; }
.gp-topbar-links a { color: #cbd5e1; transition: color .15s; }
.gp-topbar-links a:hover { color: #fff; }
.gp-topbar-sep { color: #475569; }
.gp-topbar-cta {
  background: var(--t5-primary) !important;
  color: #fff !important;
  padding: .22rem .75rem;
  border-radius: 999px;
  font-weight: 700;
}
.gp-topbar-cta:hover { background: var(--t5-primary-dark) !important; color: #fff !important; }

/* ── Header ── */
.gp-header {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--t5-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: .6rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--t5-ink);
  flex-shrink: 0;
}
.gp-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--t5-primary);
  color: #fff;
  border-radius: var(--t5-radius-sm);
  font-size: .92rem;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(5,150,105,.28);
}
.gp-logo-text { font-weight: 800; }
.gp-logo-text strong { font-weight: 900; color: var(--t5-primary); }

.gp-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}
.gp-nav a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--t5-ink-2);
  padding: .5rem 0;
  position: relative;
  white-space: nowrap;
  transition: color .15s;
}
.gp-nav a:hover { color: var(--t5-primary); }
.gp-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--t5-primary);
  transition: width .2s;
  border-radius: 2px;
}
.gp-nav a:hover::after { width: 100%; }
.gp-nav-all {
  margin-left: auto;
  background: var(--t5-primary) !important;
  color: #fff !important;
  padding: .55rem 1.2rem !important;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(5,150,105,.22);
}
.gp-nav-all:hover { background: var(--t5-primary-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(--t5-ink);
}

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

.gp-search-panel {
  display: none;
  background: #fff;
  border-bottom: 3px solid var(--t5-primary);
  padding: 1.5rem 0;
  animation: gpSearchSlide .2s ease;
  box-shadow: var(--t5-shadow-md);
}
.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(--t5-primary); margin-bottom: .6rem;
}
.gp-search-row {
  display: flex; align-items: center; gap: .6rem;
  border-bottom: 2px solid var(--t5-ink);
  padding-bottom: .5rem;
}
.gp-search-icon { color: var(--t5-faint); flex-shrink: 0; }
.gp-search-row input[type="search"] {
  flex: 1; border: none; outline: none;
  font-size: 1.15rem; font-family: var(--t5-sans);
  padding: .5rem 0; background: transparent; color: var(--t5-ink); min-width: 0;
}
.gp-search-row input[type="search"]::placeholder { color: var(--t5-faint); }
.gp-search-row input[type="search"]::-webkit-search-cancel-button { display: none; }
.gp-search-submit { padding: .6rem 1.4rem !important; font-size: .82rem !important; flex-shrink: 0; border-radius: 999px !important; }
.gp-search-close {
  background: transparent; border: none; color: var(--t5-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(--t5-line); color: var(--t5-ink); }
.gp-search-hint { font-size: .8rem; color: var(--t5-faint); margin-top: .6rem; }
.gp-search-hint kbd {
  background: var(--t5-bg); border: 1px solid var(--t5-line);
  border-radius: 4px; padding: 1px 6px; font-family: ui-monospace, monospace;
  font-size: .75rem; color: var(--t5-ink);
}
@keyframes gpSearchSlide { from { opacity:0; transform:translateY(-8px);} to {opacity:1; transform:translateY(0);} }

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

.gp-nav-news {
  background: var(--t5-amber-soft);
  color: #b45309 !important;
  padding: .35rem .95rem !important;
  border-radius: 999px;
  font-size: .82rem !important;
}
.gp-nav-news::after { display: none !important; }
.gp-nav-news:hover { background: var(--t5-amber); color: #fff !important; }

/* ── Hero (legacy fallback) ── */
.gp-hero {
  background: linear-gradient(135deg, var(--t5-primary) 0%, var(--t5-primary-dark) 100%);
  color: #fff;
  padding: 3rem 0;
}
.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 .9rem; border-radius: 999px;
  margin-bottom: 1.1rem;
}
.gp-hero h1 {
  color: #fff;
  font-size: clamp(1.95rem, 4.2vw, 3rem);
  font-weight: 900; line-height: 1.08;
  max-width: 880px; letter-spacing: -.025em;
}
.gp-hero h1 em { font-style: italic; color: #fef3c7; 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; }

/* ── Header with inline search bar (different layout from old) ── */
.gp-header-search { gap: 1.25rem; }
.gp-header-search-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--t5-bg);
  border: 1px solid var(--t5-line);
  border-radius: 999px;
  padding: 0 .25rem 0 1rem;
  max-width: 520px;
  transition: all .15s;
}
.gp-header-search-form:focus-within {
  border-color: var(--t5-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(5,150,105,.1);
}
.gp-header-search-icon { color: var(--t5-faint); flex-shrink: 0; }
.gp-header-search-form input[type="search"] {
  flex: 1;
  border: none; outline: none; background: transparent;
  padding: .65rem .75rem;
  font-size: .92rem; font-family: var(--t5-sans); color: var(--t5-ink);
  min-width: 0;
}
.gp-header-search-form input[type="search"]::placeholder { color: var(--t5-faint); }
.gp-header-search-form input[type="search"]::-webkit-search-cancel-button { display: none; }
.gp-header-search-form button {
  background: var(--t5-primary); color: #fff;
  border: none; padding: .55rem 1.1rem;
  border-radius: 999px;
  font-weight: 700; font-size: .82rem;
  cursor: pointer; font-family: inherit;
  letter-spacing: .015em;
  transition: background .15s;
  flex-shrink: 0;
}
.gp-header-search-form button:hover { background: var(--t5-primary-dark); }

.gp-nav-right { flex: 0; gap: 1.2rem; }
.gp-nav-right .gp-nav-all { margin-left: 0; }

/* ── Hero Split (Featured 2/3 + Sidebar latest 1/3) ── */
.gp-hero-split { padding: 2rem 0 2.5rem; background: var(--t5-bg); }
.gp-hero-split-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.gp-hero-feat {
  background: var(--t5-card);
  border-radius: var(--t5-radius);
  overflow: hidden;
  box-shadow: var(--t5-shadow-md);
  display: flex; flex-direction: column;
}
.gp-hero-feat-media {
  position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--t5-bg);
}
.gp-hero-feat-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.gp-hero-feat:hover .gp-hero-feat-media img { transform: scale(1.03); }
.gp-hero-feat-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--t5-amber); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  padding: .4rem .9rem; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
}
.gp-hero-feat-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.gp-hero-feat-cat {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--t5-primary); margin-bottom: .75rem;
}
.gp-hero-feat-body h1 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800; line-height: 1.18;
  margin-bottom: 1rem;
}
.gp-hero-feat-body h1 a { color: var(--t5-ink); }
.gp-hero-feat-body h1 a:hover { color: var(--t5-primary); }
.gp-hero-feat-body p { color: var(--t5-mute); font-size: 1rem; line-height: 1.65; margin-bottom: 1.3rem; flex: 1; }
.gp-hero-feat-foot { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.gp-hero-feat-score {
  background: var(--t5-amber-soft); color: #b45309;
  padding: .5rem 1rem; border-radius: 999px;
  font-weight: 800; font-size: .9rem;
}

/* Sidebar list of newest */
.gp-hero-aside {
  background: var(--t5-card);
  border-radius: var(--t5-radius);
  padding: 1.5rem;
  box-shadow: var(--t5-shadow-sm);
  border: 1px solid var(--t5-line);
}
.gp-hero-aside-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: .85rem; margin-bottom: 1rem;
  border-bottom: 2px solid var(--t5-primary);
}
.gp-aside-eyebrow {
  font-size: .7rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--t5-primary);
}
.gp-aside-all {
  font-size: .78rem; font-weight: 700; color: var(--t5-mute);
}
.gp-aside-all:hover { color: var(--t5-primary); }
.gp-hero-aside-list { padding: 0; margin: 0; counter-reset: aside-cnt; }
.gp-aside-item {
  display: grid;
  grid-template-columns: 28px 64px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid var(--t5-line);
  list-style: none;
}
.gp-aside-item:last-child { border-bottom: 0; padding-bottom: 0; }
.gp-aside-num {
  font-size: 1.2rem; font-weight: 900;
  color: var(--t5-primary);
  font-family: var(--t5-sans);
  font-variant-numeric: tabular-nums;
}
.gp-aside-thumb {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  display: block;
}
.gp-aside-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gp-aside-meta { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.gp-aside-cat {
  font-size: .62rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--t5-primary);
}
.gp-aside-meta h4 {
  font-size: .88rem; font-weight: 700; line-height: 1.3;
  color: var(--t5-ink); margin: 0;
}
.gp-aside-meta h4 a { color: var(--t5-ink); }
.gp-aside-meta h4 a:hover { color: var(--t5-primary); }
.gp-aside-score {
  font-size: .73rem; font-weight: 800;
  color: var(--t5-amber);
}

/* ── Footer trust signals row (NEW — different from old social/social-label) ── */
.gp-footer-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 0 0 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #1e293b;
}
.gp-footer-trust-item {
  display: flex; align-items: flex-start; gap: .85rem;
}
.gp-footer-trust-ico {
  font-size: 1.6rem;
  width: 48px; height: 48px; flex-shrink: 0;
  background: #1e293b;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.gp-footer-trust-item div { display: flex; flex-direction: column; }
.gp-footer-trust-item strong { color: #fff; font-size: .9rem; font-weight: 800; line-height: 1.3; margin-bottom: .15rem; }
.gp-footer-trust-item span { font-size: .78rem; color: #94a3b8; }

/* Footer main columns (NEW 1.6fr + 3 col layout) */
.gp-footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.gp-footer-brand-col .gp-logo { color: #fff; font-size: 1.55rem; margin-bottom: 1rem; }
.gp-footer-brand-col .gp-logo-text { color: #fff; }
.gp-footer-brand-col .gp-logo-text strong { color: #34d399; }
.gp-footer-brand-col p { color: #cbd5e1; font-size: .9rem; line-height: 1.65; margin-bottom: 1rem; max-width: 360px; }
.gp-footer-email a {
  display: inline-block !important; padding: .35rem .75rem;
  background: #1e293b; color: #34d399 !important;
  border-radius: 999px; font-size: .82rem; font-weight: 600;
  margin: 0 !important;
}
.gp-footer-email a:hover { background: var(--t5-primary); color: #fff !important; }
.gp-footer-col 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(--t5-primary); display: inline-block; }
.gp-footer-col a { display: block; color: #cbd5e1; font-size: .85rem; margin-bottom: .55rem; transition: color .15s; }
.gp-footer-col a:hover { color: #34d399; }

/* Newsletter tiny note (under form) */
.gp-nl-tiny { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: .85rem; }

/* ── Magazine hero card ── */
.gp-hero-magazine { padding: 2.5rem 0 1.5rem; background: var(--t5-bg); }
.gp-hero-card {
  position: relative;
  border-radius: var(--t5-radius);
  overflow: hidden;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--t5-shadow-lg);
}
.gp-hero-card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.75rem;
  background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,.5) 50%, rgba(15,23,42,.92) 100%);
  color: #fff;
}
.gp-hero-card-overlay .gp-hero-eyebrow {
  background: var(--t5-amber);
  color: #fff;
  display: inline-block; width: max-content;
  padding: .4rem .9rem; border-radius: 999px;
  font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 12px rgba(245,158,11,.4);
}
.gp-hero-card-overlay h1 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 900; line-height: 1.1;
  max-width: 760px; letter-spacing: -.025em;
  margin-bottom: 1.1rem;
}
.gp-hero-card-overlay h1 a { color: #fff; }
.gp-hero-card-overlay h1 a:hover { color: var(--t5-amber-soft); }
.gp-hero-card-overlay p { color: rgba(255,255,255,.92); font-size: 1.02rem; max-width: 640px; margin-bottom: 1.4rem; }
.gp-hero-card-foot { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.gp-hero-card-score {
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-weight: 800; font-size: .92rem;
  border: 1px solid rgba(255,255,255,.3);
}

/* ── Sections ── */
.gp-section { padding: 3.25rem 0; background: var(--t5-bg); }
.gp-section-tinted { background: var(--t5-card); }
.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(--t5-line);
}
.gp-section-head h2 {
  font-size: 1.6rem; font-weight: 800;
  color: var(--t5-ink);
  display: inline-flex; align-items: center; gap: .6rem;
}
.gp-section-head h2::before {
  content: ''; display: inline-block;
  width: 4px; height: 1.5rem; background: var(--t5-primary); border-radius: 2px;
}
.gp-section-icon { display: none; }
.gp-section-head a {
  font-size: .85rem; font-weight: 700;
  color: var(--t5-primary);
  white-space: nowrap;
  transition: color .15s;
}
.gp-section-head a:hover { color: var(--t5-primary-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(--t5-card);
  border: 1px solid var(--t5-line);
  border-radius: var(--t5-radius);
  padding: 2rem; position: relative; overflow: hidden;
  box-shadow: var(--t5-shadow-md);
}
.gp-top-pick::before {
  content: 'TOP PICK';
  position: absolute; top: 1.25rem; right: -2.5rem;
  background: var(--t5-coral); color: #fff;
  font-size: .72rem; font-weight: 900;
  letter-spacing: .15em;
  padding: .4rem 3rem;
  transform: rotate(35deg);
  box-shadow: 0 4px 14px rgba(244,63,94,.32);
}
.gp-top-pick-media { overflow: hidden; border-radius: var(--t5-radius-sm); aspect-ratio: 16/10; background: var(--t5-bg); }
.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.03); }
.gp-top-pick-cat {
  font-size: .7rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--t5-primary); margin-bottom: .8rem;
}
.gp-top-pick h2 { font-size: clamp(1.4rem, 2.3vw, 2rem); font-weight: 800; margin-bottom: .9rem; line-height: 1.18; color: var(--t5-ink); }
.gp-top-pick h2 a { color: var(--t5-ink); }
.gp-top-pick h2 a:hover { color: var(--t5-primary); }
.gp-top-pick-excerpt { font-size: 1rem; color: var(--t5-mute); margin-bottom: 1.3rem; line-height: 1.65; }
.gp-top-pick-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 1.4rem; padding: 1.1rem 0;
  border-top: 1px solid var(--t5-line); border-bottom: 1px solid var(--t5-line);
}
.gp-stat-block { display: flex; flex-direction: column; }
.gp-stat-val { font-size: 1.75rem; font-weight: 900; color: var(--t5-primary); line-height: 1; }
.gp-stat-lbl { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--t5-faint); margin-top: .4rem; font-weight: 700; }
.gp-cta-row { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ── Buttons ── */
.gp-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .75rem 1.4rem; border-radius: 999px;
  font-size: .85rem; font-weight: 700; letter-spacing: .015em;
  cursor: pointer; transition: all .15s; border: 2px solid transparent; font-family: var(--t5-sans);
}
.gp-btn-primary { background: var(--t5-ink); color: #fff; }
.gp-btn-primary:hover { background: var(--t5-ink-2); transform: translateY(-1px); }
.gp-btn-buy { background: var(--t5-primary); color: #fff; box-shadow: 0 4px 12px rgba(5,150,105,.25); }
.gp-btn-buy:hover { background: var(--t5-primary-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(5,150,105,.34); }
.gp-btn-outline { background: transparent; color: var(--t5-ink); border-color: var(--t5-ink); }
.gp-btn-outline:hover { background: var(--t5-ink); color: #fff; }

/* ── Score badges ── */
.gp-score {
  display: inline-flex; align-items: baseline; gap: .25rem;
  background: var(--t5-amber); color: #fff;
  padding: .4rem .75rem; border-radius: 999px;
  font-weight: 800; font-size: .85rem;
}
.gp-score-big {
  width: 68px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 900;
  background: var(--t5-amber); color: #fff;
  border-radius: 50%; position: relative;
  box-shadow: 0 6px 16px rgba(245,158,11,.4);
}
.gp-score-big::after {
  content: '/10'; position: absolute; bottom: 9px; right: 8px;
  font-size: .55rem; font-weight: 700; opacity: .9;
}

/* ── 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(--t5-card);
  border: 1px solid var(--t5-line);
  border-radius: var(--t5-radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .2s;
  box-shadow: var(--t5-shadow-sm);
}
.gp-card:hover {
  box-shadow: var(--t5-shadow-lg);
  transform: translateY(-4px);
  border-color: var(--t5-primary);
}
.gp-card-media { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--t5-bg); }
.gp-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gp-card:hover .gp-card-media img { transform: scale(1.06); }
.gp-card-score-tag {
  position: absolute; top: .85rem; right: .85rem;
  background: var(--t5-amber); color: #fff;
  padding: .3rem .7rem; font-weight: 800; font-size: .8rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
}
.gp-card-body { padding: 1.25rem 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(--t5-primary); margin-bottom: .55rem;
}
.gp-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .55rem; line-height: 1.3; color: var(--t5-ink); }
.gp-card h3 a { color: var(--t5-ink); }
.gp-card h3 a:hover { color: var(--t5-primary); }
.gp-card p { font-size: .88rem; color: var(--t5-mute); flex: 1; margin-bottom: .9rem; }
.gp-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .73rem; color: var(--t5-faint);
  padding-top: .8rem; border-top: 1px solid var(--t5-line);
}

/* Buy button on card */
.gp-card-cta { margin: .85rem 0 .25rem; }
.gp-card-buy {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .58rem 1rem;
  background: var(--t5-ink);
  color: #fff !important;
  border-radius: 999px;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .015em;
  transition: all .18s;
  border: 2px solid var(--t5-ink);
  text-decoration: none !important;
}
.gp-card-buy svg { transition: transform .18s; }
.gp-card-buy:hover {
  background: var(--t5-primary);
  border-color: var(--t5-primary);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5,150,105,.3);
}
.gp-card-buy:hover svg { transform: translate(1px,-1px); }

/* ── 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(--t5-card);
  border: 1px solid var(--t5-line);
  border-radius: var(--t5-radius);
  padding: 1.3rem 1.5rem; transition: all .2s;
}
.gp-cat-card:hover {
  background: var(--t5-primary-soft);
  border-color: var(--t5-primary);
  transform: translateY(-2px);
  box-shadow: var(--t5-shadow-md);
}
.gp-cat-emoji {
  font-size: 1.6rem;
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--t5-primary-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(--t5-ink); }
.gp-cat-count { font-size: .78rem; color: var(--t5-mute); font-weight: 600; }

/* ── Trust strip ── */
.gp-trust-strip { background: var(--t5-ink); color: #fff; padding: 3rem 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: #34d399; line-height: 1; margin-bottom: .4rem; }
.gp-trust-lbl { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #94a3b8; }

/* ── Newsletter ── */
.gp-newsletter {
  background: linear-gradient(135deg, var(--t5-primary) 0%, var(--t5-primary-dark) 100%);
  color: #fff; padding: 3.75rem 0; text-align: center;
}
.gp-newsletter h2 { color: #fff; font-size: 2rem; font-weight: 800; margin-bottom: .5rem; }
.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: .95rem 1.2rem; border: none; border-radius: 999px; font-size: .95rem; font-family: inherit; outline: none; }
.gp-nl-form button {
  background: var(--t5-ink); 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: #000; }
.gp-nl-success { text-align: center; padding: .5rem 0; }
.gp-nl-check {
  width: 60px; height: 60px; border-radius: 50%; background: #fff; color: var(--t5-primary);
  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 ── */
.gp-footer { background: var(--t5-ink); color: #94a3b8; 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 #1e293b;
}
.gp-footer-brand-row--solo { grid-template-columns: 1fr; }
.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: #34d399; }
.gp-footer-tagline { font-size: .92rem; max-width: 540px; line-height: 1.65; color: #cbd5e1; }
.gp-footer-tagline strong { color: #34d399; font-weight: 800; }
.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: #34d399; }

.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(--t5-primary);
  display: inline-block;
}
.gp-footer p { font-size: .87rem; line-height: 1.65; color: #cbd5e1; }
.gp-footer a {
  display: block; color: #cbd5e1; font-size: .85rem;
  margin-bottom: .5rem; transition: color .15s;
}
.gp-footer a:hover { color: #34d399; }

.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: .55rem .85rem;
  border: 1px solid #334155; background: #0b1220;
  color: #fff; border-radius: 999px;
  font-size: .82rem; font-family: inherit; outline: none;
}
.gp-footer-mini-nl input::placeholder { color: #475569; }
.gp-footer-mini-nl input:focus { border-color: var(--t5-primary); }
.gp-footer-mini-nl button {
  background: var(--t5-primary); color: #fff;
  border: none; padding: .55rem 1.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(--t5-primary-dark); }
.gp-footer-mini-note { font-size: .75rem !important; color: #64748b !important; }

.gp-footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.25rem;
  font-size: .78rem; color: #64748b;
  display: flex; flex-wrap: wrap; gap: .75rem;
  align-items: center; justify-content: center; text-align: center;
}
.gp-footer-bottom a { display: inline; color: #94a3b8; margin: 0; }
.gp-footer-bottom a:hover { color: #34d399; }
.gp-footer-bottom-sep { color: #1e293b; }

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

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

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

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

/* Archive */
.gp-archive-header { text-align: center; padding: 3rem 0 2.5rem; background: var(--t5-card); border-bottom: 1px solid var(--t5-line); margin-bottom: 2.5rem; }
.gp-archive-header h1 { font-size: 2.6rem; font-weight: 800; color: var(--t5-ink); letter-spacing: -.02em; }
.gp-archive-header p { color: var(--t5-mute); margin-top: .8rem; max-width: 620px; margin-left: auto; margin-right: auto; }
.gp-archive-header .gp-hero-eyebrow { background: var(--t5-primary); 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(--t5-line); border-radius: 999px;
  font-weight: 700; font-size: .9rem; color: var(--t5-ink); background: var(--t5-card);
  transition: all .15s;
}
.gp-pagination a:hover { background: var(--t5-primary); color: #fff; border-color: var(--t5-primary); }
.gp-pagination .current { background: var(--t5-ink); color: #fff; border-color: var(--t5-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-main { grid-template-columns: 1fr 1fr; }
  .gp-footer-brand-col { grid-column: span 2; }
  .gp-footer-trust { grid-template-columns: repeat(2, 1fr); }
  .gp-hero-split-grid { grid-template-columns: 1fr; }
  .gp-header-search-form { max-width: none; order: 3; flex-basis: 100%; }
  .gp-header-search { flex-wrap: wrap; height: auto; padding: .85rem 0; gap: 1rem; }
}
@media (max-width: 720px) {
  .gp-header-search { padding: .65rem 0; gap: .75rem; }
  .gp-header-search-form { padding: 0 .2rem 0 .85rem; }
  .gp-header-search-form button { padding: .45rem .9rem; font-size: .76rem; }
  .gp-hero-feat-body { padding: 1.25rem; }
  .gp-footer-trust { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
@media (max-width: 480px) {
  .gp-footer-main { grid-template-columns: 1fr; gap: 1.75rem; }
  .gp-footer-brand-col { grid-column: span 1; }
  .gp-footer-trust { grid-template-columns: 1fr; }
  .gp-aside-item { grid-template-columns: 24px 56px 1fr; }
}
@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(--t5-card);
    padding: 1.5rem; gap: 1rem; border-bottom: 3px solid var(--t5-primary);
    box-shadow: var(--t5-shadow-lg); 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-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; }
  .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: 340px; }
  .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; }
}
