/* ==========================================================
   GAMERIGADVISOR CENTRAL STYLESHEET
   Consolidated: 20260721-033306
   All website pages should load only this local CSS file.
   ========================================================== */

/* ==========================================================
   ORIGINAL SHARED MAIN CSS
   ========================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap");

:root {
  --bg: #0f0f14;
  --bg2: #0a0a0f;
  --bg-card: linear-gradient(145deg, #ffffff06, #ffffff02);
  --bg-card-hover: linear-gradient(145deg, #ffffff09, #ffffff03);
  --accent: #d6ad45;
  --accent-soft: #d6ad451a;
  --accent-border: #d6ad4533;
  --green: #22c55e;
  --text: #e8e6e1;
  --text-muted: #ffffff59;
  --text-soft: #ffffff80;
  --border: #ffffff0a;
  --border2: #ffffff0f;
  --border-hover: #d6ad4540;
  --shadow: 0 20px 60px #00000066;
  --shadow-sm: 0 8px 24px #0000004d;
  --radius: 10px;
  --radius-card: 16px;
  --radius-pill: 999px;
  --radius-sm: 4px;
  --nav-h: 56px;
  --tr: 0.25s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ========== TOPBAR ========== */
.site-topbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 11px;
  color: var(--text-muted);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.topbar-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.topbar-stat svg {
  width: 12px;
  height: 12px;
  color: var(--accent);
  flex-shrink: 0;
}
.topbar-num {
  font-weight: 700;
  color: #fff;
}
.topbar-divider {
  color: var(--border2);
}
.topbar-updated {
  color: var(--accent);
  font-weight: 600;
}

/* ========== NAVIGATION ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  background: #0f0f14e0;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.header-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.site-logo .logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent);
  color: #0f0f14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}
.header-search {
  flex: 1;
  max-width: 400px;
  position: relative;
  display: none;
}
.header-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  pointer-events: none;
}
.header-search input {
  width: 100%;
  padding: 8px 12px 8px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff08;
  color: #fff;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  transition: all var(--tr);
}
.header-search input:focus {
  border-color: var(--accent);
  background: #ffffff0f;
}
.header-search input::placeholder {
  color: var(--text-muted);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--tr);
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-links a.active {
  color: #fff;
}
.nav-cta {
  padding: 6px 16px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #0f0f14 !important;
  font-weight: 800 !important;
}

/* ========== HERO ========== */
.hero {
  background: #0f0f14;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(214, 173, 69, 0.4),
    transparent
  );
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-left h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.hero-left h1 .accent {
  color: var(--accent);
  font-style: normal;
}
.hero-left p {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #0f0f14;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--tr);
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff0a;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--tr);
}
.btn-secondary:hover {
  background: #ffffff0f;
  border-color: #ffffff1a;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.hero-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.hero-stat .num {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.hero-stat .label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-right {
  min-width: 0;
}
.hero-featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.35s;
}
.hero-featured-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.hero-featured-img {
  aspect-ratio: 16/10;
  min-height: 260px;
  background: #0f0f14;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(1.05);
}
.hero-featured-img span {
  font-size: 64px !important;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06) !important;
  opacity: 1 !important;
  text-transform: uppercase;
  user-select: none;
}
.hero-featured-card:hover .hero-featured-img img {
  transform: scale(1.08);
}
.score-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  font-family: "DM Mono", "Inter", monospace;
  color: #fff;
}
.score-badge.high {
  background: var(--green);
}
.score-badge.mid {
  background: #d97706;
}
.score-badge.low {
  background: #dc2626;
}
.hero-featured-body {
  padding: 20px;
}
.hero-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #0f0f14;
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-featured-body h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color var(--tr);
}
.hero-featured-card:hover h3 {
  color: var(--accent);
}
.hero-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 11px;
  color: var(--text-muted);
}
.hero-featured-seller {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-featured-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-featured-price {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}
.hero-featured-cta {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: gap var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hero-featured-cta:hover {
  gap: 8px;
}

/* ========== MARQUEE ========== */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(
    90deg,
    var(--accent-soft),
    #ffffff04,
    var(--accent-soft)
  );
  padding: 12px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  color: var(--text-muted);
  gap: 48px;
  font-size: 13px;
  animation: rp-scroll 40s linear infinite;
  width: max-content;
}
.marquee-track .dot {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 8px;
}
.marquee-track .marquee-price {
  font-weight: 700;
  color: #fff;
}
.marquee-track .marquee-save {
  font-weight: 700;
  color: var(--green);
  font-size: 11px;
}

@keyframes rp-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 500;
}
.trust-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ========== SECTIONS ========== */
.section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
  margin-top: 6px;
}
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.section-header p {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.section-footer-btn {
  text-align: center;
  margin-top: 32px;
}
.section-footer-btn a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  transition: gap var(--tr);
}
.section-footer-btn a:hover {
  gap: 10px;
}

/* ========== DEAL / PRODUCT CARDS ========== */
.deal-grid,
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.35s;
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.product-card-image {
  height: 220px;
  background: #0f0f14;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.6s;
  filter: brightness(1.05);
}
.product-card-image span,
.product-card-image .img-fallback {
  font-size: 56px !important;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04) !important;
  opacity: 1 !important;
  text-transform: uppercase;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.product-card:hover .product-card-image img {
  transform: scale(1.12);
}
.product-card-score {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  font-family: "DM Mono", "Inter", monospace;
  color: #fff;
}
.product-card-score.high {
  background: var(--green);
}
.product-card-score.mid {
  background: #d97706;
}
.product-card-score.low {
  background: #dc2626;
}
.product-card-body {
  padding: 16px 18px 18px;
}
.product-card-category {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-card-body h3 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  transition: color var(--tr);
}
.product-card:hover h3 {
  color: var(--accent);
}
.product-card-specs {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.price-current {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.price-savings {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  margin-left: 6px;
}
.product-card-price {
  display: flex;
  align-items: baseline;
}
.product-card-cta {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  transition: all var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
}
.product-card-cta:hover {
  gap: 8px;
  background: var(--accent-soft);
  border-color: var(--accent);
}

/* Star ratings */
.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.star-rating .star {
  width: 12px;
  height: 12px;
  color: var(--accent);
}
.star-rating .star.empty {
  color: var(--border2);
}
.rating-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-left: 4px;
  font-weight: 600;
}

/* ========== CATEGORY GRID ========== */
.cat-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 20px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-card);
  transition: all 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cat-icon-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.cat-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #ffffff08;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.cat-icon-card:hover .cat-icon-circle {
  background: var(--accent-soft);
  color: var(--accent);
  transform: scale(1.06);
}
.cat-icon-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.cat-icon-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: -6px;
}

/* ========== DECISION WIZARD ========== */
.quiz-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
}
.quiz-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wizard-step label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.wizard-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wizard-option {
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff08;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wizard-option svg {
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0;
}
.wizard-option:hover {
  border-color: var(--accent-border);
  background: var(--accent-soft);
  color: var(--accent);
}
.wizard-option.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.wizard-budget-display {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.wizard-budget-display span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.wizard-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  margin: 8px 0;
}
.wizard-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid #0f0f14;
  box-shadow: 0 0 0 2px var(--accent);
}
.budget-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}
.wizard-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #0f0f14;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--tr);
  margin-top: 4px;
}
.wizard-submit:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.wizard-results {
  display: none;
  margin-top: 24px;
}
.wizard-results.active {
  display: block;
}
.wizard-results h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wizard-results h3::before {
  content: "";
  width: 3px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ========== GUIDE CARDS ========== */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.guide-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: all 0.3s;
}
.guide-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.guide-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 10px;
}
.guide-card h3 {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  transition: color var(--tr);
}
.guide-card:hover h3 {
  color: var(--accent);
}
.guide-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}
.guide-meta {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  margin-top: 8px;
}
.guide-card-cat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.guide-card-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.guide-card:hover .guide-card-cat-icon {
  transform: scale(1.08);
}
.guide-card-cat-icon.laptop-icon {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
}
.guide-card-cat-icon.desktop-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.guide-card-cat-icon.accessory-icon {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}
.guide-card-cat-body {
  min-width: 0;
}
.guide-card-cat-body h3 {
  margin-bottom: 4px;
}
.guide-tag.laptop {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
}
.guide-tag.desktop {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.guide-tag.accessory {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 48px 0 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
}
.footer-logo .logo-icon {
  width: 26px;
  height: 26px;
  font-size: 13px;
}
.footer-disclosure {
  font-size: 11px !important;
  color: #ffffff33 !important;
  margin-top: 8px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 8px;
  transition: color var(--tr);
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-newsletter p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-newsletter-form {
  display: flex;
  gap: 8px;
}
.footer-newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #0000004d;
  color: #fff;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  min-width: 0;
  transition: border-color var(--tr);
}
.footer-newsletter-form input:focus {
  border-color: var(--accent);
}
.footer-newsletter-form input::placeholder {
  color: var(--text-muted);
}
.footer-newsletter-form button {
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #0f0f14;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--tr);
}
.footer-newsletter-form button:hover {
  filter: brightness(1.1);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px;
}
.footer-bottom span {
  font-size: 11px;
  color: #ffffff33;
}

/* ========== GUIDE / HUB PAGES ========== */
.guide-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px 40px;
}
.guide-page h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.guide-page h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 40px;
  margin-bottom: 12px;
}
.guide-page p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.guide-page .intro {
  margin-bottom: 32px;
}
.guide-page .intro p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.breadcrumbs {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 48px;
}
.breadcrumbs a {
  color: var(--text-muted);
  transition: color var(--tr);
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.breadcrumbs .current {
  color: #fff;
}

/* Editorial note / disclosure */
.editorial-note,
.disclosure {
  font-size: 11px;
  color: #ffffff33;
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 16px;
}
.sep {
  color: var(--border2);
  padding: 0 4px;
}

/* Deal detail page */
.deals-hero {
  padding: 32px 0;
}
.deal-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.deal-detail-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2ecc, #16213ecc);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.deal-detail-image img {
  width: 100%;
  object-fit: contain;
  padding: 24px;
}
.deal-detail-info h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.deal-detail-stars {
  margin-bottom: 16px;
}
.deal-detail-price {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.deal-detail-price .retail {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
}
.deal-badge {
  display: inline-block;
  background: var(--accent);
  color: #0f0f14;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  margin-bottom: 12px;
}
.deal-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.deal-seller {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.deal-seller strong {
  color: #fff;
}
.deal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.deal-specs span {
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 11px;
  color: var(--text-muted);
}
.deal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.deal-tags span {
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 3px 10px;
}
.deal-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #0f0f14;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--tr);
  margin-top: 8px;
}
.deal-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.deal-cta-small {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  transition: gap var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.deal-cta-small:hover {
  gap: 8px;
}
.deal-verdict {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-card);
  background: var(--accent-soft);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}
.deal-verdict strong {
  color: var(--accent);
}
.deal-error {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
#deal-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.deal-related {
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 48px;
}

/* Stats bar (hub pages) */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.stat-number {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* eBay gallery */
.ebay-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  min-height: 200px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.ebay-gallery:empty {
  background: var(--bg-card);
  display: flex;
}
.ebay-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2ecc, #16213ecc);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr);
}
.ebay-gallery-item:hover {
  transform: scale(1.02);
}
.ebay-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.ebay-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, #000000d9);
  padding: 20px 16px 14px;
}
.ebay-gallery-overlay h4 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.ebay-gallery-overlay span {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
}

/* Deal detail page profile */
.deal-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.quick-picks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Product card grid (hub pages) */
.product-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* FAQ section */
.faq-section {
  margin-top: 40px;
}
.faq-section h2:first-child {
  margin-top: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.faq-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  cursor: pointer;
}
.faq-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Hub hero */
.hub-hero {
  text-align: center;
  padding: 48px 24px 40px;
}
.hub-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hub-hero p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive sections note */
.guide-page .section-header,
.product-card-grid .section-header {
  margin-bottom: 24px;
}

/* Save badge (JS generated) */
.save-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #00000080;
  color: var(--green);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* ========== NEWSLETTER CTA ========== */
.newsletter-cta {
  text-align: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    rgba(214, 173, 69, 0.04),
    transparent
  );
}
.newsletter-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.newsletter-cta h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 8px;
}
.newsletter-cta p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.newsletter-cta-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  gap: 8px;
}
.newsletter-cta-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff08;
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--tr);
}
.newsletter-cta-form input:focus {
  border-color: var(--accent);
}
.newsletter-cta-form input::placeholder {
  color: var(--text-muted);
}
.newsletter-cta-form button {
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #0f0f14;
  font-size: 13px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--tr);
}
.newsletter-cta-form button:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.newsletter-cta-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.newsletter-cta-features span {
  font-size: 11px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.newsletter-cta-features svg {
  width: 12px;
  height: 12px;
  color: var(--accent);
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .deal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat-icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }
  .topbar-inner {
    padding: 0 20px;
    gap: 16px;
    font-size: 10px;
    overflow-x: auto;
  }
  .header-inner {
    padding: 0 20px;
    gap: 20px;
  }
  .header-search {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #0f0f14f2;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-inner {
    padding: 0 20px;
  }
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .hero-stat {
    padding: 12px 8px;
  }
  .hero-stat .num {
    font-size: 18px;
  }
  .hero-right {
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-featured-img {
    min-height: 200px;
  }
  .hero-left p {
    max-width: none;
  }
  .marquee-track {
    gap: 28px;
    font-size: 12px;
  }
  .trust-bar-inner {
    padding: 0 20px;
    gap: 20px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .deal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-icon-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 36px 0;
  }
  .section-header {
    margin-bottom: 24px;
  }
  .section-header h2 {
    font-size: 22px;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .deal-detail {
    grid-template-columns: 1fr;
  }
  .deal-profile {
    grid-template-columns: 1fr;
  }
  .ebay-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    padding: 0 20px 32px;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-bottom {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
  }
  .product-card-image {
    height: 180px;
  }
  .guide-page {
    padding: 0 20px 32px;
  }
  .breadcrumbs {
    padding: 0 20px;
  }
  #deal-content {
    padding: 0 20px;
  }
  .deal-related {
    padding: 0 20px;
  }
  .newsletter-cta-inner {
    padding: 0 20px;
  }
  .newsletter-cta h2 {
    font-size: 22px;
  }
  .newsletter-cta-features {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .deal-grid {
    grid-template-columns: 1fr;
  }
  .cat-icon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .cat-icon-card {
    padding: 20px 12px;
  }
  .cat-icon-circle {
    width: 44px;
    height: 44px;
  }
  .cat-icon-label {
    font-size: 11px;
  }
  .guide-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .ebay-gallery {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero-stat {
    padding: 10px 8px;
  }
  .hero-stat .num {
    font-size: 16px;
  }
  .hero-left h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .section-header h2 {
    font-size: 20px;
  }
  .newsletter-cta-form {
    flex-direction: column;
  }
  .newsletter-cta-form button {
    width: 100%;
  }
}

/* ==========================================================
   GAMERIGADVISOR EBAY PREMIUM HOME V1
   ========================================================== */

.home-v4 .hero-decision-card.has-product-image {
  padding-top: 18px;
}

.hero-product-visual {
  position: relative;
  display: block;
  height: 210px;
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 13px;
  background: linear-gradient(145deg, #eef2f7, #ffffff);
  border: 1px solid #e5e7eb;
}

.hero-product-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 12px;
  background: #ffffff;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.hero-product-visual:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.hero-product-visual span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.92);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
}

.premium-marketplace {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  overflow: hidden;
}

.premium-marketplace::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(234, 179, 8, 0.15),
    rgba(234, 179, 8, 0) 68%
  );
  pointer-events: none;
}

.premium-marketplace-heading {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.72fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 34px;
}

.premium-marketplace-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.premium-marketplace-context p {
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 12px;
}

#ebay-feed-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #805d07;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#ebay-feed-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.ebay-premium-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ebay-premium-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 17px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ebay-premium-card:hover {
  transform: translateY(-5px);
  border-color: #d1a519;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.13);
}

.ebay-premium-image {
  position: relative;
  display: block;
  height: 235px;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #edf0f4;
}

.ebay-premium-image img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 17px;
  object-fit: contain;
  background: #ffffff;
  transition: transform 0.35s ease;
}

.ebay-premium-card:hover .ebay-premium-image img {
  transform: scale(1.045);
}

.ebay-source-badge {
  position: absolute;
  left: 13px;
  top: 13px;
  max-width: calc(100% - 26px);
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.92);
  color: #ffffff;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.ebay-premium-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px;
}

.ebay-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #64748b;
  font-size: 0.7rem;
  line-height: 1.35;
}

.ebay-card-meta span:last-child {
  text-align: right;
}

.ebay-premium-content h3 {
  margin: 13px 0 18px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.ebay-premium-content h3 a {
  color: #111827;
  text-decoration: none;
}

.ebay-premium-content h3 a:hover {
  color: #805d07;
}

.ebay-card-purchase {
  display: grid;
  gap: 13px;
  margin-top: auto;
}

.ebay-card-purchase strong {
  color: #111827;
  font-size: 1.32rem;
  letter-spacing: -0.025em;
}

.ebay-view-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 9px;
  background: #111827;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.ebay-view-button:hover {
  background: #263349;
}

.premium-affiliate-note {
  margin-top: 22px;
  padding: 14px 17px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.55;
}

.premium-affiliate-note strong {
  color: #334155;
}

.ebay-feed-loading,
.ebay-feed-empty {
  grid-column: 1 / -1;
  padding: 44px;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  background: #ffffff;
  color: #64748b;
  text-align: center;
}

@media (max-width: 1040px) {
  .ebay-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-marketplace-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .ebay-premium-grid {
    grid-template-columns: 1fr;
  }

  .ebay-premium-image {
    height: 270px;
  }

  .hero-product-visual {
    height: 230px;
  }

  .premium-marketplace-heading h2 {
    font-size: 2.2rem;
  }
}

/* ====================================================
   MIGRATED INLINE CSS
   Source: deal.html
   Block: 1
   ==================================================== */

.deal-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}
.deal-detail-image {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.deal-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
}
.deal-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.deal-badge.new {
  background: rgba(34, 197, 94, 0.12);
  color: var(--score-high);
}
.deal-badge.used {
  background: rgba(234, 179, 8, 0.12);
  color: var(--score-mid);
}
.deal-detail h1 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
.deal-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.deal-detail-price .current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
}
.deal-detail-price .retail {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.deal-detail-price .save-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: var(--score-high);
  padding: 4px 10px;
  border-radius: 4px;
}
.deal-verdict {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.deal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.deal-specs span {
  font-size: 0.78rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  color: var(--text-secondary);
}
.deal-profile {
  margin-bottom: 20px;
}
.deal-profile h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.deal-profile ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.deal-profile li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 3px 0 3px 20px;
  position: relative;
}
.deal-profile li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--score-high);
  font-weight: 700;
  font-size: 1rem;
}
.deal-profile li.warn::before {
  content: "!";
  color: var(--score-mid);
}
.deal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.deal-tags span {
  font-size: 0.72rem;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.deal-seller {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.deal-seller strong {
  color: var(--text-secondary);
}
.deal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}
.deal-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233, 69, 96, 0.35);
  color: #fff;
}
.deal-cta-small {
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.7;
  text-align: center;
  display: block;
  margin-top: 6px;
}
.deal-score-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.deal-score-badge small {
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1px;
}
.deal-score-badge.high {
  border-color: var(--score-high);
  color: var(--score-high);
}
.deal-score-badge.mid {
  border-color: var(--score-mid);
  color: var(--score-mid);
}
.deal-score-badge.low {
  border-color: var(--score-low);
  color: var(--score-low);
}
.deal-error {
  text-align: center;
  padding: 60px 24px;
  max-width: 600px;
  margin: 0 auto;
}
.deal-error h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.deal-error p {
  color: var(--text-secondary);
}
.deal-error a {
  color: var(--accent);
}
.deal-related {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 60px;
}
.deal-related h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.deal-detail-stars {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .deal-detail {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
  }
  .deal-detail-image {
    min-height: 240px;
  }
  .deal-detail h1 {
    font-size: 1.2rem;
  }
  .deal-detail-price .current {
    font-size: 1.5rem;
  }
  .deal-cta {
    padding: 14px 24px;
  }
}

/* ==========================================================
   GAMERIGADVISOR PREMIUM SITE DESIGN SYSTEM V1
   Shared visual system for all non-homepage website pages.
   Homepage-specific styling remains scoped to .gra-home.
   ========================================================== */

:root {
  --site-bg: #f5f7fb;
  --site-surface: #ffffff;
  --site-surface-soft: #f8fafc;
  --site-ink: #101827;
  --site-text: #334155;
  --site-muted: #64748b;
  --site-border: #e2e8f0;
  --site-border-strong: #cbd5e1;
  --site-navy: #0a1020;
  --site-navy-soft: #111c31;
  --site-gold: #eab308;
  --site-gold-light: #facc15;
  --site-gold-dark: #805d07;
  --site-success: #15803d;
  --site-danger: #b91c1c;
  --site-radius-small: 9px;
  --site-radius: 15px;
  --site-radius-large: 23px;
  --site-shadow-small: 0 5px 20px rgba(15, 23, 42, 0.055);
  --site-shadow: 0 15px 40px rgba(15, 23, 42, 0.09);
  --site-shadow-large: 0 26px 70px rgba(15, 23, 42, 0.14);
  --site-content-width: 1180px;
  --site-reading-width: 780px;
}

html {
  scroll-behavior: smooth;
}

body.site-page {
  margin: 0;
  background: var(--site-bg);
  color: var(--site-ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.site-page *,
body.site-page *::before,
body.site-page *::after {
  box-sizing: border-box;
}

body.site-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.site-page a {
  color: var(--site-gold-dark);
  text-underline-offset: 3px;
}

body.site-page a:hover {
  color: #5f4505;
}

body.site-page button,
body.site-page input,
body.site-page select,
body.site-page textarea {
  font: inherit;
}

body.site-page button,
body.site-page a {
  -webkit-tap-highlight-color: transparent;
}

body.site-page :focus-visible {
  outline: 3px solid rgba(234, 179, 8, 0.55);
  outline-offset: 3px;
}

body.site-page .container,
body.site-page .content-container,
body.site-page .page-container,
body.site-page .header-inner,
body.site-page .footer-inner,
body.site-page main > section > .inner {
  width: min(var(--site-content-width), calc(100% - 40px));
  margin-inline: auto;
}

body.site-page .site-header,
body.site-page header.site-header,
body.site-page .main-header {
  position: sticky;
  z-index: 200;
  top: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

body.site-page .header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

body.site-page .site-logo,
body.site-page .logo,
body.site-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--site-ink);
  font-weight: 900;
  letter-spacing: -0.025em;
  text-decoration: none;
}

body.site-page .logo-icon,
body.site-page .logo-mark,
body.site-page .brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: var(--site-navy);
  color: var(--site-gold-light);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

body.site-page .nav-links,
body.site-page .main-nav,
body.site-page nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

body.site-page .nav-links a,
body.site-page .main-nav a,
body.site-page nav li a {
  color: var(--site-text);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

body.site-page .nav-links a:hover,
body.site-page .main-nav a:hover,
body.site-page nav li a:hover {
  color: var(--site-gold-dark);
}

body.site-page .nav-cta,
body.site-page .header-cta {
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--site-gold);
  color: var(--site-ink) !important;
  font-weight: 900 !important;
}

body.site-page .nav-cta:hover,
body.site-page .header-cta:hover {
  background: var(--site-gold-light);
}

body.site-page main {
  min-height: 60vh;
}

body.site-page .page-hero,
body.site-page .guide-hero,
body.site-page .article-hero,
body.site-page .hub-hero,
body.site-page .category-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 64px;
  background:
    radial-gradient(circle at 85% 15%, rgba(234, 179, 8, 0.2), transparent 27%),
    linear-gradient(135deg, #080d19, #101b30 60%, #132039);
  color: #ffffff;
}

body.site-page .page-hero::after,
body.site-page .guide-hero::after,
body.site-page .article-hero::after,
body.site-page .hub-hero::after,
body.site-page .category-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

body.site-page .page-hero h1,
body.site-page .guide-hero h1,
body.site-page .article-hero h1,
body.site-page .hub-hero h1,
body.site-page .category-hero h1 {
  max-width: 900px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.052em;
}

body.site-page .page-hero p,
body.site-page .guide-hero p,
body.site-page .article-hero p,
body.site-page .hub-hero p,
body.site-page .category-hero p {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.75;
}

body.site-page .eyebrow,
body.site-page .hero-kicker,
body.site-page .section-eyebrow,
body.site-page .category-label {
  display: inline-block;
  margin-bottom: 11px;
  color: var(--site-gold-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.site-page .page-hero .eyebrow,
body.site-page .guide-hero .eyebrow,
body.site-page .article-hero .eyebrow,
body.site-page .hub-hero .eyebrow,
body.site-page .category-hero .eyebrow,
body.site-page .page-hero .hero-kicker,
body.site-page .guide-hero .hero-kicker {
  color: #f6d65f;
}

body.site-page .breadcrumbs,
body.site-page .breadcrumb,
body.site-page nav[aria-label="Breadcrumb"] {
  color: var(--site-muted);
  font-size: 0.78rem;
}

body.site-page .breadcrumbs a,
body.site-page .breadcrumb a,
body.site-page nav[aria-label="Breadcrumb"] a {
  color: inherit;
  text-decoration: none;
}

body.site-page .page-content,
body.site-page .article-layout,
body.site-page .guide-layout,
body.site-page .content-layout {
  width: min(var(--site-content-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 82px;
}

body.site-page .article-layout,
body.site-page .guide-layout,
body.site-page .content-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(260px, 320px);
  align-items: start;
  gap: 52px;
}

body.site-page article,
body.site-page .article-content,
body.site-page .guide-content,
body.site-page .main-content {
  min-width: 0;
}

body.site-page article > *,
body.site-page .article-content > *,
body.site-page .guide-content > * {
  max-width: var(--site-reading-width);
}

body.site-page article > .wide,
body.site-page article > table,
body.site-page article > .comparison-table,
body.site-page article > .product-grid,
body.site-page article > .deal-grid,
body.site-page article > .ebay-grid,
body.site-page .article-content > table,
body.site-page .guide-content > table {
  max-width: 100%;
}

body.site-page h1,
body.site-page h2,
body.site-page h3,
body.site-page h4 {
  color: var(--site-ink);
  font-weight: 850;
  text-wrap: balance;
}

body.site-page h1 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}

body.site-page h2 {
  margin: 2.2em 0 0.72em;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

body.site-page h3 {
  margin: 1.7em 0 0.55em;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

body.site-page p {
  color: var(--site-text);
}

body.site-page article p,
body.site-page .article-content p,
body.site-page .guide-content p {
  margin: 0 0 1.35em;
  line-height: 1.78;
}

body.site-page article ul,
body.site-page article ol,
body.site-page .article-content ul,
body.site-page .article-content ol,
body.site-page .guide-content ul,
body.site-page .guide-content ol {
  padding-left: 1.35rem;
  color: var(--site-text);
}

body.site-page article li,
body.site-page .article-content li,
body.site-page .guide-content li {
  margin-bottom: 0.65rem;
  padding-left: 0.2rem;
}

body.site-page blockquote {
  margin: 28px 0;
  padding: 19px 22px;
  border-left: 4px solid var(--site-gold);
  border-radius: 0 var(--site-radius-small) var(--site-radius-small) 0;
  background: #fffbeb;
  color: #55400a;
}

body.site-page hr {
  height: 1px;
  margin: 42px 0;
  border: 0;
  background: var(--site-border);
}

body.site-page .card,
body.site-page .content-card,
body.site-page .guide-card,
body.site-page .hub-card,
body.site-page .category-card,
body.site-page .resource-card,
body.site-page .comparison-card,
body.site-page .recommendation-card {
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  background: var(--site-surface);
  box-shadow: var(--site-shadow-small);
}

body.site-page .card,
body.site-page .content-card,
body.site-page .guide-card,
body.site-page .hub-card,
body.site-page .category-card,
body.site-page .resource-card,
body.site-page .comparison-card,
body.site-page .recommendation-card {
  padding: 24px;
}

body.site-page a.card,
body.site-page a.guide-card,
body.site-page a.hub-card,
body.site-page a.category-card,
body.site-page a.resource-card {
  color: var(--site-ink);
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

body.site-page a.card:hover,
body.site-page a.guide-card:hover,
body.site-page a.hub-card:hover,
body.site-page a.category-card:hover,
body.site-page a.resource-card:hover {
  transform: translateY(-4px);
  border-color: #d4aa23;
  box-shadow: var(--site-shadow);
}

body.site-page .card-grid,
body.site-page .guide-grid,
body.site-page .hub-grid,
body.site-page .category-grid,
body.site-page .resource-grid,
body.site-page .comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.site-page .product-grid,
body.site-page .deal-grid,
body.site-page .ebay-grid,
body.site-page .listings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.site-page .product-card,
body.site-page .deal-card,
body.site-page .ebay-card,
body.site-page .listing-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  background: #ffffff;
  box-shadow: var(--site-shadow-small);
  transition:
    transform 0.23s ease,
    border-color 0.23s ease,
    box-shadow 0.23s ease;
}

body.site-page .product-card:hover,
body.site-page .deal-card:hover,
body.site-page .ebay-card:hover,
body.site-page .listing-card:hover {
  transform: translateY(-5px);
  border-color: #d4aa23;
  box-shadow: var(--site-shadow);
}

body.site-page .product-image,
body.site-page .deal-image,
body.site-page .ebay-image,
body.site-page .listing-image {
  display: grid;
  height: 235px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--site-border);
  background: #ffffff;
}

body.site-page .product-image img,
body.site-page .deal-image img,
body.site-page .ebay-image img,
body.site-page .listing-image img {
  width: 100%;
  height: 100%;
  padding: 17px;
  object-fit: contain;
  transition: transform 0.32s ease;
}

body.site-page .product-card:hover img,
body.site-page .deal-card:hover img,
body.site-page .ebay-card:hover img,
body.site-page .listing-card:hover img {
  transform: scale(1.04);
}

body.site-page .product-content,
body.site-page .deal-content,
body.site-page .ebay-content,
body.site-page .listing-content,
body.site-page .product-card-body,
body.site-page .deal-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px;
}

body.site-page .product-card h3,
body.site-page .deal-card h3,
body.site-page .ebay-card h3,
body.site-page .listing-card h3 {
  margin: 0 0 13px;
  font-size: 0.97rem;
  line-height: 1.48;
}

body.site-page .price,
body.site-page .product-price,
body.site-page .deal-price {
  color: var(--site-ink);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

body.site-page .button,
body.site-page .btn,
body.site-page .btn-primary,
body.site-page .primary-button,
body.site-page button[type="submit"],
body.site-page input[type="submit"] {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--site-gold);
  color: var(--site-ink);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

body.site-page .button:hover,
body.site-page .btn:hover,
body.site-page .btn-primary:hover,
body.site-page .primary-button:hover,
body.site-page button[type="submit"]:hover,
body.site-page input[type="submit"]:hover {
  transform: translateY(-2px);
  background: var(--site-gold-light);
  color: var(--site-ink);
}

body.site-page .btn-secondary,
body.site-page .secondary-button {
  border-color: var(--site-border-strong);
  background: #ffffff;
  color: var(--site-ink);
}

body.site-page table {
  width: 100%;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--site-border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--site-radius);
  background: #ffffff;
  box-shadow: var(--site-shadow-small);
}

body.site-page th,
body.site-page td {
  padding: 14px 16px;
  border-right: 1px solid var(--site-border);
  border-bottom: 1px solid var(--site-border);
  text-align: left;
  vertical-align: top;
}

body.site-page th:last-child,
body.site-page td:last-child {
  border-right: 0;
}

body.site-page tbody tr:last-child td {
  border-bottom: 0;
}

body.site-page th {
  background: var(--site-navy);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.025em;
}

body.site-page tbody tr:nth-child(even) {
  background: #f8fafc;
}

body.site-page .table-wrapper,
body.site-page .comparison-table-wrapper {
  max-width: 100%;
  overflow-x: auto;
  border-radius: var(--site-radius);
}

body.site-page .callout,
body.site-page .info-box,
body.site-page .tip-box,
body.site-page .editor-note,
body.site-page .buyer-note,
body.site-page .important-note {
  margin: 26px 0;
  padding: 20px 22px;
  border: 1px solid #e7d38c;
  border-left: 4px solid var(--site-gold);
  border-radius: var(--site-radius-small);
  background: #fffbeb;
  color: #55400a;
}

body.site-page .pros-cons,
body.site-page .pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin: 28px 0;
}

body.site-page .pros,
body.site-page .cons {
  padding: 22px;
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  background: #ffffff;
}

body.site-page .pros {
  border-top: 4px solid var(--site-success);
}

body.site-page .cons {
  border-top: 4px solid var(--site-danger);
}

body.site-page .sidebar,
body.site-page aside.sidebar,
body.site-page .guide-sidebar,
body.site-page .article-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 17px;
}

body.site-page .sidebar-card,
body.site-page .toc,
body.site-page .table-of-contents,
body.site-page .related-guides,
body.site-page .affiliate-disclosure {
  padding: 21px;
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  background: #ffffff;
  box-shadow: var(--site-shadow-small);
}

body.site-page .toc h2,
body.site-page .toc h3,
body.site-page .table-of-contents h2,
body.site-page .table-of-contents h3,
body.site-page .sidebar-card h2,
body.site-page .sidebar-card h3 {
  margin: 0 0 12px;
  font-size: 0.94rem;
}

body.site-page .toc ul,
body.site-page .table-of-contents ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

body.site-page .toc li,
body.site-page .table-of-contents li {
  margin: 0;
  border-bottom: 1px solid var(--site-border);
}

body.site-page .toc li:last-child,
body.site-page .table-of-contents li:last-child {
  border-bottom: 0;
}

body.site-page .toc a,
body.site-page .table-of-contents a {
  display: block;
  padding: 9px 0;
  color: var(--site-text);
  font-size: 0.78rem;
  text-decoration: none;
}

body.site-page .toc a:hover,
body.site-page .table-of-contents a:hover {
  color: var(--site-gold-dark);
}

body.site-page .affiliate-disclosure,
body.site-page .disclosure {
  color: var(--site-muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

body.site-page form {
  max-width: 760px;
}

body.site-page input,
body.site-page select,
body.site-page textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--site-border-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--site-ink);
}

body.site-page textarea {
  min-height: 150px;
  resize: vertical;
}

body.site-page label {
  display: block;
  margin-bottom: 7px;
  color: var(--site-text);
  font-size: 0.83rem;
  font-weight: 800;
}

body.site-page .site-footer,
body.site-page footer.site-footer,
body.site-page .main-footer {
  padding-top: 62px;
  background: #070b14;
  color: #94a3b8;
}

body.site-page .footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 52px;
}

