/* ==========================================================================
   DISTRIBAT 82 — feuille de styles partagée par index.html et catalogue.html

   Monde visuel : SIGNALÉTIQUE DE ZONE INDUSTRIELLE.
   Des plaques de tôle laquée posées sur un sol béton. Le navy porte les
   panneaux, l'orange ne marque QUE la direction qui compte. Les lattes
   directionnelles à pointe de flèche remplacent les boutons et les cartes.
   Lumière venant du haut : liseré clair en crête, ombre portée sous la plaque.
   ========================================================================== */

/* --- Polices auto-hébergées (ex-Google Fonts, sous-ensemble latin) ---------
   Deux fichiers variables seulement : un woff2 par famille couvre tous les
   poids. Servies depuis /fonts/ : plus de connexion à fonts.googleapis.com,
   le texte s'affiche plus tôt (LCP) et le rendu ne dépend plus d'un tiers. */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/overpass-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Overpass Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/overpass-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Panneau — navy imposé par l'enseigne */
  --navy-950: #071129;
  --navy-900: #0b1738;
  --navy-800: #122045;
  --navy-700: #182b58;
  --navy-600: #223a72;
  --navy-500: #33509f;

  /* Direction qui compte — orange imposé par l'enseigne */
  --orange-700: #b8410f;
  --orange-600: #dd4f16;
  --orange-500: #f15a24;
  --orange-400: #ff7f4d;
  --orange-100: #ffe0cd;

  /* Sol béton et aluminium : neutres franchement froids, jamais crème */
  --beton-50:  #f2f3f5;
  --beton-100: #e7e9ec;
  --beton-200: #d7dae0;
  --beton-300: #bfc4cd;
  --alu:       #ffffff;

  --encre:     #0d1526;
  --encre-2:   #46506a;
  --encre-3:   #79839a;

  --vert-600:  #1f7a44;

  --font-signal: 'Overpass', 'Segoe UI', sans-serif;
  --font-mesure: 'Overpass Mono', ui-monospace, monospace;

  /* Les plaques de signalétique restent vives ; les PHOTOS et leurs cadres
     sont arrondis (demande de la gérante). Deux matières, deux traitements :
     la tôle a des angles nets, l'image a des coins adoucis. */
  --r-photo: 18px;
  --r-plaque: 3px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-full: 999px;

  /* Ombres teintées navy, décalage + flou réels, lumière du haut */
  --sh-plaque:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(0,0,0,.34),
    0 2px 3px rgba(11,23,56,.16),
    0 12px 26px rgba(11,23,56,.20);
  --sh-plaque-haute:
    inset 0 1px 0 rgba(255,255,255,.20),
    inset 0 -1px 0 rgba(0,0,0,.36),
    0 4px 6px rgba(11,23,56,.18),
    0 24px 46px rgba(11,23,56,.28);
  --sh-alu:
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 0 0 1px var(--beton-200),
    0 1px 2px rgba(13,21,38,.06),
    0 10px 22px rgba(13,21,38,.09);
  --sh-alu-haute:
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 0 0 1px var(--beton-300),
    0 3px 5px rgba(13,21,38,.08),
    0 20px 40px rgba(13,21,38,.16);

  --ease: cubic-bezier(.22,.68,.34,1);
  --ease-sortie: cubic-bezier(.16,1,.3,1);
  --dur: 200ms;
  /* Retour de pression : plus court que --dur pour que l'interface réponde
     sous le doigt avant même que l'œil ne l'attende. */
  --dur-press: 140ms;

  --shell: 1240px;
  --header-h: 78px;
  --z-sticky: 40;
  --z-header: 100;
  --z-modal: 200;
  --z-skip: 300;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }

/* Sélection de texte aux couleurs de l'enseigne : détail invisible jusqu'au
   jour où on surligne un prix pour le copier. */
::selection { background: var(--orange-500); color: #fff; }

/* Transition de page (MPA view transitions) : fondu croisé court entre
   l'accueil, le catalogue et les fiches. L'en-tête, nommé, reste stable
   pendant la traversée. Ignoré par les navigateurs qui ne le gèrent pas. */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: 240ms;
  animation-timing-function: var(--ease-sortie);
}
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

body {
  font-family: var(--font-signal);
  color: var(--encre);
  background: var(--beton-100);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-signal);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.03em;
  text-wrap: balance;
}
p { text-wrap: pretty; }
img { max-width: 100%; display: block; }
button, select, input { font-family: inherit; }
ul { list-style: none; }
.icon { width: 1.25em; height: 1.25em; flex: none; }

/* Grain de béton : casse la platitude de l'aplat */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ ACCESSIBILITÉ ============ */
:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 3px; border-radius: 2px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: var(--z-skip);
  background: var(--orange-500); color: #fff; padding: 16px 24px;
  font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  text-decoration: none;
}
.skip-link:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Apparition au scroll — discrète partout : le seul moment orchestré du site
   est la pose du totem, plus bas. Le masquage n'est appliqué que si <html
   class="anim">, sans quoi tout le contenu reste visible. */
html.anim .reveal {
  opacity: 0; transform: translate3d(0, 12px, 0); filter: blur(5px);
  transition: opacity 420ms var(--ease-sortie), transform 480ms var(--ease-sortie),
              filter 420ms var(--ease-sortie);
  transition-delay: var(--d, 0ms);
}
html.anim .reveal.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html.anim .reveal { opacity: 1; transform: none; filter: none; }
}

/* ==========================================================================
   MATIÈRES DU MONDE
   ========================================================================== */

/* Plaque de tôle laquée navy */
.plaque {
  position: relative;
  background: linear-gradient(178deg, var(--navy-700), var(--navy-900) 78%);
  color: #fff;
  border-radius: var(--r-plaque);
  box-shadow: var(--sh-plaque);
}
/* Quatre rivets aux angles */
.plaque::before {
  content: ""; position: absolute; inset: 9px; pointer-events: none; z-index: 1;
  background-image:
    radial-gradient(circle 2.5px at 0 0, rgba(255,255,255,.34) 55%, rgba(0,0,0,.3) 60%, transparent 70%),
    radial-gradient(circle 2.5px at 100% 0, rgba(255,255,255,.34) 55%, rgba(0,0,0,.3) 60%, transparent 70%),
    radial-gradient(circle 2.5px at 0 100%, rgba(255,255,255,.34) 55%, rgba(0,0,0,.3) 60%, transparent 70%),
    radial-gradient(circle 2.5px at 100% 100%, rgba(255,255,255,.34) 55%, rgba(0,0,0,.3) 60%, transparent 70%);
  background-repeat: no-repeat;
}

/* Bande de chantier : chevrons orange sur navy */
.chevrons {
  height: 12px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--orange-500) 0 14px,
    var(--navy-900) 14px 28px
  );
}
.chevrons--fine { height: 7px; }

/* Lettrage au pochoir : ce qui est peint sur la tôle */
.pochoir {
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
}

/* Référence de mesure : distances, cotes, numéros de baie */
.mesure {
  font-family: var(--font-mesure);
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

/* ==========================================================================
   SHELL ET BANDES
   ========================================================================== */
.shell { max-width: var(--shell); margin: 0 auto; padding-inline: 28px; width: 100%; }
section { position: relative; z-index: 2; scroll-margin-top: calc(var(--header-h) + 10px); }
.band { padding: 112px 0 124px; }
.band-paper { background: var(--beton-50); }
.band-tint  { background: var(--beton-100); }

/* ==========================================================================
   EN-TÊTE — barre de signalisation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--navy-900);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 6px 20px rgba(7,17,41,.28);
  /* Pendant une transition de page, l'en-tête (identique partout) est apparié
     avec lui-même : il reste immobile pendant que le contenu fond dessous. */
  view-transition-name: site-header;
}
.site-header::after {
  content: ""; display: block; height: 6px;
  background-image: repeating-linear-gradient(-45deg,
    var(--orange-500) 0 12px, var(--navy-950) 12px 24px);
}
.nav {
  max-width: var(--shell); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 28px; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; cursor: pointer; }
