/* ============================================================
   BOOOKABLE — style.css (feuille unique partagée)
   ------------------------------------------------------------
   DA v5 : fond noir, blocs clés à fond blanc (bordés noir pour
   bien se présenter comme des « blocs »), et un gris dédié pour
   le bloc filtres du catalogue (moins de contraste qu'un blanc pur).
   Jaune = accent RARE : badges, statut « actif », liseré du bloc
   réservation, une lettre du logo. Jamais sur un hover ni un CTA :
   ces interactions passent en blanc/noir pour rester lisibles et
   ne pas diluer l'accent.
   Bordures fines, pas d'ombres, coins nets (aucun radius).
   Mobile-first — breakpoints : 768 px et 1200 px.
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  /* Base sombre — fond de page et sections */
  --fond: #0A0A0A;
  --fond-carte: #151515;        /* cartes/tuiles élevées sur fond sombre */
  --fond-placeholder: #1E1E1E;  /* fond des zones image tant qu'une image n'est pas chargée */
  --bordure: #2A2A2A;
  --texte: #F3F2ED;
  --texte-att: #9A9A9A;         /* texte secondaire sur fond sombre */
  --icone-att: #7D7D7D;         /* icônes de placeholder sur fond sombre */

  /* Blocs clés — fond blanc ponctuel (réservation, packs, formulaire) */
  --fond-clair: #FFFFFF;
  --fond-clair-eleve: #F5F5F5;  /* sous-surface dans un bloc clair (inputs) */
  --bordure-clair: #E5E5E5;
  --encre: #111111;             /* texte principal dans un bloc clair, et texte forcé sur jaune plein */
  --encre-att: #6b6b6b;         /* texte secondaire dans un bloc clair */

  --jaune: #F3FC98;

  --police-titres: "Space Grotesk", "Inter", system-ui, sans-serif;
  --police-texte: "Inter", system-ui, sans-serif;

  /* Échelle d'espacements */
  --esp-1: 4px;
  --esp-2: 8px;
  --esp-3: 16px;
  --esp-4: 24px;
  --esp-5: 40px;
  --esp-6: 64px;
  --esp-7: 96px;

  --rayon: 0px;
  --transition: 180ms ease;
}

/* ---------- Reset minimal ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--police-texte);
  color: var(--texte);
  background: var(--fond);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select { font: inherit; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--police-titres); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.05rem; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--esp-3); }
section { padding-block: var(--esp-6); }

/* Surlignage — UN mot par titre, en blanc (lisible sur fond noir),
   souligné jaune fin : accent sobre plutôt qu'un aplat plein. */
.surligne {
  color: var(--texte);
  text-decoration: underline;
  text-decoration-color: var(--jaune);
  text-decoration-thickness: 4px;
  text-underline-offset: 5px;
}
/* Sur un bloc clé à fond blanc, le mot surligné doit rester en encre
   sombre (le blanc ambiant deviendrait illisible sur fond blanc). */
.bloc-liste-materiel .surligne,
.bloc-packs .surligne {
  color: var(--encre);
}