body.site-page .footer-logo,
body.site-page .site-footer .site-logo {
  color: #ffffff;
}

body.site-page .site-footer h2,
body.site-page .site-footer h3,
body.site-page .site-footer h4,
body.site-page .main-footer h2,
body.site-page .main-footer h3,
body.site-page .main-footer h4 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 0.88rem;
}

body.site-page .site-footer a,
body.site-page .main-footer a {
  display: block;
  margin-bottom: 8px;
  color: #94a3b8;
  font-size: 0.79rem;
  text-decoration: none;
}

body.site-page .site-footer a:hover,
body.site-page .main-footer a:hover {
  color: #ffffff;
}

body.site-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 0 30px;
  margin-top: 45px;
  border-top: 1px solid #1e293b;
  color: #64748b;
  font-size: 0.7rem;
}

@media (max-width: 1040px) {
  body.site-page .article-layout,
  body.site-page .guide-layout,
  body.site-page .content-layout {
    grid-template-columns: 1fr;
  }

  body.site-page .sidebar,
  body.site-page aside.sidebar,
  body.site-page .guide-sidebar,
  body.site-page .article-sidebar {
    position: static;
  }

  body.site-page .card-grid,
  body.site-page .guide-grid,
  body.site-page .hub-grid,
  body.site-page .category-grid,
  body.site-page .resource-grid,
  body.site-page .comparison-grid,
  body.site-page .product-grid,
  body.site-page .deal-grid,
  body.site-page .ebay-grid,
  body.site-page .listings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.site-page .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body.site-page .container,
  body.site-page .content-container,
  body.site-page .page-container,
  body.site-page .header-inner,
  body.site-page .footer-inner,
  body.site-page .page-content,
  body.site-page .article-layout,
  body.site-page .guide-layout,
  body.site-page .content-layout {
    width: min(100% - 28px, var(--site-content-width));
  }

  body.site-page .nav-links,
  body.site-page .main-nav,
  body.site-page nav ul {
    gap: 12px;
  }

  body.site-page .page-hero,
  body.site-page .guide-hero,
  body.site-page .article-hero,
  body.site-page .hub-hero,
  body.site-page .category-hero {
    padding: 52px 0;
  }

  body.site-page .page-hero h1,
  body.site-page .guide-hero h1,
  body.site-page .article-hero h1,
  body.site-page .hub-hero h1,
  body.site-page .category-hero h1 {
    font-size: 2.55rem;
  }

  body.site-page .card-grid,
  body.site-page .guide-grid,
  body.site-page .hub-grid,
  body.site-page .category-grid,
  body.site-page .resource-grid,
  body.site-page .comparison-grid,
  body.site-page .product-grid,
  body.site-page .deal-grid,
  body.site-page .ebay-grid,
  body.site-page .listings-grid,
  body.site-page .pros-cons,
  body.site-page .pros-cons-grid,
  body.site-page .footer-inner {
    grid-template-columns: 1fr;
  }

  body.site-page .product-image,
  body.site-page .deal-image,
  body.site-page .ebay-image,
  body.site-page .listing-image {
    height: 275px;
  }

  body.site-page .footer-bottom {
    display: grid;
  }
}

@media (max-width: 540px) {
  body.site-page .header-inner {
    min-height: 66px;
  }

  body.site-page .nav-links,
  body.site-page .main-nav,
  body.site-page nav ul {
    flex-wrap: wrap;
  }

  body.site-page .page-content,
  body.site-page .article-layout,
  body.site-page .guide-layout,
  body.site-page .content-layout {
    padding: 48px 0 62px;
  }

  body.site-page th,
  body.site-page td {
    min-width: 145px;
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.site-page *,
  body.site-page *::before,
  body.site-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================
   GAMERIGADVISOR SHARED SITE SHELL PHASE 3
   Applies to internal pages using body.site-page.
   ========================================================== */

body.site-page {
  --shell-navy: #090f1d;
  --shell-navy-soft: #121d31;
  --shell-gold: #eab308;
  --shell-gold-light: #facc15;
  --shell-gold-dark: #805d07;
  --shell-ink: #111827;
  --shell-text: #334155;
  --shell-muted: #64748b;
  --shell-border: #e2e8f0;
  --shell-surface: #ffffff;
  --shell-soft: #f5f7fb;
  --shell-radius: 15px;
  --shell-shadow: 0 15px 42px rgba(15, 23, 42, 0.1);
}

body.site-page.site-menu-open {
  overflow: hidden;
}

.site-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: -9999px;
  padding: 12px 17px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--shell-ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shell-shadow);
}

.site-skip-link:focus {
  left: 12px;
}

.site-utility-bar {
  background: #070b14;
  color: #cbd5e1;
  font-size: 0.73rem;
}

.site-utility-inner {
  display: flex;
  min-height: 33px;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-utility-inner span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--shell-gold);
  font-weight: 900;
}

.premium-site-header {
  position: sticky;
  z-index: 300;
  top: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.premium-site-header .header-inner {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 73px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-logo-text > span {
  color: var(--shell-gold-dark);
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-navigation a {
  color: var(--shell-text);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
  color: var(--shell-gold-dark);
}

.site-navigation .site-navigation-cta {
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--shell-gold);
  color: var(--shell-ink);
  font-weight: 900;
}

.site-navigation .site-navigation-cta:hover {
  background: var(--shell-gold-light);
  color: var(--shell-ink);
}

.site-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--shell-border);
  border-radius: 9px;
  background: #ffffff;
  cursor: pointer;
}

.site-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--shell-ink);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-table-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  border-radius: var(--shell-radius);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.07);
  scrollbar-width: thin;
}

.site-table-wrapper table {
  min-width: 680px;
  margin: 0 !important;
  box-shadow: none !important;
}

.generated-table-of-contents {
  max-width: 780px;
  margin: 28px 0 34px;
  overflow: hidden;
  border: 1px solid var(--shell-border);
  border-radius: var(--shell-radius);
  background: #ffffff;
  box-shadow: 0 7px 24px rgba(15, 23, 42, 0.055);
}

.generated-toc-heading {
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 17px;
  border-bottom: 1px solid var(--shell-border);
  background: #f8fafc;
}

.generated-toc-heading strong {
  color: var(--shell-ink);
  font-size: 0.88rem;
}

.generated-toc-toggle {
  display: grid;
  width: 31px;
  height: 31px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--shell-border);
  border-radius: 7px;
  background: #ffffff;
  color: var(--shell-ink);
  font-weight: 900;
  cursor: pointer;
}

.generated-table-of-contents ol {
  padding: 13px 18px 15px 39px;
  margin: 0;
}

.generated-table-of-contents li {
  margin: 0;
  padding: 0;
}

.generated-table-of-contents a {
  display: block;
  padding: 7px 4px;
  color: var(--shell-text);
  font-size: 0.8rem;
  line-height: 1.45;
  text-decoration: none;
}

.generated-table-of-contents a:hover {
  color: var(--shell-gold-dark);
}

body.site-page main h2[id] {
  scroll-margin-top: 110px;
}

.site-image-error {
  min-height: 180px;
  opacity: 0;
}

.site-image-link-error {
  position: relative;
  min-height: 180px;
  background: linear-gradient(145deg, #f1f5f9, #ffffff);
}

.site-image-link-error::after {
  content: "Product image unavailable";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--shell-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.site-back-to-top {
  position: fixed;
  z-index: 220;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: var(--shell-navy);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.23);
  cursor: pointer;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.site-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-back-to-top:hover {
  background: #1d2940;
}

.premium-site-footer {
  padding-top: 62px;
  background: #070b14;
  color: #94a3b8;
}

.premium-site-footer .footer-inner {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 52px;
}

.premium-site-footer .footer-brand p {
  max-width: 410px;
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.7;
}

.premium-site-footer .footer-disclosure {
  font-size: 0.71rem !important;
}

.premium-site-footer .footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.premium-site-footer .footer-column h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 0.84rem;
}

.premium-site-footer .footer-column a {
  display: block;
  margin: 0;
  color: #94a3b8;
  font-size: 0.77rem;
  text-decoration: none;
}

.premium-site-footer .footer-column a:hover {
  color: #ffffff;
}

.premium-site-footer .footer-bottom {
  width: min(1180px, calc(100% - 40px));
}

@media (max-width: 1040px) {
  .premium-site-footer .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .site-menu-toggle {
    display: block;
  }

  .site-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--shell-border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shell-shadow);
  }

  .site-navigation.is-open {
    display: grid;
  }

  .site-navigation a {
    display: block;
    padding: 11px 12px;
    border-radius: 7px;
  }

  .site-navigation a:hover {
    background: #f8fafc;
  }

  .site-navigation .site-navigation-cta {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .premium-site-header .header-inner,
  .premium-site-footer .footer-inner,
  .premium-site-footer .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .site-utility-inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-utility-inner span:nth-child(n + 3) {
    display: none;
  }

  .premium-site-footer .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-back-to-top {
    right: 15px;
    bottom: 15px;
  }
}

/* ==========================================================
   GAMERIGADVISOR MIGRATED INLINE STYLES PHASE 4 RECOVERY
   Generated: 20260721-034904
   Static style attributes migrated from HTML pages.
   ========================================================== */

.gra-inline-03b244bb0a {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: 6px;
}

.gra-inline-097554be02 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.gra-inline-1a863e14ed {
  min-height: 200px;
  background: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.gra-inline-377f6dafaf {
  padding: 80px 24px;
}

.gra-inline-3b6a3a65d8 {
  cursor: pointer;
}

.gra-inline-42736f790d {
  flex-basis: 34%;
}

.gra-inline-44a2f4b63c {
  height: 20px;
}

.gra-inline-49fcd855ce {
  margin-top: 24px;
}

.gra-inline-4f894e116f {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-weight: 700;
  margin-left: 8px;
}

.gra-inline-527034725c {
  min-height: 200px;
  background: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.gra-inline-5872de20d5 {
  color: var(--text-muted);
}

.gra-inline-5a59099351 {
  height: 30px;
}

.gra-inline-6b99de8b69 {
  display: none;
}

.gra-inline-72e115153a {
  display: flex;
  align-items: center;
  gap: 3px;
}

.gra-inline-78fc38ec13 {
  margin: 32px 0;
  border-radius: var(--radius);
}

.gra-inline-7a480b2ea6 {
  border-color: #e2e8f0;
  border-width: 1px;
  border-radius: 18px;
  margin-top: 24px;
  margin-bottom: 24px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}

.gra-inline-7c6ef0f258 {
  flex-basis: 66%;
}

.gra-inline-8dce40efd5 {
  color: var(--text-muted);
  font-size: 2rem;
  opacity: 0.3;
}

.gra-inline-98f198a463 {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
}

.gra-inline-9e3bab8418 {
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}

.gra-inline-a44260469a {
  border-radius: 14px;
}

.gra-inline-a7b1659bc0 {
  font-size: 4rem;
  margin-bottom: 0;
}

.gra-inline-b0f84a9f90 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.gra-inline-c071b4ab59 {
  margin-bottom: 28px;
}

.gra-inline-d462248a40 {
  margin-top: 0;
}

.gra-inline-e214730593 {
  margin-top: 48px;
}

.gra-inline-f15bdb61bd {
  font-size: 1.1rem;
}

.gra-inline-f277a49356 {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

/* END GAMERIGADVISOR MIGRATED INLINE STYLES PHASE 4 RECOVERY */

/* ==========================================================
   GAMERIGADVISOR DEAL PAGE INLINE CLEANUP
   Replaces styles formerly generated inside deal.html JS.
   ========================================================== */

.deal-error {
  display: none;
}

.deal-no-image {
  color: var(--text-muted);
}

.deal-detail-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.deal-rating-label {
  margin-left: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.deal-action-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.deal-external-icon {
  font-size: 1.1rem;
}

.deal-image-placeholder {
  color: var(--text-muted);
  font-size: 2rem;
  opacity: 0.3;
}

.deal-clickable-card {
  cursor: pointer;
}

.deal-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

/* 404 page */

.page-404 .hero,
body[data-gra-page="404"] .hero {
  padding: 80px 24px;
}

.page-404 .hero h1,
body[data-gra-page="404"] .hero h1 {
  margin-bottom: 0;
  font-size: 4rem;
}

.page-404 .hero > p:first-of-type,
body[data-gra-page="404"] .hero > p:first-of-type {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.page-404 .hero .btn,
body[data-gra-page="404"] .hero .btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
}

.page-404 .hero .btn:first-child,
body[data-gra-page="404"] .hero .btn:first-child {
  background: var(--accent);
  color: #ffffff;
}

.page-404 .hero .btn + .btn,
body[data-gra-page="404"] .hero .btn + .btn {
  margin-left: 8px;
  border: 2px solid var(--border-light);
  background: transparent;
  color: var(--text-primary);
}

/* ==========================================================
   GAMERIGADVISOR LEGACY REDIRECT PAGES
   ========================================================== */

.legacy-redirect-page,
.internal-template-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(234, 179, 8, 0.16),
      transparent 25%
    ),
    #f5f7fb;
}

.legacy-redirect-page main,
.internal-template-page main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
}

.legacy-redirect-panel {
  width: min(620px, 100%);
  padding: 42px;
  border: 1px solid var(--site-border, #e2e8f0);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  text-align: center;
}

.legacy-redirect-panel h1 {
  margin: 8px 0 17px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.legacy-redirect-panel p {
  margin: 0 auto 25px;
  color: var(--site-muted, #64748b);
  line-height: 1.7;
}

/* ==========================================================
   GAMERIGADVISOR UNIFORM UI SYSTEM V2
   Central display rules for home, guides, hubs and deals.
   ========================================================== */

:root {
  --gra-page-bg: #f5f7fb;
  --gra-card-bg: #ffffff;
  --gra-card-soft: #f8fafc;
  --gra-ink: #111827;
  --gra-body: #334155;
  --gra-muted: #64748b;
  --gra-border: #e2e8f0;
  --gra-border-dark: #cbd5e1;
  --gra-navy: #0a1020;
  --gra-navy-soft: #142038;
  --gra-accent: #eab308;
  --gra-accent-hover: #facc15;
  --gra-accent-dark: #805d07;
  --gra-success: #15803d;
  --gra-danger: #b91c1c;

  --gra-radius-xs: 7px;
  --gra-radius-sm: 10px;
  --gra-radius-md: 15px;
  --gra-radius-lg: 22px;

  --gra-shadow-xs: 0 4px 15px rgba(15, 23, 42, 0.045);

  --gra-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.07);

  --gra-shadow-md: 0 16px 42px rgba(15, 23, 42, 0.11);

  --gra-content-width: 1180px;
  --gra-reading-width: 790px;
}

/* ----------------------------------------------------------
   Global page foundation
   ---------------------------------------------------------- */

body {
  background: var(--gra-page-bg);
  color: var(--gra-ink);
}

body.site-page,
body.gra-home,
body.home-v4 {
  min-width: 320px;
  overflow-x: hidden;
}

body.site-page main,
body.gra-home main,
body.home-v4 main {
  width: 100%;
}

body.site-page img,
body.gra-home img,
body.home-v4 img {
  max-width: 100%;
  height: auto;
}

body.site-page .container,
body.gra-home .gra-container,
body.home-v4 .container,
body.site-page .header-inner,
body.site-page .footer-inner {
  width: min(var(--gra-content-width), calc(100% - 40px));
  margin-inline: auto;
}

/* ----------------------------------------------------------
   Unified section spacing
   ---------------------------------------------------------- */

body.site-page
  main
  > section:not(.page-hero):not(.guide-hero):not(.article-hero):not(
    .hub-hero
  ):not(.category-hero),
body.gra-home .gra-section,
body.home-v4 .home-section {
  padding-block: clamp(58px, 7vw, 86px);
}

body.site-page section + section {
  border-top-color: var(--gra-border);
}

/* ----------------------------------------------------------
   Typography
   ---------------------------------------------------------- */

body.site-page h1,
body.site-page h2,
body.site-page h3,
body.gra-home h1,
body.gra-home h2,
body.gra-home h3,
body.home-v4 h1,
body.home-v4 h2,
body.home-v4 h3 {
  color: var(--gra-ink);
  text-wrap: balance;
}

body.site-page
  :is(.page-hero, .guide-hero, .article-hero, .hub-hero, .category-hero)
  :is(h1, h2, h3),
body.gra-home .gra-hero :is(h1, h2, h3),
body.home-v4 .buyer-hero :is(h1, h2, h3) {
  color: #ffffff;
}

body.site-page article,
body.site-page .article-content,
body.site-page .guide-content {
  font-size: 1rem;
}

body.site-page article p,
body.site-page .article-content p,
body.site-page .guide-content p {
  max-width: var(--gra-reading-width);
  color: var(--gra-body);
  line-height: 1.78;
}

/* ----------------------------------------------------------
   Standard section headings
   ---------------------------------------------------------- */

body.site-page .section-header,
body.site-page .section-heading,
body.site-page .home-section-heading,
body.site-page .hub-section-heading,
body.gra-home .gra-section-heading,
body.home-v4 .home-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 470px);
  align-items: end;
  gap: clamp(28px, 6vw, 70px);
  margin-bottom: 32px;
}

body.site-page :is(.section-header, .section-heading, .hub-section-heading) > p,
body.gra-home .gra-section-heading > p,
body.home-v4 .home-section-heading > p {
  margin: 0;
  color: var(--gra-muted);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   Unified cards
   ---------------------------------------------------------- */

body.site-page
  :is(
    .card,
    .guide-card,
    .hub-card,
    .category-card,
    .resource-card,
    .comparison-card,
    .product-card,
    .deal-card,
    .ebay-card,
    .listing-card
  ),
body.gra-home
  :is(
    .gra-budget-card,
    .gra-product-card,
    .gra-guide-card,
    .gra-use-case-grid > a
  ),
body.home-v4
  :is(.budget-card, .editorial-card, .product-card, .intent-grid > a) {
  border: 1px solid var(--gra-border);
  border-radius: var(--gra-radius-md);
  background: var(--gra-card-bg);
  box-shadow: var(--gra-shadow-xs);
}

body.site-page
  :is(
    .guide-card,
    .hub-card,
    .category-card,
    .resource-card,
    .product-card,
    .deal-card,
    .ebay-card,
    .listing-card
  ),
body.gra-home :is(.gra-budget-card, .gra-product-card, .gra-guide-card),
body.home-v4 :is(.budget-card, .editorial-card, .product-card) {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

body.site-page
  :is(
    .guide-card,
    .hub-card,
    .category-card,
    .resource-card,
    .product-card,
    .deal-card,
    .ebay-card,
    .listing-card
  ):hover,
body.gra-home :is(.gra-budget-card, .gra-product-card, .gra-guide-card):hover,
body.home-v4 :is(.budget-card, .editorial-card, .product-card):hover {
  transform: translateY(-4px);
  border-color: #d5ad2a;
  box-shadow: var(--gra-shadow-md);
}

/* ----------------------------------------------------------
   Uniform product grids
   ---------------------------------------------------------- */

body.site-page
  :is(.product-grid, .deal-grid, .ebay-grid, .listings-grid, .ebay-gallery),
body.gra-home .gra-product-grid,
body.home-v4 .deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

body.site-page .ebay-gallery {
  min-height: 250px;
  padding: 0;
  border-radius: var(--gra-radius-md);
  background: transparent;
  color: var(--gra-muted);
}

/* ----------------------------------------------------------
   Uniform product card layout
   ---------------------------------------------------------- */

body.site-page
  :is(.product-card, .deal-card, .ebay-card, .listing-card, .ebay-gallery-item),
body.gra-home .gra-product-card,
body.home-v4 .product-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
}

body.site-page
  :is(
    .product-image,
    .deal-image,
    .ebay-image,
    .listing-image,
    .ebay-gallery-image
  ),
body.gra-home .gra-product-image,
body.home-v4 .product-image {
  position: relative;
  display: grid;
  width: 100%;
  height: 235px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--gra-border);
  background: #ffffff;
}

body.site-page
  :is(
    .product-image,
    .deal-image,
    .ebay-image,
    .listing-image,
    .ebay-gallery-image
  )
  img,
body.gra-home .gra-product-image img,
body.home-v4 .product-image img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

body.site-page
  :is(
    .product-content,
    .deal-content,
    .ebay-content,
    .listing-content,
    .product-card-body,
    .deal-card-body
  ),
body.gra-home .gra-product-content,
body.home-v4 .product-card-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 19px;
}