.brand .logo-mark {
  width: 44px; height: 44px; flex: none; border-radius: 2px;
  background: var(--orange-500); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), inset 0 -1px 0 rgba(0,0,0,.25);
  transition: background var(--dur);
}
.brand:hover .logo-mark { background: var(--orange-400); }
.brand .logo-mark svg { width: 22px; height: 22px; }
.brand .b-txt { display: flex; flex-direction: column; line-height: 1; }
.brand .b1 {
  font-size: 1.2rem; font-weight: 900; color: #fff;
  text-transform: uppercase; letter-spacing: .01em;
}
.brand .b2 {
  font-size: .62rem; font-weight: 700; color: var(--orange-400);
  text-transform: uppercase; letter-spacing: .3em; margin-top: 5px;
}

.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links a {
  position: relative; text-decoration: none; color: rgba(255,255,255,.72);
  font-weight: 600; font-size: .84rem; text-transform: uppercase; letter-spacing: .07em;
  padding: 10px 14px; cursor: pointer; white-space: nowrap; flex: none;
  transition: color var(--dur), background var(--dur);
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--orange-500); transform: scaleX(0); transform-origin: left;
  transition: transform 280ms var(--ease-sortie);
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 9px; min-height: 44px;
  background: var(--orange-500); color: #fff; text-decoration: none;
  font-weight: 800; font-size: .88rem; padding: 11px 18px; border-radius: 2px;
  white-space: nowrap; font-variant-numeric: tabular-nums;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), inset 0 -1px 0 rgba(0,0,0,.24);
  transition: background var(--dur), transform var(--dur-press) var(--ease-sortie);
}
.nav-phone:hover { background: var(--orange-400); transform: translateY(-1px); }
.nav-phone:active { transform: scale(.97); }
.nav-toggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,.28);
  border-radius: 2px; width: 44px; height: 44px; cursor: pointer; color: #fff;
  align-items: center; justify-content: center;
  transition: background var(--dur), border-color var(--dur);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }

/* ==========================================================================
   LE TOTEM — premier écran
   ========================================================================== */
.totem {
  position: relative; overflow: hidden;
  background:
    linear-gradient(184deg, var(--navy-800) 0%, var(--navy-950) 100%);
  color: #fff;
}
/* Joints de tôle : le totem est fait de lés soudés, pas d'un quadrillage.
   Un seul axe, espacement large, liseré clair en crête de chaque joint. */
.totem::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.05) 0 1px,
    rgba(0,0,0,.14) 1px 2px,
    transparent 2px 132px
  );
  mask-image: linear-gradient(to bottom, #000 10%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, #000 10%, transparent 92%);
}
.totem-grid {
  position: relative;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: 56px; align-items: center;
  padding: 84px 0 92px;
}