/* ---------- Boutons ----------
   Les boutons « blocs clés » (recherche, encart réservation, sidebar)
   gardent un traitement noir/blanc constant. Aucun jaune sur les CTA. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--esp-2);
  padding: 12px 24px;
  border-radius: var(--rayon);
  border: 1px solid var(--encre);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-primaire { background: var(--encre); color: var(--fond-clair); }
.btn-primaire:hover { background: var(--fond-clair); color: var(--encre); }
.btn-secondaire { background: var(--fond-clair); color: var(--encre); }
.btn-secondaire:hover { background: var(--encre); color: var(--fond-clair); }
.btn-bloc { width: 100%; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--jaune);
  outline-offset: 2px;
}

.lien-souligne {
  text-decoration: underline;
  text-decoration-color: var(--jaune);
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: text-decoration-color var(--transition);
}
.lien-souligne:hover { text-decoration-color: var(--texte); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--fond);
  border-bottom: 1px solid var(--bordure);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--esp-3);
  flex-wrap: wrap;
  padding-block: var(--esp-2);
  min-height: 64px;
}
.logo {
  font-family: var(--police-titres);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.logo span { color: var(--jaune); }

.nav { display: none; }
.nav.ouverte {
  display: block;
  order: 5;
  width: 100%;
  border-top: 1px solid var(--bordure);
  padding-block: var(--esp-3);
}
.nav ul { display: flex; flex-direction: column; gap: var(--esp-3); }
.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 2px;
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition);
}
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--texte); }

.header-droite { display: flex; align-items: center; gap: var(--esp-3); margin-left: auto; }

/* Panier */
.btn-panier { position: relative; display: inline-flex; padding: var(--esp-2); }
.panier-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--jaune);
  color: var(--encre);
  border: 1px solid var(--encre);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 0;
  display: grid;
  place-items: center;
  line-height: 1;
}

/* Burger */
.burger { display: inline-flex; flex-direction: column; gap: 4px; padding: var(--esp-2); }
.burger span { width: 22px; height: 2px; background: var(--texte); transition: transform var(--transition), opacity var(--transition); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 1200px) {
  .nav { display: block; order: 0; }
  .nav ul { flex-direction: row; gap: var(--esp-4); }
  .burger { display: none; }
}

/* ============================================================
   HERO (accueil) — image de making-of en fond
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(86vh, 720px);
  padding-block: var(--esp-6);
  background: #000;
}

.hero-image-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Voile sombre garantissant la lisibilité du texte sur l'image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.78) 100%);
  z-index: 1;
}

/* Bandeaux perforés « pellicule 35 mm » en haut/bas du hero */
.hero-sprockets {
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  z-index: 2;
  background-color: #000;
  background-image: radial-gradient(circle at center, var(--fond) 3px, transparent 3.5px);
  background-size: 22px 100%;
  background-repeat: repeat-x;
  background-position: center;
}
.hero-sprockets.haut { top: 0; }
.hero-sprockets.bas { bottom: 0; }

.hero-content { position: relative; z-index: 3; width: 100%; }
.hero-content h1 {
  color: var(--texte);
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 0.6px currentColor; /* renforce le poids visuel au-delà du 700 max de la police */
}
.hero-sep { color: var(--texte-att); font-weight: 500; -webkit-text-stroke: 0; }
.hero .sous-titre {
  color: var(--texte-att);
  font-size: 1.1rem;
  max-width: 560px;
  margin-top: var(--esp-3);
}

/* CTA hero — remplacent le filtre de dates : 2 actions directes,
   posées sur l'image (pas de jaune ici : blanc plein + contour blanc). */
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--esp-3); margin-top: var(--esp-5); }
.btn-hero-primaire { background: var(--fond-clair); color: var(--encre); border: 2px solid var(--fond-clair); }
.btn-hero-primaire:hover { background: transparent; color: var(--fond-clair); }
.btn-hero-secondaire { background: transparent; color: var(--texte); border: 2px solid var(--texte); }
.btn-hero-secondaire:hover { background: var(--texte); color: var(--encre); }

.champ { display: grid; gap: var(--esp-1); }
.champ label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.champ input, .champ textarea {
  font: inherit;
  border: 1px solid var(--bordure-clair);
  border-radius: var(--rayon);
  padding: 11px 12px;
  background: var(--fond-clair-eleve);
  color: var(--encre);
  transition: border-color var(--transition);
}
.champ input:hover, .champ input:focus,
.champ textarea:hover, .champ textarea:focus { border-color: var(--encre); outline: none; }

/* ============================================================
   CTA « liste matériel » — bandeau discret, répété avec parcimonie
   sur les pages de listing pour ramener vers le formulaire.
   ============================================================ */
.cta-liste-bandeau {
  border: 1px solid var(--bordure);
  padding: var(--esp-3) var(--esp-4);
  margin-top: var(--esp-5);
  text-align: center;
}
.cta-liste-bandeau p { font-size: 1rem; color: var(--texte); }
.cta-liste-bandeau .lien-souligne { margin-left: 4px; }

