/* ============================================
   welke-padelracket.nl — Design System v1.0
   Light + clean, mobile-first
   ============================================ */

/* --- Fonts --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-latin-700.woff2') format('woff2');
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAFA;
  --bg-white: #FFFFFF;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --accent-light: #EFF6FF;
  --cta: #F97316;
  --cta-hover: #EA580C;
  --success: #10B981;
  --success-light: #ECFDF5;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 960px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header --- */
.header {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.header-nav > a,
.nav-dropdown > .nav-trigger {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 6px 12px;
  border-radius: var(--radius);
}

.header-nav > a:hover,
.nav-dropdown:hover > .nav-trigger {
  color: var(--accent);
  background: var(--accent-light);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  margin-top: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  font-weight: 400;
  line-height: 1.4;
}

.nav-dropdown-menu a:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.nav-dropdown-menu .nav-section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px 4px;
}

.nav-dropdown-menu .nav-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 8px;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

/* Mobile menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  border-radius: var(--radius);
}

.mobile-menu-btn:hover {
  background: var(--accent-light);
  color: var(--accent);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile nav open state */
.header-nav.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  gap: 4px;
  z-index: 150;
}

.header-nav.mobile-open .nav-dropdown-menu {
  display: none;
  position: static;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0 0 0 12px;
}

.header-nav.mobile-open .nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

@media (max-width: 767px) {
  .header {
    position: relative;
  }
}