/* Plaque d'état : ouvert / fermé, calculée sur les horaires réels */
.etat {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--navy-950); color: #fff;
  padding: 9px 16px 9px 13px; border-radius: 2px;
  font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
  margin-bottom: 30px;
}
.etat .voyant {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: var(--encre-3); box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}
.etat.ouvert .voyant { background: #35d07f; box-shadow: 0 0 0 3px rgba(53,208,127,.18), 0 0 12px rgba(53,208,127,.8); }
.etat.ferme  .voyant { background: var(--orange-500); box-shadow: 0 0 0 3px rgba(241,90,36,.18); }
.etat .detail-etat { color: rgba(255,255,255,.62); font-weight: 600; letter-spacing: .04em; }

.totem h1 {
  font-size: clamp(2.4rem, 5.3vw, 4.6rem);
  font-weight: 900; line-height: .93; letter-spacing: -.04em;
  text-transform: uppercase; color: #fff;
}
/* L'orange ne souligne qu'un mot : celui qui décide de la visite. */
.totem h1 .mot-orange { color: var(--orange-500); }
.totem-tag {
  font-size: clamp(1rem, 1.5vw, 1.14rem); color: rgba(255,255,255,.74);
  max-width: 46ch; margin-top: 24px; font-weight: 400;
}
.totem-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* Cotes du magasin, en bas du totem */
.totem-cotes {
  display: flex; gap: 0; flex-wrap: wrap; margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.totem-cotes div {
  padding: 20px 30px 0 0; margin-right: 30px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.totem-cotes div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.totem-cotes dt {
  font-family: var(--font-mesure); font-size: 1.5rem; font-weight: 600; color: #fff;
  font-variant-numeric: tabular-nums; line-height: 1.1; letter-spacing: -.01em;
}
.totem-cotes dd {
  font-size: .72rem; color: rgba(255,255,255,.52); margin-top: 6px;
  text-transform: uppercase; letter-spacing: .1em; font-weight: 600; max-width: 17ch;
}

/* --- Le mât directionnel : la signature du site --- */
.mat { position: relative; display: flex; flex-direction: column; gap: 9px; }
.mat-titre {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .26em; color: rgba(255,255,255,.58); margin-bottom: 6px;
}
.latte {
  position: relative; display: flex; align-items: center; gap: 16px;
  min-height: 62px; padding: 14px 66px 14px 22px;
  background: var(--navy-700); color: #fff; text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
  transition: background var(--dur), transform 320ms var(--ease-sortie);
}
/* Balayage rétroréfléchissant au survol. La transition n'existe QUE sur le
   survol : à la sortie, le reflet se replace instantanément hors champ au
   lieu de rejouer sa course à l'envers (entrée animée, sortie muette). */
.latte::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.16) 48%, transparent 66%);
  transform: translateX(-100%);
}
.latte:hover { background: var(--navy-600); transform: translateX(7px); }
.latte:hover::after { transform: translateX(100%); transition: transform 620ms var(--ease-sortie); }
.latte:active { transform: translateX(7px) scale(.98); }
.latte .icon { width: 1.5em; height: 1.5em; color: var(--orange-400); }
.latte .l-nom {
  font-weight: 800; font-size: 1.02rem; text-transform: uppercase; letter-spacing: .04em;
}
.latte .l-note {
  margin-left: auto; font-family: var(--font-mesure); font-size: .78rem;
  color: rgba(255,255,255,.55); font-variant-numeric: tabular-nums;
}
/* La seule direction qui compte */
.latte--cap { background: var(--orange-500); }
.latte--cap .icon { color: #fff; }
.latte--cap .l-note { color: rgba(255,255,255,.8); }
.latte--cap:hover { background: var(--orange-400); }

/* Pose du totem : le seul moment orchestré du site */
html.anim .mat .latte { opacity: 0; transform: translateX(-26px); }
html.anim .mat.pose .latte {
  opacity: 1; transform: none;
  transition: opacity 420ms var(--ease-sortie), transform 560ms var(--ease-sortie);
  transition-delay: var(--pose, 0ms);
}
html.anim .mat.pose .latte:hover { transform: translateX(7px); }
html.anim .mat.pose .latte:active { transform: translateX(7px) scale(.98); }

/* ==========================================================================
   BOUTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-weight: 800; font-size: .92rem; text-decoration: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 16px 28px; border: none; border-radius: 2px; min-height: 54px;
  transition: background var(--dur), transform var(--dur-press) var(--ease-sortie), box-shadow var(--dur), color var(--dur);
}
.btn .icon { width: 1.15em; height: 1.15em; transition: transform var(--dur) var(--ease); }
.btn:hover .icon { transform: translateX(4px); }
.btn:active { transform: scale(.97); }
.btn-primary {
  background: var(--orange-500); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), inset 0 -2px 0 rgba(0,0,0,.26), 0 10px 24px rgba(241,90,36,.28);
}
.btn-primary:hover { background: var(--orange-400); box-shadow: inset 0 1px 0 rgba(255,255,255,.34), inset 0 -2px 0 rgba(0,0,0,.24), 0 14px 30px rgba(241,90,36,.34); }
.btn-ghost {
  background: transparent; color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.34);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); box-shadow: inset 0 0 0 1px rgba(255,255,255,.6); }
.btn-ghost:hover .icon { transform: none; }
.btn-navy {
  background: var(--navy-800); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), inset 0 -2px 0 rgba(0,0,0,.32), 0 10px 24px rgba(11,23,56,.22);
}
.btn-navy:hover { background: var(--navy-600); }

/* ==========================================================================
   EN-TÊTES DE SECTION
   ========================================================================== */
.section-head { margin-bottom: 56px; max-width: 780px; }
.section-title {
  font-size: clamp(1.9rem, 3.9vw, 3.1rem); font-weight: 900;
  color: var(--navy-900); letter-spacing: -.035em; text-transform: uppercase;
  line-height: .98;
}
.section-title::after {
  content: ""; display: block; width: 74px; height: 5px; margin-top: 22px;
  background: var(--orange-500);
}
.lead { margin-top: 22px; font-size: 1.06rem; color: var(--encre-2); max-width: 64ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .section-title::after { margin-inline: auto; }
.section-head.center .lead { margin-inline: auto; }

/* ==========================================================================
   LE MAGASIN — plaques d'information, pas des cartes à icônes
   ========================================================================== */
.plaques { display: grid; grid-template-columns: repeat(12, 1fr); gap: 3px; }
.plaque-info {
  grid-column: span 6;
  position: relative; overflow: hidden;
  background: var(--navy-800); color: #fff; padding: 40px 36px 42px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  transition: background var(--dur);
}
.plaque-info:hover { background: var(--navy-700); }
.plaque-info:nth-child(1), .plaque-info:nth-child(4) { grid-column: span 7; }
.plaque-info:nth-child(2), .plaque-info:nth-child(3) { grid-column: span 5; }
.plaque-info .p-ico {
  width: 46px; height: 46px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(241,90,36,.16); color: var(--orange-400); border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(241,90,36,.3);
}
.plaque-info .p-ico svg { width: 23px; height: 23px; }
.plaque-info h3 {
  font-size: 1.12rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; margin-bottom: 12px; color: #fff;
}
.plaque-info p { color: rgba(255,255,255,.72); font-size: .96rem; max-width: 50ch; }

/* ==========================================================================
   VITRINE — deux destinations
   ========================================================================== */
.univers { margin-bottom: 3px; }
.destination {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  background: var(--beton-200);
}
.destination-texte {
  background: var(--alu); padding: 52px 48px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
.univers-title {
  font-size: clamp(1.7rem, 3.1vw, 2.5rem); font-weight: 900;
  color: var(--navy-900); letter-spacing: -.035em; text-transform: uppercase; line-height: 1;
}
.destination-texte .lead { margin-top: 18px; margin-bottom: 24px; }

/* Petites plaques d'argument, vissées sous l'accroche d'un univers */
.mentions { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.mentions li {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--navy-900); color: #fff;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  padding: 10px 15px; border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), inset 0 -1px 0 rgba(0,0,0,.3);
}
.mentions .icon { width: 1.15em; height: 1.15em; color: var(--orange-400); }
.destination-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; }
.destination-photos figure {
  position: relative; overflow: hidden; margin: 0; min-height: 0;
  background: var(--navy-800); border-radius: var(--r-photo);
}
.destination-photos figure:first-child { grid-row: span 2; }
.destination-photos img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 760ms var(--ease-sortie);
}
.destination:hover .destination-photos img { transform: scale(1.045); }
.destination-photos .placeholder { color: rgba(255,255,255,.22); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.destination-photos .placeholder svg { width: 44px; height: 44px; }

/* ==========================================================================
   ÉLECTROMÉNAGER SUR COMMANDE
   ========================================================================== */
.commande-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.commande-tel {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px;
  color: var(--navy-900); font-family: var(--font-mesure); font-weight: 600; font-size: 1.16rem;
  font-variant-numeric: tabular-nums; text-decoration: none;
  border-bottom: 2px solid var(--orange-500);
  transition: color var(--dur);
}
.commande-tel:hover { color: var(--orange-700); }
.commande-tel .icon { width: 1.05em; height: 1.05em; color: var(--orange-600); }

.commande-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: start; }
.commande-photos figure {
  position: relative; overflow: hidden; margin: 0; aspect-ratio: 4/5;
  background: var(--navy-800); border-radius: var(--r-photo);
  display: flex; align-items: center; justify-content: center;
}
.commande-photos figure:nth-child(2) { margin-top: 40px; }
.commande-photos img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease-sortie);
}
.commande-photos figure:hover img { transform: scale(1.05); }
.commande-photos .placeholder { color: rgba(255,255,255,.2); }
.commande-photos .placeholder svg { width: 48px; height: 48px; }

/* ==========================================================================
   ARRIVAGES
   ========================================================================== */
.fb-panel {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3px;
  background: var(--beton-200);
}
.fb-copy {
  background: var(--navy-800); color: #fff; padding: 52px 46px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.fb-ico {
  width: 50px; height: 50px; margin-bottom: 26px; background: #1877f2; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), inset 0 -1px 0 rgba(0,0,0,.24);
}
.fb-ico svg { width: 26px; height: 26px; fill: #fff; }
.fb-copy h3 {
  color: #fff; font-size: 1.42rem; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: -.01em;
}
.fb-copy p { color: rgba(255,255,255,.72); font-size: .97rem; max-width: 46ch; margin-bottom: 10px; }
.fb-points { margin: 12px 0 6px; display: flex; flex-direction: column; gap: 11px; }
.fb-points li { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: rgba(255,255,255,.82); }
.fb-points .icon { width: 1.15em; height: 1.15em; flex: none; margin-top: .2em; color: var(--orange-400); }
.fb-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 28px; }
.fb-link {
  display: inline-flex; align-items: center; gap: 11px; min-height: 54px;
  background: #1877f2; color: #fff; text-decoration: none; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em; font-size: .88rem;
  padding: 16px 26px; border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.26), inset 0 -2px 0 rgba(0,0,0,.24);
  transition: background var(--dur), transform var(--dur) var(--ease-sortie);
}
.fb-link:hover { background: #3b8cf5; transform: translateY(-2px); }
.fb-link:active { transform: scale(.97); }
.fb-link .icon { transition: transform var(--dur) var(--ease); }
.fb-link:hover .icon { transform: translateX(4px); }
.fb-alt {
  display: inline-flex; align-items: center; gap: 9px; min-height: 44px;
  color: rgba(255,255,255,.72); font-weight: 700; font-size: .84rem; text-decoration: none;
  text-transform: uppercase; letter-spacing: .07em;
  border-bottom: 2px solid transparent; transition: color var(--dur), border-color var(--dur);
}
.fb-alt:hover { color: #fff; border-color: var(--orange-500); }
.fb-alt .icon { width: 1.15em; height: 1.15em; }

.fb-mosaic {
  position: relative; display: grid; gap: 10px; padding: 10px;
  grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  background: transparent; min-height: 340px;
}
.fb-mosaic figure { position: relative; overflow: hidden; margin: 0; min-height: 0; background: var(--navy-800); border-radius: var(--r-photo); }
.fb-mosaic figure:first-child { grid-row: span 2; }
.fb-mosaic img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 780ms var(--ease-sortie);
}
.fb-panel:hover .fb-mosaic img { transform: scale(1.04); }
.fb-mosaic .mosaic-cap {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 30px 20px 16px;
  background: linear-gradient(to top, rgba(7,17,41,.9), transparent);
  color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 700; text-align: center;
  text-transform: uppercase; letter-spacing: .12em; pointer-events: none;
}

/* ==========================================================================
   RÉSEAUX
   ========================================================================== */
/* min(300px,100%) : sous 340px d'écran, la colonne suivait son minimum rigide
   de 300px et rongeait la marge droite. */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 3px; }
