/* ===== Smash Padel — feuille de style globale ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #0f2540;
  --navy-soft: #1d3a5f;
  --teal: #0fb5ad;
  --teal-dark: #0a857f;
  --lime: #c6f23a;
  --ink: #0f2540;
  --muted: #5b6b7e;
  --line: #e3e9ef;
  --bg: #ffffff;
  --bg-soft: #f5f8fa;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(15, 37, 64, 0.08);
  --shadow-sm: 0 4px 14px rgba(15, 37, 64, 0.06);
  --max: 1180px;
  --grad-teal: linear-gradient(135deg, #0fb5ad 0%, #0f2540 100%);
  --grad-lime: linear-gradient(135deg, #c6f23a 0%, #0fb5ad 100%);
  --grad-navy: linear-gradient(135deg, #1d3a5f 0%, #0f2540 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo, .pill, .btn, .nav a {
  font-family: 'Sora', 'Inter', sans-serif;
}

a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

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

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 70px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.35rem; color: var(--navy);
  letter-spacing: -0.02em;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-teal);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.logo b { color: var(--teal); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--navy); font-weight: 600; font-size: 0.97rem;
  position: relative;
}
.nav a:hover { color: var(--teal-dark); text-decoration: none; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--teal);
  transition: width 0.2s ease;
}
.nav a:hover::after { width: 100%; }
.nav-cta {
  background: var(--navy); color: #fff !important;
  padding: 9px 18px; border-radius: 999px; font-size: 0.9rem;
}
.nav-cta:hover { background: var(--teal-dark); }
.nav-cta::after { display: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; cursor: pointer;
  border: none; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(15,181,173,0.35); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-ghost { background: rgba(255,255,255,0.14); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.24); }
.btn-amazon {
  background: var(--navy); color: #fff; width: 100%; justify-content: center;
  padding: 12px 18px; font-size: 0.95rem;
}
.btn-amazon:hover { background: var(--teal-dark); }
.btn-lime { background: var(--lime); color: var(--navy); }

/* ===== Hero ===== */
.hero { padding: 64px 0 56px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-soft); color: var(--teal-dark);
  border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 20px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.05;
  font-weight: 800; letter-spacing: -0.03em; color: var(--navy);
  margin-bottom: 20px;
}
.hero h1 .hl { color: var(--teal); }
.hero p.lead { font-size: 1.18rem; color: var(--muted); max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  aspect-ratio: 4/3.4; border-radius: 24px;
  background: var(--grad-teal); position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(198,242,58,0.55), transparent 42%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,0.25), transparent 50%);
}
.hero-visual .court-lines {
  position: absolute; inset: 16% 14%;
  border: 3px solid rgba(255,255,255,0.55); border-radius: 8px;
}
.hero-visual .court-lines::before {
  content:''; position:absolute; left:0; right:0; top:50%;
  height:3px; background:rgba(255,255,255,0.55); transform:translateY(-50%);
}
.hero-visual .court-lines::after {
  content:''; position:absolute; top:0; bottom:0; left:50%;
  width:3px; background:rgba(255,255,255,0.3); transform:translateX(-50%);
}
.hero-visual .badge-float {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,0.95); border-radius: 14px;
  padding: 16px 18px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.hero-visual .badge-float .bi {
  width: 44px; height: 44px; border-radius: 10px; background: var(--grad-lime);
  display: grid; place-items: center; font-size: 1.4rem; flex-shrink: 0;
}
.hero-visual .badge-float strong { display:block; color: var(--navy); font-family:'Sora'; }
.hero-visual .badge-float span { font-size: 0.82rem; color: var(--muted); }

/* ===== Sections ===== */
.section { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { margin-bottom: 36px; max-width: 680px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem;
  font-weight: 700; color: var(--teal-dark); margin-bottom: 10px;
  font-family: 'Sora';
}
.section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.02em; color: var(--navy); line-height: 1.12;
}
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