body.site-page :is(.product-card, .deal-card, .ebay-card, .listing-card) h3,
body.gra-home .gra-product-card h3,
body.home-v4 .product-card h3 {
  min-height: 4.4em;
  margin: 0 0 14px;
  overflow: hidden;
  font-size: 0.94rem;
  line-height: 1.47;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

body.site-page :is(.product-card, .deal-card, .ebay-card, .listing-card) h3 a,
body.gra-home .gra-product-card h3 a,
body.home-v4 .product-card h3 a {
  color: var(--gra-ink);
  text-decoration: none;
}

body.site-page :is(.product-price, .deal-price, .price),
body.gra-home .gra-product-bottom > strong,
body.home-v4 .deal-price {
  color: var(--gra-ink);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* ----------------------------------------------------------
   Product-detail routing affordance
   ---------------------------------------------------------- */

.product-card-routed {
  cursor: pointer;
}

.product-card-routed:focus-visible {
  outline: 3px solid rgba(234, 179, 8, 0.58);
  outline-offset: 3px;
}

.product-card-routed::after {
  content: "View details";
  position: absolute;
  z-index: 3;
  right: 13px;
  top: 13px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(10, 16, 32, 0.92);
  color: #ffffff;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  pointer-events: none;
}

/* ----------------------------------------------------------
   Unified buttons
   ---------------------------------------------------------- */

body.site-page
  :is(
    .button,
    .btn,
    .btn-primary,
    .primary-button,
    .product-button,
    .deal-button,
    .ebay-button
  ),
body.gra-home :is(.gra-button, .gra-product-button),
body.home-v4 :is(.btn-primary, .btn-secondary) {
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--gra-radius-sm);
  font-weight: 900;
  line-height: 1.2;
}

body.site-page :is(.product-button, .deal-button, .ebay-button),
body.gra-home .gra-product-button {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding: 12px 14px;
  background: var(--gra-navy);
  color: #ffffff;
  text-decoration: none;
}

body.site-page :is(.product-button, .deal-button, .ebay-button):hover,
body.gra-home .gra-product-button:hover {
  background: var(--gra-navy-soft);
  color: #ffffff;
}

/* ----------------------------------------------------------
   Hub and article consistency
   ---------------------------------------------------------- */

body.site-page
  :is(.page-content, .article-layout, .guide-layout, .content-layout) {
  padding-block: clamp(50px, 7vw, 82px);
}

body.site-page :is(.faq-section, .faq-list, .frequently-asked-questions) {
  max-width: var(--gra-reading-width);
  padding: 25px;
  margin-block: 42px;
  border: 1px solid var(--gra-border);
  border-radius: var(--gra-radius-md);
  background: #ffffff;
  box-shadow: var(--gra-shadow-xs);
}

body.site-page .faq-item {
  padding-block: 17px;
  border-bottom: 1px solid var(--gra-border);
}

body.site-page .faq-item:last-child {
  border-bottom: 0;
}

body.site-page .faq-item h3,
body.site-page .faq-item summary {
  margin: 0 0 8px;
  color: var(--gra-ink);
  font-size: 1rem;
  font-weight: 850;
}

body.site-page .faq-item p {
  margin: 0;
  color: var(--gra-body);
}

body.site-page .stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-block: 32px;
  border: 1px solid var(--gra-border);
  border-radius: var(--gra-radius-md);
  background: var(--gra-border);
}

body.site-page .stats-bar > * {
  padding: 18px;
  background: #ffffff;
  text-align: center;
}

/* ----------------------------------------------------------
   Tables
   ---------------------------------------------------------- */

body.site-page .site-table-wrapper {
  border: 1px solid var(--gra-border);
  border-radius: var(--gra-radius-md);
  background: #ffffff;
  box-shadow: var(--gra-shadow-xs);
}

body.site-page table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

body.site-page th {
  background: var(--gra-navy);
  color: #ffffff;
}

body.site-page td,
body.site-page th {
  padding: 14px 16px;
  border-right: 1px solid var(--gra-border);
  border-bottom: 1px solid var(--gra-border);
}

body.site-page tr > :last-child {
  border-right: 0;
}

body.site-page tbody tr:last-child td {
  border-bottom: 0;
}

/* ----------------------------------------------------------
   Deal details page
   ---------------------------------------------------------- */

body.page-deal,
body[data-gra-page="deal"] {
  background: var(--gra-page-bg);
}

body.page-deal
  :is(.deal-detail-card, .deal-summary, .seller-card, .price-history-card),
body[data-gra-page="deal"]
  :is(.deal-detail-card, .deal-summary, .seller-card, .price-history-card) {
  border: 1px solid var(--gra-border);
  border-radius: var(--gra-radius-md);
  background: #ffffff;
  box-shadow: var(--gra-shadow-sm);
}

body.page-deal .deal-detail-image img,
body[data-gra-page="deal"] .deal-detail-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #ffffff;
}

body.page-deal .deal-cta,
body[data-gra-page="deal"] .deal-cta {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: var(--gra-radius-sm);
  background: var(--gra-accent);
  color: var(--gra-ink);
  font-weight: 900;
  text-decoration: none;
}

body.page-deal .deal-cta:hover,
body[data-gra-page="deal"] .deal-cta:hover {
  background: var(--gra-accent-hover);
}

/* ----------------------------------------------------------
   Responsive rules
   ---------------------------------------------------------- */

@media (max-width: 1080px) {
  body.site-page
    :is(.product-grid, .deal-grid, .ebay-grid, .listings-grid, .ebay-gallery),
  body.gra-home .gra-product-grid,
  body.home-v4 .deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.site-page .container,
  body.gra-home .gra-container,
  body.home-v4 .container,
  body.site-page .header-inner,
  body.site-page .footer-inner {
    width: min(var(--gra-content-width), calc(100% - 28px));
  }

  body.site-page :is(.section-header, .section-heading, .hub-section-heading),
  body.gra-home .gra-section-heading,
  body.home-v4 .home-section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  body.site-page
    :is(.product-grid, .deal-grid, .ebay-grid, .listings-grid, .ebay-gallery),
  body.gra-home .gra-product-grid,
  body.home-v4 .deal-grid {
    grid-template-columns: 1fr;
  }

  body.site-page
    :is(
      .product-image,
      .deal-image,
      .ebay-image,
      .listing-image,
      .ebay-gallery-image
    ),
  body.gra-home .gra-product-image,
  body.home-v4 .product-image {
    height: 270px;
  }

  .product-card-routed::after {
    top: 12px;
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.site-page *,
  body.gra-home *,
  body.home-v4 * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* END GAMERIGADVISOR UNIFORM UI SYSTEM V2 */

/* ==========================================================
   GAMERIGADVISOR PARAMETER DEAL DETAILS V1
   ========================================================== */

.parameter-deal-detail-section {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 78px;
}

.parameter-deal-shell {
  display: grid;
  grid-template-columns:
    minmax(0, 1.04fr)
    minmax(370px, 0.96fr);
  overflow: hidden;
  border: 1px solid var(--gra-border, #e2e8f0);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
}

.parameter-deal-image {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 34px;
  border-right: 1px solid var(--gra-border, #e2e8f0);
  background: linear-gradient(145deg, #f8fafc, #ffffff);
}

.parameter-deal-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.parameter-deal-no-image {
  display: grid;
  width: 100%;
  min-height: 420px;
  place-items: center;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  color: #64748b;
  font-weight: 800;
}

.parameter-deal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 54px);
}

.parameter-deal-eyebrow {
  margin-bottom: 13px;
  color: var(--gra-accent-dark, #805d07);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.parameter-deal-content h1 {
  margin: 0 0 19px;
  color: var(--gra-ink, #111827);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.parameter-deal-price {
  margin-bottom: 18px;
  color: var(--gra-ink, #111827);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.055em;
}

.parameter-deal-note {
  margin: 0 0 23px;
  color: var(--gra-muted, #64748b);
  line-height: 1.7;
}

.parameter-deal-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 23px;
}

.parameter-deal-stat {
  padding: 13px;
  border: 1px solid var(--gra-border, #e2e8f0);
  border-radius: 10px;
  background: #f8fafc;
}

.parameter-deal-stat span,
.parameter-deal-stat strong {
  display: block;
}

.parameter-deal-stat span {
  margin-bottom: 4px;
  color: var(--gra-muted, #64748b);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.parameter-deal-stat strong {
  color: var(--gra-ink, #111827);
  font-size: 0.82rem;
}

.parameter-deal-ebay-button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 10px;
  background: var(--gra-accent, #eab308);
  color: var(--gra-ink, #111827);
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.parameter-deal-ebay-button:hover {
  transform: translateY(-2px);
  background: var(--gra-accent-hover, #facc15);
  color: var(--gra-ink, #111827);
}

.parameter-deal-disclosure {
  margin-top: 14px;
  color: var(--gra-muted, #64748b);
  font-size: 0.7rem;
  line-height: 1.55;
  text-align: center;
}

.parameter-deal-guidance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 22px;
}

.parameter-deal-guidance article {
  padding: 23px;
  border: 1px solid var(--gra-border, #e2e8f0);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 7px 23px rgba(15, 23, 42, 0.05);
}

.parameter-deal-guidance h2 {
  margin: 0 0 9px;
  color: var(--gra-ink, #111827);
  font-size: 1rem;
}

.parameter-deal-guidance p {
  margin: 0;
  color: var(--gra-muted, #64748b);
  font-size: 0.82rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .parameter-deal-shell {
    grid-template-columns: 1fr;
  }

  .parameter-deal-image {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--gra-border, #e2e8f0);
  }
}

@media (max-width: 680px) {
  .parameter-deal-detail-section {
    width: min(100% - 28px, 1180px);
    margin-top: 22px;
  }

  .parameter-deal-image {
    min-height: 310px;
    padding: 18px;
  }

  .parameter-deal-content {
    padding: 25px 21px;
  }

  .parameter-deal-guidance {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   EBAY IMAGE PROXY DISPLAY FIX
   ========================================================== */

.parameter-deal-image {
  position: relative;
}

.parameter-deal-image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 280px;
  max-height: 520px;
  object-fit: contain !important;
  object-position: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #ffffff;
}

.parameter-image-status {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 800;
}

.parameter-image-status[hidden] {
  display: none !important;
}

.gra-original-deal-hidden {
  display: none !important;
}

/* ==========================================================
   GAMERIGADVISOR PREMIUM PRODUCT DETAIL V3
   Central styling for deal.html product information.
   ========================================================== */

/* ----------------------------------------------------------
   Detail-page foundation
   ---------------------------------------------------------- */

body:has(#parameter-deal-detail) {
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(234, 179, 8, 0.09),
      transparent 26%
    ),
    #f4f7fb;
}

body:has(#parameter-deal-detail) main {
  min-height: 70vh;
}

#parameter-deal-detail {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(28px, 5vw, 58px) auto 84px;
  padding: 0;
}

/* ----------------------------------------------------------
   Primary product panel
   ---------------------------------------------------------- */

#parameter-deal-detail .parameter-deal-shell {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.06fr)
    minmax(390px, 0.94fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid #dfe5ed;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 75px rgba(15, 23, 42, 0.14);
}

/* ----------------------------------------------------------
   Product image presentation
   ---------------------------------------------------------- */

#parameter-deal-detail .parameter-deal-image {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 610px;
  place-items: center;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border-right: 1px solid #e2e8f0;
  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    #ffffff 48%,
    #f5f7fa 100%
  );
}

#parameter-deal-detail .parameter-deal-image::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(226, 232, 240, 0.72);
  border-radius: 18px;
  pointer-events: none;
}

#parameter-deal-detail .parameter-deal-image img {
  position: relative;
  z-index: 1;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 360px;
  max-height: 510px;
  padding: 12px;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 15px;
  background: #ffffff;
  visibility: visible !important;
  opacity: 1 !important;
  filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.1));
}

#parameter-deal-detail .parameter-image-status {
  position: absolute;
  z-index: 4;
  right: 35px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

#parameter-deal-detail .parameter-image-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #eab308;
}

#parameter-deal-detail .parameter-image-status[hidden] {
  display: none !important;
}

/* ----------------------------------------------------------
   Product information
   ---------------------------------------------------------- */

#parameter-deal-detail .parameter-deal-content {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px) clamp(30px, 4.5vw, 56px);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

#parameter-deal-detail .parameter-deal-content::before {
  content: "Product details";
  position: absolute;
  top: 24px;
  right: 25px;
  padding: 6px 9px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

#parameter-deal-detail .parameter-deal-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 15px;
  color: #805d07;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.105em;
  line-height: 1.4;
  text-transform: uppercase;
}

#parameter-deal-detail .parameter-deal-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

#parameter-deal-detail .parameter-deal-content h1 {
  max-width: 100%;
  margin: 0 0 20px;
  color: #111827;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

#parameter-deal-detail .parameter-deal-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0 0 20px;
  color: #111827;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.06em;
}

#parameter-deal-detail .parameter-deal-price::after {
  content: "current listing price";
  color: #64748b;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

#parameter-deal-detail .parameter-deal-note {
  max-width: 620px;
  margin: 0 0 24px;
  padding: 15px 17px;
  border-left: 3px solid #eab308;
  border-radius: 0 9px 9px 0;
  background: #fffbeb;
  color: #5f4a13;
  font-size: 0.82rem;
  line-height: 1.65;
}

/* ----------------------------------------------------------
   Product metadata
   ---------------------------------------------------------- */

#parameter-deal-detail .parameter-deal-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin: 0 0 24px;
}

#parameter-deal-detail .parameter-deal-stat {
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 11px;
  background: #ffffff;
  box-shadow: 0 4px 13px rgba(15, 23, 42, 0.035);
}

#parameter-deal-detail .parameter-deal-stat span {
  display: block;
  margin: 0 0 5px;
  color: #64748b;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

#parameter-deal-detail .parameter-deal-stat strong {
  display: block;
  overflow: hidden;
  color: #111827;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

/* ----------------------------------------------------------
   Primary affiliate action
   ---------------------------------------------------------- */

#parameter-deal-detail .parameter-deal-ebay-button {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid #d6a900;
  border-radius: 11px;
  background: linear-gradient(180deg, #facc15 0%, #eab308 100%);
  color: #111827;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: 0 9px 22px rgba(234, 179, 8, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

#parameter-deal-detail .parameter-deal-ebay-button span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.1);
  font-size: 1rem;
}

#parameter-deal-detail .parameter-deal-ebay-button:hover {
  transform: translateY(-2px);
  color: #111827;
  filter: brightness(1.025);
  box-shadow: 0 14px 29px rgba(234, 179, 8, 0.32);
}

#parameter-deal-detail .parameter-deal-ebay-button:focus-visible {
  outline: 3px solid rgba(234, 179, 8, 0.5);
  outline-offset: 4px;
}

#parameter-deal-detail .parameter-deal-disclosure {
  margin: 13px auto 0;
  color: #64748b;
  font-size: 0.68rem;
  line-height: 1.55;
  text-align: center;
}

/* ----------------------------------------------------------
   Supporting buyer guidance
   ---------------------------------------------------------- */

#parameter-deal-detail .parameter-deal-guidance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
  margin-top: 20px;
}

#parameter-deal-detail .parameter-deal-guidance article {
  position: relative;
  min-width: 0;
  padding: 23px 23px 22px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 7px 22px rgba(15, 23, 42, 0.05);
}

#parameter-deal-detail .parameter-deal-guidance article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #eab308, #facc15);
}

#parameter-deal-detail .parameter-deal-guidance h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

#parameter-deal-detail .parameter-deal-guidance p {
  margin: 0;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.65;
}

/* ----------------------------------------------------------
   Prevent legacy deal content from affecting layout
   ---------------------------------------------------------- */

body:has(#parameter-deal-detail) .gra-original-deal-hidden {
  display: none !important;
}

body:has(#parameter-deal-detail) #deal-error,
body:has(#parameter-deal-detail) .no-deal-selected,
body:has(#parameter-deal-detail) .deal-empty {
  display: none !important;
}

/* ----------------------------------------------------------
   Tablet
   ---------------------------------------------------------- */

@media (max-width: 960px) {
  #parameter-deal-detail .parameter-deal-shell {
    grid-template-columns: 1fr;
  }

  #parameter-deal-detail .parameter-deal-image {
    min-height: 440px;
    border-right: 0;
    border-bottom: 1px solid #e2e8f0;
  }

  #parameter-deal-detail .parameter-deal-image img {
    max-height: 390px;
  }

  #parameter-deal-detail .parameter-deal-content {
    padding: 38px;
  }
}

/* ----------------------------------------------------------
   Mobile
   ---------------------------------------------------------- */

@media (max-width: 680px) {
  #parameter-deal-detail {
    width: min(100% - 24px, 1180px);
    margin-top: 20px;
    margin-bottom: 60px;
  }

  #parameter-deal-detail .parameter-deal-shell {
    min-height: 0;
    border-radius: 17px;
  }

  #parameter-deal-detail .parameter-deal-image {
    min-height: 310px;
    padding: 20px;
  }

  #parameter-deal-detail .parameter-deal-image::before {
    inset: 13px;
    border-radius: 13px;
  }

  #parameter-deal-detail .parameter-deal-image img {
    min-height: 250px;
    max-height: 300px;
    padding: 8px;
  }

  #parameter-deal-detail .parameter-image-status {
    right: 22px;
    bottom: 21px;
  }

  #parameter-deal-detail .parameter-deal-content {
    padding: 29px 22px 25px;
  }

  #parameter-deal-detail .parameter-deal-content::before {
    position: static;
    width: fit-content;
    margin-bottom: 16px;
  }

  #parameter-deal-detail .parameter-deal-content h1 {
    font-size: 1.45rem;
  }

  #parameter-deal-detail .parameter-deal-price {
    display: grid;
    gap: 5px;
    font-size: 2.35rem;
  }

  #parameter-deal-detail .parameter-deal-stats {
    grid-template-columns: 1fr;
  }

  #parameter-deal-detail .parameter-deal-guidance {
    grid-template-columns: 1fr;
  }
}

/* END GAMERIGADVISOR PREMIUM PRODUCT DETAIL V3 */

/* ==========================================================
   GAMERIGADVISOR GLOBAL NAVIGATION V1
   One shared navigation system across every public page.
   ========================================================== */

.gra-global-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.gra-global-skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: -9999px;
  padding: 12px 17px;
  border-radius: 9px;
  background: #ffffff;
  color: #111827;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

.gra-global-skip-link:focus {
  left: 12px;
}

.gra-global-utility-bar {
  position: relative;
  z-index: 401;
  background: #070b14;
  color: #cbd5e1;
  font-size: 0.72rem;
}

.gra-global-utility-inner {
  display: flex;
  min-height: 33px;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.gra-global-utility-inner span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.gra-global-utility-inner span::before {
  content: "✓";
  margin-right: 7px;
  color: #eab308;
  font-weight: 950;
}

.gra-global-header {
  position: sticky;
  z-index: 400;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(226, 232, 240, 0.96);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.045);
  backdrop-filter: blur(15px);
}

.gra-global-header-inner {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.gra-global-logo {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 10px;
  color: #111827;
  font-size: 1.06rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.gra-global-logo:hover {
  color: #111827;
}

.gra-global-logo-mark {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #111c31, #070b14);
  color: #facc15;
  font-size: 1rem;
  font-weight: 950;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 6px 15px rgba(15, 23, 42, 0.15);
}

.gra-global-logo-text {
  color: #111827;
}

.gra-global-logo-text > span {
  color: #805d07;
}

.gra-global-navigation {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 27px);
}

.gra-global-navigation a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.gra-global-navigation a:not(.gra-global-deals-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: #eab308;
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.gra-global-navigation a:hover,
.gra-global-navigation a:focus-visible,
.gra-global-navigation a.is-current {
  color: #805d07;
}

.gra-global-navigation a:hover::after,
.gra-global-navigation a:focus-visible::after,
.gra-global-navigation a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.gra-global-navigation .gra-global-deals-link {
  min-height: 43px;
  padding: 10px 16px;
  border: 1px solid #d8aa00;
  border-radius: 9px;
  background: linear-gradient(180deg, #facc15, #eab308);
  color: #111827;
  font-weight: 950;
  box-shadow: 0 6px 16px rgba(234, 179, 8, 0.18);
}

.gra-global-navigation .gra-global-deals-link:hover,
.gra-global-navigation .gra-global-deals-link:focus-visible,
.gra-global-navigation .gra-global-deals-link.is-current {
  background: #facc15;
  color: #111827;
}

.gra-global-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid #dbe2ea;
  border-radius: 9px;
  background: #ffffff;
  cursor: pointer;
}

.gra-global-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #111827;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.gra-global-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gra-global-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.gra-global-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.gra-menu-open {
  overflow: hidden;
}

/* Prevent old navigation remnants from displaying. */

body > .site-header:not(.gra-global-header),
body > .gra-header:not(.gra-global-header),
body > .main-header:not(.gra-global-header) {
  display: none !important;
}

/* ----------------------------------------------------------
   Tablet and mobile navigation
   ---------------------------------------------------------- */

@media (max-width: 900px) {
  .gra-global-menu-toggle {
    display: block;
  }

  .gra-global-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 125px);
    overflow-y: auto;
    padding: 13px;
    border: 1px solid #dfe5ed;
    border-radius: 0 0 14px 14px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
  }

  .gra-global-navigation.is-open {
    display: grid;
    gap: 3px;
  }

  .gra-global-navigation a {
    min-height: 47px;
    padding: 11px 13px;
    border-radius: 8px;
    font-size: 0.88rem;
    white-space: normal;
  }

  .gra-global-navigation a:hover,
  .gra-global-navigation a:focus-visible,
  .gra-global-navigation a.is-current {
    background: #f8fafc;
  }

  .gra-global-navigation a:not(.gra-global-deals-link)::after {
    display: none;
  }

  .gra-global-navigation .gra-global-deals-link {
    justify-content: center;
    margin-top: 5px;
  }
}

@media (max-width: 620px) {
  .gra-global-container {
    width: min(100% - 28px, 1180px);
  }

  .gra-global-utility-inner {
    min-height: 31px;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 20px;
    scrollbar-width: none;
  }

  .gra-global-utility-inner::-webkit-scrollbar {
    display: none;
  }

  .gra-global-utility-inner span:nth-child(n + 3) {
    display: none;
  }

  .gra-global-header-inner {
    min-height: 66px;
  }

  .gra-global-logo {
    font-size: 0.98rem;
  }

  .gra-global-logo-mark {
    width: 34px;
    height: 34px;
  }

  .gra-global-navigation {
    right: -2px;
    left: -2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gra-global-navigation a,
  .gra-global-menu-toggle span {
    transition: none !important;
  }
}

/* END GAMERIGADVISOR GLOBAL NAVIGATION V1 */

/* ==========================================================
   GAMERIGADVISOR DEAL NAVIGATION VISIBILITY FIX
   ========================================================== */

.gra-global-navigation-shell {
  position: relative;
  z-index: 400;
  display: block !important;
  width: 100%;
  visibility: visible !important;
  opacity: 1 !important;
}

.gra-global-navigation-shell .gra-global-utility-bar,
.gra-global-navigation-shell .gra-global-header {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.gra-global-navigation-shell .gra-global-header-inner {
  display: flex !important;
}

.gra-global-navigation-shell .gra-global-navigation {
  visibility: visible;
  opacity: 1;
}

body:has(#parameter-deal-detail) .gra-global-navigation-shell {
  display: block !important;
}

body:has(#parameter-deal-detail) .gra-global-header {
  position: sticky !important;
  top: 0;
}

body:has(#parameter-deal-detail) .gra-original-deal-hidden .gra-global-header,
body:has(#parameter-deal-detail)
  .gra-original-deal-hidden
  .gra-global-navigation {
  display: initial !important;
}

@media (max-width: 900px) {
  .gra-global-navigation-shell .gra-global-navigation {
    visibility: visible;
  }

  .gra-global-navigation-shell .gra-global-navigation:not(.is-open) {
    display: none !important;
  }

  .gra-global-navigation-shell .gra-global-navigation.is-open {
    display: grid !important;
  }

  .gra-global-navigation-shell .gra-global-menu-toggle {
    display: block !important;
  }
}

/* ==========================================================
   FORCE DEAL NAVIGATION TO TOP
   ========================================================== */

#gra-deal-navigation-shell {
  position: relative;
  z-index: 10000;
  display: block !important;
  width: 100%;
  margin: 0;
  padding: 0;
  visibility: visible !important;
  opacity: 1 !important;
}

#gra-deal-navigation-shell .gra-global-utility-bar {
  position: relative;
  z-index: 10001;
  display: block !important;
}

#gra-deal-navigation-shell .gra-global-header {
  position: sticky !important;
  z-index: 10000;
  top: 0;
  display: block !important;
}

#gra-deal-navigation-shell .gra-global-header-inner {
  display: flex !important;
}

body:has(#parameter-deal-detail) > #gra-deal-navigation-shell:first-child {
  order: -9999;
}

body:has(#parameter-deal-detail) > main {
  position: relative;
  z-index: 1;
}

body:has(#parameter-deal-detail) > footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  #gra-deal-navigation-shell .gra-global-navigation {
    display: none !important;
  }

  #gra-deal-navigation-shell .gra-global-navigation.is-open {
    display: grid !important;
  }

  #gra-deal-navigation-shell .gra-global-menu-toggle {
    display: block !important;
  }
}

/* ==========================================================
   PRODUCT DETAIL SPECIFICATIONS
   ========================================================== */

#parameter-deal-detail .parameter-specifications {
  margin: 0 0 22px;
  padding: 19px;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  background: #f8fafc;
}

#parameter-deal-detail .parameter-specifications h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 900;
}

#parameter-deal-detail .parameter-specifications-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

#parameter-deal-detail .parameter-specification {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  background: #ffffff;
}

#parameter-deal-detail .parameter-specification span,
#parameter-deal-detail .parameter-specification strong {
  display: block;
}

#parameter-deal-detail .parameter-specification span {
  margin-bottom: 4px;
  color: #64748b;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#parameter-deal-detail .parameter-specification strong {
  color: #111827;
  font-size: 0.78rem;
  line-height: 1.4;
}

#parameter-deal-detail .parameter-specifications-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.6;
}

#parameter-deal-detail .parameter-verification-note {
  margin: 0 0 21px;
  padding: 14px 16px;
  border-left: 3px solid #eab308;
  border-radius: 0 9px 9px 0;
  background: #fffbeb;
  color: #5f4a13;
  font-size: 0.79rem;
  line-height: 1.6;
}

@media (max-width: 620px) {
  #parameter-deal-detail .parameter-specifications-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   GAMERIGADVISOR GRA HOMEPAGE REPAIR
   Matches the gra-* component markup in index.html.
   ========================================================= */

body.gra-home {
  --gra-home-bg: #f4f6fa;
  --gra-home-surface: #ffffff;
  --gra-home-ink: #111827;
  --gra-home-body: #475569;
  --gra-home-muted: #64748b;
  --gra-home-border: #dfe5ed;
  --gra-home-navy: #07101f;
  --gra-home-navy-soft: #15233d;
  --gra-home-gold: #eab308;
  --gra-home-gold-light: #facc15;
  --gra-home-gold-dark: #805d07;
  --gra-home-radius: 17px;
  --gra-home-shadow: 0 14px 38px rgba(15, 23, 42, 0.09);

  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--gra-home-bg);
  color: var(--gra-home-ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body.gra-home *,
body.gra-home *::before,
body.gra-home *::after {
  box-sizing: border-box;
}

body.gra-home img {
  display: block;
  max-width: 100%;
}

body.gra-home a {
  text-decoration: none;
}

body.gra-home .gra-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

body.gra-home .gra-section {
  padding-block: clamp(62px, 7vw, 88px);
}

body.gra-home .gra-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gra-home-gold-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.gra-home .gra-eyebrow::before {
  width: 23px;
  height: 2px;
  border-radius: 999px;
  background: var(--gra-home-gold);
  content: "";
}

body.gra-home .gra-eyebrow-light {
  color: #f8d75d;
}

body.gra-home h1,
body.gra-home h2,
body.gra-home h3,
body.gra-home p {
  margin-top: 0;
}

body.gra-home .gra-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

body.gra-home .gra-section-heading h2 {
  margin: 9px 0 0;
  color: var(--gra-home-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

body.gra-home .gra-section-heading > p,
body.gra-home .gra-section-context p {
  margin-bottom: 0;
  color: var(--gra-home-muted);
  line-height: 1.72;
}

/* Hero */
body.gra-home .gra-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 96px);
  background:
    radial-gradient(
      circle at 89% 13%,
      rgba(250, 204, 21, 0.18),
      transparent 29%
    ),
    radial-gradient(
      circle at 8% 90%,
      rgba(59, 130, 246, 0.14),
      transparent 31%
    ),
    linear-gradient(135deg, var(--gra-home-navy), var(--gra-home-navy-soft));
  color: #ffffff;
}

body.gra-home .gra-hero::after {
  position: absolute;
  right: -130px;
  bottom: -190px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

body.gra-home .gra-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  gap: clamp(42px, 7vw, 82px);
  align-items: center;
}

body.gra-home .gra-hero-content h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  color: #ffffff;
  font-size: clamp(3rem, 6.2vw, 5.3rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.062em;
}

body.gra-home .gra-hero-intro {
  max-width: 690px;
  margin-bottom: 0;
  color: #c7d2e3;
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  line-height: 1.76;
}

body.gra-home .gra-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

body.gra-home .gra-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

body.gra-home .gra-button:hover {
  transform: translateY(-2px);
}

body.gra-home .gra-button-primary {
  border-color: #d5a900;
  background: linear-gradient(
    180deg,
    var(--gra-home-gold-light),
    var(--gra-home-gold)
  );
  color: #111827;
  box-shadow: 0 10px 25px rgba(234, 179, 8, 0.22);
}

body.gra-home .gra-button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.gra-home .gra-button-dark {
  background: #111827;
  color: #ffffff;
}

body.gra-home .gra-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #aebbd0;
  font-size: 0.77rem;
  list-style: none;
}

body.gra-home .gra-proof-list li::before {
  margin-right: 7px;
  color: var(--gra-home-gold-light);
  content: "✓";
}

body.gra-home .gra-hero-product {
  min-width: 0;
}

body.gra-home .gra-hero-product-loading,
body.gra-home .gra-hero-card,
body.gra-home .gra-hero-fallback {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

body.gra-home .gra-hero-product-loading {
  padding: 24px;
}

body.gra-home .gra-hero-card-image {
  position: relative;
  display: grid;
  height: 320px;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
}

body.gra-home .gra-hero-card-image img {
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
}

body.gra-home .gra-hero-card-image > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7, 16, 31, 0.9);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.gra-home .gra-hero-card-body,
body.gra-home .gra-hero-fallback {
  padding: 25px;
}

body.gra-home .gra-hero-card-label {
  color: #f7d75f;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.gra-home .gra-hero-card-body h2 {
  margin: 10px 0 18px;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.35;
}

body.gra-home .gra-hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body.gra-home .gra-hero-card-footer strong {
  color: #ffffff;
  font-size: 1.45rem;
}

body.gra-home .gra-hero-card-footer a {
  color: #f8d75d;
  font-size: 0.8rem;
  font-weight: 900;
}

body.gra-home .gra-hero-card-body small {
  display: block;
  margin-top: 14px;
  color: #94a3b8;
}

/* Loading skeletons */
body.gra-home .gra-skeleton {
  border-radius: 9px;
  background: linear-gradient(90deg, #e8edf4 25%, #f8fafc 50%, #e8edf4 75%);
  background-size: 200% 100%;
  animation: gra-home-shimmer 1.35s infinite linear;
}

body.gra-home .gra-skeleton-image {
  height: 235px;
  margin-bottom: 18px;
}

body.gra-home .gra-skeleton-line {
  height: 14px;
  margin-top: 10px;
}

body.gra-home .gra-skeleton-line.short {
  width: 62%;
}

@keyframes gra-home-shimmer {
  to {
    background-position: -200% 0;
  }
}

/* Quick paths */
body.gra-home .gra-quick-paths {
  position: relative;
  z-index: 3;
  margin-top: -25px;
}

body.gra-home .gra-quick-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

body.gra-home .gra-quick-path-grid > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--gra-home-border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--gra-home-ink);
  box-shadow: var(--gra-home-shadow);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

body.gra-home .gra-quick-path-grid > a:hover {
  transform: translateY(-3px);
  border-color: #d5ad2a;
}

body.gra-home .gra-path-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: #111827;
  color: var(--gra-home-gold-light);
}