.social-card {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 20px;
  text-decoration: none; background: var(--navy-800); padding: 28px 30px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  transition: background var(--dur), transform var(--dur-press) var(--ease-sortie);
}
.social-card:hover { background: var(--navy-700); }
.social-card:active { transform: scale(.99); }
.social-card .s-ico {
  width: 54px; height: 54px; border-radius: 2px; flex: none;
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), inset 0 -1px 0 rgba(0,0,0,.22);
}
.social-card .s-ico svg { width: 26px; height: 26px; }
.social-card.fb .s-ico { background: #1877f2; }
.social-card.fb .s-ico svg { fill: #fff; }
.social-card.ig .s-ico { background: #d6266b; }
.social-card.ig .s-ico svg { fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.social-card .s-txt { flex: 1; min-width: 0; }
.social-card .s-name {
  display: block; font-weight: 800; color: #fff; font-size: 1.02rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.social-card .s-handle { display: block; color: rgba(255,255,255,.6); font-size: .88rem; margin-top: 3px; }
.social-card .s-go { color: var(--orange-400); flex: none; transition: transform var(--dur) var(--ease); }
.social-card:hover .s-go { transform: translateX(5px); }

/* ==========================================================================
   FAQ — plaques alu dépliables (détails natifs, aucun JS requis)
   ========================================================================== */
.faq-list { display: grid; gap: 3px; max-width: 880px; }
.faq-item {
  background: var(--alu); border-radius: var(--r-plaque);
  box-shadow: var(--sh-alu);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: baseline; gap: 16px;
  padding: 22px 26px;
  font-weight: 800; font-size: 1.02rem; color: var(--navy-900);
  transition: color var(--dur);
}
.faq-item summary::-webkit-details-marker { display: none; }
/* Marqueur en Overpass Mono, orange : la seule direction qui compte */
.faq-item summary::before {
  content: "+"; flex: none; width: 22px;
  font-family: var(--font-mesure); font-weight: 700;
  color: var(--orange-500);
}
.faq-item[open] summary::before { content: "\2013"; }
.faq-item summary:hover { color: var(--navy-600); }
/* 26px de padding + 22px de marqueur + 16px d'écart = réponse alignée sur la question */
.faq-item .faq-rep {
  padding: 0 26px 24px 64px;
  color: var(--encre-2); font-size: .96rem; line-height: 1.7; max-width: 66ch;
}
.faq-item .faq-rep a { color: var(--orange-600); font-weight: 700; text-decoration: none; }
.faq-item .faq-rep a:hover { text-decoration: underline; }
/* Ouverture : la réponse se pose au lieu d'apparaître d'un bloc */
.faq-item[open] .faq-rep { animation: faqIn 260ms var(--ease-sortie) both; }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
/* Navigateurs récents : la hauteur du volet s'anime aussi (interpolation
   vers auto). Les autres gardent l'ouverture instantanée + fondu ci-dessus. */
@supports (interpolate-size: allow-keywords) {
  .faq-item, .f-legal details { interpolate-size: allow-keywords; }
  .faq-item::details-content, .f-legal details::details-content {
    block-size: 0; overflow-y: clip;
    transition: block-size 300ms var(--ease-sortie), content-visibility 300ms allow-discrete;
  }
  .faq-item[open]::details-content, .f-legal details[open]::details-content { block-size: auto; }
}

/* ==========================================================================
   AVIS GOOGLE — plaques témoignage, étoiles orange
   ========================================================================== */
.avis-score {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin: -28px 0 36px;   /* resserre sous le section-head (56px de marge) */
}
.avis-score .score-note {
  font-family: var(--font-mesure); font-weight: 700; font-size: 2.1rem;
  color: var(--navy-900); letter-spacing: -.02em;
}
.avis-score .score-sur { font-size: 1.1rem; color: var(--encre-3); }
.avis-score .score-etoiles { color: var(--orange-500); font-size: 1.15rem; letter-spacing: .14em; }
.avis-score .score-nb {
  font-family: var(--font-mesure); font-size: .82rem; color: var(--encre-2);
  text-transform: uppercase; letter-spacing: .09em;
}
.avis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr)); gap: 3px; }
.avis-card {
  margin: 0; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--alu); border-radius: var(--r-plaque);
  box-shadow: var(--sh-alu);
}
.avis-card .a-etoiles { color: var(--orange-500); letter-spacing: .16em; }
.avis-card blockquote { margin: 0; flex: 1; color: var(--encre); font-size: .96rem; line-height: 1.7; }
.avis-card figcaption {
  font-family: var(--font-mesure); font-size: .78rem; color: var(--encre-3);
  text-transform: uppercase; letter-spacing: .09em;
}
.avis-actions { margin-top: 36px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.avis-actions .lien-avis { font-weight: 700; color: var(--navy-800); }
.avis-actions .lien-avis:hover { color: var(--orange-600); }

/* ==========================================================================
   INFOS — la destination, fin du trajet
   ========================================================================== */
.infos { position: relative; background: var(--navy-900); color: #fff; }
.infos::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.045) 0 1px,
    rgba(0,0,0,.12) 1px 2px,
    transparent 2px 132px
  );
}
.infos .shell { position: relative; }
.infos .section-title { color: #fff; }
.infos .lead { color: rgba(255,255,255,.7); }
.infos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 3px; }
.info-box {
  background: var(--navy-800); padding: 34px 30px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  transition: background var(--dur);
}
.info-box:hover { background: var(--navy-700); }
.info-box .i-head { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.info-box .i-ico {
  width: 40px; height: 40px; border-radius: 2px; flex: none;
  background: rgba(241,90,36,.16); color: var(--orange-400);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(241,90,36,.3);
}
.info-box .i-ico svg { width: 20px; height: 20px; }
.info-box h3 {
  color: #fff; font-size: 1rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em;
}
.info-box p, .info-box li { font-size: .96rem; color: rgba(255,255,255,.8); }
.info-box li { padding: 9px 0; }
.info-box li + li { border-top: 1px solid rgba(255,255,255,.08); }
.info-box .day {
  display: block; color: var(--orange-400); font-weight: 800; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 3px;
}
.info-box .hrs { font-family: var(--font-mesure); font-variant-numeric: tabular-nums; font-size: .92rem; }
.info-box a { color: #fff; font-weight: 700; }
.info-box .tel {
  display: inline-flex; align-items: center; min-height: 44px; margin-top: 6px;
  font-family: var(--font-mesure); font-size: 1.3rem; font-weight: 600;
  font-variant-numeric: tabular-nums; text-decoration: none;
  border-bottom: 2px solid var(--orange-500);
  transition: color var(--dur);
}
.info-box .tel:hover { color: var(--orange-400); }
.info-box .maps-btn {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; min-height: 46px;
  background: transparent; color: #fff; text-decoration: none;
  font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
  padding: 12px 18px; border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
  transition: background var(--dur), box-shadow var(--dur), transform var(--dur-press) var(--ease-sortie);
}
.info-box .maps-btn:hover { background: rgba(255,255,255,.09); box-shadow: inset 0 0 0 1px rgba(255,255,255,.55); }
.info-box .maps-btn:active { transform: scale(.97); }
.info-box .maps-btn .icon { width: 1.1em; height: 1.1em; }

/* Carte */
.map-card { margin-top: 14px; overflow: hidden; background: var(--navy-800); border-radius: var(--r-photo); }
.map-embed { position: relative; height: 400px; background: var(--beton-200); }
.map-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Calque : la molette n'atteint la carte qu'après un clic volontaire. */
.map-shield {
  position: absolute; inset: 0; z-index: 2; width: 100%;
  display: flex; align-items: flex-start; justify-content: center;
  background: rgba(11,23,56,.14); border: 0; padding: 16px 16px 0; cursor: pointer;
  transition: background var(--dur), opacity var(--dur);
}
.map-shield:hover { background: rgba(11,23,56,.2); }
.map-shield .shield-hint {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px;
  background: var(--navy-900); color: #fff;
  font-weight: 800; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em;
  padding: 13px 20px; border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 8px 22px rgba(7,17,41,.4);
  transition: transform var(--dur) var(--ease-sortie);
}
.map-shield:hover .shield-hint { transform: translateY(-2px); }
.map-shield .icon { color: var(--orange-400); }
.map-embed.active .map-shield { opacity: 0; pointer-events: none; }
.map-embed.active .map-iframe { box-shadow: inset 0 0 0 3px var(--orange-500); }

.map-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; background: var(--navy-800); flex-wrap: wrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.map-bar .m-info { display: flex; align-items: flex-start; gap: 13px; }
.map-bar .m-info .icon { width: 1.3em; height: 1.3em; color: var(--orange-400); flex: none; margin-top: 3px; }
.map-bar .m-info strong {
  display: block; color: #fff; font-weight: 800; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.map-bar .m-info span { color: rgba(255,255,255,.66); font-size: .89rem; }
.map-bar .maps-btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; min-height: 48px;
  background: var(--orange-500); color: #fff; text-decoration: none;
  font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  padding: 14px 22px; border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), inset 0 -2px 0 rgba(0,0,0,.24);
  transition: background var(--dur), transform var(--dur) var(--ease-sortie);
}
.map-bar .maps-btn:hover { background: var(--orange-400); transform: translateY(-2px); }
.map-bar .maps-btn:active { transform: scale(.97); }
.map-bar .maps-btn .icon { width: 1.05em; height: 1.05em; color: #fff; margin: 0; }

/* ==========================================================================
   CATALOGUE — filtres, cartes, fiche article
   ========================================================================== */
#catalogue { scroll-margin-top: calc(var(--header-h) + 20px); }

.retour {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px;
  margin-bottom: 10px; color: var(--encre-2); font-weight: 800; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .1em; text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color var(--dur), border-color var(--dur);
}
.retour:hover { color: var(--navy-900); border-color: var(--orange-500); }
.retour .icon { width: 1.1em; height: 1.1em; color: var(--orange-600); transform: rotate(180deg); transition: transform var(--dur) var(--ease); }
.retour:hover .icon { transform: rotate(180deg) translateX(3px); }

.filters {
  position: sticky; top: calc(var(--header-h) + 12px); z-index: var(--z-sticky);
  background: var(--navy-900);
  padding: 20px 22px; margin-bottom: 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 14px 30px rgba(7,17,41,.22);
  display: flex; gap: 18px; flex-wrap: wrap; align-items: flex-end;
}
.f-group { display: flex; flex-direction: column; gap: 8px; flex: 1 1 165px; min-width: 0; }
.f-group[hidden] { display: none; }
.f-group label {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: .66rem; color: rgba(255,255,255,.66);
  text-transform: uppercase; letter-spacing: .16em;
}
.f-group label .icon { width: 1.15em; height: 1.15em; color: var(--orange-400); }
.f-group select, .size-select, .d-size-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2379839a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  padding-right: 38px !important;
}
.f-group select {
  width: 100%; padding: 13px 14px; border: 0; border-radius: 2px;
  font-size: .9rem; font-weight: 700; color: var(--navy-900);
  background-color: var(--alu); min-height: 48px; cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(13,21,38,.14);
  transition: box-shadow var(--dur);
}
.f-group select:hover { box-shadow: inset 0 -2px 0 var(--orange-500); }
.f-group select:focus { outline: none; box-shadow: inset 0 -3px 0 var(--orange-500), 0 0 0 3px rgba(241,90,36,.3); }
.f-reset {
  display: inline-flex; align-items: center; gap: 9px; min-height: 48px;
  background: transparent; border: 0; color: #fff;
  font-weight: 800; padding: 13px 20px; border-radius: 2px;
  cursor: pointer; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
  transition: background var(--dur), box-shadow var(--dur), transform var(--dur-press) var(--ease-sortie);
}
.f-reset:hover { background: rgba(255,255,255,.1); box-shadow: inset 0 0 0 1px rgba(255,255,255,.6); }
.f-reset:active { transform: scale(.97); }
.f-count {
  font-size: .78rem; color: var(--encre-2); font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  margin: 22px 0 24px; display: flex; align-items: center; gap: 10px;
}
.f-count strong { color: var(--navy-900); font-family: var(--font-mesure); font-weight: 600; }
.f-count .icon { width: 1.1em; height: 1.1em; color: var(--orange-600); }

/* Grille produits. position:relative : le re-filtrage animé (catalogue.html)
   y pose les clones des cartes sortantes en absolu, le temps de leur fondu. */
.grid { position: relative; display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 14px; }
.card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--alu); border-radius: var(--r-photo); box-shadow: var(--sh-alu);
  transition: transform var(--dur) var(--ease-sortie), box-shadow var(--dur);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-alu-haute); z-index: 3; }