/* ===== Article grid ===== */
.article-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.card-article {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex; flex-direction: column;
}
.card-article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-thumb { aspect-ratio: 16/10; position: relative; }
.thumb-1 { background: var(--grad-teal); }
.thumb-2 { background: var(--grad-navy); }
.thumb-3 { background: var(--grad-lime); }
.thumb-4 { background: linear-gradient(135deg,#0fb5ad,#c6f23a); }
.thumb-5 { background: linear-gradient(135deg,#1d3a5f,#0fb5ad); }
.thumb-6 { background: linear-gradient(135deg,#0a857f,#0f2540); }
.card-thumb .cat-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.95); color: var(--navy);
  padding: 5px 12px; border-radius: 999px; font-size: 0.74rem;
  font-weight: 700; font-family: 'Sora';
}
.card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.18rem; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.card-body h3 a { color: inherit; }
.card-body h3 a:hover { color: var(--teal-dark); text-decoration: none; }
.card-body p { color: var(--muted); font-size: 0.96rem; flex: 1; }
.card-meta {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  font-size: 0.83rem; color: var(--muted);
}
.card-meta .au-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-teal); flex-shrink:0; }

/* ===== Product comparator ===== */
.affil-note {
  font-size: 0.84rem; color: var(--muted); background: var(--bg-soft);
  border: 1px dashed var(--line); border-radius: var(--radius-sm);
  padding: 10px 16px; display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 28px;
}
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease; position: relative;
}
.card-product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-product.featured { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(15,181,173,0.2); }
.ribbon {
  position: absolute; top: 14px; right: -2px; z-index: 2;
  background: var(--teal); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px 5px 12px; border-radius: 6px 0 0 6px; font-family: 'Sora';
}
.prod-visual { aspect-ratio: 1/0.82; position: relative; display:grid; place-items:center; }
.prod-visual .racket {
  width: 56%; height: 72%; border-radius: 46% 46% 30% 30%;
  background: rgba(255,255,255,0.9); position: relative;
  box-shadow: 0 10px 24px rgba(15,37,64,0.18);
}
.prod-visual .racket::after {
  content:''; position:absolute; bottom:-26%; left:50%; transform:translateX(-50%);
  width:10%; height:30%; background:rgba(255,255,255,0.9); border-radius:0 0 4px 4px;
}
.prod-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.prod-body h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 6px; }
.prod-level { font-size: 0.8rem; color: var(--teal-dark); font-weight: 600; margin-bottom: 10px; }
.stars { color: #f5a623; font-size: 0.95rem; letter-spacing: 1px; }
.stars span { color: var(--muted); font-size: 0.8rem; margin-left: 6px; }
.prod-price { font-size: 1.5rem; font-weight: 800; color: var(--navy); font-family: 'Sora'; margin: 12px 0 16px; }
.prod-price small { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.prod-body .btn-amazon { margin-top: auto; }

/* ===== Accessories band ===== */
.acc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.acc-chip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px; display: flex; align-items: center; gap: 14px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.acc-chip:hover { border-color: var(--teal); transform: translateY(-2px); }
.acc-ico {
  width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 1.3rem;
  background: var(--bg-soft);
}
.acc-chip strong { display: block; color: var(--navy); font-family: 'Sora'; font-size: 0.98rem; }
.acc-chip span { font-size: 0.83rem; color: var(--muted); }

/* ===== Newsletter ===== */
.newsletter {
  background: var(--grad-navy); border-radius: 24px; color: #fff;
  padding: 48px; text-align: center; position: relative; overflow: hidden;
}
.newsletter::before {
  content:''; position:absolute; top:-40%; right:-10%; width:340px; height:340px;
  border-radius:50%; background: radial-gradient(circle, rgba(15,181,173,0.5), transparent 70%);
}
.newsletter::after {
  content:''; position:absolute; bottom:-50%; left:-8%; width:300px; height:300px;
  border-radius:50%; background: radial-gradient(circle, rgba(198,242,58,0.28), transparent 70%);
}
.newsletter h2 { color: #fff; position: relative; }
.newsletter p { color: rgba(255,255,255,0.8); max-width: 480px; margin: 12px auto 26px; position: relative; }
.nl-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; position: relative; flex-wrap: wrap; }
.nl-form input {
  flex: 1; min-width: 200px; padding: 14px 18px; border-radius: 999px; border: none;
  font-size: 0.98rem; font-family: 'Inter';
}
.nl-form input:focus { outline: 2px solid var(--teal); }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 54px 0 26px; margin-top: 10px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.site-footer .logo { color: #fff; margin-bottom: 14px; }
.footer-about { font-size: 0.92rem; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; font-family: 'Sora'; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); font-size: 0.92rem; padding: 5px 0; }
.footer-col a:hover { color: var(--teal); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem;
}

/* ===== Breadcrumb ===== */
.breadcrumb { font-size: 0.86rem; color: var(--muted); padding: 22px 0 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--teal-dark); }
.breadcrumb span { margin: 0 7px; }

/* ===== Page hero (interior) ===== */
.page-hero { padding: 26px 0 38px; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.1; max-width: 820px;
}
.page-hero .lead { color: var(--muted); font-size: 1.12rem; max-width: 720px; margin-top: 16px; }
.byline { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-size: 0.9rem; color: var(--muted); }
.byline .au-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-teal); }
.byline strong { color: var(--navy); font-family: 'Sora'; }