body.gra-home .gra-quick-path-grid strong,
body.gra-home .gra-quick-path-grid small {
  display: block;
}

body.gra-home .gra-quick-path-grid strong {
  font-size: 0.86rem;
}

body.gra-home .gra-quick-path-grid small {
  margin-top: 2px;
  color: var(--gra-home-muted);
  font-size: 0.68rem;
}

/* Budget */
body.gra-home .gra-budget-section {
  padding-top: clamp(86px, 9vw, 112px);
  background: #ffffff;
}

body.gra-home .gra-budget-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.gra-home .gra-budget-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--gra-home-border);
  border-radius: var(--gra-home-radius);
  background: #ffffff;
  color: var(--gra-home-ink);
  box-shadow: 0 7px 24px rgba(15, 23, 42, 0.055);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

body.gra-home .gra-budget-card:hover {
  transform: translateY(-4px);
  border-color: #d5ad2a;
  box-shadow: var(--gra-home-shadow);
}

body.gra-home .gra-budget-card-featured {
  border-color: #d8ad1f;
  background: linear-gradient(150deg, #fffbea, #ffffff 72%);
}

body.gra-home .gra-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 0.61rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.gra-home .gra-budget-label {
  color: var(--gra-home-gold-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.gra-home .gra-budget-card > strong {
  margin: 22px 0 13px;
  font-size: 1.66rem;
  line-height: 1.1;
}

body.gra-home .gra-budget-card p {
  margin-bottom: 20px;
  color: var(--gra-home-muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

body.gra-home .gra-card-link,
body.gra-home .gra-inline-link {
  color: var(--gra-home-gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

body.gra-home .gra-budget-card .gra-card-link {
  margin-top: auto;
}

/* Live products */
body.gra-home .gra-live-products-section {
  background: var(--gra-home-bg);
}

body.gra-home .gra-section-context {
  display: grid;
  gap: 10px;
}

body.gra-home .gra-feed-status {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  color: var(--gra-home-gold-dark);
  font-size: 0.74rem;
  font-weight: 850;
}

body.gra-home .gra-feed-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
  content: "";
}

body.gra-home .gra-product-grid,
body.gra-home .gra-finder-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

body.gra-home .gra-product-skeleton,
body.gra-home .gra-product-card {
  overflow: hidden;
  border: 1px solid var(--gra-home-border);
  border-radius: var(--gra-home-radius);
  background: #ffffff;
  box-shadow: 0 7px 24px rgba(15, 23, 42, 0.055);
}

body.gra-home .gra-product-skeleton {
  padding: 18px;
}

body.gra-home .gra-product-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

body.gra-home .gra-product-card:hover {
  transform: translateY(-4px);
  border-color: #d5ad2a;
  box-shadow: var(--gra-home-shadow);
}

body.gra-home .gra-product-image {
  position: relative;
  display: grid;
  height: 235px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid #edf1f5;
  background: #ffffff;
}

body.gra-home .gra-product-image img {
  width: 100%;
  height: 100%;
  padding: 17px;
  object-fit: contain;
}

body.gra-home .gra-product-category,
body.gra-home .gra-product-score {
  position: absolute;
  top: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.gra-home .gra-product-category {
  left: 12px;
  background: rgba(7, 16, 31, 0.91);
  color: #ffffff;
}

body.gra-home .gra-product-score {
  right: 12px;
  background: #fef3c7;
  color: #6b4f00;
}

body.gra-home .gra-product-content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

body.gra-home .gra-product-meta {
  display: flex;
  min-height: 34px;
  flex-wrap: wrap;
  gap: 5px 10px;
  color: var(--gra-home-muted);
  font-size: 0.66rem;
  line-height: 1.4;
}

body.gra-home .gra-product-card h3 {
  min-height: 4.35em;
  margin: 12px 0 18px;
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

body.gra-home .gra-product-card h3 a {
  color: var(--gra-home-ink);
}

body.gra-home .gra-product-bottom {
  display: grid;
  gap: 13px;
  margin-top: auto;
}

body.gra-home .gra-product-bottom > strong {
  color: var(--gra-home-ink);
  font-size: 1.28rem;
  font-weight: 950;
}

body.gra-home .gra-product-button {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #111827;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
}

body.gra-home .gra-affiliate-notice {
  margin-top: 22px;
  padding: 15px 17px;
  border-left: 3px solid var(--gra-home-gold);
  border-radius: 0 10px 10px 0;
  background: #fffbeb;
  color: #5f4a13;
  font-size: 0.76rem;
  line-height: 1.65;
}

body.gra-home .gra-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

body.gra-home .gra-products-empty {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  background: #ffffff;
  color: var(--gra-home-muted);
  text-align: center;
}

/* Use cases */
body.gra-home .gra-use-case-section {
  background: #ffffff;
}

body.gra-home .gra-use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.gra-home .gra-use-case-grid > a {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--gra-home-border);
  border-radius: var(--gra-home-radius);
  background: #ffffff;
  color: var(--gra-home-ink);
  box-shadow: 0 7px 24px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

body.gra-home .gra-use-case-grid > a:hover {
  transform: translateY(-4px);
  border-color: #d5ad2a;
}

body.gra-home .gra-use-case-number {
  color: #c99a00;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

body.gra-home .gra-use-case-grid h3 {
  margin: 28px 0 11px;
  font-size: 1.18rem;
}

body.gra-home .gra-use-case-grid p {
  margin-bottom: 20px;
  color: var(--gra-home-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

body.gra-home .gra-use-case-grid .gra-card-link {
  margin-top: auto;
}

/* Finder */
body.gra-home .gra-finder-section {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(59, 130, 246, 0.12),
      transparent 29%
    ),
    linear-gradient(145deg, #091120, #15233c);
  color: #ffffff;
}

body.gra-home .gra-finder-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 78px);
  align-items: start;
}

body.gra-home .gra-finder-copy {
  position: sticky;
  top: 120px;
}

body.gra-home .gra-finder-copy h2 {
  margin: 12px 0 18px;
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

body.gra-home .gra-finder-copy > p {
  color: #cbd5e1;
  line-height: 1.75;
}

body.gra-home .gra-finder-advice {
  margin-top: 25px;
  padding: 16px;
  border-left: 3px solid var(--gra-home-gold);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.07);
  color: #b7c3d5;
  font-size: 0.78rem;
  line-height: 1.65;
}

body.gra-home .gra-finder-card {
  padding: clamp(25px, 4vw, 36px);
  border-radius: 21px;
  background: #ffffff;
  color: var(--gra-home-ink);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.28);
}

body.gra-home .gra-finder-field {
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

body.gra-home .gra-finder-field + .gra-finder-field {
  padding-top: 24px;
}

body.gra-home .gra-finder-step {
  display: block;
  margin-bottom: 9px;
  color: var(--gra-home-gold-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.gra-home .gra-finder-card fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

body.gra-home .gra-finder-card legend,
body.gra-home .gra-finder-card label {
  display: block;
  margin-bottom: 12px;
  color: var(--gra-home-ink);
  font-size: 0.92rem;
  font-weight: 900;
}

body.gra-home .gra-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

body.gra-home .gra-choice-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.gra-home .gra-choice {
  min-height: 47px;
  padding: 10px 12px;
  border: 1px solid #dbe2ea;
  border-radius: 9px;
  background: #f8fafc;
  color: #334155;
  font-weight: 850;
  cursor: pointer;
}

body.gra-home .gra-choice:hover,
body.gra-home .gra-choice.selected,
body.gra-home .gra-choice[aria-pressed="true"] {
  border-color: #d8aa00;
  background: #fffbeb;
  color: #5f4500;
}

body.gra-home .gra-budget-output {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

body.gra-home .gra-budget-output strong {
  font-size: 1.55rem;
}

body.gra-home .gra-budget-output span,
body.gra-home .gra-range-labels {
  color: var(--gra-home-muted);
  font-size: 0.68rem;
}

body.gra-home #gra-budget-slider {
  width: 100%;
  accent-color: var(--gra-home-gold);
}

body.gra-home .gra-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

body.gra-home .gra-finder-submit {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 25px;
  border: 1px solid #d4a900;
  border-radius: 9px;
  background: linear-gradient(
    180deg,
    var(--gra-home-gold-light),
    var(--gra-home-gold)
  );
  color: #111827;
  font-weight: 950;
  cursor: pointer;
}

body.gra-home .gra-finder-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

body.gra-home .gra-finder-results {
  margin-top: 25px;
}

body.gra-home .gra-finder-loading,
body.gra-home .gra-finder-error {
  padding: 16px;
  border-radius: 10px;
  background: #f8fafc;
  color: var(--gra-home-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

body.gra-home .gra-finder-error a {
  display: block;
  margin-top: 8px;
  color: var(--gra-home-gold-dark);
  font-weight: 900;
}

body.gra-home .gra-finder-results-heading {
  margin-bottom: 15px;
}

body.gra-home .gra-finder-results-heading h3 {
  margin-bottom: 4px;
}

body.gra-home .gra-finder-results-heading p {
  margin-bottom: 0;
  color: var(--gra-home-muted);
  font-size: 0.75rem;
}

body.gra-home .gra-finder-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.gra-home .gra-finder-product-grid .gra-product-image {
  height: 185px;
}

/* Guides */
body.gra-home .gra-guides-section {
  background: #ffffff;
}

body.gra-home .gra-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(205px, auto);
  gap: 18px;
}

body.gra-home .gra-guide-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--gra-home-border);
  border-radius: var(--gra-home-radius);
  background: #ffffff;
  color: var(--gra-home-ink);
  box-shadow: 0 7px 24px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

body.gra-home .gra-guide-card:hover {
  transform: translateY(-4px);
  border-color: #d5ad2a;
}

body.gra-home .gra-guide-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

body.gra-home .gra-guide-visual {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(250, 204, 21, 0.2),
      transparent 30%
    ),
    linear-gradient(145deg, #091120, #1b2b49);
  color: #ffffff;
}

body.gra-home .gra-guide-visual span {
  color: #f8d75d;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.gra-home .gra-guide-visual strong {
  margin-top: 10px;
  font-size: 4rem;
  line-height: 1;
}

body.gra-home .gra-guide-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

body.gra-home .gra-guide-category {
  color: var(--gra-home-gold-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.gra-home .gra-guide-card h3 {
  margin: 14px 0 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

body.gra-home .gra-guide-card p {
  margin-bottom: 18px;
  color: var(--gra-home-muted);
  font-size: 0.83rem;
  line-height: 1.62;
}

body.gra-home .gra-guide-card .gra-card-link,
body.gra-home .gra-guide-meta {
  margin-top: auto;
}

body.gra-home .gra-guide-meta {
  color: var(--gra-home-muted);
  font-size: 0.68rem;
}

/* Trust */
body.gra-home .gra-trust-section {
  background: var(--gra-home-bg);
}

body.gra-home .gra-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 78px);
  align-items: center;
}

body.gra-home .gra-trust-layout > div:first-child h2 {
  margin: 12px 0 17px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

body.gra-home .gra-trust-layout > div:first-child p {
  color: var(--gra-home-muted);
  line-height: 1.72;
}

body.gra-home .gra-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.gra-home .gra-trust-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  padding: 20px;
  border: 1px solid var(--gra-home-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.045);
}

body.gra-home .gra-trust-grid article > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #fef3c7;
  color: #725400;
  font-weight: 950;
}

body.gra-home .gra-trust-grid h3 {
  margin-bottom: 6px;
  font-size: 0.94rem;
}

body.gra-home .gra-trust-grid p {
  margin-bottom: 0;
  color: var(--gra-home-muted);
  font-size: 0.77rem;
  line-height: 1.58;
}

/* Footer */
body.gra-home .gra-footer {
  padding-top: 64px;
  background: #070c17;
  color: #94a3b8;
}

body.gra-home .gra-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(140px, 0.65fr));
  gap: 46px;
}

body.gra-home .gra-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 950;
}

body.gra-home .gra-footer-logo > span:last-child > span {
  color: #f1c232;
}

body.gra-home .gra-logo-mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 10px;
  background: #f4c430;
  color: #111827;
}

body.gra-home .gra-footer-brand p {
  max-width: 430px;
  margin: 17px 0 0;
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.68;
}

body.gra-home .gra-footer-disclosure {
  color: #64748b !important;
  font-size: 0.71rem !important;
}

body.gra-home .gra-footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

body.gra-home .gra-footer-column h2 {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 0.82rem;
}

body.gra-home .gra-footer-column a {
  color: #94a3b8;
  font-size: 0.76rem;
}

body.gra-home .gra-footer-column a:hover {
  color: #ffffff;
}

body.gra-home .gra-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 45px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #64748b;
  font-size: 0.67rem;
}

/* Responsive */
@media (max-width: 1080px) {
  body.gra-home .gra-quick-path-grid,
  body.gra-home .gra-budget-grid,
  body.gra-home .gra-product-grid,
  body.gra-home .gra-use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.gra-home .gra-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.gra-home .gra-guide-card-featured {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  body.gra-home .gra-hero-grid,
  body.gra-home .gra-finder-layout,
  body.gra-home .gra-trust-layout,
  body.gra-home .gra-section-heading {
    grid-template-columns: 1fr;
  }

  body.gra-home .gra-finder-copy {
    position: static;
  }

  body.gra-home .gra-hero-product {
    max-width: 620px;
  }

  body.gra-home .gra-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.gra-home .gra-finder-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.gra-home .gra-container {
    width: min(100% - 28px, 1180px);
  }

  body.gra-home .gra-section {
    padding-block: 58px;
  }

  body.gra-home .gra-hero {
    padding-block: 53px 66px;
  }

  body.gra-home .gra-hero-content h1 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  body.gra-home .gra-hero-actions,
  body.gra-home .gra-proof-list {
    display: grid;
  }

  body.gra-home .gra-button {
    width: 100%;
  }

  body.gra-home .gra-hero-card-image {
    height: 250px;
  }

  body.gra-home .gra-quick-paths {
    margin-top: -18px;
  }

  body.gra-home .gra-quick-path-grid,
  body.gra-home .gra-budget-grid,
  body.gra-home .gra-product-grid,
  body.gra-home .gra-use-case-grid,
  body.gra-home .gra-guide-grid,
  body.gra-home .gra-trust-grid,
  body.gra-home .gra-footer-grid,
  body.gra-home .gra-finder-product-grid {
    grid-template-columns: 1fr;
  }

  body.gra-home .gra-guide-card-featured {
    grid-column: auto;
  }

  body.gra-home .gra-budget-card,
  body.gra-home .gra-use-case-grid > a {
    min-height: auto;
  }

  body.gra-home .gra-choice-grid,
  body.gra-home .gra-choice-grid-three {
    grid-template-columns: 1fr;
  }

  body.gra-home .gra-hero-card-footer,
  body.gra-home .gra-footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.gra-home .gra-skeleton {
    animation: none;
  }

  body.gra-home .gra-button,
  body.gra-home .gra-budget-card,
  body.gra-home .gra-product-card,
  body.gra-home .gra-guide-card,
  body.gra-home .gra-use-case-grid > a,
  body.gra-home .gra-quick-path-grid > a {
    transition: none;
  }
}

/* END GAMERIGADVISOR GRA HOMEPAGE REPAIR */

/* BEGIN GRA MARKETPLACE DEALS PAGE */

body.gra-deals-page {
  --gra-deals-blue: #0969da;
  --gra-deals-blue-dark: #0756b4;
  --gra-deals-yellow: #f4c430;
  --gra-deals-ink: #111827;
  --gra-deals-body: #334155;
  --gra-deals-muted: #64748b;
  --gra-deals-border: #d9e0e8;
  --gra-deals-soft: #f5f7fa;
  --gra-deals-card: #ffffff;

  margin: 0;
  background: var(--gra-deals-soft);
  color: var(--gra-deals-ink);
}

body.gra-deals-page *,
body.gra-deals-page *::before,
body.gra-deals-page *::after {
  box-sizing: border-box;
}

body.gra-deals-page button,
body.gra-deals-page input,
body.gra-deals-page select {
  font: inherit;
}

body.gra-deals-page button {
  cursor: pointer;
}

body.gra-deals-page .gra-market-container {
  width: min(1380px, calc(100% - 40px));
  margin-inline: auto;
}

body.gra-deals-page .gra-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Hero and marketplace search */

body.gra-deals-page .gra-market-hero {
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--gra-deals-border);
  background:
    radial-gradient(
      circle at 88% 0%,
      rgba(244, 196, 48, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #07101f, #15233d);
  color: #ffffff;
}

body.gra-deals-page .gra-market-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #9fb0c8;
  font-size: 12px;
}

body.gra-deals-page .gra-market-breadcrumbs a {
  color: #cbd5e1;
  text-decoration: none;
}

body.gra-deals-page .gra-market-hero-copy {
  max-width: 830px;
}

body.gra-deals-page .gra-market-eyebrow {
  display: inline-block;
  color: #d9a900;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.gra-deals-page .gra-market-hero .gra-market-eyebrow {
  color: #f7d75f;
}

body.gra-deals-page .gra-market-hero h1 {
  margin: 8px 0 12px;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.055em;
}

body.gra-deals-page .gra-market-hero-copy > p {
  max-width: 750px;
  margin: 0;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.65;
}

body.gra-deals-page .gra-market-search {
  display: grid;
  grid-template-columns:
    minmax(260px, 1fr)
    210px
    130px;
  margin-top: 28px;
  overflow: hidden;
  border: 2px solid #ffffff;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

body.gra-deals-page .gra-market-search-field {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding-left: 17px;
  background: #ffffff;
  color: #64748b;
}

body.gra-deals-page .gra-market-search-field > span {
  font-size: 23px;
}

body.gra-deals-page .gra-market-search input,
body.gra-deals-page .gra-market-search select {
  width: 100%;
  min-height: 55px;
  border: 0;
  outline: 0;
  background: #ffffff;
  color: #111827;
}

body.gra-deals-page .gra-market-search input {
  min-width: 0;
  padding: 0 14px 0 0;
  font-size: 16px;
}

body.gra-deals-page .gra-market-search select {
  padding: 0 14px;
  border-left: 1px solid #d8dee7;
  font-weight: 700;
}

body.gra-deals-page .gra-market-search button {
  border: 0;
  background: var(--gra-deals-blue);
  color: #ffffff;
  font-weight: 900;
}

body.gra-deals-page .gra-market-search button:hover {
  background: var(--gra-deals-blue-dark);
}

body.gra-deals-page .gra-market-related {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 18px;
  align-items: center;
  color: #aebbd0;
  font-size: 12px;
}

body.gra-deals-page .gra-market-related > span {
  font-weight: 800;
}

body.gra-deals-page .gra-market-related button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.gra-deals-page .gra-market-disclosure {
  margin-top: 22px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.065);
  color: #b9c5d7;
  font-size: 12px;
  line-height: 1.6;
}

body.gra-deals-page .gra-market-disclosure strong {
  color: #ffffff;
}

/* Browser layout */

body.gra-deals-page .gra-market-browser {
  padding: 30px 0 76px;
}

body.gra-deals-page .gra-market-layout {
  display: grid;
  grid-template-columns:
    245px
    minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

/* Filter rail */

body.gra-deals-page .gra-market-filters {
  position: sticky;
  top: 98px;
  padding: 0 18px 18px;
  border: 1px solid var(--gra-deals-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.045);
}

body.gra-deals-page .gra-filter-heading {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--gra-deals-border);
}

body.gra-deals-page .gra-filter-heading h2 {
  margin: 0;
  color: #111827;
  font-size: 21px;
}

body.gra-deals-page .gra-filter-heading button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gra-deals-blue);
  font-size: 12px;
  font-weight: 800;
}

body.gra-deals-page .gra-filter-section {
  padding: 18px 0;
  border-bottom: 1px solid #e8edf3;
}

body.gra-deals-page .gra-filter-section h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}

body.gra-deals-page .gra-filter-category-list {
  display: grid;
  gap: 3px;
}

body.gra-deals-page .gra-filter-category-list button {
  padding: 7px 9px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #334155;
  text-align: left;
}

body.gra-deals-page .gra-filter-category-list button:hover,
body.gra-deals-page .gra-filter-category-list button.is-active {
  background: #eef5ff;
  color: var(--gra-deals-blue);
  font-weight: 850;
}

body.gra-deals-page .gra-filter-price {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);
  gap: 7px;
  align-items: end;
}

body.gra-deals-page .gra-filter-price label {
  display: grid;
  gap: 5px;
}

body.gra-deals-page .gra-filter-price label span {
  color: #64748b;
  font-size: 10px;
}

body.gra-deals-page .gra-filter-price > span {
  padding-bottom: 10px;
  color: #94a3b8;
  font-size: 11px;
}

body.gra-deals-page .gra-filter-section input[type="number"],
body.gra-deals-page .gra-filter-section select {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-size: 12px;
}

body.gra-deals-page .gra-filter-check {
  display: flex;
  min-height: 33px;
  align-items: center;
  gap: 9px;
  color: #334155;
  font-size: 13px;
}

body.gra-deals-page .gra-filter-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--gra-deals-blue);
}

body.gra-deals-page .gra-filter-actions {
  display: grid;
  gap: 8px;
  padding-top: 18px;
}

body.gra-deals-page .gra-filter-actions button {
  min-height: 42px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

body.gra-deals-page .gra-filter-apply {
  border: 1px solid var(--gra-deals-blue);
  background: var(--gra-deals-blue);
  color: #ffffff;
}

body.gra-deals-page .gra-filter-clear {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
}

body.gra-deals-page .gra-filter-mobile-heading,
body.gra-deals-page .gra-filter-mobile-open,
body.gra-deals-page .gra-filter-overlay {
  display: none;
}

/* Result toolbar */

body.gra-deals-page .gra-results-summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--gra-deals-border);
}

body.gra-deals-page .gra-results-query {
  margin: 0 0 4px;
  color: #64748b;
  font-size: 12px;
}

body.gra-deals-page .gra-results-query strong {
  color: #334155;
}

body.gra-deals-page .gra-results-summary h2 {
  margin: 0;
  color: #111827;
  font-size: 22px;
}

body.gra-deals-page .gra-results-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.gra-deals-page .gra-results-controls label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #64748b;
  font-size: 12px;
}

body.gra-deals-page .gra-results-controls select {
  min-height: 40px;
  padding: 7px 34px 7px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-weight: 700;
}

body.gra-deals-page .gra-view-toggle {
  display: flex;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}

body.gra-deals-page .gra-view-toggle button {
  display: grid;
  width: 41px;
  height: 39px;
  place-items: center;
  border: 0;
  border-right: 1px solid #cbd5e1;
  background: #ffffff;
  color: #64748b;
}

body.gra-deals-page .gra-view-toggle button:last-child {
  border-right: 0;
}

body.gra-deals-page .gra-view-toggle button.is-active {
  background: #eaf3ff;
  color: var(--gra-deals-blue);
}

/* Active filters and status */

body.gra-deals-page .gra-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  min-height: 18px;
  margin: 14px 0;
  color: #64748b;
  font-size: 11px;
}

body.gra-deals-page .gra-active-filter {
  padding: 5px 9px;
  border: 1px solid #cfe0f6;
  border-radius: 999px;
  background: #eff6ff;
  color: #0756b4;
  font-weight: 750;
  text-transform: capitalize;
}

body.gra-deals-page .gra-market-status {
  margin: 15px 0;
  padding: 14px 17px;
  border: 1px solid #d8e4f2;
  border-radius: 10px;
  background: #f3f8ff;
  color: #334155;
  font-size: 13px;
}

body.gra-deals-page .gra-market-status strong,
body.gra-deals-page .gra-market-status span {
  display: block;
}

/* Marketplace listing rows */

body.gra-deals-page .gra-market-list {
  display: grid;
  gap: 13px;
}

body.gra-deals-page .gra-market-item {
  display: grid;
  grid-template-columns:
    220px
    minmax(0, 1fr)
    185px;
  gap: 21px;
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--gra-deals-border);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.045);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

body.gra-deals-page .gra-market-item:hover {
  border-color: #aebdcd;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
}

body.gra-deals-page .gra-market-item-image {
  display: grid;
  min-width: 0;
  height: 190px;
  overflow: hidden;
  place-items: center;
  border-radius: 10px;
  background: #f5f6f8;
}

body.gra-deals-page .gra-market-item-image img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

body.gra-deals-page .gra-market-image-fallback {
  color: #94a3b8;
  font-size: 12px;
}

body.gra-deals-page .gra-market-item-details {
  min-width: 0;
}

body.gra-deals-page .gra-market-item-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  align-items: center;
  margin-bottom: 7px;
  color: #64748b;
  font-size: 11px;
}

body.gra-deals-page .gra-market-score {
  padding: 4px 7px;
  border-radius: 5px;
  background: #edf7ed;
  color: #166534;
  font-weight: 850;
}

body.gra-deals-page .gra-market-item h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.38;
}

body.gra-deals-page .gra-market-item h3 a {
  color: #111827;
  text-decoration: none;
}

body.gra-deals-page .gra-market-item h3 a:hover {
  color: var(--gra-deals-blue);
  text-decoration: underline;
}

body.gra-deals-page .gra-market-item-meta,
body.gra-deals-page .gra-market-item-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 15px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

body.gra-deals-page .gra-market-item-meta strong {
  color: #334155;
}

body.gra-deals-page .gra-market-item-benefits {
  margin-top: 13px;
  color: #334155;
}

body.gra-deals-page .gra-market-item-benefits span:first-child {
  color: #166534;
  font-weight: 750;
}