/* Pression sur une carte : elle rend une partie de sa levée, comme un vrai objet */
.card:active { transform: translateY(-1px) scale(.985); }
/* Les cartes sont des liens vers les pages produit : on neutralise le style lien. */
a.card { text-decoration: none; color: inherit; }
a.card:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 3px; }

.card-media {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
}
.card-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 640ms var(--ease-sortie);
}
.card:hover .card-media img { transform: scale(1.05); }
.card-media .placeholder { color: rgba(255,255,255,.2); }
.card-media .placeholder svg { width: 52px; height: 52px; }
/* Étiquette de baie, peinte au pochoir */
.card-flag {
  position: absolute; left: 0; top: 14px; z-index: 2;
  background: var(--orange-500); color: #fff;
  font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em;
  padding: 7px 13px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
}
.card-photos {
  position: absolute; right: 12px; top: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--navy-950); color: #fff;
  font-family: var(--font-mesure); font-size: .68rem; font-weight: 600;
  padding: 6px 11px; border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.card-photos .icon { width: 1em; height: 1em; }

.card-body { padding: 22px 20px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card-brand {
  font-size: .64rem; font-weight: 800; color: var(--orange-700);
  text-transform: uppercase; letter-spacing: .2em;
}
.card h3 {
  font-size: 1.04rem; color: var(--navy-900); font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em;
}
.card .card-desc { font-size: .89rem; color: var(--encre-2); line-height: 1.55; }
.card .size-range {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  color: var(--encre-2); font-family: var(--font-mesure); font-size: .78rem;
  font-variant-numeric: tabular-nums;
}
.card .size-range .icon { width: 1.05em; height: 1.05em; color: var(--navy-500); }
.card-foot { margin-top: auto; padding-top: 18px; display: flex; flex-direction: column; gap: 13px; }
.card .size-select {
  width: 100%; padding: 13px 14px; border: 0; border-radius: 2px;
  font-size: .88rem; font-weight: 700; color: var(--navy-900);
  background-color: var(--beton-100); cursor: pointer; min-height: 48px;
  box-shadow: inset 0 -2px 0 rgba(13,21,38,.12);
  transition: box-shadow var(--dur), background var(--dur);
}
.card .size-select:hover { background-color: var(--beton-50); box-shadow: inset 0 -2px 0 var(--orange-500); }
.card .size-select:focus { outline: none; box-shadow: inset 0 -3px 0 var(--orange-500), 0 0 0 3px rgba(241,90,36,.22); }
.card .price {
  font-family: var(--font-mesure); font-size: 1.44rem; font-weight: 600;
  color: var(--navy-900); font-variant-numeric: tabular-nums; letter-spacing: -.02em;
  line-height: 1.15;
}
.card .price .dash { color: var(--encre-3); margin: 0 6px; }
.card .price .from {
  display: block; margin-top: 5px; font-family: var(--font-signal);
  font-size: .66rem; font-weight: 800; color: var(--encre-3);
  text-transform: uppercase; letter-spacing: .12em;
}

/* État vide */
.no-result {
  grid-column: 1/-1; text-align: center; padding: 84px 24px;
  background: var(--alu); border-radius: var(--r-photo); box-shadow: inset 0 0 0 2px var(--beton-200);
}
.no-result .face {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 2px;
  background: var(--beton-100); color: var(--encre-3);
  display: flex; align-items: center; justify-content: center;
}
.no-result .face svg { width: 30px; height: 30px; }
.no-result h3 {
  color: var(--navy-900); font-size: 1.2rem; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: -.01em;
}
.no-result p { font-size: .97rem; color: var(--encre-2); max-width: 46ch; margin: 0 auto 24px; }
.no-result .f-reset { color: var(--navy-900); box-shadow: inset 0 0 0 1px var(--beton-300); }
.no-result .f-reset:hover { background: var(--beton-100); box-shadow: inset 0 0 0 1px var(--navy-600); }

/* ==========================================================================
   PIED DE PAGE
   ========================================================================== */
.site-footer { position: relative; z-index: 2; background: var(--navy-950); color: #fff; padding: 0 0 30px; }
.site-footer .chevrons { margin-bottom: 60px; }
.f-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; align-items: start; }
.f-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.f-brand .logo-mark {
  width: 42px; height: 42px; flex: none; border-radius: 2px;
  background: var(--orange-500); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}
.f-brand .logo-mark svg { width: 21px; height: 21px; }
.f-brand .b1 { display: block; font-size: 1.14rem; font-weight: 900; text-transform: uppercase; }
.f-brand .b2 {
  display: block; font-size: .6rem; font-weight: 700; color: var(--orange-400);
  text-transform: uppercase; letter-spacing: .3em; margin-top: 5px;
}
.site-footer .f-desc { color: rgba(255,255,255,.55); font-size: .92rem; max-width: 40ch; }
.site-footer h4 {
  font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .2em;
  color: rgba(255,255,255,.42); margin-bottom: 18px;
}
.site-footer .f-list a, .site-footer .f-list span {
  display: inline-block; padding: 8px 0; min-height: 24px;
  color: rgba(255,255,255,.78); text-decoration: none; font-size: .92rem; cursor: pointer;
  transition: color var(--dur);
}
.site-footer .f-list a:hover, .site-footer .f-list span:hover { color: var(--orange-400); }
.site-footer .f-list .tel { font-family: var(--font-mesure); font-variant-numeric: tabular-nums; font-weight: 600; }
.f-social { display: flex; gap: 10px; margin-top: 20px; }
.f-social a {
  width: 44px; height: 44px; border-radius: 2px; color: rgba(255,255,255,.85);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
  transition: background var(--dur), box-shadow var(--dur);
}
.f-social a:hover { background: rgba(255,255,255,.09); box-shadow: inset 0 0 0 1px var(--orange-500); }
.f-social svg { width: 17px; height: 17px; fill: currentColor; }
.f-social a.ig svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.f-legal {
  margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: .78rem; color: rgba(255,255,255,.56);
}
.f-legal details summary {
  display: inline-block; padding: 8px 0;
  cursor: pointer; color: rgba(255,255,255,.66); list-style: none;
  text-transform: uppercase; letter-spacing: .1em; font-weight: 700; font-size: .72rem;
  transition: color var(--dur);
}
.f-legal details summary::-webkit-details-marker { display: none; }
.f-legal details summary::before { content: "▸ "; }
.f-legal details[open] summary::before { content: "▾ "; }
.f-legal details summary:hover { color: var(--orange-400); }
.f-legal details p { margin-top: 12px; max-width: 66ch; line-height: 1.75; color: rgba(255,255,255,.6); font-size: .8rem; }
.f-legal details p + p { margin-top: 10px; }
.f-legal details a { color: rgba(255,255,255,.66); }

/* ==========================================================================
   FICHE ARTICLE
   ========================================================================== */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(7,17,41,.76);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: var(--z-modal); padding: 20px;
  /* Le centrage passe par margin:auto sur .detail, PAS par align-items:center :
     quand la fiche est plus haute que l'écran, le centrage flex répartit le
     débordement en haut ET en bas, et le haut devient inatteignable — c'est le
     bug constaté sur iPhone (photo coupée à moitié). margin:auto centre quand
     ça tient et cale la fiche en haut quand ça déborde. L'overlay sait alors
     défiler (filet pour les navigateurs sans dvh), sans entraîner la page. */
  overflow-y: auto; overscroll-behavior: contain;
}
.modal-overlay.open { display: flex; animation: fadeIn 180ms var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* Menu mobile : il descend de la barre plutôt que d'apparaître sur place */
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.detail {
  position: relative; background: var(--alu);
  max-width: 620px; width: 100%; margin: auto;
  /* 92vh mesurait le GRAND viewport d'iOS (barres Safari repliées) : la fiche
     faisait 747px pour ~660px visibles, et débordait. dvh suit le viewport
     réellement visible ; la ligne vh reste en secours pour les navigateurs
     plus anciens, secourus alors par le défilement de l'overlay. */
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain;
  border-radius: 22px;
  box-shadow: 0 40px 90px rgba(7,17,41,.6);
  animation: modalIn 320ms cubic-bezier(.32,.72,0,1);
}
/* Jamais depuis scale(0) : la fiche a déjà un corps quand elle arrive */
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
.detail .d-img {
  /* width:100% est indispensable : sans lui, min-height + aspect-ratio
     recalculent la LARGEUR et la zone photo déborde de la fiche sur mobile. */
  position: relative; width: 100%; aspect-ratio: 16/10; min-height: 220px; overflow: hidden;
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
}
.detail .d-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detail .d-img .placeholder { color: rgba(255,255,255,.2); }
.detail .d-img .placeholder svg { width: 72px; height: 72px; }
/* Rail collant : hauteur nulle, il suit le défilement interne de la fiche
   pour que la croix reste TOUJOURS visible, même fiche défilée. */
.d-close-rail { position: sticky; top: 0; height: 0; z-index: 6; }
.detail .d-close {
  position: absolute; top: 14px; right: 14px; z-index: 6;
  background: var(--navy-950); border: none; width: 44px; height: 44px; border-radius: 2px;
  cursor: pointer; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
  transition: background var(--dur), transform var(--dur) var(--ease-sortie);
}
.detail .d-close:hover { background: var(--orange-500); transform: rotate(90deg); }
.detail .d-close:active { transform: rotate(90deg) scale(.92); }
.detail .d-close svg { width: 17px; height: 17px; }

.detail .d-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  background: var(--navy-950); border: 0; width: 44px; height: 44px; border-radius: 2px;
  cursor: pointer; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
  transition: background var(--dur), transform var(--dur) var(--ease-sortie);
}
.detail .d-nav[hidden] { display: none; }
.detail .d-nav svg { width: 18px; height: 18px; }
.detail .d-nav:hover { background: var(--orange-500); }
.detail .d-prev { left: 14px; }
.detail .d-prev svg { transform: rotate(180deg); }
.detail .d-next { right: 14px; }
.detail .d-prev:hover { transform: translateY(-50%) translateX(-2px); }
.detail .d-next:hover { transform: translateY(-50%) translateX(2px); }
.detail .d-nav:active { transform: translateY(-50%) scale(.92); }
.detail .d-photo-label {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); z-index: 4;
  background: var(--navy-950); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 2px; white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.detail .d-photo-label[hidden] { display: none; }

