
:root{
  --bg:#07131f;
  --bg-soft:#0d2032;
  --surface:#ffffff;
  --surface-soft:#f3f7fb;
  --text:#142033;
  --muted:#64748b;
  --primary:#0d5b95;
  --primary-dark:#08395f;
  --accent:#ffb000;
  --accent-soft:#ffd166;
  --success:#12805c;
  --line:#dce6ef;
  --shadow:0 18px 45px rgba(0,0,0,.16);
  --shadow-soft:0 10px 28px rgba(15,48,78,.10);
  --radius:20px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    linear-gradient(rgba(3,15,28,.82),rgba(3,15,28,.92)),
    url("fond-pneu-premium.png") center center/cover fixed no-repeat;
  line-height:1.65;
  overflow-x:hidden;
}
a{color:var(--primary)}
img{max-width:100%;height:auto}
button{font:inherit}

#reading-progress{
  position:fixed;
  left:0;
  top:0;
  height:4px;
  width:0;
  z-index:9999;
  background:linear-gradient(90deg,var(--accent),#fff2a6,var(--accent));
  box-shadow:0 0 14px rgba(255,176,0,.75);
}

header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(5,20,36,.90);
  backdrop-filter:blur(14px);
  box-shadow:0 8px 24px rgba(0,0,0,.22);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar{
  max-width:1180px;
  margin:auto;
  padding:13px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:white;
  font-size:1.42rem;
  font-weight:900;
  letter-spacing:.2px;
  white-space:nowrap;
}
.logo::before{
  content:"";
  width:42px;
  height:42px;
  border-radius:50%;
  border:8px solid #172534;
  outline:3px dashed #c7d3dd;
  box-shadow:inset 0 0 0 4px #8fa0ad,0 0 16px rgba(255,176,0,.25);
  background:#687887;
  transition:transform .65s ease,box-shadow .3s ease;
}
.logo:hover::before{
  transform:rotate(180deg);
  box-shadow:inset 0 0 0 4px #aab7c1,0 0 24px rgba(255,176,0,.55);
}
nav{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
nav a{
  color:#e8f2fa;
  text-decoration:none;
  font-weight:800;
  padding:9px 12px;
  border-radius:10px;
  transition:background .2s ease,color .2s ease,transform .2s ease;
}
nav a:hover,nav a.active{
  color:white;
  background:rgba(255,255,255,.12);
  transform:translateY(-1px);
}
.menu-toggle{
  display:none;
  border:0;
  background:rgba(255,255,255,.12);
  color:white;
  width:44px;
  height:44px;
  border-radius:11px;
  cursor:pointer;
  font-size:1.35rem;
}

.hero{
  min-height:590px;
  padding:80px 22px;
  display:flex;
  align-items:center;
  color:white;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(3,15,28,.97) 0%,rgba(4,39,68,.83) 45%,rgba(4,32,58,.26) 100%),
    url("fond-pneu-premium.png") center right/cover no-repeat;
  animation:heroDrift 18s ease-in-out infinite alternate;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto -10% -45% 35%;
  height:70%;
  background:radial-gradient(circle,rgba(0,157,255,.25),transparent 62%);
  filter:blur(18px);
  pointer-events:none;
}
.hero-inner{
  width:100%;
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:38px;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero h1{
  margin:0 0 18px;
  max-width:820px;
  font-size:clamp(2.5rem,6vw,5rem);
  line-height:1.02;
  letter-spacing:-1.8px;
  text-shadow:0 5px 22px rgba(0,0,0,.32);
}
.hero p{
  max-width:760px;
  margin:0 0 24px;
  font-size:1.16rem;
  color:#e4f1fa;
}
.hero-box{
  padding:26px;
  border-radius:24px;
  background:rgba(255,255,255,.11);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}
.hero-box strong{
  display:block;
  font-size:1.2rem;
  margin-bottom:8px;
}

.btn,.amazon-btn,.article a[href*="amzn.to"]{
  display:inline-block;
  position:relative;
  overflow:hidden;
  padding:13px 19px;
  border-radius:11px;
  background:linear-gradient(135deg,var(--accent),#ffc943);
  color:#192230!important;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 10px 24px rgba(255,176,0,.32);
  transition:transform .2s ease,box-shadow .2s ease;
}
.btn:hover,.amazon-btn:hover,.article a[href*="amzn.to"]:hover{
  transform:translateY(-3px) scale(1.01);
  box-shadow:0 14px 32px rgba(255,176,0,.48);
}
.btn::after,.amazon-btn::after,.article a[href*="amzn.to"]::after{
  content:"";
  position:absolute;
  top:-35%;
  left:-45%;
  width:34%;
  height:170%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.72),transparent);
  transform:skewX(-24deg);
  animation:buttonShine 3.8s ease-in-out infinite;
}

main{
  max-width:1180px;
  margin:36px auto;
  padding:38px 22px;
  background:rgba(244,248,252,.95);
  border-radius:26px;
  box-shadow:var(--shadow);
}
body.home-page main{
  margin-top:0;
  border-radius:0 0 26px 26px;
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin:8px 0 22px;
}
.section-head h2{margin:0;font-size:1.9rem;color:var(--primary-dark)}
.section-head p{margin:0;color:var(--muted)}

.feature-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:4px 0 40px;
}
.feature{
  background:white;
  border:1px solid var(--line);
  border-radius:16px;
  padding:19px;
  box-shadow:var(--shadow-soft);
}
.feature strong{
  display:block;
  margin-bottom:5px;
  color:var(--primary-dark);
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(245px,1fr));
  gap:22px;
}
.card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#fff,#f9fbfd);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:23px;
  box-shadow:var(--shadow-soft);
  transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease;
}
.card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .28s ease;
}
.card:hover{
  transform:translateY(-7px);
  box-shadow:0 18px 40px rgba(15,48,78,.16);
  border-color:#b9cedf;
}
.card:hover::before{transform:scaleX(1)}
.card h2,.card h3{
  margin:0 0 10px;
  line-height:1.28;
  color:var(--primary-dark);
}
.card p{
  margin:0 0 14px;
  color:var(--muted);
}
.card a{
  font-weight:900;
  text-decoration:none;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:5px 10px;
  margin-bottom:11px;
  border-radius:999px;
  background:#e6f2fb;
  color:var(--primary);
  font-size:.78rem;
  font-weight:900;
}