body.gra-deals-page .gra-market-item-purchase {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
}

body.gra-deals-page .gra-market-price {
  color: #111827;
  font-size: 24px;
  line-height: 1.1;
}

body.gra-deals-page .gra-market-price-note {
  margin-top: 5px;
  color: #64748b;
  font-size: 10px;
}

body.gra-deals-page .gra-market-primary-link,
body.gra-deals-page .gra-market-secondary-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

body.gra-deals-page .gra-market-primary-link {
  margin-top: auto;
  border: 1px solid var(--gra-deals-blue);
  background: var(--gra-deals-blue);
  color: #ffffff;
}

body.gra-deals-page .gra-market-primary-link:hover {
  background: var(--gra-deals-blue-dark);
}

body.gra-deals-page .gra-market-secondary-link {
  margin-top: 7px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
}

/* Grid result mode */

body.gra-deals-page .gra-market-list.is-grid-view {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

body.gra-deals-page .gra-market-list.is-grid-view .gra-market-item {
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
}

body.gra-deals-page .gra-market-list.is-grid-view .gra-market-item-image {
  height: 225px;
}

body.gra-deals-page .gra-market-list.is-grid-view .gra-market-item-purchase {
  min-height: 150px;
}

body.gra-deals-page .gra-market-list.is-grid-view .gra-market-primary-link {
  margin-top: auto;
}

/* Empty, loading and pagination */

body.gra-deals-page .gra-market-empty {
  padding: 70px 25px;
  border: 1px solid var(--gra-deals-border);
  border-radius: 13px;
  background: #ffffff;
  text-align: center;
}

body.gra-deals-page .gra-market-empty strong {
  display: block;
  color: #111827;
  font-size: 20px;
}

body.gra-deals-page .gra-market-empty p {
  color: #64748b;
}

body.gra-deals-page .gra-market-empty button {
  min-height: 41px;
  padding: 8px 17px;
  border: 1px solid var(--gra-deals-blue);
  border-radius: 8px;
  background: var(--gra-deals-blue);
  color: #ffffff;
  font-weight: 850;
}

body.gra-deals-page .gra-market-loading-grid {
  display: grid;
  gap: 12px;
}

body.gra-deals-page .gra-market-loading-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 17px;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  background: #ffffff;
}

body.gra-deals-page .gra-market-loading-card > span,
body.gra-deals-page .gra-market-loading-card i {
  display: block;
  border-radius: 8px;
  background: linear-gradient(90deg, #eef1f5, #f8fafc, #eef1f5);
  background-size: 200% 100%;
  animation: gra-deals-loading 1.3s linear infinite;
}

body.gra-deals-page .gra-market-loading-card > span {
  height: 150px;
}

body.gra-deals-page .gra-market-loading-card > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

body.gra-deals-page .gra-market-loading-card i {
  height: 17px;
}

body.gra-deals-page .gra-market-loading-card i:nth-child(1) {
  width: 90%;
}

body.gra-deals-page .gra-market-loading-card i:nth-child(2) {
  width: 65%;
}

body.gra-deals-page .gra-market-loading-card i:nth-child(3) {
  width: 42%;
}

@keyframes gra-deals-loading {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

body.gra-deals-page .gra-market-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-top: 28px;
}

body.gra-deals-page .gra-market-pagination button {
  min-width: 39px;
  min-height: 39px;
  padding: 7px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: #ffffff;
  color: #334155;
  font-weight: 750;
}

body.gra-deals-page .gra-market-pagination button.is-active {
  border-color: var(--gra-deals-blue);
  background: var(--gra-deals-blue);
  color: #ffffff;
}

body.gra-deals-page .gra-market-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

/* Buying guidance */

body.gra-deals-page .gra-market-guidance {
  padding: 72px 0;
  border-top: 1px solid var(--gra-deals-border);
  background: #ffffff;
}

body.gra-deals-page .gra-market-guidance > div {
  display: grid;
  grid-template-columns:
    minmax(0, 0.7fr)
    minmax(0, 1.3fr);
  gap: 60px;
}

body.gra-deals-page .gra-market-guidance h2 {
  margin: 8px 0 13px;
  color: #111827;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

body.gra-deals-page .gra-market-guidance p {
  color: #64748b;
  line-height: 1.7;
}

body.gra-deals-page .gra-market-guidance-grid {
  display: grid;
  gap: 12px;
}

body.gra-deals-page .gra-market-guidance-grid article {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 16px;
  padding: 19px;
  border: 1px solid var(--gra-deals-border);
  border-radius: 12px;
  background: #f8fafc;
}

body.gra-deals-page .gra-market-guidance-grid article > strong {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 10px;
  background: #111827;
  color: var(--gra-deals-yellow);
}

body.gra-deals-page .gra-market-guidance-grid h3 {
  margin: 0 0 4px;
  color: #111827;
  font-size: 15px;
}

body.gra-deals-page .gra-market-guidance-grid p {
  margin: 0;
  font-size: 13px;
}

/* Footer fallback for deals page */

body.gra-deals-page .gra-footer {
  padding: 64px 0 0;
  background: #070c17;
  color: #94a3b8;
}

body.gra-deals-page .gra-footer-grid {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.4fr)
    repeat(3, minmax(140px, 0.65fr));
  gap: 45px;
}

body.gra-deals-page .gra-footer-brand p {
  max-width: 420px;
  color: #94a3b8;
}

body.gra-deals-page .gra-footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

body.gra-deals-page .gra-footer-column h2 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 13px;
}

body.gra-deals-page .gra-footer-column a {
  color: #94a3b8;
  font-size: 12px;
  text-decoration: none;
}

body.gra-deals-page .gra-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 45px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #64748b;
  font-size: 11px;
}

/* Responsive */

@media (max-width: 1120px) {
  body.gra-deals-page .gra-market-item {
    grid-template-columns:
      180px
      minmax(0, 1fr)
      165px;
  }

  body.gra-deals-page .gra-market-list.is-grid-view {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.gra-deals-page.gra-filter-open {
    overflow: hidden;
  }

  body.gra-deals-page .gra-market-container {
    width: min(100% - 28px, 1380px);
  }

  body.gra-deals-page .gra-market-search {
    grid-template-columns: 1fr 170px;
  }

  body.gra-deals-page .gra-market-search-field {
    grid-column: 1 / -1;
    border-bottom: 1px solid #d8dee7;
  }

  body.gra-deals-page .gra-market-search select {
    border-left: 0;
  }

  body.gra-deals-page .gra-market-layout {
    grid-template-columns: 1fr;
  }

  body.gra-deals-page .gra-filter-mobile-open {
    display: flex;
    width: 100%;
    min-height: 44px;
    margin-bottom: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    background: #ffffff;
    color: #111827;
    font-weight: 850;
  }

  body.gra-deals-page .gra-market-filters {
    position: fixed;
    z-index: 1100;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(340px, 88vw);
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    box-shadow: 20px 0 55px rgba(15, 23, 42, 0.25);
    transform: translateX(-105%);
    transition: transform 180ms ease;
  }

  body.gra-deals-page .gra-market-filters.is-open {
    transform: translateX(0);
  }

  body.gra-deals-page .gra-filter-mobile-heading {
    display: flex;
    min-height: 65px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
  }

  body.gra-deals-page .gra-filter-mobile-heading button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 27px;
  }

  body.gra-deals-page .gra-filter-overlay {
    position: fixed;
    z-index: 1090;
    inset: 0;
    display: block;
    visibility: hidden;
    background: rgba(2, 6, 23, 0.52);
    opacity: 0;
    transition:
      opacity 180ms ease,
      visibility 180ms ease;
  }

  body.gra-deals-page .gra-filter-overlay.is-visible {
    visibility: visible;
    opacity: 1;
  }

  body.gra-deals-page .gra-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.gra-deals-page .gra-market-hero {
    padding-top: 24px;
  }

  body.gra-deals-page .gra-market-search {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body.gra-deals-page .gra-market-search-field,
  body.gra-deals-page .gra-market-search select,
  body.gra-deals-page .gra-market-search button {
    min-height: 51px;
    border: 0;
    border-radius: 9px;
  }

  body.gra-deals-page .gra-market-search-field {
    margin-bottom: 8px;
  }

  body.gra-deals-page .gra-market-search select {
    margin-bottom: 8px;
    padding-inline: 13px;
  }

  body.gra-deals-page .gra-results-summary {
    display: grid;
    align-items: start;
  }

  body.gra-deals-page .gra-results-controls {
    justify-content: space-between;
  }

  body.gra-deals-page .gra-results-controls label {
    min-width: 0;
  }

  body.gra-deals-page .gra-results-controls select {
    max-width: 185px;
  }

  body.gra-deals-page .gra-market-item {
    grid-template-columns: 135px minmax(0, 1fr);
    gap: 14px;
  }

  body.gra-deals-page .gra-market-item-image {
    height: 135px;
  }

  body.gra-deals-page .gra-market-item-purchase {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns:
      minmax(0, 1fr)
      auto;
    gap: 7px 12px;
    align-items: center;
    padding-top: 13px;
    border-top: 1px solid #e2e8f0;
  }

  body.gra-deals-page .gra-market-price-note {
    grid-column: 1;
  }

  body.gra-deals-page .gra-market-primary-link {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }

  body.gra-deals-page .gra-market-secondary-link {
    grid-column: 1 / -1;
  }

  body.gra-deals-page .gra-market-list.is-grid-view {
    grid-template-columns: 1fr;
  }

  body.gra-deals-page .gra-market-loading-card {
    grid-template-columns: 120px 1fr;
  }

  body.gra-deals-page .gra-market-loading-card > span {
    height: 120px;
  }

  body.gra-deals-page .gra-market-guidance > div {
    grid-template-columns: 1fr;
  }

  body.gra-deals-page .gra-footer-grid {
    grid-template-columns: 1fr;
  }

  body.gra-deals-page .gra-footer-bottom {
    display: grid;
  }
}

@media (max-width: 480px) {
  body.gra-deals-page .gra-market-item {
    grid-template-columns: 105px minmax(0, 1fr);
    padding: 12px;
  }

  body.gra-deals-page .gra-market-item-image {
    height: 105px;
  }

  body.gra-deals-page .gra-market-item h3 {
    font-size: 14px;
  }

  body.gra-deals-page .gra-market-item-meta {
    display: grid;
    gap: 3px;
  }

  body.gra-deals-page .gra-market-item-benefits {
    display: grid;
  }

  body.gra-deals-page .gra-market-primary-link {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  body.gra-deals-page .gra-market-secondary-link {
    grid-column: 1 / -1;
  }
}

/* END GRA MARKETPLACE DEALS PAGE */

/* BEGIN GRA PRODUCT DETAIL V4 */

body.gra-product-detail-page {
  --gra-pd-ink: #111827;
  --gra-pd-body: #334155;
  --gra-pd-muted: #64748b;
  --gra-pd-border: #dce3eb;
  --gra-pd-soft: #f4f7fb;
  --gra-pd-card: #ffffff;
  --gra-pd-yellow: #f4c430;
  --gra-pd-yellow-dark: #d6a600;
  --gra-pd-blue: #0969da;
  --gra-pd-green: #15803d;

  margin: 0;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(244, 196, 48, 0.1),
      transparent 26%
    ),
    var(--gra-pd-soft);
  color: var(--gra-pd-ink);
}

body.gra-product-detail-page *,
body.gra-product-detail-page *::before,
body.gra-product-detail-page *::after {
  box-sizing: border-box;
}

body.gra-product-detail-page .gra-pd-legacy-hidden {
  display: none !important;
}

body.gra-product-detail-page #parameter-deal-detail {
  width: min(1280px, calc(100% - 40px));
  margin: 30px auto 82px;
  padding: 0;
}

body.gra-product-detail-page .gra-pd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--gra-pd-muted);
  font-size: 12px;
}

body.gra-product-detail-page .gra-pd-breadcrumb a {
  color: #475569;
  text-decoration: none;
}

body.gra-product-detail-page .gra-pd-breadcrumb a:hover {
  color: var(--gra-pd-blue);
  text-decoration: underline;
}

/* Main product panel */

body.gra-product-detail-page .gra-pd-shell {
  display: grid;
  grid-template-columns:
    minmax(0, 0.94fr)
    minmax(440px, 1.06fr);
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--gra-pd-border);
  border-radius: 22px;
  background: var(--gra-pd-card);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.13);
}

body.gra-product-detail-page .gra-pd-media,
body.gra-product-detail-page .gra-pd-information {
  min-width: 0;
}

body.gra-product-detail-page .gra-pd-media {
  display: flex;
  min-height: 640px;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-right: 1px solid var(--gra-pd-border);
  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    #ffffff 45%,
    #f2f5f8 100%
  );
}

body.gra-product-detail-page .gra-pd-image-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 500px;
  flex: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 17px;
  background: #ffffff;
}

body.gra-product-detail-page .gra-pd-image-stage img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 420px;
  max-height: 520px;
  padding: 25px;
  object-fit: contain !important;
  object-position: center !important;
  background: #ffffff;
  visibility: visible !important;
  opacity: 1 !important;
}

body.gra-product-detail-page .gra-pd-image-fallback {
  display: grid;
  min-height: 420px;
  place-content: center;
  gap: 7px;
  padding: 30px;
  color: var(--gra-pd-muted);
  text-align: center;
}

body.gra-product-detail-page .gra-pd-image-fallback[hidden] {
  display: none !important;
}

body.gra-product-detail-page .gra-pd-image-fallback strong {
  color: var(--gra-pd-ink);
  font-size: 17px;
}

body.gra-product-detail-page .gra-pd-image-note {
  margin: 15px 6px 0;
  color: var(--gra-pd-muted);
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

/* Product information */

body.gra-product-detail-page .gra-pd-information {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(36px, 5vw, 62px) clamp(32px, 4.5vw, 58px);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

body.gra-product-detail-page .gra-pd-heading-row {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 17px;
}

body.gra-product-detail-page .gra-pd-heading-row > div:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

body.gra-product-detail-page .gra-pd-eyebrow,
body.gra-product-detail-page .gra-pd-condition {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.gra-product-detail-page .gra-pd-eyebrow {
  border: 1px solid #ead47a;
  background: #fff9dc;
  color: #735408;
}

body.gra-product-detail-page .gra-pd-condition {
  border: 1px solid #dbe3ec;
  background: #f8fafc;
  color: #475569;
}

body.gra-product-detail-page .gra-pd-information h1 {
  max-width: 100%;
  margin: 0 0 20px;
  color: var(--gra-pd-ink);
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

body.gra-product-detail-page .gra-pd-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
  margin-bottom: 10px;
}

body.gra-product-detail-page .gra-pd-price {
  color: var(--gra-pd-ink);
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.06em;
}

body.gra-product-detail-page .gra-pd-price-row > span {
  color: var(--gra-pd-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.gra-product-detail-page .gra-pd-shipping {
  width: fit-content;
  margin: 0 0 23px;
  padding: 7px 10px;
  border-radius: 7px;
  background: #ecfdf3;
  color: var(--gra-pd-green);
  font-size: 12px;
  font-weight: 850;
}

body.gra-product-detail-page .gra-pd-score {
  display: grid;
  min-width: 72px;
  flex: 0 0 auto;
  justify-items: center;
  padding: 10px 12px;
  border: 1px solid #dce3eb;
  border-radius: 12px;
  background: #f8fafc;
}

body.gra-product-detail-page .gra-pd-score strong {
  color: var(--gra-pd-ink);
  font-size: 23px;
  line-height: 1;
}

body.gra-product-detail-page .gra-pd-score span {
  margin-top: 4px;
  color: var(--gra-pd-muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

body.gra-product-detail-page .gra-pd-score-high,
body.gra-product-detail-page .gra-pd-score-good {
  border-color: #bbdfc3;
  background: #f0fdf4;
}

body.gra-product-detail-page .gra-pd-score-high strong,
body.gra-product-detail-page .gra-pd-score-good strong {
  color: #166534;
}

/* Listing facts */

body.gra-product-detail-page .gra-pd-summary {
  margin: 7px 0 24px;
}

body.gra-product-detail-page .gra-pd-summary h2 {
  margin: 0 0 12px;
  color: var(--gra-pd-ink);
  font-size: 14px;
  font-weight: 900;
}

body.gra-product-detail-page .gra-pd-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.gra-product-detail-page .gra-pd-fact {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--gra-pd-border);
  border-radius: 10px;
  background: #ffffff;
}

body.gra-product-detail-page .gra-pd-fact span,
body.gra-product-detail-page .gra-pd-fact strong {
  display: block;
}

body.gra-product-detail-page .gra-pd-fact span {
  margin-bottom: 4px;
  color: var(--gra-pd-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

body.gra-product-detail-page .gra-pd-fact strong {
  color: var(--gra-pd-ink);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

body.gra-product-detail-page .gra-pd-empty-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: var(--gra-pd-muted);
  font-size: 12px;
  line-height: 1.6;
}

/* CTA */

body.gra-product-detail-page .gra-pd-primary-button {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding: 14px 18px;
  border: 1px solid var(--gra-pd-yellow-dark);
  border-radius: 11px;
  background: linear-gradient(180deg, #f9d95d, #eab308);
  color: var(--gra-pd-ink);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 9px 22px rgba(234, 179, 8, 0.22);
}

body.gra-product-detail-page .gra-pd-primary-button strong {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.1);
}

body.gra-product-detail-page .gra-pd-primary-button:hover {
  color: var(--gra-pd-ink);
  filter: brightness(1.025);
  transform: translateY(-1px);
}

body.gra-product-detail-page .gra-pd-disclosure {
  margin: 13px auto 0;
  color: var(--gra-pd-muted);
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

/* Lower information */

body.gra-product-detail-page .gra-pd-lower-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(300px, 0.55fr);
  gap: 18px;
  margin-top: 20px;
}

body.gra-product-detail-page .gra-pd-panel {
  min-width: 0;
  padding: 27px;
  border: 1px solid var(--gra-pd-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 7px 22px rgba(15, 23, 42, 0.045);
}

body.gra-product-detail-page .gra-pd-panel-heading > span {
  display: block;
  margin-bottom: 5px;
  color: #8a680d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.gra-product-detail-page .gra-pd-panel-heading h2 {
  margin: 0;
  color: var(--gra-pd-ink);
  font-size: 21px;
  line-height: 1.2;
}

body.gra-product-detail-page .gra-pd-spec-note {
  margin: 13px 0 18px;
  color: var(--gra-pd-muted);
  font-size: 12px;
  line-height: 1.65;
}

body.gra-product-detail-page .gra-pd-specifications {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.gra-product-detail-page .gra-pd-spec {
  min-width: 0;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 11px;
  background: #f8fafc;
}

body.gra-product-detail-page .gra-pd-spec span,
body.gra-product-detail-page .gra-pd-spec strong {
  display: block;
}

body.gra-product-detail-page .gra-pd-spec span {
  margin-bottom: 5px;
  color: var(--gra-pd-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

body.gra-product-detail-page .gra-pd-spec strong {
  color: var(--gra-pd-ink);
  font-size: 13px;
  line-height: 1.45;
}

body.gra-product-detail-page .gra-pd-spec-empty {
  grid-column: 1 / -1;
  padding: 19px;
  border: 1px dashed #cbd5e1;
  border-radius: 11px;
  background: #f8fafc;
}

body.gra-product-detail-page .gra-pd-spec-empty strong {
  display: block;
  color: var(--gra-pd-ink);
  font-size: 13px;
}

body.gra-product-detail-page .gra-pd-spec-empty p {
  margin: 7px 0 0;
  color: var(--gra-pd-muted);
  font-size: 12px;
  line-height: 1.6;
}

body.gra-product-detail-page .gra-pd-checklist ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

body.gra-product-detail-page .gra-pd-checklist li {
  position: relative;
  padding-left: 25px;
  color: #475569;
  font-size: 12px;
  line-height: 1.55;
}

body.gra-product-detail-page .gra-pd-checklist li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #ecfdf3;
  color: #15803d;
  font-size: 10px;
  font-weight: 950;
}

/* Tablet */

@media (max-width: 980px) {
  body.gra-product-detail-page .gra-pd-shell {
    grid-template-columns: 1fr;
  }

  body.gra-product-detail-page .gra-pd-media {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--gra-pd-border);
  }

  body.gra-product-detail-page .gra-pd-image-stage {
    min-height: 430px;
  }

  body.gra-product-detail-page .gra-pd-image-stage img {
    min-height: 350px;
    max-height: 430px;
  }

  body.gra-product-detail-page .gra-pd-lower-layout {
    grid-template-columns: 1fr;
  }
}

/* Mobile */

@media (max-width: 680px) {
  body.gra-product-detail-page #parameter-deal-detail {
    width: min(100% - 24px, 1280px);
    margin-top: 20px;
    margin-bottom: 58px;
  }

  body.gra-product-detail-page .gra-pd-shell {
    border-radius: 16px;
  }

  body.gra-product-detail-page .gra-pd-media {
    padding: 15px;
  }

  body.gra-product-detail-page .gra-pd-image-stage {
    min-height: 290px;
    border-radius: 12px;
  }

  body.gra-product-detail-page .gra-pd-image-stage img {
    min-height: 250px;
    max-height: 300px;
    padding: 12px;
  }

  body.gra-product-detail-page .gra-pd-information {
    padding: 27px 20px 23px;
  }

  body.gra-product-detail-page .gra-pd-heading-row {
    display: grid;
    gap: 13px;
  }

  body.gra-product-detail-page .gra-pd-score {
    width: fit-content;
    justify-items: start;
  }

  body.gra-product-detail-page .gra-pd-information h1 {
    font-size: 1.45rem;
  }

  body.gra-product-detail-page .gra-pd-price-row {
    display: grid;
    gap: 5px;
  }

  body.gra-product-detail-page .gra-pd-price {
    font-size: 2.35rem;
  }

  body.gra-product-detail-page .gra-pd-facts,
  body.gra-product-detail-page .gra-pd-specifications {
    grid-template-columns: 1fr;
  }

  body.gra-product-detail-page .gra-pd-panel {
    padding: 22px 18px;
  }
}

/* END GRA PRODUCT DETAIL V4 */

/* BEGIN GRA GAMING LAPTOP HUB V2 */

body.gra-laptop-hub-page {
  --gra-lh-ink: #111827;
  --gra-lh-body: #334155;
  --gra-lh-muted: #64748b;
  --gra-lh-border: #dce3eb;
  --gra-lh-soft: #f4f7fb;
  --gra-lh-card: #ffffff;
  --gra-lh-dark: #07101f;
  --gra-lh-dark-two: #15233d;
  --gra-lh-yellow: #f4c430;
  --gra-lh-yellow-dark: #d8a700;
  --gra-lh-blue: #0969da;
  --gra-lh-green: #15803d;

  margin: 0;
  background: var(--gra-lh-soft);
  color: var(--gra-lh-ink);
}

body.gra-laptop-hub-page *,
body.gra-laptop-hub-page *::before,
body.gra-laptop-hub-page *::after {
  box-sizing: border-box;
}

body.gra-laptop-hub-page button,
body.gra-laptop-hub-page input,
body.gra-laptop-hub-page select {
  font: inherit;
}

body.gra-laptop-hub-page button {
  cursor: pointer;
}

body.gra-laptop-hub-page .gra-lh-container {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header fallback */

body.gra-laptop-hub-page .gra-global-skip-link {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: -9999px;
  padding: 11px 16px;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
}

body.gra-laptop-hub-page .gra-global-skip-link:focus {
  left: 10px;
}

body.gra-laptop-hub-page .gra-global-utility-bar {
  background: #050a14;
  color: #cbd5e1;
}

body.gra-laptop-hub-page .gra-global-container {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

body.gra-laptop-hub-page .gra-global-utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 11px;
  font-weight: 750;
}

body.gra-laptop-hub-page .gra-global-utility-inner span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--gra-lh-yellow);
}

body.gra-laptop-hub-page .gra-global-header {
  position: sticky;
  z-index: 700;
  top: 0;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.055);
}

body.gra-laptop-hub-page .gra-global-header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.gra-laptop-hub-page .gra-global-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  font-weight: 950;
  text-decoration: none;
}

body.gra-laptop-hub-page .gra-global-logo-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #f9d75b, #e3ac00);
  color: #111827;
  box-shadow: 0 7px 18px rgba(234, 179, 8, 0.24);
}

body.gra-laptop-hub-page .gra-global-logo-text span {
  color: #9a7200;
}

body.gra-laptop-hub-page .gra-global-navigation {
  display: flex;
  align-items: center;
  gap: 3px;
}

body.gra-laptop-hub-page .gra-global-navigation a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

body.gra-laptop-hub-page .gra-global-navigation a:hover,
body.gra-laptop-hub-page .gra-global-navigation a.is-current {
  background: #f1f5f9;
  color: #111827;
}

body.gra-laptop-hub-page .gra-global-navigation .gra-global-deals-link {
  margin-left: 7px;
  border: 1px solid var(--gra-lh-yellow-dark);
  background: linear-gradient(180deg, #f9d95d, #eab308);
  color: #111827;
}

body.gra-laptop-hub-page .gra-global-menu-toggle {
  display: none;
}

/* Hero */

body.gra-laptop-hub-page .gra-lh-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 76px;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(244, 196, 48, 0.19),
      transparent 28%
    ),
    radial-gradient(circle at 8% 95%, rgba(37, 99, 235, 0.14), transparent 30%),
    linear-gradient(135deg, var(--gra-lh-dark), var(--gra-lh-dark-two));
  color: #ffffff;
}

body.gra-laptop-hub-page .gra-lh-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 45px;
  color: #91a2ba;
  font-size: 11px;
}

body.gra-laptop-hub-page .gra-lh-breadcrumbs a {
  color: #cbd5e1;
  text-decoration: none;
}

body.gra-laptop-hub-page .gra-lh-hero-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.13fr)
    minmax(350px, 0.87fr);
  gap: 68px;
  align-items: center;
}

body.gra-laptop-hub-page .gra-lh-eyebrow {
  display: inline-block;
  color: #9b7300;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.gra-laptop-hub-page .gra-lh-hero .gra-lh-eyebrow {
  color: #f8da65;
}

body.gra-laptop-hub-page .gra-lh-hero h1 {
  max-width: 780px;
  margin: 11px 0 22px;
  color: #ffffff;
  font-size: clamp(46px, 6vw, 74px);
  font-weight: 950;
  line-height: 0.99;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

body.gra-laptop-hub-page .gra-lh-hero-copy > p {
  max-width: 700px;
  margin: 0;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.72;
}

body.gra-laptop-hub-page .gra-lh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

body.gra-laptop-hub-page .gra-lh-primary-button,
body.gra-laptop-hub-page .gra-lh-secondary-button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

body.gra-laptop-hub-page .gra-lh-primary-button {
  border: 1px solid var(--gra-lh-yellow-dark);
  background: linear-gradient(180deg, #f9d95d, #eab308);
  color: #111827;
}

body.gra-laptop-hub-page .gra-lh-secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.075);
  color: #ffffff;
}

body.gra-laptop-hub-page .gra-lh-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 26px 0 0;
  padding: 0;
  color: #aebbd0;
  font-size: 11px;
  list-style: none;
}

body.gra-laptop-hub-page .gra-lh-hero-points li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--gra-lh-yellow);
}

/* Snapshot */

body.gra-laptop-hub-page .gra-lh-snapshot {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.27);
}

body.gra-laptop-hub-page .gra-lh-snapshot-label {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(244, 196, 48, 0.14);
  color: #f7d75f;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.gra-laptop-hub-page .gra-lh-snapshot h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2;
}

body.gra-laptop-hub-page .gra-lh-snapshot-list {
  display: grid;
  gap: 9px;
}