/* ============================================================
   SECTIONS / GRILLES
   ============================================================ */
.entete-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--esp-3);
  margin-bottom: var(--esp-4);
  flex-wrap: wrap;
}

/* --- Grille catégories --- */
.grille-categories { display: grid; gap: var(--esp-3); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px)  { .grille-categories { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .grille-categories { grid-template-columns: repeat(7, 1fr); } }

.carte-categorie {
  background: var(--fond-carte);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: var(--esp-4) var(--esp-3);
  display: grid;
  gap: var(--esp-2);
  justify-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--texte);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.carte-categorie svg { color: var(--texte); transition: color var(--transition); }
.carte-categorie:hover { border-color: var(--texte); background: var(--texte); color: var(--encre); }
.carte-categorie:hover svg { color: var(--encre); }

/* --- Cartes produit --- */
.grille-produits { display: grid; gap: var(--esp-3); grid-template-columns: 1fr; }
@media (min-width: 768px)  { .grille-produits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .grille-produits { grid-template-columns: repeat(4, 1fr); } }

.carte-produit {
  background: var(--fond-carte);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}
.carte-produit:hover { border-color: var(--texte); }
.carte-produit:hover .carte-nom {
  color: var(--texte);
  text-decoration: underline;
  text-decoration-color: var(--fond-clair);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Zone image : fond de secours sombre tant que la photo charge */
.carte-img {
  background: var(--fond-placeholder);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--icone-att);
  position: relative;
  overflow: hidden;
}
.carte-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.carte-corps { padding: var(--esp-3); display: grid; gap: var(--esp-1); flex: 1; align-content: start; }
.carte-marque {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--texte-att);
}
.carte-nom { display: inline; width: fit-content; }
.carte-bas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--esp-2);
  margin-top: var(--esp-2);
}
.carte-prix { font-weight: 700; font-family: var(--police-titres); }
.carte-prix small { font-weight: 400; color: var(--texte-att); font-size: 0.75em; }

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 0;
  border: 1px solid var(--encre);
  color: var(--encre);
  white-space: nowrap;
}
.badge-dispo { background: var(--jaune); }
.badge-pack {
  position: absolute;
  top: var(--esp-2);
  left: var(--esp-2);
  background: var(--jaune);
  z-index: 1;
}

/* --- Bloc packs (section différenciante : BLOC CLÉ à fond blanc,
       inséré dans .container pour garder des marges noires visibles
       à gauche/droite — l'effet « bloc », pas une bande plein écran) --- */
.section-packs { background: var(--fond); }
.bloc-packs {
  background: var(--fond-clair);
  color: var(--encre);
  border: 2px solid var(--encre);
  padding: var(--esp-5) var(--esp-4);
}
.grille-packs { display: grid; gap: var(--esp-3); grid-template-columns: 1fr; }
@media (min-width: 768px)  { .grille-packs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .grille-packs { grid-template-columns: repeat(4, 1fr); } }

.carte-pack {
  border: 2px solid var(--encre);
  border-radius: var(--rayon);
  overflow: hidden;
  background: var(--fond-clair);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}