.article{
  max-width:900px;
  margin:auto;
  padding:clamp(24px,5vw,50px);
  border-radius:24px;
  background:white;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.article h1{
  margin:0 0 18px;
  color:var(--primary-dark);
  font-size:clamp(2rem,5vw,3.25rem);
  line-height:1.08;
  letter-spacing:-.7px;
}
.article h2{
  margin-top:34px;
  color:var(--primary);
  font-size:1.48rem;
}
.article p,.article li{font-size:1.04rem}
.article ul,.article ol{padding-left:24px}
.article li{margin:8px 0}
.article small{
  display:inline-block;
  padding:8px 11px;
  border-radius:9px;
  background:#f0f4f8;
  color:var(--muted);
}
.notice{
  margin:20px 0;
  padding:16px 18px;
  border-radius:12px;
  background:#fff8e7;
  border:1px solid #ffe0a0;
  border-left:5px solid var(--accent);
}
table{
  width:100%;
  border-collapse:collapse;
  margin:22px 0;
}
th,td{
  padding:12px;
  border:1px solid var(--line);
  text-align:left;
}
th{background:#eaf3f9;color:var(--primary-dark)}

.related-articles{
  margin-top:38px;
  padding-top:26px;
  border-top:1px solid var(--line);
}
.related-articles h2{margin-top:0}
.related-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:14px;
}
.related-grid a{
  display:block;
  padding:14px;
  border-radius:12px;
  background:#eef5fa;
  text-decoration:none;
  font-weight:800;
  transition:background .2s ease,transform .2s ease;
}
.related-grid a:hover{
  background:#dfeef8;
  transform:translateY(-2px);
}

.ad-slot{
  min-height:112px;
  margin:30px auto;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:1px dashed rgba(13,91,149,.48);
  border-radius:16px;
  background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(237,245,250,.96));
  color:var(--muted);
  box-shadow:var(--shadow-soft);
}
.ad-slot::before{
  content:"Espace publicitaire — Google AdSense à connecter";
  font-size:.9rem;
  font-weight:800;
}

footer{
  margin-top:50px;
  background:rgba(4,18,32,.96);
  color:#dfeaf3;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-inner{
  max-width:1180px;
  margin:auto;
  padding:34px 22px;
}
footer a{
  color:#ffd166;
  text-decoration:none;
  margin-right:15px;
}
footer p{margin:8px 0}

#back-to-top{
  position:fixed;
  right:22px;
  bottom:22px;
  width:48px;
  height:48px;
  border:0;
  border-radius:50%;
  background:linear-gradient(135deg,var(--accent),#ffc943);
  color:#182232;
  font-size:1.25rem;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(0,0,0,.24);
  opacity:0;
  pointer-events:none;
  transform:translateY(15px);
  transition:opacity .25s ease,transform .25s ease;
  z-index:999;
}
#back-to-top.visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@keyframes heroDrift{
  from{background-position:center right}
  to{background-position:58% center}
}
@keyframes buttonShine{
  0%,55%{left:-45%}
  100%{left:125%}
}

@media(max-width:800px){
  .menu-toggle{display:block}
  .topbar{position:relative}
  nav{
    position:absolute;
    left:16px;
    right:16px;
    top:70px;
    display:none;
    padding:12px;
    background:rgba(5,20,36,.98);
    border-radius:14px;
    box-shadow:0 16px 36px rgba(0,0,0,.3);
  }
  nav.open{display:grid}
  nav a{display:block}
  .hero{
    min-height:520px;
    padding:58px 18px;
  }
  .hero-inner{grid-template-columns:1fr}
  .hero-box{display:none}
  main{
    margin:22px 12px;
    padding:26px 14px;
    border-radius:18px;
  }
  .feature-row{grid-template-columns:1fr}
  .article{padding:24px 18px;border-radius:17px}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }
}