body.gra-laptop-hub-page .gra-lh-snapshot-list > div {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

body.gra-laptop-hub-page .gra-lh-snapshot-list strong {
  color: #ffffff;
  font-size: 12px;
}

body.gra-laptop-hub-page .gra-lh-snapshot-list span {
  color: #aebbd0;
  font-size: 11px;
  line-height: 1.55;
}

/* Sections */

body.gra-laptop-hub-page .gra-lh-section {
  padding: 80px 0;
}

body.gra-laptop-hub-page .gra-lh-budget-section,
body.gra-laptop-hub-page .gra-lh-guide-section,
body.gra-laptop-hub-page .gra-lh-checklist-section {
  background: var(--gra-lh-soft);
}

body.gra-laptop-hub-page .gra-lh-use-section,
body.gra-laptop-hub-page .gra-lh-deals-section,
body.gra-laptop-hub-page .gra-lh-faq-section {
  background: #ffffff;
}

body.gra-laptop-hub-page .gra-lh-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(290px, 0.56fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 34px;
}

body.gra-laptop-hub-page .gra-lh-section-heading h2,
body.gra-laptop-hub-page .gra-lh-checklist-layout h2,
body.gra-laptop-hub-page .gra-lh-faq-layout h2,
body.gra-laptop-hub-page .gra-lh-editorial h2 {
  margin: 8px 0 0;
  color: var(--gra-lh-ink);
  font-size: clamp(31px, 4vw, 47px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

body.gra-laptop-hub-page .gra-lh-section-heading > p,
body.gra-laptop-hub-page .gra-lh-checklist-layout > div:first-child > p,
body.gra-laptop-hub-page .gra-lh-faq-layout > div:first-child > p {
  margin: 0;
  color: var(--gra-lh-muted);
  line-height: 1.68;
}

/* Budget cards */

body.gra-laptop-hub-page .gra-lh-budget-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

body.gra-laptop-hub-page .gra-lh-budget-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 330px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--gra-lh-border);
  border-radius: 17px;
  background: #ffffff;
  color: var(--gra-lh-ink);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

body.gra-laptop-hub-page .gra-lh-budget-card:hover {
  border-color: #aebdcd;
  box-shadow: 0 17px 38px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

body.gra-laptop-hub-page .gra-lh-budget-featured {
  border-color: rgba(218, 166, 0, 0.65);
  background: linear-gradient(150deg, #fffced, #ffffff);
}

body.gra-laptop-hub-page .gra-lh-budget-range {
  color: #8a680d;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.gra-laptop-hub-page .gra-lh-recommended {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #111827;
  color: #f7d75f;
  font-size: 8px;
  font-weight: 950;
  text-transform: uppercase;
}

body.gra-laptop-hub-page .gra-lh-budget-card h3 {
  margin: 16px 0 9px;
  color: var(--gra-lh-ink);
  font-size: 21px;
  line-height: 1.15;
}

body.gra-laptop-hub-page .gra-lh-budget-card p {
  margin: 0;
  color: var(--gra-lh-muted);
  font-size: 12px;
  line-height: 1.62;
}

body.gra-laptop-hub-page .gra-lh-budget-card ul {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  padding: 0;
  color: #475569;
  font-size: 11px;
  list-style: none;
}

body.gra-laptop-hub-page .gra-lh-budget-card li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--gra-lh-green);
  font-weight: 900;
}

body.gra-laptop-hub-page .gra-lh-budget-card > strong {
  margin-top: auto;
  color: #111827;
  font-size: 11px;
}

/* Use-case cards */

body.gra-laptop-hub-page .gra-lh-use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

body.gra-laptop-hub-page .gra-lh-use-card {
  padding: 24px;
  border: 1px solid var(--gra-lh-border);
  border-radius: 15px;
  background: #ffffff;
}

body.gra-laptop-hub-page .gra-lh-use-card > span {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 11px;
  background: #111827;
  color: var(--gra-lh-yellow);
  font-size: 18px;
}

body.gra-laptop-hub-page .gra-lh-use-card h3 {
  margin: 0 0 8px;
  color: var(--gra-lh-ink);
  font-size: 17px;
}

body.gra-laptop-hub-page .gra-lh-use-card p {
  margin: 0;
  color: var(--gra-lh-muted);
  font-size: 12px;
  line-height: 1.65;
}

/* Guide cards */

body.gra-laptop-hub-page .gra-lh-guide-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    repeat(2, minmax(0, 0.75fr));
  gap: 17px;
}

body.gra-laptop-hub-page .gra-lh-guide-card {
  display: flex;
  min-width: 0;
  min-height: 230px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--gra-lh-border);
  border-radius: 16px;
  background: #ffffff;
  color: var(--gra-lh-ink);
  text-decoration: none;
  box-shadow: 0 7px 22px rgba(15, 23, 42, 0.045);
}

body.gra-laptop-hub-page .gra-lh-guide-lead {
  grid-row: span 2;
  min-height: 477px;
  justify-content: flex-end;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(244, 196, 48, 0.18),
      transparent 28%
    ),
    linear-gradient(145deg, #0a1020, #1a2947);
}

body.gra-laptop-hub-page .gra-lh-guide-type {
  color: #8a680d;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.gra-laptop-hub-page .gra-lh-guide-lead .gra-lh-guide-type {
  color: #f7d75f;
}

body.gra-laptop-hub-page .gra-lh-guide-card h3 {
  margin: 12px 0 9px;
  color: var(--gra-lh-ink);
  font-size: 20px;
  line-height: 1.15;
}

body.gra-laptop-hub-page .gra-lh-guide-lead h3 {
  max-width: 480px;
  color: #ffffff;
  font-size: 35px;
}

body.gra-laptop-hub-page .gra-lh-guide-card p {
  margin: 0;
  color: var(--gra-lh-muted);
  font-size: 12px;
  line-height: 1.65;
}

body.gra-laptop-hub-page .gra-lh-guide-lead p {
  max-width: 520px;
  color: #b8c4d5;
}

body.gra-laptop-hub-page .gra-lh-guide-card strong {
  margin-top: auto;
  padding-top: 18px;
  color: #111827;
  font-size: 11px;
}

body.gra-laptop-hub-page .gra-lh-guide-lead strong {
  color: #f7d75f;
}

/* Deal toolbar */

body.gra-laptop-hub-page .gra-lh-deal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 16px;
}

body.gra-laptop-hub-page .gra-lh-deal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

body.gra-laptop-hub-page .gra-lh-deal-filters button {
  min-height: 37px;
  padding: 8px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  color: #475569;
  font-size: 11px;
  font-weight: 800;
}

body.gra-laptop-hub-page .gra-lh-deal-filters button:hover,
body.gra-laptop-hub-page .gra-lh-deal-filters button.is-active {
  border-color: var(--gra-lh-blue);
  background: #eaf3ff;
  color: #0756b4;
}

body.gra-laptop-hub-page .gra-lh-sort {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: var(--gra-lh-muted);
  font-size: 11px;
}

body.gra-laptop-hub-page .gra-lh-sort select {
  min-height: 39px;
  padding: 7px 30px 7px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-weight: 750;
}

body.gra-laptop-hub-page .gra-lh-results-heading {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  padding: 0 2px;
  border-bottom: 1px solid var(--gra-lh-border);
}

body.gra-laptop-hub-page .gra-lh-results-heading p {
  margin: 0;
  color: var(--gra-lh-muted);
  font-size: 11px;
}

body.gra-laptop-hub-page .gra-lh-results-heading strong {
  color: #334155;
}

body.gra-laptop-hub-page .gra-lh-results-heading a {
  color: var(--gra-lh-blue);
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

/* Product cards */

body.gra-laptop-hub-page .gra-lh-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body.gra-laptop-hub-page .gra-lh-product-card {
  display: flex;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--gra-lh-border);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 7px 22px rgba(15, 23, 42, 0.05);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

body.gra-laptop-hub-page .gra-lh-product-card:hover {
  border-color: #aebdcd;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.11);
  transform: translateY(-2px);
}

body.gra-laptop-hub-page .gra-lh-product-image {
  display: grid;
  height: 215px;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid #e8edf3;
  background: #f6f8fa;
}

body.gra-laptop-hub-page .gra-lh-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  background: #ffffff;
}

body.gra-laptop-hub-page .gra-lh-image-fallback {
  padding: 20px;
  color: var(--gra-lh-muted);
  font-size: 11px;
  text-align: center;
}

body.gra-laptop-hub-page .gra-lh-product-content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 17px;
}

body.gra-laptop-hub-page .gra-lh-product-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 9px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--gra-lh-muted);
  font-size: 9px;
  text-transform: uppercase;
}

body.gra-laptop-hub-page .gra-lh-product-score {
  padding: 4px 6px;
  border-radius: 5px;
  background: #edf7ed;
  color: #166534;
  font-weight: 900;
}

body.gra-laptop-hub-page .gra-lh-product-card h3 {
  margin: 0 0 11px;
  font-size: 14px;
  line-height: 1.38;
}

body.gra-laptop-hub-page .gra-lh-product-card h3 a {
  color: var(--gra-lh-ink);
  text-decoration: none;
}

body.gra-laptop-hub-page .gra-lh-product-card h3 a:hover {
  color: var(--gra-lh-blue);
  text-decoration: underline;
}

body.gra-laptop-hub-page .gra-lh-product-seller {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 9px;
  color: var(--gra-lh-muted);
  font-size: 10px;
}

body.gra-laptop-hub-page .gra-lh-product-buy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
}

body.gra-laptop-hub-page .gra-lh-product-buy > div {
  display: grid;
  gap: 4px;
}

body.gra-laptop-hub-page .gra-lh-product-buy strong {
  color: var(--gra-lh-ink);
  font-size: 20px;
  line-height: 1;
}

body.gra-laptop-hub-page .gra-lh-product-buy span {
  color: var(--gra-lh-green);
  font-size: 9px;
  font-weight: 750;
}

body.gra-laptop-hub-page .gra-lh-product-buy > a {
  display: inline-flex;
  min-height: 37px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid var(--gra-lh-yellow-dark);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8d448, #eab308);
  color: #111827;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

/* Loading and errors */

body.gra-laptop-hub-page .gra-lh-status {
  margin: 0 0 16px;
  padding: 13px 15px;
  border: 1px solid #d8e4f2;
  border-radius: 10px;
  background: #f3f8ff;
  color: #334155;
  font-size: 12px;
}

body.gra-laptop-hub-page .gra-lh-status[hidden] {
  display: none !important;
}

body.gra-laptop-hub-page .gra-lh-status strong,
body.gra-laptop-hub-page .gra-lh-status span,
body.gra-laptop-hub-page .gra-lh-status a {
  display: block;
}

body.gra-laptop-hub-page .gra-lh-status span {
  margin-top: 4px;
  color: var(--gra-lh-muted);
}

body.gra-laptop-hub-page .gra-lh-status a {
  margin-top: 8px;
  color: var(--gra-lh-blue);
  font-weight: 850;
}

body.gra-laptop-hub-page .gra-lh-loading-card {
  display: grid;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--gra-lh-border);
  border-radius: 15px;
  background: #ffffff;
}

body.gra-laptop-hub-page .gra-lh-loading-card > span,
body.gra-laptop-hub-page .gra-lh-loading-card i {
  display: block;
  background: linear-gradient(90deg, #eef1f5, #f8fafc, #eef1f5);
  background-size: 200% 100%;
  animation: gra-lh-loading 1.3s linear infinite;
}

body.gra-laptop-hub-page .gra-lh-loading-card > span {
  height: 215px;
}

body.gra-laptop-hub-page .gra-lh-loading-card > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 17px;
}

body.gra-laptop-hub-page .gra-lh-loading-card i {
  height: 15px;
  border-radius: 5px;
}

body.gra-laptop-hub-page .gra-lh-loading-card i:nth-child(1) {
  width: 90%;
}

body.gra-laptop-hub-page .gra-lh-loading-card i:nth-child(2) {
  width: 68%;
}

body.gra-laptop-hub-page .gra-lh-loading-card i:nth-child(3) {
  width: 45%;
}

@keyframes gra-lh-loading {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

/* Checklist */

body.gra-laptop-hub-page .gra-lh-checklist-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.68fr)
    minmax(0, 1.32fr);
  gap: 65px;
  align-items: start;
}

body.gra-laptop-hub-page .gra-lh-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.gra-laptop-hub-page .gra-lh-checklist article {
  display: grid;
  grid-template-columns:
    40px
    minmax(0, 1fr);
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--gra-lh-border);
  border-radius: 13px;
  background: #ffffff;
}

body.gra-laptop-hub-page .gra-lh-checklist article > strong {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: #111827;
  color: var(--gra-lh-yellow);
}

body.gra-laptop-hub-page .gra-lh-checklist h3 {
  margin: 0 0 5px;
  color: var(--gra-lh-ink);
  font-size: 14px;
}

body.gra-laptop-hub-page .gra-lh-checklist p {
  margin: 0;
  color: var(--gra-lh-muted);
  font-size: 11px;
  line-height: 1.58;
}

/* FAQ */

body.gra-laptop-hub-page .gra-lh-faq-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.65fr)
    minmax(0, 1.35fr);
  gap: 65px;
}

body.gra-laptop-hub-page .gra-lh-faq-list {
  display: grid;
  gap: 9px;
}

body.gra-laptop-hub-page .gra-lh-faq-list details {
  overflow: hidden;
  border: 1px solid var(--gra-lh-border);
  border-radius: 11px;
  background: #ffffff;
}

body.gra-laptop-hub-page .gra-lh-faq-list summary {
  position: relative;
  padding: 17px 50px 17px 18px;
  color: var(--gra-lh-ink);
  font-size: 13px;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

body.gra-laptop-hub-page .gra-lh-faq-list summary::-webkit-details-marker {
  display: none;
}

body.gra-laptop-hub-page .gra-lh-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  color: #64748b;
  font-size: 22px;
  transform: translateY(-50%);
}

body.gra-laptop-hub-page .gra-lh-faq-list details[open] summary::after {
  content: "−";
}

body.gra-laptop-hub-page .gra-lh-faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--gra-lh-muted);
  font-size: 12px;
  line-height: 1.7;
}

/* Editorial */

body.gra-laptop-hub-page .gra-lh-editorial {
  padding: 0 0 80px;
  background: #ffffff;
}

body.gra-laptop-hub-page .gra-lh-editorial-card {
  display: grid;
  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(0, 1.18fr);
  gap: 55px;
  padding: 35px;
  border-radius: 18px;
  background: linear-gradient(145deg, #0a1020, #17243e);
  color: #ffffff;
}

body.gra-laptop-hub-page .gra-lh-editorial .gra-lh-eyebrow {
  color: #f7d75f;
}

body.gra-laptop-hub-page .gra-lh-editorial h2 {
  color: #ffffff;
  font-size: 31px;
}

body.gra-laptop-hub-page .gra-lh-editorial p {
  margin: 0 0 13px;
  color: #b9c5d7;
  font-size: 12px;
  line-height: 1.7;
}

body.gra-laptop-hub-page .gra-lh-editorial a {
  display: inline-block;
  margin-top: 5px;
  color: #f7d75f;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

/* Footer */

body.gra-laptop-hub-page .gra-footer {
  padding: 64px 0 0;
  background: #070c17;
  color: #94a3b8;
}

body.gra-laptop-hub-page .gra-footer-grid {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.4fr)
    repeat(3, minmax(140px, 0.65fr));
  gap: 45px;
}

body.gra-laptop-hub-page .gra-footer-brand p {
  max-width: 420px;
  color: #94a3b8;
}

body.gra-laptop-hub-page .gra-footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

body.gra-laptop-hub-page .gra-footer-column h2 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 13px;
}

body.gra-laptop-hub-page .gra-footer-column a {
  color: #94a3b8;
  font-size: 12px;
  text-decoration: none;
}

body.gra-laptop-hub-page .gra-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 45px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #64748b;
  font-size: 11px;
}

/* Responsive */

@media (max-width: 1080px) {
  body.gra-laptop-hub-page .gra-lh-budget-grid,
  body.gra-laptop-hub-page .gra-lh-use-grid,
  body.gra-laptop-hub-page .gra-lh-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.gra-laptop-hub-page .gra-lh-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.gra-laptop-hub-page .gra-lh-guide-lead {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  body.gra-laptop-hub-page .gra-global-menu-toggle {
    display: grid;
    width: 43px;
    height: 41px;
    place-content: center;
    gap: 4px;
    border: 1px solid #dbe2ea;
    border-radius: 8px;
    background: #ffffff;
  }

  body.gra-laptop-hub-page .gra-global-menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    background: #111827;
  }

  body.gra-laptop-hub-page .gra-global-navigation {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    padding: 12px;
    border: 1px solid #dce3eb;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
  }

  body.gra-laptop-hub-page .gra-global-navigation.is-open {
    display: grid;
  }

  body.gra-laptop-hub-page .gra-global-navigation .gra-global-deals-link {
    margin-left: 0;
  }

  body.gra-laptop-hub-page .gra-lh-hero-layout,
  body.gra-laptop-hub-page .gra-lh-section-heading,
  body.gra-laptop-hub-page .gra-lh-checklist-layout,
  body.gra-laptop-hub-page .gra-lh-faq-layout,
  body.gra-laptop-hub-page .gra-lh-editorial-card {
    grid-template-columns: 1fr;
  }

  body.gra-laptop-hub-page .gra-lh-deal-toolbar {
    display: grid;
  }

  body.gra-laptop-hub-page .gra-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  body.gra-laptop-hub-page .gra-lh-container,
  body.gra-laptop-hub-page .gra-global-container,
  body.gra-laptop-hub-page .gra-container {
    width: min(100% - 26px, 1220px);
  }

  body.gra-laptop-hub-page .gra-global-utility-inner span:nth-child(n + 3) {
    display: none;
  }

  body.gra-laptop-hub-page .gra-lh-hero {
    padding: 25px 0 55px;
  }

  body.gra-laptop-hub-page .gra-lh-breadcrumbs {
    margin-bottom: 30px;
  }

  body.gra-laptop-hub-page .gra-lh-hero h1 {
    font-size: 41px;
  }

  body.gra-laptop-hub-page .gra-lh-hero-actions {
    display: grid;
  }

  body.gra-laptop-hub-page .gra-lh-primary-button,
  body.gra-laptop-hub-page .gra-lh-secondary-button {
    width: 100%;
  }

  body.gra-laptop-hub-page .gra-lh-section {
    padding: 60px 0;
  }

  body.gra-laptop-hub-page .gra-lh-budget-grid,
  body.gra-laptop-hub-page .gra-lh-use-grid,
  body.gra-laptop-hub-page .gra-lh-guide-grid,
  body.gra-laptop-hub-page .gra-lh-product-grid,
  body.gra-laptop-hub-page .gra-lh-checklist,
  body.gra-laptop-hub-page .gra-footer-grid {
    grid-template-columns: 1fr;
  }

  body.gra-laptop-hub-page .gra-lh-guide-lead {
    grid-column: auto;
    min-height: 330px;
  }

  body.gra-laptop-hub-page .gra-lh-results-heading {
    display: grid;
    align-items: start;
    padding-bottom: 13px;
  }

  body.gra-laptop-hub-page .gra-lh-sort {
    justify-content: space-between;
  }

  body.gra-laptop-hub-page .gra-lh-product-card {
    min-height: 390px;
  }

  body.gra-laptop-hub-page .gra-lh-product-image {
    height: 205px;
  }

  body.gra-laptop-hub-page .gra-lh-editorial {
    padding-bottom: 60px;
  }

  body.gra-laptop-hub-page .gra-footer-bottom {
    display: grid;
  }
}

/* END GRA GAMING LAPTOP HUB V2 */

/* BEGIN CONSOLIDATED CSS: homepage.css */
:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --dark: #08111f;
  --dark-soft: #121d32;
  --text: #111827;
  --muted: #64748b;
  --border: #dfe5ed;
  --yellow: #f4c430;
  --yellow-dark: #d9a900;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.home-v4 {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body.home-v4 img {
  max-width: 100%;
}

body.home-v4 a {
  color: inherit;
}

body.home-v4 .container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: -9999px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-weight: 800;
}

.skip-link:focus {
  left: 12px;
}

.buyer-strip {
  background: #050a14;
  color: #cbd5e1;
}

.buyer-strip-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 7px 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.buyer-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.buyer-strip-inner span::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 900;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(14px);
}

.home-header .header-inner {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.logo-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #f9d75b, #e2ab00);
  color: #111827;
  box-shadow: 0 7px 18px rgba(234, 179, 8, 0.25);
}

.nav-links {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 13px;
  border-radius: 8px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover {
  background: #f1f5f9;
  color: #111827;
}

.nav-links .nav-cta {
  margin-left: 8px;
  border: 1px solid #d5a500;
  background: linear-gradient(180deg, #f9d95d, #eab308);
  color: #111827;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
}

.buyer-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 78px;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(244, 196, 48, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 12% 90%,
      rgba(37, 99, 235, 0.15),
      transparent 30%
    ),
    linear-gradient(135deg, #070d18, #16223a);
  color: #ffffff;
}

.buyer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.buyer-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(330px, 0.8fr);
  gap: clamp(45px, 7vw, 80px);
  align-items: center;
}

.hero-kicker,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b48600;
  font-size: 0.69rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 18px;
  color: #f7d75f;
}

.hero-kicker::before,
.section-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
}

.buyer-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 5.15rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.buyer-hero-copy > p {
  max-width: 680px;
  margin: 0;
  color: #cbd5e1;
  font-size: clamp(1rem, 1.7vw, 1.17rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 950;
  text-decoration: none;
}

.btn-primary {
  border: 1px solid #d5a500;
  background: linear-gradient(180deg, #f9d95d, #eab308);
  color: #111827;
  box-shadow: 0 11px 30px rgba(234, 179, 8, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: #aebbd0;
  font-size: 0.75rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--yellow);
}

.hero-decision-card {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.decision-label {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244, 196, 48, 0.14);
  color: #f7d75f;
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-decision-card h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.decision-links {
  display: grid;
  gap: 10px;
}

.decision-links a {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 15px 44px 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  text-decoration: none;
}

.decision-links a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 17px;
  color: var(--yellow);
  transform: translateY(-50%);
}

.decision-links strong {
  font-size: 0.86rem;
}

.decision-links span {
  color: #aebbd0;
  font-size: 0.7rem;
}

.decision-deals-link {
  display: inline-block;
  margin-top: 17px;
  color: #f5d35d;
  font-size: 0.77rem;
  font-weight: 850;
  text-decoration: none;
}

.home-section {
  padding: 82px 0;
}

.home-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.55fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 34px;
}

.home-section-heading h2 {
  margin: 8px 0 0;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.home-section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.budget-grid,
.intent-grid,
.deal-grid,
#home-deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.budget-card,
.intent-grid > a {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: #111827;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
}

.budget-card:hover,
.intent-grid > a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.budget-card.featured {
  border-color: rgba(234, 179, 8, 0.62);
  background: linear-gradient(150deg, #fffcef, #ffffff);
}

.budget-overline {
  margin-bottom: 13px;
  color: #64748b;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.budget-card > strong {
  margin-bottom: 13px;
  font-size: 1.7rem;
  line-height: 1.1;
}

.budget-card p,
.intent-grid p {
  margin: 0 0 22px;
  color: #64748b;
  font-size: 0.79rem;
  line-height: 1.65;
}

.budget-badge {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 0.57rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intent-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 12px;
  background: #111827;
  color: var(--yellow);
  font-size: 1.1rem;
}

.intent-grid h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.intent-grid > a > span:last-child {
  margin-top: auto;
  font-size: 0.76rem;
  font-weight: 900;
}

.finder-section {
  background: linear-gradient(145deg, #0a1020, #15213a);
  color: #ffffff;
}

.finder-shell {
  display: grid;
  grid-template-columns:
    minmax(250px, 0.7fr)
    minmax(0, 1.3fr);
  gap: 68px;
}

.finder-section .section-eyebrow {
  color: #f4d14f;
}

.finder-intro h2 {
  margin: 10px 0 17px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.finder-intro > p {
  color: #bac5d6;
}

.finder-note {
  margin-top: 25px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: #a6b1c4;
  font-size: 0.7rem;
}

.quiz-card {
  padding: 34px;
  border-radius: 21px;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.23);
}

.quiz-steps {
  display: grid;
  gap: 28px;
}

.wizard-step {
  display: grid;
  gap: 12px;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.wizard-option {
  min-height: 47px;
  border: 1px solid #dbe2ea;
  border-radius: 9px;
  background: #f8fafc;
  font-weight: 800;
  cursor: pointer;
}

.wizard-option:hover,
.wizard-option.active,
.wizard-option.is-active {
  border-color: #e1b20b;
  background: #fff9df;
}

.wizard-submit {
  min-height: 51px;
  border: 1px solid #d5a500;
  border-radius: 9px;
  background: linear-gradient(180deg, #f9d95d, #eab308);
  color: #111827;
  font-weight: 950;
  cursor: pointer;
}

.wizard-results {
  display: none;
}

.wizard-results.active,
.wizard-results.is-visible {
  display: block;
}

.product-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.055);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-image,
.product-card-image {
  display: grid;
  min-height: 205px;
  place-items: center;
  padding: 18px;
  border-bottom: 1px solid #edf1f5;
  background: #ffffff;
}

.product-image img,
.product-card-image img,
.product-card img {
  width: 100%;
  height: 185px;
  object-fit: contain;
}

.product-card-content,
.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-card h3,
.product-title {
  margin: 0 0 10px;
  color: #111827;
  font-size: 0.84rem;
  line-height: 1.45;
}

.product-price,
.price {
  margin-top: auto;
  font-size: 1.2rem;
  font-weight: 950;
}

.section-footer-btn {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}

.editorial-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.3fr)
    repeat(2, minmax(0, 0.7fr));
  gap: 18px;
}

.editorial-card {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: #111827;
  text-decoration: none;
}

.editorial-lead {
  grid-row: span 2;
}

.editorial-visual {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: linear-gradient(145deg, #0a1020, #1a2947);
  color: #ffffff;
}

.editorial-visual strong {
  color: #f7d858;
  font-size: 3.45rem;
}

.editorial-body {
  padding: 23px;
}

.guide-tag {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-card h3 {
  margin: 0 0 9px;
}

.editorial-card p {
  color: #64748b;
  font-size: 0.77rem;
}

.trust-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.75fr)
    minmax(0, 1.25fr);
  gap: 68px;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-points article {
  padding: 21px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
}

.newsletter-cta {
  padding: 42px 0;
  background: #ffffff;
}

.newsletter-cta-inner {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;
  gap: 42px;
  align-items: center;
  padding: 34px;
  border-radius: 20px;
  background: #0b1324;
  color: #ffffff;
}

.newsletter-cta h2 {
  color: #ffffff;
}

.newsletter-cta-form {
  display: flex;
  gap: 9px;
}

.newsletter-cta-form input {
  width: 300px;
  min-height: 49px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.newsletter-cta-form button {
  min-height: 49px;
  padding: 12px 18px;
  border: 1px solid #d5a500;
  border-radius: 9px;
  background: linear-gradient(180deg, #f9d95d, #eab308);
  color: #111827;
  font-weight: 950;
}

.site-footer {
  padding: 64px 0 0;
  background: #070c17;
  color: #94a3b8;
}

.footer-inner {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  grid-template-columns:
    minmax(260px, 1.45fr)
    repeat(3, minmax(140px, 0.65fr));
  gap: 48px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h4 {
  color: #ffffff;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 45px auto 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  justify-content: space-between;
  gap: 25px;
  color: #64748b;
  font-size: 0.65rem;
}

@media (max-width: 1050px) {
  .budget-grid,
  .intent-grid,
  .deal-grid,
  #home-deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-lead {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .home-header nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .home-header nav.is-open,
  .home-header nav.open {
    display: block;
  }

  .nav-links {
    display: grid;
  }

  .buyer-hero-grid,
  .finder-shell,
  .trust-layout,
  .home-section-heading,
  .newsletter-cta-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.home-v4 .container,
  .home-header .header-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 26px, 1180px);
  }

  .buyer-strip-inner span:nth-child(n + 3) {
    display: none;
  }

  .buyer-hero {
    padding: 58px 0 54px;
  }

  .buyer-hero h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero-actions {
    display: grid;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .budget-grid,
  .intent-grid,
  .deal-grid,
  #home-deal-grid,
  .editorial-grid,
  .trust-points,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .editorial-lead {
    grid-column: auto;
  }

  .wizard-options {
    grid-template-columns: 1fr;
  }

  .newsletter-cta-form {
    display: grid;
  }

  .newsletter-cta-form input {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }
}
/* END CONSOLIDATED CSS: homepage.css */

/* BEGIN GRA SITEWIDE STABILIZATION */
:root {
  --gra-site-ink: #111827;
  --gra-site-text: #334155;
  --gra-site-muted: #64748b;
  --gra-site-border: #dce3eb;
  --gra-site-soft: #f4f7fb;
  --gra-site-card: #ffffff;
  --gra-site-dark: #07101f;
  --gra-site-dark-2: #15233d;
  --gra-site-yellow: #f4c430;
  --gra-site-yellow-dark: #d7a600;
  --gra-site-blue: #0969da;
}

html {
  scroll-behavior: smooth;
}
body.site-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--gra-site-soft);
  color: var(--gra-site-text);
}
body.site-page *,
body.site-page *::before,
body.site-page *::after {
  box-sizing: border-box;
}
body.site-page img {
  max-width: 100%;
}
body.site-page main {
  min-height: 55vh;
}

.gra-global-container,
.gra-container {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.gra-global-navigation-shell {
  position: relative;
  z-index: 800;
}
.gra-global-skip-link {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: -9999px;
  padding: 11px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--gra-site-ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}
.gra-global-skip-link:focus {
  left: 10px;
}
.gra-global-utility-bar {
  background: #050a14;
  color: #cbd5e1;
}
.gra-global-utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 11px;
  font-weight: 750;
}
.gra-global-utility-inner span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--gra-site-yellow);
}
.gra-global-header {
  position: sticky;
  z-index: 750;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.055);
  backdrop-filter: blur(14px);
}
.gra-global-header-inner {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.gra-global-logo {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 10px;
  color: var(--gra-site-ink);
  font-weight: 950;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.gra-global-logo-mark {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #111c31, #070b14);
  color: var(--gra-site-yellow);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 7px 18px rgba(15, 23, 42, 0.18);
}
.gra-global-logo-text > span {
  color: #8b6708;
}
.gra-global-navigation {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.8vw, 25px);
}
.gra-global-navigation a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: #334155;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.gra-global-navigation a:not(.gra-global-deals-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: #eab308;
  opacity: 0;
  transform: scaleX(0.35);
  transition: 0.18s ease;
}
.gra-global-navigation a:hover,
.gra-global-navigation a:focus-visible,
.gra-global-navigation a.is-current {
  color: #805d07;
}
.gra-global-navigation a:hover::after,
.gra-global-navigation a:focus-visible::after,
.gra-global-navigation a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}
.gra-global-navigation .gra-global-deals-link {
  min-height: 43px;
  padding: 10px 16px;
  border: 1px solid var(--gra-site-yellow-dark);
  border-radius: 9px;
  background: linear-gradient(180deg, #f9d95d, #eab308);
  color: var(--gra-site-ink);
  font-weight: 950;
}
.gra-global-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid #dbe2ea;
  border-radius: 9px;
  background: #fff;
}
.gra-global-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #111827;
}