.logo {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.logo:hover {
  color: var(--text);
  opacity: 0.85;
}

.logo-img {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.logo-text {
  color: var(--text);
}

.logo-text strong {
  font-weight: 700;
}

.logo-tld {
  color: var(--text-muted);
  font-size: 14px;
  margin-left: -4px;
}

.header-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  padding: 8px 16px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.header-cta:hover {
  background: var(--accent);
  color: white;
}

@media (max-width: 767px) {
  .header-cta {
    display: none;
  }
}

/* --- Hero (split layout) --- */
.hero {
  padding: 48px 0 40px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 440px;
  line-height: 1.5;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}

.hero-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

.hero-meta {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-meta svg {
  color: var(--success);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content {
    text-align: center;
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-visual img {
    aspect-ratio: 3/4;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* --- Social Proof --- */
.social-proof {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.social-proof-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-item {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-item svg {
  flex-shrink: 0;
}

.proof-item strong {
  color: var(--text);
}

/* --- Quiz Section --- */
.quiz-section {
  padding: 48px 0;
  display: none;
}

.quiz-section.active {
  display: block;
}

.quiz-progress {
  max-width: 560px;
  margin: 0 auto 32px;
}

.quiz-progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.quiz-progress-text {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.quiz-step {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-step h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.quiz-step p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* --- Option Cards --- */
.options-grid {
  display: grid;
  gap: 12px;
}

.options-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.options-grid.cols-4 {
  grid-template-columns: repeat(2, 1fr);
}

.option-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.option-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.option-card.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.option-card.selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 10px;
  background: var(--accent);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.option-icon,
.option-visual {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.option-visual svg {
  width: 28px;
  height: 28px;
}

.option-card:hover .option-visual,
.option-card.selected .option-visual {
  color: var(--accent-hover);
}

.option-label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.option-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Shape visual (step 3) */
/* Shape visuals (vorm stap) get larger icons */
.options-grid .option-card .option-visual svg[width="48"] {
  width: 48px;
  height: 48px;
}

/* --- Quiz Navigation --- */
.quiz-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-primary:disabled {
  background: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.btn-cta {
  background: var(--cta);
  color: white;
  font-size: 18px;
  padding: 14px 32px;
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}

.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

/* --- Results Section --- */
.results-section {
  padding: 16px 0 64px;
  display: none;
}

.results-section.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.results-profile {
  text-align: center;
  margin-bottom: 16px;
}

.results-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--success-light);
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.results-profile h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

/* Profile summary tags */
.profile-tags {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.profile-tag {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* --- Racket Cards Grid --- */
.racket-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
  align-items: end;
}

/* --- Racket Comparison Grid (3-column center-stage) --- */
.racket-col {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: var(--transition);
}

.racket-col:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(37,99,235,0.08);
}

.racket-col--best {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(37,99,235,0.12);
  padding: 24px 16px 20px;
  transform: scale(1.04);
  z-index: 1;
}

.racket-col-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.racket-col-rank {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.racket-col-img {
  width: 120px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
}

.racket-col--best .racket-col-img {
  width: 140px;
  height: 160px;
}

.racket-col-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.racket-col-match {
  display: inline-flex;
  align-items: center;
  background: var(--success-light);
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.racket-col--best .racket-col-match {
  font-size: 14px;
  padding: 5px 14px;
}

.racket-col-brand {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.racket-col-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}

.racket-col--best .racket-col-name {
  font-size: 18px;
}

.racket-col-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.racket-col--best .racket-col-price {
  font-size: 24px;
}

.racket-col-specs {
  width: 100%;
  margin-bottom: 14px;
}

.rc-spec {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.rc-spec:last-child {
  border-bottom: none;
}

.rc-spec-label {
  color: var(--text-muted);
}

.rc-spec-val {
  font-weight: 600;
  color: var(--text);
}

.racket-col-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--bg);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
  margin-top: auto;
}

.racket-col-cta:hover {
  background: var(--accent);
  color: white;
}

.racket-col-cta--primary {
  background: var(--cta);
  color: white;
  border-color: var(--cta);
  font-size: 15px;
  padding: 12px 24px;
}

.racket-col-cta--primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  color: white;
  transform: translateY(-1px);
}

/* --- "Waarom dit racket" bullets --- */
.racket-col-why {
  width: 100%;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 12px;
  text-align: left;
}

.rc-why-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.rc-why-bullet {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.rc-why-warn {
  font-size: 12px;
  color: #B45309;
  margin-top: 4px;
}

/* --- Trust microcopy under CTA --- */
.racket-col-trust {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
  line-height: 1.4;
}

.racket-col-pricecheck {
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 4px;
}

/* --- Quiz "Waarom we dit vragen" --- */
.quiz-why {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.quiz-why svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.quiz-why a {
  color: var(--accent);
}

/* Comparison is integrated in the grid */
.comparison { display: none; }

/* --- Retry CTA --- */
.retry-section {
  text-align: center;
  padding: 32px 0;
}

.retry-section p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* --- How It Works --- */
.how-it-works {
  padding: 48px 0;
  text-align: center;
}

.how-it-works h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  padding: 24px 16px;
}

.step-number,
.step-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 12px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq-section {
  padding: 48px 0;
}

.faq-section h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-item.open .faq-question::after {
  content: '−';
  color: var(--accent);
}

.faq-answer {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-bottom: 16px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- Footer --- */
/* --- Explore Section --- */
.explore-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.explore-section h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 24px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.explore-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.explore-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.explore-card h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.explore-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.explore-card a {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

.explore-card a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Review chips grid */
.explore-reviews-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 28px 0 14px;
}

.explore-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
}

.review-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.review-chip:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
  color: var(--accent);
}

.review-chip-brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg);
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}

.review-chip-price {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .explore-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }
  .explore-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Footer --- */
.footer {
  padding: 40px 0 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.footer a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer a:hover {
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
}

.footer-disclaimer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* --- Cookie Consent --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  font-size: 14px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--accent);
  color: white;
}

.cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ============================================
   Responsive
   ============================================ */
@media (min-width: 640px) {
  .options-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  /* Stack racket columns on mobile, best match first */
  .racket-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .racket-col--best {
    transform: none;
    order: -1 !important;
  }

  .racket-col {
    order: 0 !important;
  }

  .racket-col-img {
    width: 100px;
    height: 120px;
  }

  .racket-col--best .racket-col-img {
    width: 120px;
    height: 140px;
  }
}

@media (max-width: 639px) {
  .options-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .option-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 16px;
  }

  .option-icon,
  .option-visual {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .social-proof-inner {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================
   Article / Content Pages
   ============================================ */

/* --- Breadcrumbs --- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(37, 99, 235, 0.35);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--accent-hover);
  text-decoration-color: var(--accent-hover);
}

.breadcrumbs .sep {
  color: var(--text-muted);
  margin: 0 2px;
  font-size: 0.9em;
}

.breadcrumbs .current {
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Article Layout --- */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0 48px;
}

.article-header {
  margin-bottom: 32px;
}

.product-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.product-hero-img {
  flex-shrink: 0;
  width: 160px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-hero-info {
  flex: 1;
  min-width: 0;
}

.product-hero-brand {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 4px;
}

.product-hero-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.product-hero-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  font-size: 14px;
}

.product-hero-specs dt {
  color: var(--text-muted);
}

.product-hero-specs dd {
  font-weight: 600;
  margin: 0;
}

.product-hero-price {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.product-hero-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .product-hero {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }
  .product-hero-img {
    width: 120px;
    height: 180px;
  }
  .product-hero-specs {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

.article-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.article h1 {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.article-intro {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.article-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Article Body --- */
.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-top: 8px;
}

.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 28px 0 12px;
}

.article-body p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.article-body ul, .article-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.article-body strong {
  font-weight: 700;
}

.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.article-body a:hover {
  color: var(--accent-hover);
}

/* --- Tip Box --- */
.tip-box {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: 15px;
}

.tip-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
}

.warning-box {
  background: #FEF3C7;
  border-left: 4px solid #F59E0B;
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: 15px;
}

.warning-box strong {
  display: block;
  margin-bottom: 4px;
  color: #B45309;
}

/* --- Specs Table --- */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

.specs-table th {
  text-align: left;
  padding: 10px 16px;
  background: var(--bg);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  width: 40%;
}

.specs-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}

/* --- Verdict Box --- */
.verdict-box {
  background: var(--bg-white);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}

.verdict-box h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.verdict-score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.verdict-box p {
  margin-bottom: 0;
}

/* --- Pro/Con Lists --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.pros, .cons {
  padding: 16px;
  border-radius: var(--radius-sm);
}

.pros {
  background: var(--success-light);
}

.cons {
  background: #FEF2F2;
}

.pros h4, .cons h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pros h4 { color: var(--success); }
.cons h4 { color: #DC2626; }

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.pros li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.cons li::before { content: '✗ '; color: #DC2626; font-weight: 700; }

.pros li, .cons li {
  margin-bottom: 6px;
}

/* --- Category Grid --- */
.category-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.category-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
  position: relative;
}

.category-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.category-card-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.category-card:first-child .category-card-rank {
  background: var(--cta);
}

.category-card-body {
  padding-left: 40px;
}

.category-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.category-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.category-card h3 a:hover {
  color: var(--accent);
}

.category-card-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.category-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.category-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.category-card-tag {
  font-size: 12px;
  background: var(--bg);
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  margin: 40px 0;
}

.cta-banner h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.cta-banner p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.cta-banner .btn {
  background: white;
  color: var(--accent);
}

.cta-banner .btn:hover {
  background: var(--accent-light);
}

/* --- Related Rackets --- */
.related-rackets {
  margin: 32px 0;
}

.related-rackets h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.related-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  display: block;
}

.related-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

.related-card-brand {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.related-card-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.related-card-price {
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
}

/* --- Comparison Table (article version) --- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-table th {
  background: var(--bg);
  text-align: left;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 13px;
  border-bottom: 2px solid var(--border);
}

.compare-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .winner {
  background: var(--success-light);
  font-weight: 700;
}

/* --- Brand Cards --- */
.brand-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 16px 0;
}

.brand-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.brand-card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* --- Article Page Responsive --- */
@media (max-width: 639px) {
  .article h1 {
    font-size: 26px;
  }

  .article-body h2 {
    font-size: 20px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 28px 16px;
  }

  .cta-banner h2 {
    font-size: 20px;
  }

  .compare-table {
    font-size: 12px;
  }

  .compare-table th,
  .compare-table td {
    padding: 8px 10px;
  }
}

/* --- VS Comparison Pages --- */
.vs-verdict {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 24px 0 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.vs-verdict-card {
  flex: 1;
  padding: 24px;
  background: var(--bg-white);
  text-align: center;
}

.vs-verdict-card:first-child {
  border-right: 1px solid var(--border);
}

.vs-verdict-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.vs-verdict-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.vs-verdict-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.vs-verdict-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.vs-verdict-win {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  background: var(--success-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.vs-verdict-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-width: 48px;
  background: var(--bg);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.vs-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 16px 0 8px;
}

.vs-col {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.vs-col-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.vs-score {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vs-score-bar {
  flex: 1;
  height: 6px;
  background: var(--accent-light);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
}

.vs-score-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.vs-score-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.vs-winner-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 32px;
}

.vs-conclusion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 16px 0 24px;
}

.vs-conclusion-col {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.vs-conclusion-col h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.vs-conclusion-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.vs-conclusion-col li {
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.5;
}

.vs-conclusion-col li::before {
  content: '\2713';
  color: var(--success);
  font-weight: 700;
  margin-right: 8px;
}

.btn-sm {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.btn-sm:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 639px) {
  .vs-verdict {
    flex-direction: column;
  }

  .vs-verdict-card:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .vs-verdict-divider {
    width: 100%;
    min-width: 100%;
    height: 36px;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .vs-section,
  .vs-conclusion {
    grid-template-columns: 1fr;
  }
}