/* ===== Comparator table (ranking cards) ===== */
.rank-list { display: flex; flex-direction: column; gap: 18px; }
.rank-card {
  display: grid; grid-template-columns: 60px 150px 1fr 200px; gap: 22px;
  align-items: center; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.rank-card:hover { box-shadow: var(--shadow); }
.rank-card.top { border-color: var(--teal); }
.rank-num {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  font-family: 'Sora'; font-weight: 800; font-size: 1.4rem; color: #fff;
  background: var(--grad-navy);
}
.rank-card.top .rank-num { background: var(--grad-teal); }
.rank-visual { aspect-ratio: 1/0.8; border-radius: 12px; display:grid; place-items:center; }
.rank-visual .racket {
  width: 50%; height: 70%; border-radius: 46% 46% 30% 30%; background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 18px rgba(15,37,64,0.15);
}
.rank-info h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; }
.rank-info .meta-row { display: flex; gap: 16px; flex-wrap: wrap; margin: 8px 0; font-size: 0.86rem; color: var(--muted); }
.rank-info .meta-row b { color: var(--navy); font-family: 'Sora'; font-weight: 600; }
.rank-info p { font-size: 0.92rem; color: var(--muted); margin-top: 6px; }
.rank-buy { text-align: center; }
.rank-buy .prod-price { margin: 0 0 12px; }

/* ===== Content prose ===== */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.6rem; color: var(--navy); font-weight: 800; margin: 38px 0 14px; letter-spacing: -0.01em; }
.prose h3 { font-size: 1.22rem; color: var(--navy); margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; color: #34465a; }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: #34465a; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--navy); }

/* ===== TOC / sommaire ===== */
.toc {
  background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm); padding: 20px 24px; margin: 28px 0 36px; max-width: 760px;
}
.toc h4 { font-family: 'Sora'; color: var(--navy); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.toc ol { margin: 0 0 0 20px; }
.toc li { margin-bottom: 7px; }
.toc a { color: var(--navy-soft); font-weight: 500; }
.toc a:hover { color: var(--teal-dark); }

/* ===== Affiliate inline box ===== */
.affil-box {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 20px; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; margin: 30px 0; max-width: 760px;
}
.affil-box .ab-visual { aspect-ratio: 1/1; border-radius: 12px; background: var(--grad-teal); display:grid; place-items:center; }
.affil-box .ab-visual .racket { width: 52%; height: 70%; border-radius: 46% 46% 30% 30%; background: rgba(255,255,255,0.9); }
.affil-box h4 { font-family: 'Sora'; font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.affil-box .stars { margin-bottom: 4px; }
.affil-box p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.affil-box .ab-cta { text-align: center; }

/* ===== FAQ ===== */
.faq { max-width: 800px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 24px; margin-bottom: 14px; background: #fff; }
.faq-item h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ===== Criteria grid ===== */
.crit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; }
.crit-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.crit-card .ci { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-lime); display:grid; place-items:center; font-size:1.3rem; margin-bottom: 14px; }
.crit-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.crit-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 520px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .product-grid.three { grid-template-columns: repeat(2, 1fr); }
  .acc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .crit-grid { grid-template-columns: repeat(2, 1fr); }
  .rank-card { grid-template-columns: 50px 110px 1fr; }
  .rank-buy { grid-column: 2 / 4; display: flex; align-items: center; gap: 18px; justify-content: flex-start; }
  .rank-buy .prod-price { margin: 0; }
  .rank-buy .btn-amazon { width: auto; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .article-grid { grid-template-columns: 1fr; }
  .product-grid, .product-grid.three { grid-template-columns: 1fr; }
  .acc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .crit-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 34px 22px; }
  .rank-card { grid-template-columns: 48px 1fr; }
  .rank-visual { display: none; }
  .rank-buy { grid-column: 1 / 3; flex-wrap: wrap; }
  .affil-box { grid-template-columns: 1fr; text-align: center; }
  .affil-box .ab-visual { max-width: 110px; margin: 0 auto; }
  .section { padding: 42px 0; }
}