/* Emplacements publicitaires visibles avant connexion AdSense */
.ad-slot{
  min-height:140px !important;
  margin:34px auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  border:2px dashed #0d5b95 !important;
  border-radius:16px !important;
  background:linear-gradient(135deg,#ffffff,#eaf3f9) !important;
  color:#334155 !important;
  box-shadow:0 10px 26px rgba(15,48,78,.12) !important;
}
.ad-slot::before{
  content:"Espace publicitaire — Google AdSense à connecter" !important;
  font-size:1rem !important;
  font-weight:900 !important;
}


/* Cartes d'articles plus vivantes */
.grid{gap:24px}
.card,.feature,.related-grid a{
  position:relative;
  overflow:hidden;
}
.card{
  background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(245,249,255,.98)) !important;
  border:1px solid rgba(255,255,255,.6) !important;
  box-shadow:0 16px 38px rgba(15,48,78,.14) !important;
  backdrop-filter:blur(2px);
}
.card::after{
  content:"";
  position:absolute;
  width:140px;
  height:140px;
  border-radius:50%;
  right:-35px;
  top:-35px;
  opacity:.42;
  filter:blur(8px);
  pointer-events:none;
}
.card:nth-child(6n+1){background:linear-gradient(135deg,#fff7ed 0%,#ffe7d1 100%) !important}
.card:nth-child(6n+1)::after{background:radial-gradient(circle,#ff8a00 0%,#ffd39a 60%,transparent 72%)}
.card:nth-child(6n+2){background:linear-gradient(135deg,#eef8ff 0%,#d9ecff 100%) !important}
.card:nth-child(6n+2)::after{background:radial-gradient(circle,#2f8fff 0%,#a7d2ff 60%,transparent 72%)}
.card:nth-child(6n+3){background:linear-gradient(135deg,#eefcf4 0%,#d4f6e1 100%) !important}
.card:nth-child(6n+3)::after{background:radial-gradient(circle,#14b86a 0%,#9de5bd 60%,transparent 72%)}
.card:nth-child(6n+4){background:linear-gradient(135deg,#fff4fb 0%,#ffe0f1 100%) !important}
.card:nth-child(6n+4)::after{background:radial-gradient(circle,#d946a7 0%,#f8b6dc 60%,transparent 72%)}
.card:nth-child(6n+5){background:linear-gradient(135deg,#f4f2ff 0%,#e5ddff 100%) !important}
.card:nth-child(6n+5)::after{background:radial-gradient(circle,#7c4dff 0%,#c4b1ff 60%,transparent 72%)}
.card:nth-child(6n+6){background:linear-gradient(135deg,#fffceb 0%,#fff0b8 100%) !important}
.card:nth-child(6n+6)::after{background:radial-gradient(circle,#ffb000 0%,#ffe37a 60%,transparent 72%)}
.card:hover{
  transform:translateY(-8px) scale(1.015) !important;
  box-shadow:0 22px 46px rgba(15,48,78,.20) !important;
}
.card::before{
  height:6px !important;
  background:linear-gradient(90deg,#0d5b95,#1ea7ff,#ffb000,#ff5f6d) !important;
  transform:scaleX(1) !important;
  opacity:.95;
}
.card h2,.card h3{
  color:#0f2f4c !important;
  position:relative;
  z-index:1;
}
.card p{
  color:#334155 !important;
  position:relative;
  z-index:1;
}
.badge{
  background:linear-gradient(135deg,rgba(255,255,255,.85),rgba(255,255,255,.55)) !important;
  color:#0d3d64 !important;
  box-shadow:0 8px 20px rgba(13,91,149,.12);
  border:1px solid rgba(255,255,255,.75);
  position:relative;
  z-index:1;
}
.card a{
  display:inline-block;
  margin-top:4px;
  padding:10px 14px;
  border-radius:10px;
  background:rgba(255,255,255,.72);
  color:#0d3d64 !important;
  box-shadow:0 8px 18px rgba(15,48,78,.08);
  position:relative;
  z-index:1;
}
.card a:hover{
  background:white;
  transform:translateY(-1px);
}
.feature{
  background:linear-gradient(135deg,#ffffff,#eef7ff) !important;
  border:1px solid #dce6ef !important;
}
.related-grid a{
  background:linear-gradient(135deg,#f2f8ff,#e2f1ff) !important;
  border:1px solid #d5e6f7;
  box-shadow:0 8px 18px rgba(15,48,78,.08);
}
.related-grid a:hover{
  background:linear-gradient(135deg,#fff7dd,#ffe7a8) !important;
}

/* Correction finale de lisibilité */
main,
main p,
main li,
main label,
main small{
  color:#142033 !important;
}

main h1,
main h2,
main h3,
main h4,
.section-head h2,
.feature strong{
  color:#08395f !important;
}

.card h2,
.card h3{
  color:#0f2f4c !important;
  text-shadow:none !important;
}

.card p{
  color:#334155 !important;
}

.card a{
  color:#0d3d64 !important;
}

.badge{
  color:#0d3d64 !important;
}

.article{
  color:#142033 !important;
  background:#ffffff !important;
}

.article h1{
  color:#08395f !important;
}

.article h2{
  color:#0d5b95 !important;
}

.article p,
.article li{
  color:#142033 !important;
}


/* DIDICHPNEU GUIDE MAGAZINE V1 */
.guide-mag{max-width:1120px;padding:0;overflow:hidden}
.guide-cover{position:relative;min-height:420px;display:flex;align-items:flex-end;background:#07131f center/cover no-repeat;color:#fff}
.guide-cover:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,15,28,.96),rgba(3,15,28,.62) 52%,rgba(3,15,28,.08))}
.guide-cover-content{position:relative;z-index:1;max-width:700px;padding:48px}
.guide-cover .badge{background:#ffb000;color:#172230;margin-bottom:14px}
.guide-cover h1{font-size:clamp(2.2rem,5vw,4.2rem);line-height:1.04;color:#fff;margin:0 0 16px}
.guide-cover p{font-size:1.12rem;color:#edf6fc;margin:0}
.guide-layout{display:grid;grid-template-columns:245px minmax(0,1fr);gap:34px;padding:34px 38px 48px}
.guide-toc{position:sticky;top:88px;align-self:start;border:1px solid var(--line);border-radius:16px;background:#f8fbfe;padding:18px;box-shadow:var(--shadow-soft)}
.guide-toc strong{display:block;color:var(--primary-dark);margin-bottom:10px}
.guide-toc a{display:block;padding:7px 0;text-decoration:none;font-size:.92rem;border-bottom:1px dashed #dce6ef}
.guide-content h2{scroll-margin-top:100px;color:var(--primary-dark);font-size:1.7rem;margin-top:38px;border-left:5px solid var(--accent);padding-left:14px}
.guide-content h3{color:var(--primary-dark);margin-top:28px}
.guide-lead{font-size:1.12rem;color:#334155}
.guide-visual{margin:24px 0;border-radius:18px;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow-soft);overflow:hidden}
.guide-visual img{width:100%;display:block}
.guide-caption{padding:10px 14px;color:var(--muted);font-size:.88rem;background:#f8fbfe}
.guide-note,.guide-warning,.guide-tip{padding:18px 20px;border-radius:14px;margin:22px 0}
.guide-note{background:#eef7ff;border-left:5px solid #0d5b95}
.guide-warning{background:#fff5f3;border-left:5px solid #dc2626}
.guide-tip{background:#f1fbf4;border-left:5px solid #15803d}
.guide-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:22px 0}
.guide-card{border:1px solid var(--line);border-radius:15px;padding:18px;background:#fff;box-shadow:var(--shadow-soft)}
.guide-card strong{display:block;color:var(--primary-dark);margin-bottom:7px}
.guide-checklist{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin:20px 0}
.guide-checklist div{background:#f8fbfe;border:1px solid var(--line);border-radius:12px;padding:14px}
.guide-sellers{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:22px}
.guide-seller{border:1px solid var(--line);border-radius:16px;padding:20px;text-align:center;background:#fff;box-shadow:var(--shadow-soft)}
.guide-seller a{display:block;margin-top:14px}
.guide-faq details{border:1px solid var(--line);border-radius:12px;margin:10px 0;background:#fff;padding:14px 16px}
.guide-faq summary{font-weight:800;color:var(--primary-dark);cursor:pointer}
.source-box{font-size:.9rem;background:#f8fafc;border:1px solid var(--line);border-radius:12px;padding:16px;margin-top:28px}
@media(max-width:850px){.guide-layout{grid-template-columns:1fr;padding:24px 18px 38px}.guide-toc{position:static}.guide-cover{min-height:360px}.guide-cover-content{padding:32px 22px}.guide-cards,.guide-sellers{grid-template-columns:1fr}.guide-checklist{grid-template-columns:1fr}}


/* DIDICHPNEU ACCUEIL MAGAZINE V1 */
.home-magazine{background:#f3f6f9}
.home-main{max-width:none;padding:0}
.home-logo{display:flex;align-items:center;gap:9px;text-decoration:none}
.home-logo-wheel{display:grid;place-items:center;width:36px;height:36px;border:5px dotted #a8bbc8;border-radius:50%;color:#d8e6ef;font-size:.85rem}
.home-hero{position:relative;min-height:560px;display:flex;align-items:center;background:
linear-gradient(90deg,rgba(3,14,25,.96),rgba(3,14,25,.64) 53%,rgba(3,14,25,.1)),
url("guide-pneu-4-saisons-hero.webp") center/cover no-repeat;color:white}
.home-hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.28))}
.home-hero-content{position:relative;z-index:1;width:min(1180px,calc(100% - 40px));margin:auto;padding:74px 0;max-width:1180px}
.home-hero-content>p{max-width:720px;font-size:1.22rem;line-height:1.75;color:#edf5fa}
.home-kicker,.home-eyebrow{display:inline-block;text-transform:uppercase;letter-spacing:.09em;font-weight:900;font-size:.78rem;color:#0b67a3;background:#eaf6ff;padding:8px 12px;border-radius:999px}
.home-hero .home-kicker{background:#ffb000;color:#17212b}
.home-hero h1{max-width:820px;font-size:clamp(2.65rem,6vw,5.2rem);line-height:1.01;color:white;margin:18px 0 20px;text-shadow:0 4px 22px rgba(0,0,0,.38)}
.home-actions{display:flex;gap:14px;flex-wrap:wrap;margin:28px 0}
.home-btn{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:12px 20px;border-radius:12px;text-decoration:none;font-weight:900;transition:.2s}
.home-btn-primary{background:#0d67a8;color:#fff!important;box-shadow:0 10px 25px rgba(13,103,168,.25)}
.home-btn-primary:hover{transform:translateY(-2px);background:#09568d}
.home-btn-light{background:#fff;color:#0e3656!important}
.home-trust-row{display:flex;gap:22px;flex-wrap:wrap;color:#f5fbff;font-weight:700;font-size:.94rem}
.home-quick{width:min(1180px,calc(100% - 40px));margin:-48px auto 48px;position:relative;z-index:3;display:grid;grid-template-columns:repeat(4,1fr);gap:15px}
.home-quick-card{display:flex;flex-direction:column;gap:6px;background:#fff;border:1px solid #dbe5ed;border-radius:18px;padding:22px;text-decoration:none;box-shadow:0 15px 32px rgba(15,44,68,.13);transition:.2s}
.home-quick-card:hover{transform:translateY(-5px);box-shadow:0 20px 40px rgba(15,44,68,.18)}
.home-quick-card strong{color:#0b3659;font-size:1.08rem}
.home-quick-card small{color:#526577;line-height:1.5}
.home-quick-icon{font-size:1.55rem}
.home-section{width:min(1180px,calc(100% - 40px));margin:0 auto;padding:62px 0}
.home-section-head{max-width:800px;margin-bottom:28px}
.home-section-head h2{font-size:clamp(2rem,4vw,3rem);line-height:1.12;color:#08395f;margin:12px 0}
.home-section-head p{font-size:1.06rem;color:#465b6c;line-height:1.75}
.home-head-row{max-width:none;display:flex;align-items:end;justify-content:space-between;gap:22px}
.home-text-link{font-weight:900;color:#0d67a8!important;text-decoration:none}
.home-guide-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.home-info-card{background:#fff;border:1px solid #dce6ee;border-radius:20px;padding:26px;box-shadow:0 12px 28px rgba(15,44,68,.08)}
.home-info-card h3{color:#0c3c62;margin:13px 0}
.home-info-card p{color:#44596a;line-height:1.7}
.home-info-card a{font-weight:900;color:#0d67a8;text-decoration:none}
.home-number{display:grid;place-items:center;width:38px;height:38px;border-radius:50%;background:#0d67a8;color:#fff;font-weight:900}
.home-featured{border-top:1px solid #dce5ec}
.home-feature-layout{display:grid;grid-template-columns:1.35fr .85fr;gap:24px}
.home-feature-main{background:#fff;border:1px solid #dce6ee;border-radius:22px;overflow:hidden;box-shadow:0 14px 34px rgba(15,44,68,.1)}
.home-feature-image{min-height:320px;background:url("guide-pneu-4-saisons-hero.webp") center/cover no-repeat}
.home-feature-body{padding:28px}
.home-feature-body h3{font-size:1.8rem;color:#08395f;margin:12px 0}
.home-feature-body p{color:#44596a;line-height:1.7}
.home-tag{display:inline-block;background:#fff0c9;color:#7a4d00;font-size:.78rem;font-weight:900;padding:7px 10px;border-radius:999px}
.home-feature-list{display:grid;gap:16px}
.home-mini-guide{display:grid;grid-template-columns:66px 1fr;gap:16px;align-items:center;background:#fff;border:1px solid #dce6ee;border-radius:18px;padding:20px;box-shadow:0 10px 24px rgba(15,44,68,.07)}
.home-mini-icon{display:grid;place-items:center;width:58px;height:58px;border-radius:16px;background:#edf7ff;color:#0d67a8;font-weight:900}
.home-mini-guide h3{margin:0 0 5px;color:#0b3659}
.home-mini-guide p{margin:0;color:#586c7c;font-size:.92rem}
.home-mini-guide a{display:inline-block;margin-top:8px;font-weight:900;color:#0d67a8;text-decoration:none}
.home-vehicles{background:#fff;border-radius:28px;padding-left:34px;padding-right:34px;box-shadow:0 12px 30px rgba(15,44,68,.07)}
.home-vehicle-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.home-vehicle-grid a{display:flex;flex-direction:column;gap:7px;border:1px solid #dce6ee;border-radius:18px;padding:22px;text-decoration:none;background:linear-gradient(145deg,#fff,#f7fbfe);transition:.2s}
.home-vehicle-grid a:hover{transform:translateY(-3px);border-color:#a9cde6}
.home-vehicle-grid span{font-size:1.8rem}
.home-vehicle-grid strong{color:#0b3659}
.home-vehicle-grid small{color:#5c6d7b}
.home-table-wrap{overflow:auto;border:1px solid #dce6ee;border-radius:18px;background:#fff;box-shadow:0 12px 28px rgba(15,44,68,.07)}
.home-table{width:100%;border-collapse:collapse;min-width:720px}
.home-table th{background:#0b4d7c;color:#fff;padding:16px;text-align:left}
.home-table td{padding:15px 16px;border-bottom:1px solid #e6edf2;color:#334a5d}
.home-table tr:last-child td{border-bottom:0}
.home-good{color:#16813e!important;font-weight:900}
.home-low{color:#b42318!important;font-weight:900}
.home-advice{margin-top:20px;border-left:5px solid #ffb000;background:#fff8e8;border-radius:14px;padding:20px}
.home-advice strong{display:block;color:#7a4d00;margin-bottom:7px}
.home-dimension-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.home-dimension-grid a{display:flex;align-items:center;justify-content:space-between;gap:14px;background:#fff;border:1px solid #dce6ee;border-radius:16px;padding:20px;text-decoration:none;box-shadow:0 8px 20px rgba(15,44,68,.06)}
.home-dimension-grid strong{font-size:1.25rem;color:#0b3659}
.home-dimension-grid small{color:#637483}
.home-safety{display:grid;grid-template-columns:1.35fr .65fr;gap:30px;background:linear-gradient(135deg,#092f4d,#0d5d93);color:#fff;border-radius:28px;padding:42px}
.home-safety h2{font-size:2.3rem;color:#fff;margin:12px 0}
.home-safety p{color:#e3eff7;line-height:1.8}
.home-safety .home-eyebrow{background:#fff;color:#0d5d93}
.home-safety-links{display:flex;flex-wrap:wrap;gap:11px;margin-top:22px}
.home-safety-links a{background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.28);color:#fff!important;text-decoration:none;padding:10px 13px;border-radius:10px}
.home-checklist{display:flex;flex-direction:column;gap:12px;background:#fff;color:#183b55;border-radius:20px;padding:26px}
.home-checklist strong{font-size:1.25rem;color:#08395f;margin-bottom:5px}
.home-faq-list{display:grid;gap:12px}
.home-faq details{background:#fff;border:1px solid #dce6ee;border-radius:15px;padding:17px 20px}
.home-faq summary{font-weight:900;color:#0b3659;cursor:pointer}
.home-faq details p{color:#485e6f;line-height:1.7}
.home-about{display:grid;grid-template-columns:1.35fr .65fr;gap:30px;border-top:1px solid #dce5ec}
.home-about h2{font-size:2.3rem;color:#08395f;margin:12px 0}
.home-about p{color:#465b6c;line-height:1.8}
.home-editorial{background:#fff;border:1px solid #dce6ee;border-radius:20px;padding:25px;box-shadow:0 10px 24px rgba(15,44,68,.07)}
.home-editorial strong{color:#0b3659;font-size:1.2rem}
.home-editorial p{margin-bottom:0}
@media(max-width:900px){
  .home-quick{grid-template-columns:repeat(2,1fr)}
  .home-guide-grid,.home-vehicle-grid,.home-dimension-grid{grid-template-columns:repeat(2,1fr)}
  .home-feature-layout,.home-safety,.home-about{grid-template-columns:1fr}
  .home-feature-image{min-height:280px}
}
@media(max-width:620px){
  .home-hero{min-height:620px}
  .home-hero-content{width:min(100% - 28px,1180px);padding:58px 0}
  .home-hero h1{font-size:2.55rem}
  .home-quick{grid-template-columns:1fr;width:calc(100% - 28px)}
  .home-section{width:calc(100% - 28px);padding:46px 0}
  .home-guide-grid,.home-vehicle-grid,.home-dimension-grid{grid-template-columns:1fr}
  .home-head-row{align-items:start;flex-direction:column}
  .home-vehicles{padding-left:18px;padding-right:18px;border-radius:18px}
  .home-safety{padding:26px 20px;border-radius:18px}
  .home-actions{flex-direction:column;align-items:stretch}
  .home-btn{width:100%}
  .home-trust-row{flex-direction:column;gap:8px}
}


/* DIDICHPNEU ACCUEIL V2 — HERO PLUS LISIBLE */
.home-hero{
  min-height:560px;
  background:
    linear-gradient(90deg,rgba(3,14,25,.97) 0%,rgba(3,14,25,.88) 42%,rgba(3,14,25,.25) 68%,rgba(3,14,25,.06) 100%),
    url("fond-pneu-premium.png") center/cover no-repeat !important;
}
.home-hero-overlay{
  background:
    radial-gradient(circle at 74% 50%,rgba(22,113,180,.16),transparent 36%),
    linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.2)) !important;
}
.home-hero-content{
  max-width:1180px;
  padding:74px 0;
}
.home-hero-content h1,
.home-hero h1{
  color:#ffffff !important;
  text-shadow:0 3px 14px rgba(0,0,0,.88),0 1px 2px rgba(0,0,0,.95) !important;
  font-weight:900 !important;
  letter-spacing:-.025em;
}
.home-hero-content>p{
  color:#f5f9fc !important;
  text-shadow:0 2px 7px rgba(0,0,0,.75);
  font-weight:600;
  max-width:700px;
}
.home-hero .home-kicker{
  background:#ffb000 !important;
  color:#15202a !important;
  box-shadow:0 6px 18px rgba(0,0,0,.22);
}
.home-hero .home-actions{
  margin-top:30px;
}
.home-hero .home-btn-primary{
  background:#0d70b8 !important;
  box-shadow:0 10px 26px rgba(0,0,0,.24);
}
.home-hero .home-btn-light{
  background:#ffffff !important;
  color:#0b3659 !important;
  box-shadow:0 10px 26px rgba(0,0,0,.18);
}
.home-hero .home-trust-row{
  color:#ffffff !important;
  text-shadow:0 1px 5px rgba(0,0,0,.75);
}
@media(max-width:620px){
  .home-hero{
    min-height:610px;
    background:
      linear-gradient(180deg,rgba(3,14,25,.94) 0%,rgba(3,14,25,.78) 58%,rgba(3,14,25,.35) 100%),
      url("fond-pneu-premium.png") 68% center/cover no-repeat !important;
  }
  .home-hero-content h1,
  .home-hero h1{
    font-size:2.45rem !important;
  }
}

/* DIDICHPNEU PHASE2 MAGAZINE */
.mag-body,.guides-mag{background:#f2f5f8}
.mag-main,.guides-main{max-width:none;padding:0}
.mag-hero,.guides-hero{position:relative;min-height:390px;display:flex;align-items:center;justify-content:space-between;gap:30px;padding:65px max(28px,calc((100vw - 1180px)/2));overflow:hidden;color:#fff;background:
linear-gradient(90deg,rgba(4,23,38,.96),rgba(6,47,76,.82) 58%,rgba(6,47,76,.32)),
url("fond-pneu-premium.png") center/cover no-repeat}
.mag-hero:after,.guides-hero:after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 80% 40%,rgba(36,151,222,.22),transparent 32%)}
.mag-hero-content,.guides-hero>div:first-child{position:relative;z-index:2;max-width:790px}
.mag-badge{display:inline-block;background:#ffb000;color:#17212b;font-weight:900;text-transform:uppercase;font-size:.75rem;letter-spacing:.08em;padding:8px 11px;border-radius:999px}
.mag-hero h1,.guides-hero h1{color:#fff;font-size:clamp(2.5rem,5vw,4.6rem);line-height:1.04;margin:15px 0;text-shadow:0 3px 16px rgba(0,0,0,.5)}
.mag-hero p,.guides-hero p{max-width:760px;color:#edf6fc;font-size:1.12rem;line-height:1.75}
.mag-hero-points{display:flex;gap:18px;flex-wrap:wrap;margin-top:22px;font-weight:800;font-size:.92rem}
.mag-hero-icon,.guides-hero-icon{position:relative;z-index:2;font-size:7rem;filter:drop-shadow(0 15px 20px rgba(0,0,0,.3));opacity:.95}
.mag-shell{width:min(1180px,calc(100% - 34px));margin:35px auto 70px;display:grid;grid-template-columns:250px minmax(0,1fr);gap:28px;align-items:start}
.mag-toc{position:sticky;top:85px;background:#fff;border:1px solid #dce5ec;border-radius:17px;padding:20px;box-shadow:0 10px 25px rgba(15,44,68,.07)}
.mag-toc strong{display:block;color:#0b3659;font-size:1.05rem;margin-bottom:12px}
.mag-toc a{display:block;color:#3f5668!important;text-decoration:none;border-top:1px solid #edf1f4;padding:10px 0;font-size:.9rem;line-height:1.35}
.mag-toc a:hover{color:#0d67a8!important}
.mag-article{min-width:0}
.mag-section{background:#fff;border:1px solid #dce5ec;border-radius:20px;padding:30px;margin-bottom:22px;box-shadow:0 11px 27px rgba(15,44,68,.06);scroll-margin-top:100px}
.mag-section h2,.mag-vendors h2,.mag-related h2,.mag-sources h2{color:#08395f;font-size:1.75rem;line-height:1.2;margin:0 0 15px}
.mag-section h3{color:#0b4e79}
.mag-section>p{color:#40586a;line-height:1.82;font-size:1.02rem}
.mag-advice{border-radius:14px;padding:18px 20px;margin:20px 0}
.mag-advice strong{display:block;margin-bottom:5px}
.mag-advice p{margin:0;line-height:1.65}
.mag-blue{background:#eef8ff;border-left:5px solid #1676b5;color:#164666}
.mag-orange{background:#fff7e7;border-left:5px solid #f0a000;color:#684809}
.mag-table-wrap{overflow:auto;border:1px solid #dbe5ec;border-radius:14px;margin:18px 0}
.mag-table{width:100%;border-collapse:collapse;min-width:630px}
.mag-table th{background:#0c5484;color:#fff;padding:13px;text-align:left}
.mag-table td{padding:13px;border-bottom:1px solid #e3eaf0;color:#374f61;vertical-align:top}
.mag-table tr:last-child td{border-bottom:0}
.mag-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:13px;margin:18px 0}
.mag-cards>div{background:#f7fafc;border:1px solid #dde7ee;border-radius:14px;padding:17px}
.mag-cards strong{color:#0b4d78}
.mag-cards p{margin:5px 0 0;color:#536a7b;line-height:1.55}
.mag-proscons{display:grid;grid-template-columns:1fr 1fr;gap:15px;margin:18px 0}
.mag-pros,.mag-cons{border-radius:15px;padding:20px}
.mag-pros{background:#eef9f0;border:1px solid #cde7d2}
.mag-cons{background:#fff1ef;border:1px solid #f1d0ca}
.mag-pros h3{color:#23723c}.mag-cons h3{color:#9c3226}
.mag-pros p,.mag-cons p{margin:8px 0;line-height:1.5;color:#405365}
.mag-faq{display:grid;gap:10px}
.mag-faq details{border:1px solid #dde6ed;border-radius:13px;padding:15px 17px;background:#fbfdfe}
.mag-faq summary{cursor:pointer;color:#0a416b;font-weight:900}
.mag-faq p{color:#4a6071;line-height:1.7}
.mag-vendors,.mag-related,.mag-sources{background:#fff;border:1px solid #dce5ec;border-radius:20px;padding:30px;margin:22px 0;box-shadow:0 11px 27px rgba(15,44,68,.06)}
.mag-section-title>span,.guides-cat-head>span{font-size:.75rem;font-weight:900;text-transform:uppercase;letter-spacing:.09em;color:#0d67a8}
.mag-section-title>p{color:#4c6273}
.mag-vendor-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.mag-vendor{display:flex;flex-direction:column;gap:7px;min-height:110px;justify-content:center;border-radius:15px;padding:20px;text-decoration:none!important;border:1px solid #dfe7ed}
.mag-vendor strong{font-size:1.2rem}
.mag-vendor span{font-size:.9rem}
.mag-amazon{background:#fff8e9;color:#5a3b00!important}.mag-123{background:#edf7ff;color:#075b96!important}.mag-pfr{background:#edf9ef;color:#17652c!important}
.mag-aff-note{color:#687b89;font-size:.84rem}
.mag-related>div{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.mag-related a{display:flex;justify-content:space-between;gap:12px;background:#f7fafc;border:1px solid #dfe7ed;border-radius:12px;padding:14px;text-decoration:none!important;color:#0b4d78!important;font-weight:800}
.mag-sources{font-size:.92rem;color:#5b6d7b}
.mag-sources ul{padding-left:20px}.mag-sources li{margin:8px 0}.mag-sources a{color:#0d67a8!important}
.guides-hero{min-height:360px}
.guides-feature,.guides-category{width:min(1180px,calc(100% - 34px));margin:34px auto;background:#fff;border:1px solid #dce5ec;border-radius:22px;padding:30px;box-shadow:0 11px 27px rgba(15,44,68,.06)}
.guides-feature h2,.guides-category h2{color:#08395f;font-size:2rem;margin:6px 0 22px}
.guides-feature-grid,.guides-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}
.guides-feature-grid{grid-template-columns:repeat(4,1fr)}
.guides-feature-grid a,.guides-card-grid a{display:flex;flex-direction:column;gap:8px;text-decoration:none!important;border:1px solid #dfe7ed;border-radius:16px;padding:20px;background:linear-gradient(145deg,#fff,#f7fbfe);transition:.2s}
.guides-feature-grid a:hover,.guides-card-grid a:hover{transform:translateY(-3px);box-shadow:0 10px 22px rgba(15,44,68,.09)}
.guides-feature-grid strong,.guides-card-grid strong{color:#0b416a;font-size:1.08rem}
.guides-feature-grid span,.guides-card-grid p{color:#5b6d7d;font-size:.92rem;line-height:1.5;margin:0}
.guides-card-grid b{font-size:1.7rem}
.guides-link-list{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.guides-link-list a{display:flex;justify-content:space-between;background:#f7fafc;border:1px solid #dfe7ed;border-radius:12px;padding:15px;text-decoration:none!important;color:#0b4d78!important;font-weight:800}
.guides-dims{display:grid;grid-template-columns:repeat(5,1fr);gap:10px}
.guides-dims a{background:#0c5484;color:#fff!important;text-align:center;text-decoration:none!important;border-radius:12px;padding:14px;font-weight:900}
@media(max-width:900px){
 .mag-shell{grid-template-columns:1fr}.mag-toc{position:relative;top:auto}
 .mag-vendor-grid,.guides-feature-grid,.guides-card-grid{grid-template-columns:repeat(2,1fr)}
 .guides-dims{grid-template-columns:repeat(3,1fr)}
 .mag-hero-icon,.guides-hero-icon{font-size:5rem}
}
@media(max-width:620px){
 .mag-hero,.guides-hero{padding:48px 18px;min-height:430px;align-items:flex-start}
 .mag-hero-icon,.guides-hero-icon{display:none}
 .mag-shell{width:calc(100% - 24px);margin-top:20px}
 .mag-section,.mag-vendors,.mag-related,.mag-sources{padding:20px}
 .mag-cards,.mag-proscons,.mag-vendor-grid,.mag-related>div,.guides-feature-grid,.guides-card-grid,.guides-link-list{grid-template-columns:1fr}
 .guides-feature,.guides-category{width:calc(100% - 24px);padding:20px}
 .guides-dims{grid-template-columns:repeat(2,1fr)}
}


/* DIDICHPNEU — CORRECTION LISIBILITÉ GUIDES V1 */
.mag-body{
  background:#f4f7fa !important;
  color:#243746 !important;
}

.mag-hero{
  min-height:410px !important;
  align-items:center !important;
  background:
    linear-gradient(90deg,rgba(4,23,38,.98) 0%,rgba(7,49,78,.92) 48%,rgba(7,49,78,.46) 75%,rgba(7,49,78,.18) 100%),
    url("fond-pneu-premium.png") center/cover no-repeat !important;
}

.mag-hero-content{
  max-width:760px !important;
  position:relative !important;
  z-index:2 !important;
}

.mag-hero h1{
  color:#ffffff !important;
  font-weight:900 !important;
  text-shadow:0 4px 18px rgba(0,0,0,.88),0 1px 2px rgba(0,0,0,.96) !important;
  letter-spacing:-.025em !important;
  line-height:1.03 !important;
}

.mag-hero p{
  color:#f4f8fb !important;
  text-shadow:0 2px 8px rgba(0,0,0,.75) !important;
  font-weight:600 !important;
  max-width:700px !important;
}

.mag-hero-points{
  color:#ffffff !important;
  text-shadow:0 1px 6px rgba(0,0,0,.72) !important;
}

.mag-badge{
  background:#ffb000 !important;
  color:#17212b !important;
  box-shadow:0 5px 16px rgba(0,0,0,.24) !important;
}

/* Grand pictogramme à droite : vrai cercle et centrage parfait */
.mag-hero-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:180px !important;
  height:180px !important;
  min-width:180px !important;
  padding:0 !important;
  margin:0 25px 0 10px !important;
  border-radius:50% !important;
  background:rgba(255,255,255,.10) !important;
  border:3px solid rgba(255,255,255,.30) !important;
  box-shadow:
    inset 0 0 0 14px rgba(255,255,255,.035),
    0 18px 35px rgba(0,0,0,.28) !important;
  font-size:5.3rem !important;
  line-height:1 !important;
  text-align:center !important;
  vertical-align:middle !important;
  overflow:hidden !important;
  filter:none !important;
  opacity:1 !important;
}

/* Lisibilité des blocs de contenu */
.mag-section,
.mag-vendors,
.mag-related,
.mag-sources{
  background:#ffffff !important;
  border:1px solid #dbe5ed !important;
  box-shadow:0 12px 28px rgba(20,45,65,.07) !important;
}

.mag-section h2,
.mag-vendors h2,
.mag-related h2,
.mag-sources h2{
  color:#073a60 !important;
  font-weight:900 !important;
}

.mag-section h3{
  color:#0a4f7e !important;
  font-weight:850 !important;
}

.mag-section p,
.mag-vendors p,
.mag-related p,
.mag-sources p{
  color:#324b5d !important;
  line-height:1.8 !important;
}

.mag-section strong{
  color:#173f5c !important;
}

.mag-toc{
  background:#ffffff !important;
  border:1px solid #dbe5ed !important;
  box-shadow:0 12px 28px rgba(20,45,65,.08) !important;
}

.mag-toc strong{
  color:#073a60 !important;
  font-weight:900 !important;
}

.mag-toc a{
  color:#344f62 !important;
  font-weight:700 !important;
}

.mag-toc a:hover{
  color:#0d67a8 !important;
  background:#eef7fd !important;
  border-radius:8px !important;
  padding-left:8px !important;
}

/* Tableaux plus lisibles */
.mag-table th{
  background:#0a4f7e !important;
  color:#ffffff !important;
  font-weight:900 !important;
}

.mag-table td{
  color:#30495b !important;
  background:#ffffff !important;
}

.mag-table tbody tr:nth-child(even) td{
  background:#f7fafc !important;
}

/* Encadrés conseil */
.mag-advice.mag-blue{
  background:#eef7fd !important;
  color:#143e5d !important;
  border-left-color:#1676b5 !important;
}
.mag-advice.mag-orange{
  background:#fff7e7 !important;
  color:#5d430c !important;
  border-left-color:#f0a000 !important;
}
.mag-advice strong{
  color:inherit !important;
}

/* Cartes */
.mag-cards>div{
  background:#f8fbfd !important;
  border:1px solid #dce7ee !important;
}
.mag-cards strong{
  color:#0a4f7e !important;
}
.mag-cards p{
  color:#40586a !important;
}

/* FAQ */
.mag-faq details{
  background:#fbfdfe !important;
  border:1px solid #dce6ed !important;
}
.mag-faq summary{
  color:#073f69 !important;
  font-weight:900 !important;
}
.mag-faq p{
  color:#40586a !important;
}

/* Liens associés */
.mag-related a{
  background:#f7fafc !important;
  color:#0a4f7e !important;
  border:1px solid #dce6ed !important;
}
.mag-related a:hover{
  background:#eef7fd !important;
}

/* Mobile */
@media(max-width:900px){
  .mag-hero{
    min-height:360px !important;
  }
  .mag-hero-icon{
    width:135px !important;
    height:135px !important;
    min-width:135px !important;
    font-size:4rem !important;
    margin-right:0 !important;
  }
}

@media(max-width:620px){
  .mag-hero{
    min-height:430px !important;
    padding:48px 18px !important;
    background:
      linear-gradient(180deg,rgba(4,23,38,.96) 0%,rgba(7,49,78,.84) 68%,rgba(7,49,78,.54) 100%),
      url("fond-pneu-premium.png") 68% center/cover no-repeat !important;
  }

  .mag-hero-content{
    max-width:100% !important;
  }

  .mag-hero h1{
    font-size:2.35rem !important;
  }

  .mag-hero-icon{
    display:none !important;
  }

  .mag-section,
  .mag-vendors,
  .mag-related,
  .mag-sources{
    border-radius:16px !important;
  }
}


/* DIDICHPNEU — CORRECTION GUIDES V2 : PAGE GUIDES + ICONES SANS TRACE */

/* Icônes des articles : sans cercle, sans bordure, sans halo */
.mag-hero-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:160px !important;
  height:160px !important;
  min-width:160px !important;
  margin:0 20px 0 20px !important;
  padding:0 !important;
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  filter:none !important;
  opacity:1 !important;
  overflow:visible !important;
  font-size:5.2rem !important;
  line-height:1 !important;
  text-shadow:none !important;
}

/* Page guides : style plus proche de l'accueil */
.guides-mag{
  background:#f3f6f9 !important;
  color:#243746 !important;
}

.guides-main{
  max-width:none !important;
  padding:0 !important;
}

.guides-hero{
  min-height:470px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:30px !important;
  padding:65px max(28px,calc((100vw - 1180px)/2)) !important;
  background:
    linear-gradient(90deg,rgba(3,14,25,.97) 0%,rgba(5,39,63,.88) 50%,rgba(5,39,63,.30) 78%,rgba(5,39,63,.08) 100%),
    url("fond-pneu-premium.png") center/cover no-repeat !important;
  color:#fff !important;
}

.guides-hero h1{
  color:#fff !important;
  font-size:clamp(2.6rem,5vw,4.7rem) !important;
  line-height:1.04 !important;
  font-weight:900 !important;
  text-shadow:0 4px 18px rgba(0,0,0,.88),0 1px 2px rgba(0,0,0,.96) !important;
  margin:16px 0 18px !important;
}

.guides-hero p{
  color:#f5f9fc !important;
  font-size:1.15rem !important;
  line-height:1.75 !important;
  max-width:760px !important;
  font-weight:600 !important;
  text-shadow:0 2px 8px rgba(0,0,0,.75) !important;
}

.guides-hero .mag-badge{
  background:#ffb000 !important;
  color:#17212b !important;
}

.guides-hero-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  filter:none !important;
  opacity:1 !important;
  font-size:6rem !important;
  line-height:1 !important;
  width:170px !important;
  height:170px !important;
  min-width:170px !important;
  text-shadow:none !important;
}

/* Blocs de la page guides */
.guides-feature,
.guides-category{
  background:#ffffff !important;
  border:1px solid #dbe5ed !important;
  border-radius:22px !important;
  box-shadow:0 12px 30px rgba(20,45,65,.07) !important;
}

.guides-feature h2,
.guides-category h2{
  color:#073a60 !important;
  font-weight:900 !important;
  line-height:1.15 !important;
}

.guides-cat-head span{
  color:#0d67a8 !important;
  font-weight:900 !important;
  letter-spacing:.08em !important;
}

/* Cartes essentielles et véhicules */
.guides-feature-grid a,
.guides-card-grid a{
  background:linear-gradient(145deg,#ffffff,#f7fbfe) !important;
  border:1px solid #dce6ee !important;
  box-shadow:0 8px 20px rgba(20,45,65,.05) !important;
  border-radius:16px !important;
}

.guides-feature-grid a:hover,
.guides-card-grid a:hover{
  transform:translateY(-3px) !important;
  box-shadow:0 14px 28px rgba(20,45,65,.10) !important;
  border-color:#b8d4e6 !important;
}

.guides-feature-grid strong,
.guides-card-grid strong{
  color:#083f68 !important;
  font-weight:900 !important;
}

.guides-feature-grid span,
.guides-card-grid p{
  color:#425b6d !important;
  line-height:1.55 !important;
}

/* Liens de listes : beaucoup plus lisibles */
.guides-link-list a{
  background:#ffffff !important;
  color:#0a4f7e !important;
  border:1px solid #dce6ed !important;
  box-shadow:0 5px 15px rgba(20,45,65,.04) !important;
  font-weight:800 !important;
  min-height:54px !important;
  align-items:center !important;
}

.guides-link-list a:hover{
  background:#eef7fd !important;
  color:#073a60 !important;
  transform:translateY(-1px) !important;
}

/* Dimensions */
.guides-dims a{
  background:#0c5484 !important;
  color:#ffffff !important;
  border:1px solid #0c5484 !important;
  box-shadow:0 6px 16px rgba(12,84,132,.15) !important;
}

.guides-dims a:hover{
  background:#073f68 !important;
  transform:translateY(-2px) !important;
}

/* Espacement entre grandes catégories */
.guides-category{
  margin-top:28px !important;
  margin-bottom:28px !important;
}

@media(max-width:900px){
  .mag-hero-icon{
    width:120px !important;
    height:120px !important;
    min-width:120px !important;
    font-size:4.1rem !important;
  }

  .guides-hero-icon{
    width:120px !important;
    height:120px !important;
    min-width:120px !important;
    font-size:4.5rem !important;
  }
}

@media(max-width:620px){
  .mag-hero-icon,
  .guides-hero-icon{
    display:none !important;
  }

  .guides-hero{
    min-height:430px !important;
    padding:48px 18px !important;
    background:
      linear-gradient(180deg,rgba(3,14,25,.96) 0%,rgba(5,39,63,.86) 70%,rgba(5,39,63,.54) 100%),
      url("fond-pneu-premium.png") 68% center/cover no-repeat !important;
  }

  .guides-hero h1{
    font-size:2.4rem !important;
  }
}
