/* ============================================================
   Le Téméraire Débarras — feuille de style
   Identité : clair & lisible, accents Lorraine (rouge + jaune)
   ============================================================ */

/* Police hébergée en local (Inter variable, sous-ensemble latin) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/inter-latin.woff2") format("woff2");
}

:root {
  --rouge:        #C8102E;
  --rouge-fonce:  #A00C24;
  --jaune:        #F6BE00;
  --jaune-clair:  #FFE39B;
  --anthracite:   #1d1d1b;
  --gris:         #57544e;
  --gris-clair:   #8a857c;
  --fond:         #FBF8F2;
  --blanc:        #ffffff;
  --bordure:      #E8E2D6;

  --radius:       14px;
  --radius-sm:    10px;
  --ombre:        0 6px 24px rgba(29, 29, 27, .08);
  --ombre-forte:  0 12px 40px rgba(29, 29, 27, .16);
  --max:          1140px;

  --police: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--police);
  font-size: 18px;
  line-height: 1.65;
  color: var(--anthracite);
  background: var(--fond);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* neutralise le menu mobile hors-écran sans casser le sticky */
}

img { max-width: 100%; display: block; }
/* Wrapper <picture> = bloc neutre (fiable sur tous navigateurs, contrairement à display:contents) :
   il prend la place de l'image dans la grille/le flux, et l'<img> à l'intérieur le remplit. */
picture { display: block; }
picture > img { width: 100%; }

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