.carte-pack:hover { border-color: var(--encre-att); }
.carte-pack .carte-img { background: var(--fond-clair-eleve); color: var(--encre-att); aspect-ratio: 16 / 9; }
.carte-pack .carte-prix small { color: var(--encre-att); }
.carte-pack .carte-desc {
  font-size: 0.85rem;
  color: var(--encre-att);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.carte-nb { font-size: 0.8rem; color: var(--encre-att); white-space: nowrap; }

/* --- Rangée de marques (logos) --- */
.rangee-marques { display: flex; flex-wrap: wrap; gap: var(--esp-3); }
.carte-marque-lien {
  flex: 1 1 120px;
  background: var(--fond-carte);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: var(--esp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  text-align: center;
  color: var(--texte);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.carte-marque-lien:hover { border-color: var(--texte); background: var(--texte); color: var(--encre); }
.logo-marque { height: 30px; width: auto; max-width: 100%; }
.carte-marque-lien:hover .logo-marque { filter: invert(1); }
.marque-nom {
  font-family: var(--police-titres);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* --- Comment ça marche --- */
.etapes { display: grid; gap: var(--esp-4); }
@media (min-width: 768px) { .etapes { grid-template-columns: repeat(3, 1fr); } }
.etape { border-top: 3px solid var(--texte); padding-top: var(--esp-3); }
.etape .numero {
  font-family: var(--police-titres);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--texte);
  text-decoration: underline;
  text-decoration-color: var(--jaune);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  width: fit-content;
  line-height: 1.1;
}
.etape h3 { margin-block: var(--esp-2); }
.etape p { color: var(--texte-att); font-size: 0.95rem; }

/* --- Formulaire « liste matériel » — BLOC CLÉ à fond blanc --- */
.bloc-liste-materiel {
  background: var(--fond-clair);
  color: var(--encre);
  border: 2px solid var(--encre);
  border-radius: var(--rayon);
  padding: var(--esp-5);
  display: grid;
  gap: var(--esp-4);
  max-width: 880px;
  margin-inline: auto;
}
.bloc-liste-materiel .intro { color: var(--encre-att); max-width: 620px; }
.bloc-liste-materiel .intro .retour { display: block; margin-top: var(--esp-2); }
.grille-formulaire { display: grid; gap: var(--esp-3); }
@media (min-width: 768px) { .grille-formulaire { grid-template-columns: 1fr 1fr; } }
.grille-formulaire .champ-pleine-largeur { grid-column: 1 / -1; }
.champ textarea { resize: vertical; min-height: 110px; }

/* --- Bandeau réassurance — collé au footer (pas de gap en dessous) --- */
.reassurance { border-block: 1px solid var(--bordure); padding-block: var(--esp-4) 0; }
.reassurance-liste { display: grid; gap: var(--esp-3); grid-template-columns: repeat(2, 1fr); padding-bottom: var(--esp-4); }
@media (min-width: 768px) { .reassurance-liste { grid-template-columns: repeat(4, 1fr); } }
.reassurance-item { display: flex; align-items: center; gap: var(--esp-2); font-weight: 600; font-size: 0.9rem; color: var(--texte); }
.reassurance-item svg { flex-shrink: 0; }

/* ============================================================
   PAGES LISTING (catalogue / catégorie / marque)
   ============================================================ */
.entete-listing { padding-block: var(--esp-5) var(--esp-3); }
.entete-listing .intro { color: var(--texte-att); max-width: 720px; margin-top: var(--esp-2); }
.compteur { color: var(--texte-att); font-size: 0.9rem; font-weight: 600; }

/* Fil d'ariane */
.fil-ariane {
  font-size: 0.8rem;
  color: var(--texte-att);
  padding-block: var(--esp-3) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--esp-1);
  align-items: center;
}
.fil-ariane a:hover { text-decoration: underline; text-underline-offset: 3px; }
.fil-ariane .sep { color: var(--bordure); }
.fil-ariane [aria-current] { color: var(--texte); font-weight: 600; }

/* Bandeau dates mémorisées */
.bandeau-dates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--esp-2) var(--esp-3);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: var(--esp-2) var(--esp-3);
  font-size: 0.9rem;
  margin-bottom: var(--esp-4);
  background: var(--fond-carte);
}

/* Pastilles catégories */
.pastilles { display: flex; flex-wrap: wrap; gap: var(--esp-2); margin-bottom: var(--esp-4); }
.pastille {
  border: 1px solid var(--bordure);
  border-radius: 0;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texte);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.pastille:hover { border-color: var(--texte); }
.pastille.active { background: var(--jaune); border-color: var(--jaune); color: var(--encre); }