body.site-page .site-table-wrapper {
  max-width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--gra-site-border);
  border-radius: 12px;
  background: #fff;
}
body.site-page .site-table-wrapper table {
  width: 100%;
  min-width: 650px;
  margin: 0;
  border-collapse: collapse;
}
body.site-page .site-table-wrapper th,
body.site-page .site-table-wrapper td {
  padding: 13px 15px;
  border-bottom: 1px solid #e8edf3;
  text-align: left;
  vertical-align: top;
}
body.site-page .site-table-wrapper th {
  background: #f8fafc;
  color: var(--gra-site-ink);
}

body.site-page .site-back-to-top {
  position: fixed;
  z-index: 850;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid #d7a600;
  border-radius: 50%;
  background: #f4c430;
  color: #111827;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.18s ease;
}
body.site-page .site-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Legacy hub reorganization */
body.gra-legacy-hub-page main {
  padding-bottom: 74px;
  background: var(--gra-site-soft);
}
body.gra-legacy-hub-page .gra-auto-hub-hero,
body.gra-legacy-hub-page .hub-hero,
body.gra-legacy-hub-page .category-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 70px max(20px, calc((100vw - 1220px) / 2));
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(244, 196, 48, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, var(--gra-site-dark), var(--gra-site-dark-2));
  color: #fff;
}
body.gra-legacy-hub-page .gra-auto-hub-hero h1,
body.gra-legacy-hub-page .hub-hero h1 {
  max-width: 850px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -0.055em;
}
body.gra-legacy-hub-page .gra-auto-hub-hero p,
body.gra-legacy-hub-page .hub-hero p {
  max-width: 760px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.72;
}
body.gra-legacy-hub-page .gra-auto-hub-section,
body.gra-legacy-hub-page main > section:not(.gra-auto-hub-hero) {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 0;
}
body.gra-legacy-hub-page .gra-auto-hub-section > h2,
body.gra-legacy-hub-page main h2 {
  margin: 0 0 25px;
  color: var(--gra-site-ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
body.gra-legacy-hub-page .gra-auto-hub-grid,
body.gra-legacy-hub-page .budget-grid,
body.gra-legacy-hub-page .guide-grid,
body.gra-legacy-hub-page .comparison-grid,
body.gra-legacy-hub-page .brand-grid,
body.gra-legacy-hub-page .general-guides-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px !important;
  align-items: stretch;
}
body.gra-legacy-hub-page .gra-auto-hub-card,
body.gra-legacy-hub-page .budget-card,
body.gra-legacy-hub-page .guide-card,
body.gra-legacy-hub-page .comparison-card {
  display: flex !important;
  min-width: 0;
  min-height: 230px;
  flex-direction: column;
  padding: 24px !important;
  border: 1px solid var(--gra-site-border) !important;
  border-radius: 16px !important;
  background: var(--gra-site-card) !important;
  color: var(--gra-site-ink) !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.055);
}
body.gra-legacy-hub-page .gra-auto-hub-card:hover {
  border-color: #c3a23b !important;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.11);
  transform: translateY(-3px);
}
body.gra-legacy-hub-page .gra-auto-hub-card h3,
body.gra-legacy-hub-page .budget-card h3,
body.gra-legacy-hub-page .guide-card h3 {
  margin: 10px 0 9px;
  color: var(--gra-site-ink) !important;
}
body.gra-legacy-hub-page .gra-auto-hub-card p,
body.gra-legacy-hub-page .budget-card p,
body.gra-legacy-hub-page .guide-card p {
  color: var(--gra-site-muted) !important;
  line-height: 1.65;
}
body.gra-legacy-hub-page .gra-auto-faq-section h3 {
  margin: 18px 0 7px;
  padding-top: 18px;
  border-top: 1px solid var(--gra-site-border);
  color: var(--gra-site-ink);
}
body.gra-legacy-hub-page .gra-hub-marketplace-cta {
  margin-top: 18px;
  padding: 25px;
  border: 1px solid #cbd9ea;
  border-radius: 15px;
  background: linear-gradient(145deg, #fff, #f2f7fd);
}
body.gra-legacy-hub-page .gra-hub-marketplace-cta strong {
  display: block;
  color: var(--gra-site-ink);
  font-size: 18px;
}
body.gra-legacy-hub-page .gra-hub-marketplace-cta p {
  color: var(--gra-site-muted);
}
body.gra-legacy-hub-page .gra-hub-marketplace-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gra-site-blue);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.gra-footer {
  padding: 64px 0 0;
  background: #070c17;
  color: #94a3b8;
}
.gra-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.65fr));
  gap: 44px;
}
.gra-footer-brand p {
  max-width: 430px;
  color: #94a3b8;
  line-height: 1.65;
}
.gra-footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}
.gra-footer-column h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 13px;
}
.gra-footer-column a {
  color: #94a3b8;
  font-size: 12px;
  text-decoration: none;
}
.gra-footer-column a:hover {
  color: #fff;
}
.gra-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 44px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #64748b;
  font-size: 11px;
}

@media (max-width: 1000px) {
  .gra-global-menu-toggle {
    display: block;
  }
  .gra-global-navigation {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    padding: 12px;
    border: 1px solid var(--gra-site-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  }
  .gra-global-navigation.is-open {
    display: grid;
  }
  .gra-global-navigation a {
    padding: 9px 11px;
  }
  .gra-global-navigation .gra-global-deals-link {
    margin-top: 5px;
  }
  body.gra-legacy-hub-page .gra-auto-hub-grid,
  body.gra-legacy-hub-page .budget-grid,
  body.gra-legacy-hub-page .guide-grid,
  body.gra-legacy-hub-page .comparison-grid,
  body.gra-legacy-hub-page .brand-grid,
  body.gra-legacy-hub-page .general-guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gra-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .gra-global-container,
  .gra-container {
    width: min(100% - 26px, 1220px);
  }
  .gra-global-utility-inner {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .gra-global-utility-inner span:nth-child(n + 3) {
    display: none;
  }
  body.gra-legacy-hub-page .gra-auto-hub-section,
  body.gra-legacy-hub-page main > section:not(.gra-auto-hub-hero) {
    width: min(100% - 26px, 1220px);
    padding-top: 52px;
  }
  body.gra-legacy-hub-page .gra-auto-hub-grid,
  body.gra-legacy-hub-page .budget-grid,
  body.gra-legacy-hub-page .guide-grid,
  body.gra-legacy-hub-page .comparison-grid,
  body.gra-legacy-hub-page .brand-grid,
  body.gra-legacy-hub-page .general-guides-grid,
  .gra-footer-grid {
    grid-template-columns: 1fr;
  }
  .gra-footer-bottom {
    display: grid;
  }
}
/* END GRA SITEWIDE STABILIZATION */

/* BEGIN GRA DETAIL ACCESSORY HOTFIX */
body.gra-product-detail-page .gra-pd-main {
  width: 100%;
  margin: 0;
}

body.gra-product-detail-page #parameter-deal-detail {
  width: min(1280px, calc(100% - 40px));
  margin: 30px auto 82px;
}

body.gra-product-detail-page #parameter-deal-detail ~ #parameter-deal-detail,
body.gra-product-detail-page
  [data-gra-single-product="true"]
  ~ [data-gra-single-product="true"] {
  display: none !important;
}

body.gra-product-detail-page .gra-pd-loading {
  padding: 50px 20px;
  border: 1px solid #dce3eb;
  border-radius: 16px;
  background: #ffffff;
  color: #64748b;
  text-align: center;
}

body.gra-accessories-hub-page .gra-category-query-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

body.gra-accessories-hub-page .gra-category-query-tabs button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  color: #475569;
  font-size: 11px;
  font-weight: 800;
}

body.gra-accessories-hub-page .gra-category-query-tabs button.is-active,
body.gra-accessories-hub-page .gra-category-query-tabs button:hover {
  border-color: #0969da;
  background: #eaf3ff;
  color: #0756b4;
}

body.gra-accessories-hub-page .gra-lh-status a {
  display: inline-block;
  margin-top: 8px;
  color: #0756b4;
  font-weight: 850;
}
/* END GRA DETAIL ACCESSORY HOTFIX */

/* BEGIN GRA HOME FOUR PRODUCT ROW */

body.gra-home #current-products .gra-product-grid,
body.home-v4 #current-products .gra-product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

body.gra-home #current-products .gra-product-card,
body.home-v4 #current-products .gra-product-card {
  display: flex !important;
  min-width: 0 !important;
  height: 100% !important;
  flex-direction: column !important;
}

body.gra-home #current-products .gra-product-image,
body.home-v4 #current-products .gra-product-image {
  display: block !important;
  height: 190px !important;
  overflow: hidden !important;
}

body.gra-home #current-products .gra-product-image img,
body.home-v4 #current-products .gra-product-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 10px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #ffffff !important;
}

body.gra-home #current-products .gra-product-content,
body.home-v4 #current-products .gra-product-content {
  display: flex !important;
  min-width: 0 !important;
  flex: 1 !important;
  flex-direction: column !important;
}

body.gra-home #current-products .gra-product-content h3,
body.home-v4 #current-products .gra-product-content h3 {
  display: -webkit-box !important;
  min-height: 4.2em !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
}

body.gra-home #current-products .gra-product-meta,
body.home-v4 #current-products .gra-product-meta {
  min-height: 40px !important;
}

body.gra-home #current-products .gra-product-bottom,
body.home-v4 #current-products .gra-product-bottom {
  margin-top: auto !important;
}

@media (max-width: 1100px) {
  body.gra-home #current-products .gra-product-grid,
  body.home-v4 #current-products .gra-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 650px) {
  body.gra-home #current-products .gra-product-grid,
  body.home-v4 #current-products .gra-product-grid {
    grid-template-columns: 1fr !important;
  }

  body.gra-home #current-products .gra-product-image,
  body.home-v4 #current-products .gra-product-image {
    height: 240px !important;
  }
}

/* END GRA HOME FOUR PRODUCT ROW */

/* BEGIN GRA ARTICLE SYSTEM V3 */

html body.site-page.gra-article-page {
  margin: 0 !important;
  overflow-x: hidden !important;
  background: #f3f6fa !important;
  color: #111827 !important;
}

html body.site-page.gra-article-page *,
html body.site-page.gra-article-page *::before,
html body.site-page.gra-article-page *::after {
  box-sizing: border-box;
}