h1, h2, h3 { line-height: 1.15; margin: 0 0 .4em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

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

section { padding: 72px 0; }
section.alt { background: var(--blanc); }

.section-titre { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-titre p { color: var(--gris); font-size: 1.1rem; margin: 0; }

.surligne {
  background: linear-gradient(transparent 55%, var(--jaune-clair) 55%);
  padding: 0 .1em;
}
.kicker {
  display: inline-block;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 14px;
}
/* petit filet drapeau Lorraine */
.filet {
  width: 70px; height: 5px; border-radius: 3px;
  background: linear-gradient(90deg, var(--rouge) 0 50%, var(--jaune) 50% 100%);
  margin: 0 auto 22px;
}
.section-titre.left { text-align: left; margin-left: 0; }
.section-titre.left .filet { margin-left: 0; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1.05rem; text-align: center;
  padding: 15px 26px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn .nb { white-space: nowrap; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-rouge   { background: var(--rouge); color: #fff; box-shadow: var(--ombre); }
.btn-rouge:hover { background: var(--rouge-fonce); color:#fff; }
.btn-jaune   { background: var(--jaune); color: var(--anthracite); }
.btn-jaune:hover { background: #ffce2e; }
.btn-ligne   { background: transparent; color: var(--anthracite); border-color: var(--anthracite); }
.btn-ligne:hover { background: var(--anthracite); color: #fff; }
.btn-blanc   { background:#fff; color: var(--rouge); }

/* ---------- En-tête ---------- */
.entete {
  position: sticky; top: 0; z-index: 50;
  background: var(--fond);
  border-bottom: 1px solid var(--bordure);
}
/* Le blur n'est appliqué que sur desktop : sur mobile il piégerait
   le menu fixe (un élément avec backdrop-filter devient le référent
   des descendants position:fixed). */
@media (min-width: 901px) {
  .entete { background: rgba(251, 248, 242, .92); backdrop-filter: blur(8px); }
}
.entete .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 16px; padding-bottom: 16px;
  transition: padding .25s ease;
}
.entete.scrolled .wrap { padding-top: 8px; padding-bottom: 8px; }
.logo img { height: 100px; width: auto; transition: height .25s ease; }
.entete.scrolled .logo img { height: 50px; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: var(--anthracite); font-weight: 600; font-size: 1rem;
  padding: 8px 14px; border-radius: 999px;
}
.nav a:hover { background: var(--blanc); text-decoration: none; }
.entete-actions { display: flex; align-items: center; gap: 12px; }
.tel-entete {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--rouge); color: #fff; font-weight: 800;
  padding: 11px 20px; border-radius: 999px; white-space: nowrap;
}
.tel-entete:hover { background: var(--rouge-fonce); color:#fff; text-decoration: none; }

/* menu mobile (CSS only) */
.burger { display: none; }
.burger-label { display: none; }
.voile { display: none; } /* sinon ce label vide reste dans le flux et décale les actions */

/* ---------- Hero ---------- */
.hero { padding: 64px 0 72px; }
.hero .wrap {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero .accroche { font-size: 1.2rem; color: var(--gris); margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; padding: 0; margin: 0; }
.hero-points li { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--anthracite); }
.hero-points svg { color: var(--rouge); flex: none; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; height: 100%; max-height: 520px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--ombre-forte);
}
.hero-badge {
  position: absolute; left: -18px; bottom: 24px;
  background: var(--jaune); color: var(--anthracite);
  font-weight: 800; padding: 14px 20px; border-radius: var(--radius-sm);
  box-shadow: var(--ombre); line-height: 1.2;
}
.hero-badge span { display: block; font-size: 1.6rem; }

/* ---------- Bandeau confiance ---------- */
.confiance { background: var(--anthracite); color: #fff; padding: 0; }
.confiance .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.confiance .item {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 18px; border-left: 1px solid rgba(255,255,255,.12);
}
.confiance .item:first-child { border-left: none; }
.confiance .item svg { color: var(--jaune); flex: none; }
.confiance .item strong { font-size: 1rem; font-weight: 700; }

/* ---------- Qui sommes-nous ---------- */
.qui .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.qui img { border-radius: var(--radius); box-shadow: var(--ombre); width: 100%; height: 420px; object-fit: cover; }

/* ---------- Prestations ---------- */
.cartes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.carte {
  background: var(--blanc); border: 1px solid var(--bordure);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--ombre); transition: transform .14s ease, box-shadow .14s ease;
  display: flex; flex-direction: column;
}
a.carte:hover { transform: translateY(-4px); box-shadow: var(--ombre-forte); text-decoration: none; }
.carte .ico {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--jaune-clair); color: var(--rouge);
  display: grid; place-items: center; margin-bottom: 16px;
}
.carte h3 { color: var(--anthracite); margin-bottom: 8px; }
.carte p { color: var(--gris); font-size: 1rem; margin-bottom: 16px; flex: 1; }
.carte .lien { color: var(--rouge); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }

/* types de prestation */
.types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.type {
  background: var(--blanc); border: 1px solid var(--bordure);
  border-radius: var(--radius); padding: 32px 26px; text-align: center;
  box-shadow: var(--ombre);
}
.type .ico {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--rouge); color: #F3E7CB;
  display: grid; place-items: center;
}
.type h3 { margin-bottom: 10px; font-size: 1.3rem; }
.type p { color: var(--gris); font-size: 1rem; margin: 0; }

/* ---------- Galerie avant / après ---------- */
.realisations { display: grid; gap: 30px; }
.real {
  background: var(--blanc); border: 1px solid var(--bordure);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--ombre);
}
.real .duo { display: grid; grid-template-columns: 1fr 1fr; }
.real figure { margin: 0; position: relative; overflow: hidden; }
.real figure a { display: block; cursor: zoom-in; }
.real img { width: 100%; height: 547px; object-fit: cover; transition: transform .3s ease; }
.real figure a:hover img { transform: scale(1.04); }
.real figure + figure img { border-left: 4px solid #fff; }
.real .etiq {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; color: #fff; pointer-events: none;
}
.etiq.avant { background: rgba(29,29,27,.85); }
.etiq.apres { background: var(--rouge); }
.real .zoom {
  position: absolute; bottom: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--anthracite);
  display: grid; place-items: center; pointer-events: none; box-shadow: var(--ombre);
}
.real .leg {
  padding: 18px 24px; font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-bottom: 1px solid var(--bordure);
}
.real .leg .voir { font-weight: 600; font-size: .92rem; color: var(--gris); }

/* ---------- Tarifs ---------- */
.tarifs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.prix-bloc {
  background: var(--blanc); border: 2px solid var(--rouge);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--ombre);
}
.prix-bloc .gros { font-size: 2.6rem; font-weight: 800; color: var(--rouge); line-height: 1; }
.prix-bloc .gros small { font-size: 1.1rem; color: var(--gris); font-weight: 600; }
.prix-bloc hr { border: none; border-top: 1px solid var(--bordure); margin: 22px 0; }
.prix-bloc ul { padding-left: 0; list-style: none; margin: 0; }
.prix-bloc li { display: flex; gap: 12px; margin-bottom: 12px; color: var(--gris); }
.prix-bloc li svg { color: var(--rouge); flex: none; margin-top: 4px; }

.atouts { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.atouts li {
  display: flex; align-items: center; gap: 14px;
  background: var(--blanc); border: 1px solid var(--bordure);
  border-radius: var(--radius-sm); padding: 16px 18px; font-weight: 600;
}
.atouts li .check {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--rouge); color: #fff; display: grid; place-items: center;
}

/* ---------- Localisation ---------- */
.loc .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.deps { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0 0 24px; padding: 0; list-style: none; }
.deps li {
  background: var(--blanc); border: 1px solid var(--bordure); border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.deps li strong { display: block; color: var(--rouge); }
.deps li span { color: var(--gris); font-size: .95rem; }
.villes { color: var(--gris); }
.villes b { color: var(--anthracite); }

/* ---------- Contact ---------- */
.contact { background: var(--anthracite); color: #fff; }
.contact h2 { color: #fff; }
.contact .filet { margin-left: 0; }
.contact .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact .section-titre { color:#fff; }
.contact p.intro { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.coords { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 16px; }
.coords li { display: flex; align-items: center; gap: 16px; }
.coords .ico {
  width: 50px; height: 50px; border-radius: 12px; flex: none;
  background: rgba(255,255,255,.08); color: var(--jaune); display: grid; place-items: center;
}
.coords .label { font-size: .85rem; color: rgba(255,255,255,.6); }
.coords a, .coords .val { color: #fff; font-weight: 700; font-size: 1.2rem; overflow-wrap: anywhere; word-break: break-word; min-width: 0; }
.coords li > div { min-width: 0; }
.contact-cta {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 34px;
}
.contact-cta h3 { color: #fff; }
.contact-cta p { color: rgba(255,255,255,.78); }
.contact-cta .btn { width: 100%; justify-content: center; margin-top: 12px; }

/* ---------- Pied de page ---------- */
.pied { background: #141413; color: rgba(255,255,255,.7); padding: 48px 0 28px; }
.pied .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.pied .logo-badge {
  width: 176px; height: 176px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; margin-bottom: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  transition: transform .9s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease;
}
.pied .logo-badge:hover {
  transform: rotate(360deg) scale(1.06);
  box-shadow: 0 14px 38px rgba(0,0,0,.45);
}
.pied .logo-badge img { height: 140px; width: auto; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .pied .logo-badge { transition: box-shadow .3s ease; }
  .pied .logo-badge:hover { transform: scale(1.06); }
}
.pied h4 { color: #fff; font-size: 1rem; margin: 0 0 14px; }
.pied a { color: rgba(255,255,255,.7); overflow-wrap: anywhere; word-break: break-word; }
.pied a:hover { color: #fff; }
.pied ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.pied .copy {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 22px;
  text-align: left; font-size: .9rem; color: rgba(255,255,255,.5);
}
.pied .copy a { color: rgba(255,255,255,.85); text-decoration: underline; text-underline-offset: 2px; }
.pied .copy a:hover { color: #fff; }
.pied .copy-links { margin-bottom: 8px; }
.pied .copy-links a { margin: 0 8px 0 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 56px 0; }
  .hero .wrap, .qui .wrap, .tarifs-grid, .loc .wrap, .contact .wrap { grid-template-columns: 1fr; gap: 34px; }
  .cartes, .types { grid-template-columns: 1fr 1fr; }
  .real img { height: 250px; }
  .confiance .wrap { grid-template-columns: 1fr 1fr; }
  .confiance .item:nth-child(3) { border-left: none; }
  .pied .wrap { grid-template-columns: 1fr 1fr; }

  /* menu mobile */
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px);
    background: var(--blanc); flex-direction: column; align-items: stretch;
    padding: 90px 22px 22px; gap: 6px; box-shadow: var(--ombre-forte);
    transform: translateX(100%); transition: transform .25s ease; z-index: 60;
  }
  .nav a { padding: 14px 16px; font-size: 1.1rem; border-bottom: 1px solid var(--bordure); border-radius: 0; }
  .burger-label {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 12px; border: 1px solid var(--bordure);
    background: var(--blanc); cursor: pointer; z-index: 70;
  }
  .burger:checked ~ .nav { transform: translateX(0); }
  .burger:checked ~ .voile {
    display: block; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 55;
  }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .cartes, .types, .deps, .pied .wrap, .confiance .wrap { grid-template-columns: 1fr; }
  .real img { height: 165px; }
  .real .leg { font-size: 1rem; padding: 14px 16px; }
  .real .leg .voir { display: none; }
  .real .zoom { display: none; }
  .tel-entete span { display: none; }
  .tel-entete { padding: 11px 14px; }
  .hero-badge { left: 12px; }
  section { padding: 48px 0; }
  /* CTA empilés en pleine largeur (texte centré, pas de coupure moche) */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .coords a, .coords .val { font-size: 1.05rem; }
  /* boutons des cartes : moins de padding pour laisser respirer le texte */
  .contact-cta { padding: 24px 20px; }
  .contact-cta .btn, .aside-card .btn { font-size: 1rem; padding-left: 16px; padding-right: 16px; }
}

/* ============================================================
   Pages prestations
   ============================================================ */
.page-hero { background: var(--blanc); border-bottom: 1px solid var(--bordure); padding: 44px 0 52px; }
.page-hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .accroche { font-size: 1.18rem; color: var(--gris); margin-bottom: 26px; }
.page-hero .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.page-hero img { border-radius: var(--radius); box-shadow: var(--ombre-forte); width: 100%; height: 100%; max-height: 400px; object-fit: cover; }

.fil { font-size: .92rem; color: var(--gris-clair); margin-bottom: 18px; }
.fil a { color: var(--gris); }
.fil a:hover { color: var(--rouge); }
.fil .sep { margin: 0 8px; }
.fil .cur { color: var(--anthracite); font-weight: 600; }

.deux-cols { display: grid; grid-template-columns: 1.5fr .9fr; gap: 50px; align-items: start; }
.prose p { font-size: 1.1rem; color: #3a382f; }
.prose h2 { margin-top: 1.3em; font-size: 1.5rem; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 1.2em; display: grid; gap: 12px; }
.prose ul li { display: flex; gap: 12px; align-items: flex-start; }
.prose ul li svg { color: var(--rouge); flex: none; margin-top: 5px; }

.aside-card { background: var(--blanc); border: 2px solid var(--rouge); border-radius: var(--radius); padding: 26px; box-shadow: var(--ombre); position: sticky; top: 100px; }
.aside-card h3 { margin-bottom: 8px; }
.aside-card p { color: var(--gris); font-size: 1rem; }
.aside-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.aside-card .tel-grand { font-size: 1.5rem; font-weight: 800; color: var(--rouge); display: block; margin: 6px 0 14px; }
.aside-card .tel-grand:hover { text-decoration: none; }

.related { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.related a {
  background: var(--blanc); border: 1px solid var(--bordure); border-radius: var(--radius-sm);
  padding: 18px; font-weight: 700; color: var(--anthracite);
  display: flex; align-items: center; gap: 12px;
}
.related a:hover { border-color: var(--rouge); color: var(--rouge); text-decoration: none; box-shadow: var(--ombre); }
.related a svg { color: var(--rouge); flex: none; }

@media (max-width: 900px) {
  .page-hero .wrap { grid-template-columns: 1fr; gap: 30px; }
  .page-hero .hero-media { order: -1; }
  .deux-cols { grid-template-columns: 1fr; gap: 36px; }
  .aside-card { position: static; }
  .related { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .related { grid-template-columns: 1fr; }
}

/* ============================================================
   Lightbox (avant / après en plein écran)
   ============================================================ */
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 20, 19, .94);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s ease;
}
.lb.open { display: flex; opacity: 1; }
.lb-fig { margin: 0; max-width: 92vw; max-height: 88vh; text-align: center; }
.lb-fig img {
  max-width: 92vw; max-height: 78vh; width: auto; height: auto;
  border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); background: #111;
}
.lb-cap { margin-top: 16px; color: #fff; font-weight: 700; font-size: 1.1rem; }
.lb-tag {
  display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
  color: #fff; margin-right: 10px; vertical-align: middle;
}
.lb-tag.avant { background: rgba(255,255,255,.22); }
.lb-tag.apres { background: var(--rouge); }
.lb-btn {
  position: absolute; border: none; cursor: pointer; color: #fff;
  background: rgba(255,255,255,.12); width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; transition: background .15s ease;
}
.lb-btn:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
  .lb-btn { width: 46px; height: 46px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-close { top: 12px; right: 12px; }
  .lb-fig img { max-height: 70vh; }
}

/* ---------- Bannière cookies ---------- */
#cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 720px;
  background: rgba(15, 15, 14, .97); color: #fff; padding: 22px 24px;
  border-radius: 18px; z-index: 999999; font-family: var(--police);
  display: none; box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
#cookie-banner-content { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
#cookie-banner-text { flex: 1; }
#cookie-banner-text p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .92); }
#cookie-banner-text a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
#cookie-banner-buttons { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
#cookie-banner button {
  border: none; border-radius: 12px; padding: 16px 34px; font-size: 16px; min-width: 140px;
  font-weight: 700; font-family: inherit; cursor: pointer; transition: background .2s ease, transform .2s ease, opacity .2s ease;
}
#cookie-accept { background: var(--rouge); color: #fff; }
#cookie-accept:hover { transform: translateY(-1px); background: var(--rouge-fonce); }
#cookie-refuse { background: rgba(255, 255, 255, .12); color: #fff; }
#cookie-refuse:hover { background: rgba(255, 255, 255, .2); }

@media (max-width: 768px) {
  #cookie-banner { left: 16px; right: 16px; bottom: 16px; padding: 18px; }
  #cookie-banner-content { flex-direction: column; align-items: stretch; }
  #cookie-banner-buttons { width: 100%; }
  #cookie-banner button { flex: 1; }
}