.detail .d-body { padding: 32px 34px 36px; }
.detail .d-cat {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-900); color: #fff; font-size: .62rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .16em; padding: 7px 13px;
  border-radius: 2px; margin-bottom: 18px;
}
.detail .d-cat .icon { color: var(--orange-400); }
.detail h3.d-name {
  color: var(--navy-900); font-size: 1.6rem; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: -.025em;
}
.detail .d-desc { color: var(--encre-2); font-size: 1rem; margin-bottom: 24px; max-width: 56ch; }
.detail .d-label {
  display: flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: .66rem; color: var(--encre-2);
  text-transform: uppercase; letter-spacing: .16em; margin-bottom: 10px;
}
.detail .d-label[hidden] { display: none; }
.detail .d-label .icon { width: 1.2em; height: 1.2em; color: var(--orange-600); }
/* Fermeté dans la fiche article : même échelle que les fiches imprimées */
.detail .d-fermete {
  background: var(--beton-100); padding: 22px 24px; margin-bottom: 24px;
}
.detail .d-fermete .f-libelle {
  font-size: 1.06rem; font-weight: 800; text-transform: uppercase;
  color: var(--navy-900); letter-spacing: -.01em; line-height: 1.15; margin-bottom: 14px;
}
/* Le cran actif se distingue par la HAUTEUR autant que par la couleur :
   l'écart orange/gris ne fait que 1,9:1, insuffisant en niveaux de gris. */