/* Layout sidebar + grille */
.layout-catalogue { display: grid; gap: var(--esp-4); align-items: start; }
@media (min-width: 768px) { .layout-catalogue { grid-template-columns: 240px 1fr; } }
@media (min-width: 1200px) { .layout-catalogue { grid-template-columns: 260px 1fr; } }

.sidebar { display: grid; gap: var(--esp-4); }
@media (min-width: 768px) { .sidebar { position: sticky; top: 88px; } }

/* Bloc filtres — même fond que le reste de la page (pas de bloc clair
   ici : moins de contraste), texte blanc. */
.bloc-filtre { background: var(--fond); color: var(--texte); border: 1px solid var(--bordure); border-radius: var(--rayon); padding: var(--esp-3); }
.bloc-filtre h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--esp-2); }
.bloc-filtre input[type="search"],
.bloc-filtre input[type="number"],
.bloc-filtre select {
  width: 100%;
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: 9px 10px;
  font-size: 0.9rem;
  background: var(--fond-carte);
  color: var(--texte);
  transition: border-color var(--transition);
}
.bloc-filtre input:hover, .bloc-filtre input:focus,
.bloc-filtre select:hover, .bloc-filtre select:focus { border-color: var(--texte); outline: none; }

.case-marque { display: flex; align-items: center; gap: var(--esp-2); font-size: 0.9rem; padding-block: 3px; cursor: pointer; }
.case-marque input { accent-color: var(--texte); width: 15px; height: 15px; }
.case-marque .compte { color: var(--texte-att); font-size: 0.8rem; }

.prix-fourchette { display: flex; align-items: center; gap: var(--esp-2); }
.prix-fourchette span { color: var(--texte-att); }

.vide { grid-column: 1 / -1; text-align: center; color: var(--texte-att); padding-block: var(--esp-6); }

/* Bloc SEO bas de page + maillage */
.bloc-seo { border-top: 1px solid var(--bordure); }
.bloc-seo p { color: var(--texte-att); max-width: 780px; margin-top: var(--esp-3); }
.maillage { display: grid; gap: var(--esp-4); margin-top: var(--esp-5); }
@media (min-width: 768px) { .maillage { grid-template-columns: 1fr 1fr; } }
.maillage h3 { margin-bottom: var(--esp-2); }
.lien-maillage {
  display: block;
  padding-block: 6px;
  font-size: 0.95rem;
  text-decoration: underline;
  text-decoration-color: var(--bordure);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}
.lien-maillage:hover { text-decoration-color: var(--texte); text-decoration-thickness: 3px; }

/* ============================================================
   FICHE PRODUIT / PAGE PACK
   ============================================================ */
.fiche { display: grid; gap: var(--esp-5); padding-block: var(--esp-4) var(--esp-6); }
@media (min-width: 768px) { .fiche { grid-template-columns: 1fr 1fr; } }

/* Galerie */
.galerie-grande {
  background: var(--fond-placeholder);
  border-radius: var(--rayon);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--icone-att);
  position: relative;
  overflow: hidden;
}
.galerie-grande img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.galerie-minis { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--esp-2); margin-top: var(--esp-2); }
.galerie-mini {
  background: var(--fond-placeholder);
  border: 1px solid transparent;
  border-radius: var(--rayon);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--icone-att);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}
.galerie-mini img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.galerie-mini:hover { border-color: var(--texte); }

/* Colonne infos */
.fiche-infos { display: grid; gap: var(--esp-3); align-content: start; }
.fiche-marque {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--texte-att);
  width: fit-content;
}
a.fiche-marque:hover { color: var(--texte); text-decoration: underline; text-decoration-color: var(--texte); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.fiche-prix { font-family: var(--police-titres); font-size: 1.6rem; font-weight: 700; }
.fiche-prix small { font-size: 0.55em; font-weight: 400; color: var(--texte-att); }
.fiche-sku { color: var(--texte-att); font-size: 0.8rem; }
.fiche-desc { color: var(--texte-att); }
.economie {
  width: fit-content;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--jaune);
  color: var(--encre);
  border: 1px solid var(--encre);
  border-radius: 0;
  padding: 3px 12px;
}