html body.site-page.gra-article-page main,
html body.site-page.gra-article-page main > article {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.site-page.gra-article-page .gra-article-shell {
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  margin-inline: auto !important;
  padding: 0 !important;
}

html body.site-page.gra-article-page .gra-article-hero {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 38px 0 68px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 88% 8%, rgba(244, 196, 48, 0.2), transparent 29%),
    radial-gradient(circle at 4% 94%, rgba(37, 99, 235, 0.14), transparent 28%),
    linear-gradient(135deg, #07101f, #172846) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

html body.site-page.gra-article-page .gra-article-breadcrumbs {
  display: flex !important;
  width: auto !important;
  max-width: none !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin: 0 0 40px !important;
  padding: 0 !important;
  background: transparent !important;
  color: #94a3b8 !important;
  font-size: 11px !important;
}

html body.site-page.gra-article-page .gra-article-breadcrumbs a {
  color: #d4dde9 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

html body.site-page.gra-article-page .gra-article-hero-grid {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(330px, 0.82fr) !important;
  gap: clamp(36px, 6vw, 72px) !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body.site-page.gra-article-page .gra-article-kicker {
  display: inline-block !important;
  color: #f4c430 !important;
  font-size: 10px !important;
  font-weight: 950 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
}

html body.site-page.gra-article-page .gra-article-hero h1 {
  max-width: 820px !important;
  margin: 13px 0 20px !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: clamp(41px, 5.6vw, 68px) !important;
  font-weight: 950 !important;
  line-height: 1.01 !important;
  letter-spacing: -0.055em !important;
  text-wrap: balance;
}

html body.site-page.gra-article-page .gra-article-deck {
  max-width: 760px !important;
  margin: 0 !important;
  color: #cbd5e1 !important;
  font-size: clamp(16px, 1.8vw, 18px) !important;
  line-height: 1.72 !important;
}

html body.site-page.gra-article-page .gra-article-byline {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px 22px !important;
  margin: 25px 0 0 !important;
  color: #9fb0c6 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

html body.site-page.gra-article-page .gra-article-hero-grid > img {
  display: block !important;
  width: 100% !important;
  max-width: 510px !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  margin: 0 0 0 auto !important;
  padding: 5px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.055) !important;
  object-fit: cover !important;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.32) !important;
}

html body.site-page.gra-article-page .gra-article-layout {
  display: grid !important;
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  grid-template-columns: 248px minmax(0, 1fr) !important;
  gap: 38px !important;
  align-items: start !important;
  margin: 0 auto !important;
  padding: 48px 0 84px !important;
  background: transparent !important;
}

html body.site-page.gra-article-page .gra-article-sidebar {
  display: block !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

html body.site-page.gra-article-page .gra-article-toc {
  position: sticky !important;
  top: 100px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 21px !important;
  border: 1px solid #dce3eb !important;
  border-radius: 15px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.055) !important;
}

html body.site-page.gra-article-page .gra-article-toc::before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #f4c430;
}

html body.site-page.gra-article-page .gra-article-toc > strong {
  color: #111827 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

html body.site-page.gra-article-page .gra-article-toc ol {
  display: grid !important;
  gap: 4px !important;
  margin: 14px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  counter-reset: gra-article-toc;
}

html body.site-page.gra-article-page .gra-article-toc li {
  margin: 0 !important;
  padding: 0 !important;
  counter-increment: gra-article-toc;
}

html body.site-page.gra-article-page .gra-article-toc a {
  display: grid !important;
  grid-template-columns: 25px minmax(0, 1fr) !important;
  gap: 7px !important;
  padding: 8px 7px !important;
  border-radius: 7px !important;
  color: #526176 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  text-decoration: none !important;
}

html body.site-page.gra-article-page .gra-article-toc a::before {
  content: counter(gra-article-toc, decimal-leading-zero);
  color: #9a7200;
  font-size: 9px;
  font-weight: 950;
}

html body.site-page.gra-article-page .gra-article-content {
  display: block !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(28px, 5vw, 54px) clamp(22px, 5vw, 58px) !important;
  overflow: hidden !important;
  border: 1px solid #dce3eb !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  color: #465469 !important;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.065) !important;
}

html body.site-page.gra-article-page .gra-article-content > section,
html body.site-page.gra-article-page .gra-article-content > div {
  width: auto !important;
  max-width: none !important;
}

html body.site-page.gra-article-page .gra-affiliate-note {
  display: block !important;
  margin: 0 0 25px !important;
  padding: 15px 17px !important;
  border: 1px solid #e7cb61 !important;
  border-radius: 11px !important;
  background: #fff9dd !important;
  color: #59470c !important;
  font-size: 12px !important;
  line-height: 1.68 !important;
  box-shadow: none !important;
}

html body.site-page.gra-article-page .gra-quick-answer {
  display: block !important;
  margin: 0 0 36px !important;
  padding: 26px 28px !important;
  border: 0 !important;
  border-left: 5px solid #f4c430 !important;
  border-radius: 13px !important;
  background: #111827 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

html body.site-page.gra-article-page .gra-quick-answer > span {
  color: #f4c430 !important;
  font-size: 9px !important;
  font-weight: 950 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
}

html body.site-page.gra-article-page .gra-quick-answer p {
  max-width: 75ch !important;
  margin: 10px 0 0 !important;
  color: #e5ebf2 !important;
  font-size: 17px !important;
  font-weight: 550 !important;
  line-height: 1.72 !important;
}

html body.site-page.gra-article-page .gra-article-section {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 7px 0 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  scroll-margin-top: 110px;
}

html
  body.site-page.gra-article-page
  .gra-article-section
  + .gra-article-section {
  margin-top: 12px !important;
  padding-top: 29px !important;
  border-top: 1px solid #edf0f4 !important;
}

html body.site-page.gra-article-page .gra-article-section h2,
html body.site-page.gra-article-page .gra-market-cta h2,
html body.site-page.gra-article-page .gra-editorial-box h2 {
  max-width: 820px !important;
  margin: 31px 0 15px !important;
  padding: 0 !important;
  color: #111827 !important;
  font-size: clamp(27px, 3.6vw, 39px) !important;
  font-weight: 930 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.038em !important;
}

html body.site-page.gra-article-page .gra-article-section h3 {
  margin: 27px 0 11px !important;
  color: #172033 !important;
  font-size: clamp(19px, 2.2vw, 23px) !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
}

html body.site-page.gra-article-page .gra-article-section p,
html body.site-page.gra-article-page .gra-article-section li,
html body.site-page.gra-article-page .gra-editorial-box p,
html body.site-page.gra-article-page .gra-market-cta p {
  color: #465469 !important;
  font-size: 16px !important;
  line-height: 1.78 !important;
}

html body.site-page.gra-article-page .gra-article-section p {
  max-width: 76ch !important;
  margin: 0 0 19px !important;
}

html body.site-page.gra-article-page .gra-article-section ul,
html body.site-page.gra-article-page .gra-article-section ol {
  display: grid !important;
  max-width: 77ch !important;
  gap: 10px !important;
  margin: 18px 0 24px !important;
  padding-left: 24px !important;
}

html body.site-page.gra-article-page .gra-article-section a,
html body.site-page.gra-article-page .gra-source-list a {
  color: #0756b4 !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
}

html body.site-page.gra-article-page .gra-article-table-wrap {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 22px 0 31px !important;
  padding: 0 !important;
  overflow-x: auto !important;
  border: 1px solid #dce3eb !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  box-shadow: 0 7px 20px rgba(15, 23, 42, 0.04) !important;
}

html body.site-page.gra-article-page .gra-article-table-wrap table {
  display: table !important;
  width: 100% !important;
  min-width: 680px !important;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: collapse !important;
  background: #ffffff !important;
}

html body.site-page.gra-article-page .gra-article-table-wrap th {
  padding: 15px 16px !important;
  border: 0 !important;
  background: #111827 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-align: left !important;
  vertical-align: top !important;
}

html body.site-page.gra-article-page .gra-article-table-wrap td {
  padding: 15px 16px !important;
  border: 0 !important;
  border-bottom: 1px solid #e5eaf0 !important;
  background: transparent !important;
  color: #334155 !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  text-align: left !important;
  vertical-align: top !important;
}

html
  body.site-page.gra-article-page
  .gra-article-table-wrap
  tbody
  tr:nth-child(even) {
  background: #f8fafc !important;
}

html body.site-page.gra-article-page .gra-market-cta {
  display: grid !important;
  width: auto !important;
  max-width: none !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 30px !important;
  align-items: center !important;
  margin: 42px 0 !important;
  padding: 31px !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 17px !important;
  background: linear-gradient(145deg, #091020, #1a2d50) !important;
  color: #ffffff !important;
  box-shadow: 0 17px 42px rgba(15, 23, 42, 0.17) !important;
}

html body.site-page.gra-article-page .gra-market-cta > div > span {
  color: #f4c430 !important;
  font-size: 9px !important;
  font-weight: 950 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}

html body.site-page.gra-article-page .gra-market-cta h2 {
  margin: 8px 0 10px !important;
  color: #ffffff !important;
  font-size: clamp(25px, 3vw, 33px) !important;
}

html body.site-page.gra-article-page .gra-market-cta p {
  margin: 0 !important;
  color: #becadd !important;
  font-size: 14px !important;
}

html body.site-page.gra-article-page .gra-market-cta > a {
  display: inline-flex !important;
  min-height: 48px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 17px !important;
  border: 1px solid #d8a700 !important;
  border-radius: 9px !important;
  background: linear-gradient(180deg, #f9d95d, #eab308) !important;
  color: #111827 !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

html body.site-page.gra-article-page .gra-article-faq {
  display: grid !important;
  width: 100% !important;
  gap: 10px !important;
  margin: 19px 0 0 !important;
  padding: 0 !important;
}

html body.site-page.gra-article-page .gra-article-faq details {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid #dce3eb !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

html body.site-page.gra-article-page .gra-article-faq summary {
  position: relative !important;
  display: block !important;
  margin: 0 !important;
  padding: 18px 52px 18px 19px !important;
  color: #172033 !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  list-style: none !important;
  cursor: pointer !important;
}

html body.site-page.gra-article-page .gra-article-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 19px;
  color: #64748b;
  font-size: 23px;
  transform: translateY(-50%);
}

html
  body.site-page.gra-article-page
  .gra-article-faq
  details[open]
  summary::after {
  content: "−";
}

html body.site-page.gra-article-page .gra-article-faq details p {
  max-width: 76ch !important;
  margin: 0 !important;
  padding: 0 19px 19px !important;
  color: #4b596d !important;
  font-size: 14px !important;
  line-height: 1.72 !important;
}

html body.site-page.gra-article-page .gra-editorial-box {
  display: block !important;
  margin: 36px 0 !important;
  padding: 25px 27px !important;
  border: 1px solid #dce3eb !important;
  border-radius: 14px !important;
  background: #f5f7fa !important;
  box-shadow: none !important;
}

html body.site-page.gra-article-page .gra-editorial-box h2 {
  margin: 0 0 10px !important;
  font-size: 24px !important;
}

html body.site-page.gra-article-page .gra-source-list {
  display: grid !important;
  gap: 9px !important;
  margin: 16px 0 0 !important;
  padding-left: 22px !important;
}

html body.site-page.gra-article-page .gra-related-grid {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 20px 0 0 !important;
  padding: 0 !important;
}

html body.site-page.gra-article-page .gra-related-card {
  display: flex !important;
  min-width: 0 !important;
  min-height: 145px !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  margin: 0 !important;
  padding: 21px !important;
  border: 1px solid #dce3eb !important;
  border-radius: 14px !important;
  background: linear-gradient(145deg, #ffffff, #f7f9fc) !important;
  color: #172033 !important;
  text-decoration: none !important;
  box-shadow: 0 7px 20px rgba(15, 23, 42, 0.045) !important;
}

html body.site-page.gra-article-page .gra-related-card strong {
  color: #172033 !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
}

html body.site-page.gra-article-page .gra-related-card span {
  margin-top: 18px !important;
  color: #0756b4 !important;
  font-size: 11px !important;
  font-weight: 850 !important;
}

@media (max-width: 940px) {
  html body.site-page.gra-article-page .gra-article-hero-grid,
  html body.site-page.gra-article-page .gra-article-layout,
  html body.site-page.gra-article-page .gra-market-cta {
    grid-template-columns: 1fr !important;
  }

  html body.site-page.gra-article-page .gra-article-hero-grid > img {
    width: min(100%, 650px) !important;
    max-width: 650px !important;
    margin: 4px 0 0 !important;
  }

  html body.site-page.gra-article-page .gra-article-layout {
    gap: 0 !important;
    padding-top: 28px !important;
  }

  html body.site-page.gra-article-page .gra-article-sidebar {
    display: none !important;
  }

  html body.site-page.gra-article-page .gra-market-cta > a {
    justify-self: start !important;
  }
}

@media (max-width: 700px) {
  html body.site-page.gra-article-page .gra-article-shell,
  html body.site-page.gra-article-page .gra-article-layout {
    width: min(100% - 24px, 1180px) !important;
  }

  html body.site-page.gra-article-page .gra-article-hero {
    padding: 27px 0 46px !important;
  }

  html body.site-page.gra-article-page .gra-article-hero h1 {
    font-size: clamp(36px, 11vw, 46px) !important;
  }

  html body.site-page.gra-article-page .gra-article-content {
    padding: 23px 17px !important;
    border-radius: 14px !important;
  }

  html body.site-page.gra-article-page .gra-quick-answer {
    padding: 21px 19px !important;
  }

  html body.site-page.gra-article-page .gra-quick-answer p {
    font-size: 15px !important;
  }

  html body.site-page.gra-article-page .gra-article-section h2,
  html body.site-page.gra-article-page .gra-market-cta h2 {
    font-size: 28px !important;
  }

  html body.site-page.gra-article-page .gra-article-section p,
  html body.site-page.gra-article-page .gra-article-section li {
    font-size: 15px !important;
    line-height: 1.72 !important;
  }

  html body.site-page.gra-article-page .gra-market-cta {
    padding: 23px 19px !important;
  }

  html body.site-page.gra-article-page .gra-market-cta > a {
    width: 100% !important;
    justify-self: stretch !important;
  }

  html body.site-page.gra-article-page .gra-related-grid {
    grid-template-columns: 1fr !important;
  }
}

/* END GRA ARTICLE SYSTEM V3 */

/* BEGIN GRA FIXED FOOTER */

html body.site-page.gra-article-page .gra-fixed-footer {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: linear-gradient(145deg, #050a13, #0b1322) !important;
  color: #94a3b8 !important;
  box-shadow: none !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-main {
  display: grid !important;
  width: min(1220px, calc(100% - 40px)) !important;
  grid-template-columns:
    minmax(300px, 1.25fr)
    minmax(0, 2fr) !important;
  gap: clamp(44px, 7vw, 90px) !important;
  margin: 0 auto !important;
  padding: 66px 0 46px !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-brand,
html body.site-page.gra-article-page .gra-fixed-footer-nav,
html body.site-page.gra-article-page .gra-fixed-footer-nav > div {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 11px !important;
  margin: 0 0 22px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-logo > span:first-child {
  display: grid !important;
  width: 42px !important;
  height: 42px !important;
  place-items: center !important;
  border: 1px solid #d8a700 !important;
  border-radius: 11px !important;
  background: linear-gradient(145deg, #f9d75b, #e3ac00) !important;
  color: #111827 !important;
  font-weight: 950 !important;
  box-shadow: 0 9px 24px rgba(234, 179, 8, 0.17) !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-logo strong,
html body.site-page.gra-article-page .gra-fixed-footer-logo strong > span {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-logo strong > span {
  color: #e6b51e !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-brand p {
  max-width: 450px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #94a3b8 !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
}

html
  body.site-page.gra-article-page
  .gra-fixed-footer-brand
  .gra-fixed-footer-disclosure {
  margin-top: 17px !important;
  padding-top: 17px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
  color: #78879b !important;
  font-size: 11px !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-nav {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(25px, 5vw, 58px) !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-nav > div {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-nav h2 {
  margin: 0 0 9px !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-nav a {
  display: inline !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #94a3b8 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-nav a:hover {
  color: #ffffff !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-bottom {
  display: flex !important;
  width: min(1220px, calc(100% - 40px)) !important;
  min-height: 68px !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 25px !important;
  margin: 0 auto !important;
  padding: 20px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
  color: #66758a !important;
  font-size: 10px !important;
  line-height: 1.5 !important;
}

html body.site-page.gra-article-page .gra-fixed-footer-bottom span {
  margin: 0 !important;
  padding: 0 !important;
  color: #66758a !important;
  font-size: 10px !important;
  line-height: 1.5 !important;
}

@media (max-width: 900px) {
  html body.site-page.gra-article-page .gra-fixed-footer-main {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }
}

@media (max-width: 650px) {
  html body.site-page.gra-article-page .gra-fixed-footer-main,
  html body.site-page.gra-article-page .gra-fixed-footer-bottom {
    width: min(100% - 28px, 1220px) !important;
  }

  html body.site-page.gra-article-page .gra-fixed-footer-main {
    padding: 49px 0 34px !important;
  }

  html body.site-page.gra-article-page .gra-fixed-footer-nav {
    grid-template-columns: 1fr !important;
    gap: 31px !important;
  }

  html body.site-page.gra-article-page .gra-fixed-footer-bottom {
    display: grid !important;
    justify-content: start !important;
    gap: 7px !important;
  }
}

/* END GRA FIXED FOOTER */

/* BEGIN GRA GUIDES MENU V2 */

nav [data-gra-guides-link="true"] {
  display: inline-flex;
  align-items: center;
}

nav [data-gra-guides-link="true"].is-current {
  font-weight: 900;
}

@media (min-width: 861px) and (max-width: 1220px) {
  .gra-global-navigation a,
  .gra-header-navigation a,
  .gra-site-navigation a {
    padding-right: 9px;
    padding-left: 9px;
  }
}

/* END GRA GUIDES MENU V2 */

/* BEGIN GRA GUIDES VISUAL CARDS */

body.gra-guides-index-page .gra-guides-visual-categories {
  display: block;
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
  margin: 48px auto 58px;
  padding: 0;
  background: transparent;
}

body.gra-guides-index-page .gra-guides-category-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.55fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 25px;
}

body.gra-guides-index-page .gra-guides-category-heading > div > span {
  display: inline-block;
  color: #9a7200;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.gra-guides-index-page .gra-guides-category-heading h2 {
  max-width: 760px;
  margin: 9px 0 0;
  color: #111827;
  font-size: clamp(31px, 4.2vw, 46px);
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

body.gra-guides-index-page .gra-guides-category-heading > p {
  max-width: 500px;
  margin: 0;
  color: #5b687c;
  font-size: 14px;
  line-height: 1.7;
}

body.gra-guides-index-page .gra-guides-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.gra-guides-index-page .gra-guides-visual-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: 1px solid #d8e0e9;
  border-radius: 17px;
  background: #ffffff;
  color: #172033;
  text-decoration: none;
  box-shadow: 0 9px 27px rgba(15, 23, 42, 0.07);
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

body.gra-guides-index-page .gra-guides-visual-card:hover {
  border-color: #a9b8c9;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.13);
  transform: translateY(-4px);
}

body.gra-guides-index-page .gra-guides-visual-card:focus-visible {
  outline: 3px solid rgba(7, 86, 180, 0.32);
  outline-offset: 3px;
}

body.gra-guides-index-page .gra-guides-visual-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #101827;
}

body.gra-guides-index-page .gra-guides-visual-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 8, 18, 0.74));
  pointer-events: none;
}

body.gra-guides-index-page .gra-guides-visual-media img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 300ms ease;
}

body.gra-guides-index-page
  .gra-guides-visual-card:hover
  .gra-guides-visual-media
  img {
  transform: scale(1.035);
}

body.gra-guides-index-page .gra-guides-visual-media > span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.gra-guides-index-page .gra-guides-visual-content {
  display: flex;
  min-height: 230px;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

body.gra-guides-index-page .gra-guides-visual-content h3 {
  margin: 0 0 10px;
  color: #172033;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

body.gra-guides-index-page .gra-guides-visual-content p {
  margin: 0 0 23px;
  color: #5a687c;
  font-size: 13px;
  line-height: 1.68;
}

body.gra-guides-index-page .gra-guides-visual-content strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #0756b4;
  font-size: 11px;
  font-weight: 900;
}

body.gra-guides-index-page .gra-guides-visual-content strong span {
  transition: transform 160ms ease;
}

body.gra-guides-index-page
  .gra-guides-visual-card:hover
  .gra-guides-visual-content
  strong
  span {
  transform: translateX(3px);
}

@media (max-width: 960px) {
  body.gra-guides-index-page .gra-guides-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.gra-guides-index-page .gra-guides-category-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  body.gra-guides-index-page .gra-guides-visual-categories {
    width: min(100% - 24px, 1180px);
    margin-top: 34px;
  }

  body.gra-guides-index-page .gra-guides-visual-grid {
    grid-template-columns: 1fr;
  }

  body.gra-guides-index-page .gra-guides-visual-content {
    min-height: 205px;
  }
}

/* END GRA GUIDES VISUAL CARDS */

/* BEGIN GRA ACCESSORY VISUAL CATEGORIES */

body.gra-accessories-hub-page .gra-accessory-image-categories {
  display: block !important;
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 68px 0 !important;
  background: transparent !important;
}

body.gra-accessories-hub-page .gra-accessory-category-intro {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr) !important;
  gap: 38px !important;
  align-items: end !important;
  margin: 0 0 27px !important;
}

body.gra-accessories-hub-page .gra-accessory-category-intro > div > span {
  color: #9a7200 !important;
  font-size: 10px !important;
  font-weight: 950 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

body.gra-accessories-hub-page .gra-accessory-category-intro h2 {
  margin: 9px 0 0 !important;
  color: #111827 !important;
  font-size: clamp(31px, 4vw, 45px) !important;
  font-weight: 950 !important;
  line-height: 1.07 !important;
  letter-spacing: -0.045em !important;
}

body.gra-accessories-hub-page .gra-accessory-category-intro > p {
  margin: 0 !important;
  color: #5a687c !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

body.gra-accessories-hub-page .gra-accessory-image-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 17px !important;
}

body.gra-accessories-hub-page .gra-accessory-image-card {
  display: flex !important;
  min-width: 0 !important;
  min-height: 100% !important;
  overflow: hidden !important;
  flex-direction: column !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #d8e0e9 !important;
  border-radius: 17px !important;
  background: #ffffff !important;
  color: #172033 !important;
  text-decoration: none !important;
  box-shadow: 0 9px 27px rgba(15, 23, 42, 0.07) !important;
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease !important;
}

body.gra-accessories-hub-page .gra-accessory-image-card:hover {
  border-color: #a9b8c9 !important;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.13) !important;
  transform: translateY(-4px) !important;
}

body.gra-accessories-hub-page .gra-accessory-image-card:focus-visible {
  outline: 3px solid rgba(7, 86, 180, 0.32) !important;
  outline-offset: 3px !important;
}

body.gra-accessories-hub-page .gra-accessory-image-media {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  background: #101827 !important;
}

body.gra-accessories-hub-page .gra-accessory-image-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3, 8, 18, 0.78));
  pointer-events: none;
}

body.gra-accessories-hub-page .gra-accessory-image-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 300ms ease !important;
}

body.gra-accessories-hub-page
  .gra-accessory-image-card:hover
  .gra-accessory-image-media
  img {
  transform: scale(1.04) !important;
}

body.gra-accessories-hub-page .gra-accessory-image-media > span {
  position: absolute !important;
  z-index: 2 !important;
  right: 15px !important;
  bottom: 13px !important;
  left: 15px !important;
  color: #ffffff !important;
  font-size: 9px !important;
  font-weight: 950 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

body.gra-accessories-hub-page .gra-accessory-image-content {
  display: flex !important;
  min-height: 235px !important;
  flex: 1 !important;
  flex-direction: column !important;
  padding: 21px !important;
}

body.gra-accessories-hub-page .gra-accessory-image-content h3 {
  margin: 0 0 10px !important;
  color: #172033 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.23 !important;
  letter-spacing: -0.025em !important;
}

body.gra-accessories-hub-page .gra-accessory-image-content p {
  margin: 0 0 23px !important;
  color: #5a687c !important;
  font-size: 13px !important;
  line-height: 1.67 !important;
}

body.gra-accessories-hub-page .gra-accessory-image-content strong {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  margin-top: auto !important;
  color: #0756b4 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

body.gra-accessories-hub-page
  .gra-accessory-image-card:hover
  .gra-accessory-image-content
  strong
  span {
  transform: translateX(3px) !important;
}

@media (max-width: 1040px) {
  body.gra-accessories-hub-page .gra-accessory-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body.gra-accessories-hub-page .gra-accessory-category-intro {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

@media (max-width: 600px) {
  body.gra-accessories-hub-page .gra-accessory-image-categories {
    width: min(100% - 24px, 1180px) !important;
    padding: 50px 0 !important;
  }

  body.gra-accessories-hub-page .gra-accessory-image-grid {
    grid-template-columns: 1fr !important;
  }

  body.gra-accessories-hub-page .gra-accessory-image-content {
    min-height: 205px !important;
  }
}

/* END GRA ACCESSORY VISUAL CATEGORIES */

/* BEGIN GRA GUIDES VISUAL LANDING V5 */
body.gra-guides-index-page {
  margin: 0;
  overflow-x: hidden;
  background: #f3f6fa;
  color: #111827;
}
body.gra-guides-index-page *,
body.gra-guides-index-page *::before,
body.gra-guides-index-page *::after {
  box-sizing: border-box;
}
body.gra-guides-index-page img {
  display: block;
  max-width: 100%;
}
body.gra-guides-index-page .gra-gidx-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
body.gra-guides-index-page .gra-gidx-eyebrow {
  display: inline-block;
  color: #9a7200;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
body.gra-guides-index-page .gra-gidx-hero {
  padding: 36px 0 68px;
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(244, 196, 48, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #07101f, #172846);
  color: #fff;
}
body.gra-guides-index-page .gra-gidx-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 38px;
  color: #94a3b8;
  font-size: 11px;
}
body.gra-guides-index-page .gra-gidx-breadcrumbs a {
  color: #d4dde9;
  text-decoration: none;
}
body.gra-guides-index-page .gra-gidx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}
body.gra-guides-index-page .gra-gidx-hero .gra-gidx-eyebrow {
  color: #f4c430;
}
body.gra-guides-index-page .gra-gidx-hero h1 {
  max-width: 760px;
  margin: 13px 0 20px;
  color: #fff;
  font-size: clamp(43px, 5.7vw, 68px);
  font-weight: 950;
  line-height: 1.01;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
body.gra-guides-index-page .gra-gidx-hero-copy > p {
  max-width: 720px;
  margin: 0;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.72;
}
body.gra-guides-index-page .gra-gidx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 27px;
}
body.gra-guides-index-page .gra-gidx-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}
body.gra-guides-index-page .gra-gidx-button-primary {
  border: 1px solid #d8a700;
  background: linear-gradient(180deg, #f9d95d, #eab308);
  color: #111827;
}
body.gra-guides-index-page .gra-gidx-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
body.gra-guides-index-page .gra-gidx-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  color: #9fb0c6;
  font-size: 11px;
  font-weight: 700;
}
body.gra-guides-index-page .gra-gidx-proof li::before {
  content: "✓";
  margin-right: 6px;
  color: #f4c430;
}
body.gra-guides-index-page .gra-gidx-collage {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 430px;
}
body.gra-guides-index-page .gra-gidx-collage figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  background: #0c1627;
  box-shadow: 0 23px 55px rgba(0, 0, 0, 0.26);
}
body.gra-guides-index-page .gra-gidx-collage-large {
  grid-row: 1/3;
}
body.gra-guides-index-page .gra-gidx-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.gra-guides-index-page .gra-gidx-collage figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 8, 18, 0.76));
}
body.gra-guides-index-page .gra-gidx-collage figcaption {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 13px;
  left: 15px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}
body.gra-guides-index-page .gra-gidx-section {
  padding: 68px 0;
}
body.gra-guides-index-page .gra-gidx-section-featured {
  background: #fff;
}
body.gra-guides-index-page .gra-gidx-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}
body.gra-guides-index-page .gra-gidx-heading h2 {
  max-width: 760px;
  margin: 9px 0 0;
  color: #111827;
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 950;
  line-height: 1.07;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
body.gra-guides-index-page .gra-gidx-heading > p {
  max-width: 520px;
  margin: 0;
  color: #5a687c;
  font-size: 14px;
  line-height: 1.7;
}
body.gra-guides-index-page .gra-gidx-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}
body.gra-guides-index-page .gra-gidx-category-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #d8e0e9;
  border-radius: 17px;
  background: #fff;
  color: #172033;
  text-decoration: none;
  box-shadow: 0 9px 27px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.17s ease,
    box-shadow 0.17s ease,
    border-color 0.17s ease;
}
body.gra-guides-index-page .gra-gidx-category-card:hover {
  border-color: #a9b8c9;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.13);
  transform: translateY(-4px);
}
body.gra-guides-index-page .gra-gidx-category-card-wide {
  grid-column: span 2;
}
body.gra-guides-index-page .gra-gidx-card-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #101827;
}
body.gra-guides-index-page .gra-gidx-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 8, 18, 0.74));
}
body.gra-guides-index-page .gra-gidx-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
body.gra-guides-index-page
  .gra-gidx-category-card:hover
  .gra-gidx-card-media
  img {
  transform: scale(1.035);
}
body.gra-guides-index-page .gra-gidx-card-media > span {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 13px;
  left: 15px;
  color: #fff;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
body.gra-guides-index-page .gra-gidx-card-content {
  display: flex;
  min-height: 220px;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}
body.gra-guides-index-page .gra-gidx-card-content h3 {
  margin: 0 0 10px;
  color: #172033;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
body.gra-guides-index-page .gra-gidx-card-content p {
  margin: 0 0 23px;
  color: #5a687c;
  font-size: 13px;
  line-height: 1.68;
}
body.gra-guides-index-page .gra-gidx-card-content strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #0756b4;
  font-size: 11px;
  font-weight: 900;
}
body.gra-guides-index-page .gra-gidx-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}
body.gra-guides-index-page .gra-gidx-article-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #d8e0e9;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f7f9fc);
  color: #172033;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.17s ease,
    box-shadow 0.17s ease;
}
body.gra-guides-index-page .gra-gidx-article-card:hover {
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}
body.gra-guides-index-page .gra-gidx-article-card > img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
body.gra-guides-index-page .gra-gidx-article-card > div {
  display: flex;
  min-height: 215px;
  flex: 1;
  flex-direction: column;
  padding: 21px;
}
body.gra-guides-index-page .gra-gidx-article-card span {
  color: #9a7200;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
body.gra-guides-index-page .gra-gidx-article-card h3 {
  margin: 10px 0 10px;
  color: #172033;
  font-size: 20px;
  line-height: 1.25;
}
body.gra-guides-index-page .gra-gidx-article-card p {
  margin: 0 0 20px;
  color: #5a687c;
  font-size: 13px;
  line-height: 1.65;
}
body.gra-guides-index-page .gra-gidx-article-card strong {
  margin-top: auto;
  color: #0756b4;
  font-size: 11px;
}
body.gra-guides-index-page .gra-gidx-section-cta {
  padding-top: 0;
}
body.gra-guides-index-page .gra-gidx-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: 18px;
  background: linear-gradient(145deg, #091020, #1a2d50);
  color: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.17);
}
body.gra-guides-index-page .gra-gidx-cta .gra-gidx-eyebrow {
  color: #f4c430;
}
body.gra-guides-index-page .gra-gidx-cta h2 {
  margin: 9px 0 10px;
  color: #fff;
  font-size: 32px;
}
body.gra-guides-index-page .gra-gidx-cta p {
  max-width: 760px;
  margin: 0;
  color: #becadd;
  font-size: 14px;
  line-height: 1.7;
}
body.gra-guides-index-page .gra-gidx-cta > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 1px solid #d8a700;
  border-radius: 9px;
  background: linear-gradient(180deg, #f9d95d, #eab308);
  color: #111827;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 1050px) {
  body.gra-guides-index-page .gra-gidx-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.gra-guides-index-page .gra-gidx-category-card-wide {
    grid-column: span 2;
  }
}
@media (max-width: 900px) {
  body.gra-guides-index-page .gra-gidx-hero-grid,
  body.gra-guides-index-page .gra-gidx-heading,
  body.gra-guides-index-page .gra-gidx-cta {
    grid-template-columns: 1fr;
  }
  body.gra-guides-index-page .gra-gidx-collage {
    min-height: 380px;
  }
  body.gra-guides-index-page .gra-gidx-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.gra-guides-index-page .gra-gidx-cta > a {
    justify-self: start;
  }
}
@media (max-width: 620px) {
  body.gra-guides-index-page .gra-gidx-container {
    width: min(100% - 24px, 1180px);
  }
  body.gra-guides-index-page .gra-gidx-hero {
    padding: 27px 0 46px;
  }
  body.gra-guides-index-page .gra-gidx-hero h1 {
    font-size: clamp(37px, 11vw, 48px);
  }
  body.gra-guides-index-page .gra-gidx-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 245px 150px;
    min-height: 0;
  }
  body.gra-guides-index-page .gra-gidx-collage-large {
    grid-column: 1/3;
    grid-row: auto;
  }
  body.gra-guides-index-page .gra-gidx-section {
    padding: 50px 0;
  }
  body.gra-guides-index-page .gra-gidx-category-grid,
  body.gra-guides-index-page .gra-gidx-article-grid {
    grid-template-columns: 1fr;
  }
  body.gra-guides-index-page .gra-gidx-category-card-wide {
    grid-column: auto;
  }
  body.gra-guides-index-page .gra-gidx-card-content {
    min-height: 205px;
  }
  body.gra-guides-index-page .gra-gidx-cta {
    padding: 25px 20px;
  }
  body.gra-guides-index-page .gra-gidx-cta > a {
    width: 100%;
    justify-self: stretch;
  }
}
/* END GRA GUIDES VISUAL LANDING V5 */

/* BEGIN GRA GLOBAL VISUAL SYSTEM */

.gra-auto-hero-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.gra-auto-hero-photo::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0 0 0 48%;
  background-image: var(--gra-auto-hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
}

.gra-auto-hero-photo::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--gra-hero-overlay, #07101f) 0%,
    var(--gra-hero-overlay, #07101f) 43%,
    rgba(7, 16, 31, 0.84) 61%,
    rgba(7, 16, 31, 0.42) 100%
  );
  pointer-events: none;
}

.gra-auto-article-figure {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 38px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  background: #0b1424;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
}

.gra-auto-article-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.gra-auto-article-figure figcaption {
  padding: 9px 14px;
  background: #0b1424;
  color: #b9c7d8;
  font-size: 11px;
}

.gra-auto-visual-card {
  overflow: hidden !important;
  padding-top: 0 !important;
}

.gra-auto-card-media {
  position: relative;
  width: calc(100% + 2px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: -1px -1px 18px;
  background: #0b1424;
}

.gra-auto-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 8, 18, 0.78));
  pointer-events: none;
}

.gra-auto-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.gra-auto-card-media > span {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 13px;
  left: 15px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gra-auto-visual-card:hover .gra-auto-card-media img {
  transform: scale(1.035);
}

.gra-replaced-placeholder {
  background: #0b1424;
  object-fit: cover;
}

nav[data-gra-full-navigation="true"] a[aria-current="page"] {
  color: #f4c430;
}

@media (max-width: 820px) {
  .gra-auto-hero-photo::before {
    inset: 38% 0 0;
    opacity: 0.22;
  }

  .gra-auto-hero-photo::after {
    background: linear-gradient(
      180deg,
      var(--gra-hero-overlay, #07101f) 0%,
      rgba(7, 16, 31, 0.92) 55%,
      rgba(7, 16, 31, 0.6) 100%
    );
  }
}

@media (max-width: 600px) {
  .gra-auto-article-figure {
    width: min(100% - 24px, 1180px);
    margin-top: 20px;
    border-radius: 14px;
  }

  .gra-auto-article-figure img {
    aspect-ratio: 16 / 9;
  }
}

/* END GRA GLOBAL VISUAL SYSTEM */

/* BEGIN GRA RESTORED NAVIGATION */

.gra-restored-navigation {
  position: relative;
  z-index: 200;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin: 0;
  padding: 0;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.gra-restored-navigation > .gra-primary-nav-list {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gra-restored-navigation .gra-primary-nav-item {
  display: block;
  margin: 0;
  padding: 0;
}

.gra-restored-navigation .gra-global-nav-link {
  position: relative;
  z-index: 201;
  display: inline-flex !important;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 9px 11px;
  border-radius: 8px;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.gra-restored-navigation .gra-global-nav-link:hover,
.gra-restored-navigation .gra-global-nav-link:focus-visible {
  background: rgba(148, 163, 184, 0.13);
  text-decoration: none;
}

.gra-restored-navigation .gra-global-nav-link[aria-current="page"] {
  background: rgba(244, 196, 48, 0.15);
  color: #f4c430;
}

.gra-restored-navigation .gra-global-deals-link {
  margin-left: 5px;
  border: 1px solid #d8a700;
  background: linear-gradient(180deg, #f9d95d, #eab308);
  color: #111827 !important;
}

.gra-global-menu-toggle {
  position: relative;
  z-index: 220;
  display: none;
  width: 44px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 9px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.gra-global-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

nav[data-gra-navigation="true"]::before,
nav[data-gra-navigation="true"]::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 1120px) and (min-width: 901px) {
  .gra-restored-navigation .gra-global-nav-link {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 11px;
  }
}

@media (max-width: 900px) {
  .gra-global-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .gra-restored-navigation {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    display: none;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 13px;
    background: #0b1424;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.36);
  }

  .gra-restored-navigation.is-open {
    display: flex !important;
  }

  .gra-restored-navigation > .gra-primary-nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
  }

  .gra-restored-navigation .gra-global-nav-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 45px;
    padding: 11px 13px;
    color: #e5edf7;
  }

  .gra-restored-navigation .gra-global-deals-link {
    justify-content: center;
    margin: 5px 0 0;
  }
}

/* END GRA RESTORED NAVIGATION */

/* BEGIN GRA REAL HARDWARE PHOTOS */
img[data-gra-real-photo] {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #111827;
}

.gra-auto-card-media img[data-gra-real-photo],
.gra-guides-visual-media img[data-gra-real-photo] {
  aspect-ratio: 16 / 9;
}

.gra-auto-article-figure img[data-gra-real-photo] {
  width: 100%;
  max-height: 620px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: inherit;
}

.gra-auto-visual-card:hover img[data-gra-real-photo],
.gra-guides-visual-card:hover img[data-gra-real-photo] {
  transform: scale(1.025);
}

.gra-auto-hero-photo[data-gra-real-hero]::before {
  background-position: center;
  background-size: cover;
}
/* END GRA REAL HARDWARE PHOTOS */

/* BEGIN GRA MONITOR RESOLUTION CARD FIX */

.gra-monitor-resolution-card-fixed {
  overflow: hidden !important;
  position: relative;
}

.gra-monitor-resolution-card-fixed.gra-auto-visual-card {
  padding-top: 0 !important;
}

.gra-monitor-resolution-media {
  position: relative;
  display: block;
  width: calc(100% + 2px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: -1px -1px 18px;
  background: #0b1424;
}

.gra-monitor-resolution-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3, 8, 18, 0.8));
  pointer-events: none;
}

.gra-monitor-resolution-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  object-fit: cover !important;
  object-position: center !important;
}

.gra-monitor-resolution-media > span {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 13px;
  left: 15px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gra-monitor-resolution-cta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: #0756b4;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.gra-monitor-resolution-cta:hover {
  text-decoration: underline;
}

/* END GRA MONITOR RESOLUTION CARD FIX */

/* BEGIN GRA MONITOR LIVE LISTINGS */
.gra-monitor-market {
  padding: 68px 0;
  background: #f4f7fb;
  border-block: 1px solid #dce3eb;
}

.gra-monitor-market-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.gra-monitor-market-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 25px;
}

.gra-monitor-market-eyebrow {
  display: inline-block;
  color: #987100;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gra-monitor-market-heading h2 {
  margin: 9px 0 0;
  color: #111827;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.gra-monitor-market-heading p,
.gra-monitor-market-summary p {
  margin: 0;
  color: #5b687c;
  font-size: 14px;
  line-height: 1.65;
}

.gra-monitor-market-toolbar,
.gra-monitor-market-summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.gra-monitor-market-toolbar {
  padding: 14px;
  border: 1px solid #d8e0e9;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.055);
}

.gra-monitor-market-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gra-monitor-market-filters button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid #d2dae5;
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.gra-monitor-market-filters button:hover,
.gra-monitor-market-filters button.is-active {
  border-color: #0b5eb8;
  background: #0b5eb8;
  color: #ffffff;
}

.gra-monitor-market-sort {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.gra-monitor-market-sort select {
  min-height: 40px;
  padding: 8px 35px 8px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #ffffff;
  color: #172033;
  font: inherit;
}

.gra-monitor-market-summary {
  margin: 18px 0;
}

.gra-monitor-market-searches,
.gra-monitor-market-fallback-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.gra-monitor-market-searches a,
.gra-monitor-market-fallback-links a {
  color: #0756b4;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.gra-monitor-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gra-monitor-listing-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d8e0e9;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 9px 25px rgba(15, 23, 42, 0.07);
}

.gra-monitor-listing-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9eef5;
}

.gra-monitor-listing-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gra-monitor-listing-score {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: #0b5eb8;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.gra-monitor-listing-body {
  padding: 19px;
}

.gra-monitor-listing-meta {
  display: block;
  color: #987100;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gra-monitor-listing-body h3 {
  margin: 9px 0 10px;
  font-size: 17px;
  line-height: 1.3;
}

.gra-monitor-listing-body h3 a {
  color: #172033;
  text-decoration: none;
}

.gra-monitor-listing-body p {
  min-height: 22px;
  margin: 0 0 18px;
  color: #64748b;
  font-size: 11px;
  line-height: 1.55;
}

.gra-monitor-listing-footer {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.gra-monitor-listing-footer strong {
  color: #111827;
  font-size: 18px;
}

.gra-monitor-listing-footer a {
  color: #0756b4;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.gra-monitor-listing-message {
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid #e2c76d;
  border-radius: 13px;
  background: #fff9e7;
  color: #4b3a00;
}

.gra-monitor-listing-message p {
  margin: 7px 0 13px;
}

.gra-monitor-listing-skeleton {
  min-height: 350px;
  padding: 18px;
  border: 1px solid #dce3eb;
  border-radius: 16px;
  background: #ffffff;
}

.gra-monitor-listing-skeleton span {
  display: block;
  margin-bottom: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #edf1f6, #f8fafc, #edf1f6);
  background-size: 220% 100%;
  animation: gra-monitor-shimmer 1.4s linear infinite;
}

.gra-monitor-listing-skeleton span:first-child {
  height: 190px;
}
.gra-monitor-listing-skeleton span:nth-child(2) {
  height: 24px;
}
.gra-monitor-listing-skeleton span:nth-child(3) {
  width: 65%;
  height: 18px;
}

@keyframes gra-monitor-shimmer {
  to {
    background-position: -220% 0;
  }
}

@media (max-width: 960px) {
  .gra-monitor-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gra-monitor-market-toolbar,
  .gra-monitor-market-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .gra-monitor-market-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .gra-monitor-market {
    padding: 50px 0;
  }

  .gra-monitor-market-container {
    width: min(100% - 24px, 1180px);
  }

  .gra-monitor-listing-grid {
    grid-template-columns: 1fr;
  }

  .gra-monitor-market-sort,
  .gra-monitor-market-sort select {
    width: 100%;
  }
}
/* END GRA MONITOR LIVE LISTINGS */