.detail .d-fermete .f-echelle { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 9px; min-height: 17px; }
.detail .d-fermete .f-echelle span {
  height: 9px; flex: 1; background: var(--beton-200);
  box-shadow: inset 0 0 0 1px var(--beton-300);
}
.detail .d-fermete .f-echelle span.on {
  height: 17px; background: var(--orange-500);
  box-shadow: inset 0 0 0 1px var(--orange-700);
}
.detail .d-fermete .f-bornes {
  display: flex; justify-content: space-between;
  font-size: .66rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: var(--encre-2);
}

.detail .d-specs {
  background: var(--beton-100); padding: 22px 24px; margin-bottom: 24px;
}
.detail .d-specs .s-title {
  font-weight: 800; font-size: .66rem; color: var(--encre-2);
  text-transform: uppercase; letter-spacing: .16em; margin-bottom: 14px;
}
.detail .d-specs table { width: 100%; border-collapse: collapse; }
.detail .d-specs tr + tr td { border-top: 1px solid var(--beton-200); }
.detail .d-specs td { padding: 9px 0; font-size: .9rem; vertical-align: top; }
.detail .d-specs td.k { color: var(--navy-900); font-weight: 700; width: 42%; padding-right: 14px; }
.detail .d-specs td.v { color: var(--encre-2); }
.detail .d-size-select {
  width: 100%; padding: 15px 16px; border: 0; border-radius: 2px;
  font-size: .96rem; font-weight: 700; color: var(--navy-900);
  background-color: var(--beton-100); cursor: pointer; margin-bottom: 22px; min-height: 54px;
  box-shadow: inset 0 -2px 0 rgba(13,21,38,.14);
  transition: box-shadow var(--dur);
}
.detail .d-size-select[hidden] { display: none; }
.detail .d-size-select:focus { outline: none; box-shadow: inset 0 -3px 0 var(--orange-500), 0 0 0 3px rgba(241,90,36,.22); }
.detail .d-price-box {
  position: relative; background: var(--navy-900); color: #fff;
  text-align: center; padding: 26px; margin-bottom: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.detail .d-price-box .p-lbl {
  font-size: .64rem; color: var(--orange-400); font-weight: 800;
  text-transform: uppercase; letter-spacing: .18em;
}
.detail .d-price-box .p-val {
  font-family: var(--font-mesure); font-size: 2.4rem; font-weight: 600;
  color: #fff; line-height: 1.1; font-variant-numeric: tabular-nums;
  letter-spacing: -.03em; margin-top: 8px;
}
.detail .d-price-box .p-range {
  margin-top: 10px; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6);
  font-family: var(--font-mesure); font-variant-numeric: tabular-nums;
}
.detail .d-store-msg {
  background: var(--beton-100); padding: 24px 26px;
  box-shadow: inset 0 0 0 1px var(--beton-200);
}
.detail .d-store-msg .m-title {
  color: var(--navy-900); font-weight: 800; font-size: .82rem; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .1em;
}
.detail .d-store-msg .m-title .icon { width: 1.25em; height: 1.25em; color: var(--orange-600); }
.detail .d-store-msg p { font-size: .92rem; color: var(--encre-2); margin: 0; max-width: 52ch; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-950);
    flex-direction: column; align-items: stretch; padding: 10px 18px 20px;
    box-shadow: 0 20px 40px rgba(7,17,41,.5);
  }
  .nav-links {
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto; overscroll-behavior: contain;
  }
  .nav-links.open { display: flex; animation: menuIn 200ms var(--ease-sortie); }
  .nav-links a { padding: 14px 14px; font-size: .92rem; }
  .nav-links a::after { display: none; }
  .nav-links a.active { background: rgba(241,90,36,.18); color: #fff; }
}
@media (max-width: 1100px) {
  .totem-grid { grid-template-columns: 1fr; gap: 48px; padding: 68px 0 76px; }
  .fb-panel { grid-template-columns: 1fr; }
  .fb-mosaic { min-height: 280px; }
  .destination { grid-template-columns: 1fr; }
  .destination-photos { min-height: 300px; }
  .f-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 960px) {
  .plaque-info, .plaque-info:nth-child(1), .plaque-info:nth-child(2),
  .plaque-info:nth-child(3), .plaque-info:nth-child(4) { grid-column: span 12; }
  .nav-phone .p-txt { display: none; }
  .nav-phone { padding: 11px 14px; }
}
@media (max-width: 860px) {
  :root { --header-h: 74px; }
  .band { padding: 72px 0 80px; }
  .shell { padding-inline: 20px; }
  .nav { padding: 12px 20px; }
  .filters { position: static; padding: 18px; }
  .f-group { flex: 1 1 100%; }
  .f-reset { width: 100%; justify-content: center; }
  .section-head { margin-bottom: 40px; }
  .commande-photos { gap: 3px; }
  .commande-photos figure:nth-child(2) { margin-top: 22px; }
  .fb-copy { padding: 36px 26px; }
  .destination-texte { padding: 36px 26px; }
  .detail .d-body { padding: 26px 22px 30px; }
  .f-grid { grid-template-columns: 1fr; gap: 30px; }
  .totem-cotes { gap: 0; }
  .totem-cotes div { padding-right: 20px; margin-right: 20px; }
  .totem-cotes dt { font-size: 1.25rem; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .commande-photos { grid-template-columns: 1fr; }
  .commande-photos figure { aspect-ratio: 16/11; }
  .commande-photos figure:nth-child(2) { margin-top: 0; }
  .commande-actions { width: 100%; }
  .btn-navy, .btn-primary, .btn-ghost { width: 100%; }
  .fb-actions { width: 100%; gap: 12px; }
  .fb-link { width: 100%; justify-content: center; text-align: center; }
  .social-card { padding: 22px; }
  .map-embed { height: 320px; }
  .latte { padding: 14px 54px 14px 18px; min-height: 58px; }
  .latte .l-note { display: none; }
  .totem-cotes { flex-direction: column; }
  .totem-cotes div { border-right: 0; padding-right: 0; margin-right: 0; padding-top: 16px; }
}

/* ==========================================================================
   TACTILE ET ÉCRANS COURTS
   ========================================================================== */

/* iOS zoome toute la page quand un champ reçoit le focus avec un corps
   inférieur à 16px — et ne revient pas toujours. Sur écran tactile, tous les
   sélecteurs passent donc à 16px, quelle que soit la largeur d'écran. */
@media (pointer: coarse) {
  .f-group select,
  .card .size-select,
  .detail .d-size-select { font-size: 16px; }
}

/* Un écran tactile déclenche :hover au toucher et le laisse COLLÉ après :
   une carte resterait levée, une photo zoomée, une latte décalée. Sans souris,
   on neutralise donc les survols à base de transform — le retour de pression
   (:active) suffit, et lui est immédiat sous le doigt. */
@media (hover: none) {
  .latte:hover { transform: none; }
  html.anim .mat.pose .latte:hover { transform: none; }
  .latte:hover::after { transition: none; transform: translateX(-100%); }
  .card:hover { transform: none; box-shadow: var(--sh-alu); }
  .card:hover .card-media img,
  .destination:hover .destination-photos img,
  .commande-photos figure:hover img,
  .fb-panel:hover .fb-mosaic img { transform: none; }
  .nav-phone:hover, .fb-link:hover, .map-bar .maps-btn:hover,
  .map-shield:hover .shield-hint { transform: none; }
}

/* Téléphone en paysage : la barre de filtres empilée mesure ~540px, la faire
   coller sous l'en-tête mangerait tout l'écran. Elle redevient un bloc normal
   dès que la hauteur visible est courte. */
@media (max-height: 560px) {
  .filters { position: static; }
}

/* Sur mobile, le flou d'arrière-plan de la fiche article est recalculé par le
   GPU à chaque frame de défilement interne : saccades sur les appareils
   modestes. Un voile plus opaque rend le même service sans ce coût. */
@media (max-width: 860px) {
  .modal-overlay {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: rgba(7,17,41,.88);
  }
}

/* ==========================================================================
   PAGE ARTICLE (destockage.html) — lecture longue dans le monde signalétique
   ========================================================================== */
.article { max-width: 760px; }
.article .lead { max-width: 68ch; }
.article h2 {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-weight: 800;
  color: var(--navy-900); text-transform: uppercase; letter-spacing: -.015em;
  line-height: 1.08; margin: 52px 0 16px;
}
.article h2::before {
  content: ""; display: inline-block; width: 26px; height: 4px;
  background: var(--orange-500); margin-right: 12px; vertical-align: .18em;
}
.article p { color: var(--encre-2); max-width: 68ch; margin-bottom: 14px; }
.article p strong { color: var(--navy-900); }
.article ul { margin: 0 0 14px; padding-left: 0; max-width: 68ch; }
.article li { position: relative; padding: 5px 0 5px 26px; color: var(--encre-2); }
.article li::before {
  content: ""; position: absolute; left: 4px; top: 13px;
  width: 10px; height: 4px; background: var(--orange-500);
}
.article a { color: var(--navy-900); font-weight: 700; text-decoration-color: var(--orange-500); text-decoration-thickness: 2px; }
.article a:hover { color: var(--orange-700); }
.article strong { color: var(--navy-900); }

/* Bandeau final : venir au magasin */
.article-cta {
  margin-top: 56px; background: var(--navy-900); color: #fff;
  padding: 40px 36px; border-radius: var(--r-photo);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.article-cta h2 { color: #fff; margin: 0 0 10px; }
.article-cta p { color: rgba(255,255,255,.76); max-width: 60ch; }
.article-cta .commande-actions { margin-top: 22px; }
@media (max-width: 560px) { .article-cta { padding: 30px 22px; } }

/* Lien posé dans une plaque navy de l'accueil */
.plaque-info a {
  color: #fff; font-weight: 700;
  text-decoration: underline; text-decoration-color: var(--orange-400); text-decoration-thickness: 2px;
}
.plaque-info a:hover { color: var(--orange-400); }

/* ==========================================================================
   PAGE PRODUIT (produits/<slug>.html) — fiche article en pleine page
   ========================================================================== */
.retour-rail { margin-bottom: 26px; }
.produit { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 34px; align-items: start; }
.produit-photos { display: flex; flex-direction: column; gap: 14px; }
.produit-photos figure {
  position: relative; overflow: hidden; margin: 0; border-radius: var(--r-photo);
  background: var(--navy-800);
}
.produit-photos img { width: 100%; height: auto; display: block; }
.produit-photos figcaption {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 26px 16px 12px;
  background: linear-gradient(to top, rgba(7,17,41,.85), transparent);
  color: #fff; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em;
}

.produit-infos .p-cat {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-900); color: #fff; font-size: .62rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .16em;
  padding: 7px 13px; border-radius: 2px; margin-bottom: 16px;
}
.produit-infos .p-cat .icon { color: var(--orange-400); }
.produit-infos h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 900;
  color: var(--navy-900); text-transform: uppercase; letter-spacing: -.03em; line-height: 1;
}
.produit-infos .p-desc { color: var(--encre-2); font-size: 1.02rem; margin: 14px 0 20px; max-width: 58ch; }
.p-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.p-badges span {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-900); color: #fff;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  padding: 9px 14px; border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), inset 0 -1px 0 rgba(0,0,0,.3);
}
.p-badges .icon { width: 1.1em; height: 1.1em; color: var(--orange-400); }
.p-badges .b-garantie { background: var(--orange-500); }
.p-badges .b-garantie .icon { color: #fff; }

/* Blocs plaque : fermeté, caractéristiques */
.p-bloc { background: var(--beton-100); padding: 22px 24px; margin-bottom: 18px; border-radius: var(--r-photo); }
.p-bloc .b-titre {
  font-weight: 800; font-size: .66rem; color: var(--encre-2);
  text-transform: uppercase; letter-spacing: .16em; margin-bottom: 12px;
}
.p-bloc table { width: 100%; border-collapse: collapse; }
.p-bloc tr + tr td { border-top: 1px solid var(--beton-200); }
.p-bloc td { padding: 9px 0; font-size: .92rem; vertical-align: top; }
.p-bloc td.k { color: var(--navy-900); font-weight: 700; width: 40%; padding-right: 14px; }
.p-bloc td.v { color: var(--encre-2); }
.p-fermete .f-libelle {
  font-size: 1.04rem; font-weight: 800; text-transform: uppercase;
  color: var(--navy-900); letter-spacing: -.01em; margin-bottom: 13px;
}
.p-fermete .f-echelle { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 9px; min-height: 17px; }
.p-fermete .f-echelle span { height: 9px; flex: 1; background: var(--beton-200); box-shadow: inset 0 0 0 1px var(--beton-300); }
.p-fermete .f-echelle span.on { height: 17px; background: var(--orange-500); box-shadow: inset 0 0 0 1px var(--orange-700); }
.p-fermete .f-bornes {
  display: flex; justify-content: space-between;
  font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--encre-2);
}

/* Tableau des tailles et prix */
.p-prix { background: var(--navy-900); color: #fff; padding: 24px 26px; margin-bottom: 18px; border-radius: var(--r-photo); box-shadow: inset 0 1px 0 rgba(255,255,255,.14); }
.p-prix .b-titre { color: var(--orange-400); font-weight: 800; font-size: .66rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 12px; }
.p-prix table { width: 100%; border-collapse: collapse; }
.p-prix tr + tr td { border-top: 1px solid rgba(255,255,255,.1); }
.p-prix td { padding: 8px 0; font-family: var(--font-mesure); font-variant-numeric: tabular-nums; }
.p-prix td.t { color: rgba(255,255,255,.85); font-size: .95rem; }
.p-prix td.p { text-align: right; font-weight: 700; font-size: 1.02rem; }
.p-prix .prix-unique {
  font-family: var(--font-mesure); font-size: 2.2rem; font-weight: 600;
  letter-spacing: -.03em; font-variant-numeric: tabular-nums; line-height: 1.1;
}
.p-prix .p-note { margin-top: 10px; font-size: .78rem; color: rgba(255,255,255,.6); }

@media (max-width: 900px) {
  .produit { grid-template-columns: 1fr; gap: 26px; }
}