/* ENCART RÉSERVATION — BLOC CLÉ à fond blanc, emplacement de
   l'intégration Booqable. Bordure noire pour se présenter comme
   un bloc, liseré jaune en tête (accent sobre, pas le CTA lui-même). */
.encart-resa {
  background: var(--fond-clair);
  color: var(--encre);
  border: 2px solid var(--encre);
  border-top: 6px solid var(--jaune);
  border-radius: var(--rayon);
  padding: var(--esp-3);
  display: grid;
  gap: var(--esp-3);
}
.encart-resa h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.encart-resa .dates { display: grid; grid-template-columns: 1fr 1fr; gap: var(--esp-2); }
.encart-resa .total { font-size: 0.95rem; border-top: 1px solid var(--bordure-clair); padding-top: var(--esp-3); }
.encart-resa .total .aide { color: var(--encre-att); font-size: 0.85em; }
.note-booqable { color: var(--texte-att); font-size: 0.8rem; margin-top: var(--esp-2); }

/* Sections description / caractéristiques — même section, 2 colonnes :
   description à gauche, caractéristiques à droite. */
.section-fiche { border-top: 1px solid var(--bordure); padding-block: var(--esp-5); }
.section-fiche > .container > p { max-width: 780px; color: var(--texte-att); margin-top: var(--esp-3); }

.desc-specs-grid { display: grid; gap: var(--esp-5); }
@media (min-width: 768px) { .desc-specs-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.desc-specs-grid p { color: var(--texte-att); margin-top: var(--esp-3); }

.table-specs { width: 100%; max-width: 780px; border-collapse: collapse; margin-top: var(--esp-3); font-size: 0.95rem; }
.table-specs th, .table-specs td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--bordure); vertical-align: top; }
.table-specs th { color: var(--texte-att); font-weight: 600; width: 40%; }

.liste-inclus { margin-top: var(--esp-3); display: grid; gap: var(--esp-2); max-width: 780px; }
.liste-inclus li { display: flex; gap: var(--esp-2); align-items: baseline; }
.liste-inclus li::before { content: "✓"; font-weight: 700; color: var(--encre); background: var(--jaune); border-radius: 0; padding-inline: 4px; font-size: 0.8em; }

/* ============================================================
   FOOTER (maillage SEO riche) — bookend noir du site, collé
   au bloc qui le précède (pas de marge ajoutée en plus).
   ============================================================ */
.footer { background: #000; color: var(--texte); border-top: 1px solid var(--bordure); padding-block: var(--esp-6) var(--esp-4); }
.footer-grille { display: grid; gap: var(--esp-5); grid-template-columns: 1fr; }
@media (min-width: 768px)  { .footer-grille { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .footer-grille { grid-template-columns: repeat(4, 1fr); } }
.footer h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--esp-3); color: var(--texte-att); }
.footer li { padding-block: 4px; }
.footer a { font-size: 0.9rem; color: var(--texte-att); transition: color var(--transition); }
.footer a:hover { color: var(--texte); }
.footer address { font-style: normal; font-size: 0.9rem; color: var(--texte-att); line-height: 1.8; }
.footer-bas {
  border-top: 1px solid var(--bordure);
  margin-top: var(--esp-5);
  padding-top: var(--esp-4);
  font-size: 0.8rem;
  color: var(--texte-att);
  display: flex;
  flex-wrap: wrap;
  gap: var(--esp-3);
  justify-content: space-between;
}

/* ---------- Toast de démonstration ---------- */
#toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 16px);
  background: var(--fond-clair);
  color: var(--encre);
  border: 2px solid var(--encre);
  padding: 12px 20px;
  border-radius: var(--rayon);
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
  max-width: min(90vw, 480px);
  text-align: center;
}
#toast.visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Divers ---------- */
.inactif { pointer-events: none; }
.centre { text-align: center; }
