/* =============================================================
   MAIN-STYLE.CSS — Styles principaux AutoPièces Pro
   Responsive: Desktop → Tablette → Mobile
   ============================================================= */

/* ============================================================
   FONT FACE — Décommenter après téléchargement des .woff2
   Télécharger sur : https://fonts.google.com/specimen/Barlow
                     https://fonts.google.com/specimen/Barlow+Condensed
   Placer dans /fonts/
============================================================ */
/*
@font-face {
  font-family: 'Barlow';
  src: url('/fonts/Barlow-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/fonts/Barlow-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/fonts/Barlow-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/fonts/Barlow-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/BarlowCondensed-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/BarlowCondensed-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/BarlowCondensed-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
*/

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --red:          #E8001C;
  --red-dark:     #C4001A;
  --red-light:    #FF1A35;
  --coal:         #1A1A1A;
  --coal-mid:     #2C2C2C;
  --coal-soft:    #3D3D3D;
  --grey-dark:    #555555;
  --grey-mid:     #888888;
  --grey-light:   #C8C8C8;
  --grey-bg:      #F4F4F4;
  --grey-border:  #E2E2E2;
  --white:        #FFFFFF;
  --yellow:       #F5C300;

  --font-body:    'Barlow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: 'Barlow Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --header-top-h:  36px;
  --header-main-h: 76px;
  --header-nav-h:  46px;

  --max-w:   1380px;
  --radius:  4px;
  --trans:   0.18s ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--coal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   UTILITY
============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.topbar {
  background: var(--coal);
  height: var(--header-top-h);
  border-bottom: 2px solid var(--red);
  overflow: hidden;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-light);
  white-space: nowrap;
  transition: color var(--trans);
}
.topbar__item:hover { color: var(--white); }
.topbar__item--highlight { color: var(--yellow); }
.topbar__item--highlight:hover { color: #ffd700; }
.topbar__icon { flex-shrink: 0; width: 14px; height: 14px; }
.topbar__sep { width: 1px; height: 16px; background: var(--coal-soft); }
.topbar__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  padding: 2px 8px;
  border: 1px solid var(--coal-soft);
  border-radius: var(--radius);
  transition: border-color var(--trans);
}
.topbar__lang:hover { border-color: var(--grey-mid); }

/* Drapeau inline */
.flag {
  width: 18px; height: 12px;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-shrink: 0;
}
.flag--fr .f1 { flex: 1; background: #002395; }
.flag--fr .f2 { flex: 1; background: #FFFFFF; }
.flag--fr .f3 { flex: 1; background: #ED2939; }

/* ============================================================
   2. HEADER PRINCIPAL
============================================================ */
.header-main {
  background: var(--white);
  height: var(--header-main-h);
  border-bottom: 1px solid var(--grey-border);
  position: sticky;
  top: 0;
  z-index: 200; /* Drawer (1000) et overlay (950) passent par-dessus */
  isolation: auto; /* Pas de nouveau contexte d'empilement */
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  /* Bez transition na sticky headeru — može izazvati stacking context probleme */
}
.header-main--scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
/* IMPORTANT: header-main NE SMIJE imati transform ili will-change
   jer bi kreirao novi stacking context i drawer (z-index:1000) bi bio zarobljen ispod */
.header-main__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}

/* LOGO */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__mark {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo__mark::after {
  content: '';
  position: absolute;
  bottom: -6px; right: -6px;
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--coal);
  text-transform: uppercase;
}
.logo__name span { color: var(--red); }
.logo__tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--grey-mid);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* BOUTON VÉHICULE */
.vehicle-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0 16px;
  height: 46px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--trans), transform 0.1s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.vehicle-btn:hover { background: var(--red-dark); }
.vehicle-btn:active { transform: scale(0.98); }
.vehicle-btn__icon { width: 20px; height: 20px; flex-shrink: 0; }
.vehicle-btn__content { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
.vehicle-btn__label {
  font-size: 10px; font-weight: 500;
  opacity: 0.85; text-transform: uppercase;
  letter-spacing: 0.5px; line-height: 1;
}
.vehicle-btn__value { font-size: 13px; font-weight: 700; line-height: 1; }

/* BARRE DE RECHERCHE */
.search-form {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.search-form__input {
  width: 100%;
  height: 46px;
  padding: 0 54px 0 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--coal);
  background: var(--grey-bg);
  border: 2px solid var(--grey-border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--trans), background var(--trans);
}
.search-form__input::placeholder { color: var(--grey-mid); font-size: 13.5px; }
.search-form__input:focus { background: var(--white); border-color: var(--red); }
.search-form__btn {
  position: absolute; right: 0; top: 0;
  height: 46px; width: 52px;
  background: var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background var(--trans);
  flex-shrink: 0;
}
.search-form__btn:hover { background: var(--red-dark); }

/* ACTIONS HEADER */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.haction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--coal);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background var(--trans), color var(--trans);
  position: relative;
}
.haction:hover { background: var(--grey-bg); color: var(--red); }
.haction__icon { width: 22px; height: 22px; }
.haction__badge {
  position: absolute;
  top: 5px; right: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 9px; font-weight: 700;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.haction--cart {
  background: var(--red);
  color: var(--white);
  padding: 8px 18px;
  gap: 8px;
  flex-direction: row;
  border-radius: var(--radius);
}
.haction--cart:hover { background: var(--red-dark); color: var(--white); }
.haction--cart .haction__label { font-size: 13px; text-transform: none; letter-spacing: 0; }
.haction--cart .haction__total { font-size: 14px; font-weight: 700; }
.haction__sep { width: 1px; height: 32px; background: var(--grey-border); margin: 0 6px; }

/* ============================================================
   3. NAV PRINCIPALE
============================================================ */
.header-nav {
  background: var(--coal);
  height: var(--header-nav-h);
  position: sticky;
  top: var(--header-main-h);
  z-index: 190;
  overflow: visible; /* mega menus doivent sortir */
}
.header-nav__inner {
  display: flex;
  align-items: stretch;
  height: 100%;
  overflow: visible;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0; /* pas de padding ici — géré par les enfants */
}

/* Wrapper scrollable pour nav-list + nav-right
   Le bouton "Toutes catégories" reste fixe à gauche */
.nav-scroll-wrapper {
  display: flex;
  align-items: stretch;
  flex: 1;
  overflow-x: auto;
  overflow-y: visible; /* laisser les mega menus sortir */
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  position: relative; /* contexte pour mega menus */
}
.nav-scroll-wrapper::-webkit-scrollbar { display: none; }

/* Flèches de la nav */
.nav-scroll-arrow {
  display: none; /* visible via JS si overflow */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  color: var(--white);
  transition: background var(--trans);
  border: none;
  flex-shrink: 0;
}
.nav-scroll-arrow:hover { background: var(--red); }
.nav-scroll-arrow svg   { pointer-events: none; }
.nav-scroll-arrow--left  { left: 2px; }
.nav-scroll-arrow--right { right: 2px; }
.nav-scroll-arrow.is-visible { display: flex; }

/* BOUTON TOUTES CATÉGORIES */
.nav-all-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  height: 100%;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background var(--trans);
  flex-shrink: 0;
  border-right: 2px solid var(--red-dark);
}
.nav-all-btn:hover { background: var(--red-dark); }
.nav-all-btn__icon { display: flex; flex-direction: column; gap: 4px; }
.nav-all-btn__icon span {
  display: block; width: 16px; height: 2px;
  background: var(--white); border-radius: 1px;
}

/* LISTE NAV */
.nav-list {
  display: flex;
  align-items: stretch;
  height: 100%;
  flex-shrink: 0; /* ne pas comprimer — le scroll wrapper gère l'espace */
  overflow: visible; /* mega menus sortent en position:absolute */
}
.nav-item { height: 100%; position: relative; }
.nav-item__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: color var(--trans), background var(--trans);
  gap: 5px;
}
.nav-item__link:hover,
.nav-item--active .nav-item__link {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-item--active .nav-item__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
}
.nav-item__caret { opacity: 0.6; margin-top: 1px; transition: transform var(--trans), opacity var(--trans); }
.nav-item:hover .nav-item__caret { opacity: 1; transform: rotate(180deg); }

.nav-badge {
  font-size: 9px; font-weight: 700;
  background: var(--yellow); color: var(--coal);
  padding: 2px 5px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: 0.3px; line-height: 1.2;
  margin-left: 2px;
}
.nav-badge--red { background: var(--red-light); color: var(--white); }

/* DROITE NAV */
.nav-right {
  display: flex;
  align-items: stretch;
  margin-left: auto; /* pousse à droite dans le scroll wrapper */
  height: 100%;
  flex-shrink: 0;
}
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  padding: 0 20px; height: 100%;
  color: var(--grey-light);
  font-size: 13px; font-weight: 600;
  border-left: 1px solid rgba(255,255,255,0.08);
  transition: color var(--trans);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--white); }
.nav-phone__number { color: var(--white); font-weight: 700; }
.nav-store {
  display: flex; align-items: center; gap: 8px;
  padding: 0 20px; height: 100%;
  color: var(--grey-light);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.3px;
  border-left: 1px solid rgba(255,255,255,0.08);
  transition: color var(--trans);
  white-space: nowrap;
}
.nav-store:hover { color: var(--white); }

/* ============================================================
   MEGA MENU — position:fixed pour sortir de tout overflow
   JS calcule top/left dynamiquement via data-attributes
============================================================ */
.mega-menu {
  position: fixed; /* fixed = sort de tout overflow:auto parent */
  top: 0; left: 0;  /* valeurs par défaut, JS les écrase */
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 680px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1100;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 32px;
  pointer-events: none;
}
.nav-item:hover .mega-menu,
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-col__title {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--grey-mid);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-border);
}
.mega-col__list { display: flex; flex-direction: column; gap: 4px; }
.mega-col__item {
  font-size: 13px; font-weight: 500;
  color: var(--coal);
  padding: 5px 8px;
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
  display: flex; align-items: center; gap: 8px;
}
.mega-col__item:hover { background: var(--grey-bg); color: var(--red); }
.mega-col__item::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--grey-light);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--trans);
}
.mega-col__item:hover::before { background: var(--red); }

/* ============================================================
   STRIP RÉASSURANCE — scroll horizontal avec flèches
   Fonctionne sur tous les écrans (desktop, tablette, mobile)
============================================================ */
.reassurance-strip {
  background: var(--grey-bg);
  border-bottom: 1px solid var(--grey-border);
  position: relative; /* pour les flèches de scroll absolues */
}

/* Flèches de navigation gauche/droite */
.reassurance-strip__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background var(--trans), border-color var(--trans), opacity var(--trans);
  color: var(--coal);
  opacity: 0;
  pointer-events: none;
}
.reassurance-strip__arrow:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.reassurance-strip__arrow--left  { left: 6px; }
.reassurance-strip__arrow--right { right: 6px; }
.reassurance-strip__arrow.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Wrapper scrollable */
.reassurance-strip__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;         /* Firefox */
  scroll-behavior: smooth;
}
.reassurance-strip__scroll::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* Dégradés fade sur les bords pour indiquer qu'il y a plus à scroller */
.reassurance-strip__scroll::before,
.reassurance-strip__scroll::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 32px;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.2s ease;
  opacity: 0;
}
.reassurance-strip__scroll::before {
  left: 0;
  background: linear-gradient(to right, var(--grey-bg), transparent);
}
.reassurance-strip__scroll::after {
  right: 0;
  background: linear-gradient(to left, var(--grey-bg), transparent);
}
.reassurance-strip__scroll.has-scroll-right::after  { opacity: 1; }
.reassurance-strip__scroll.has-scroll-left::before  { opacity: 1; }

.reassurance-strip__inner {
  display: flex;
  align-items: stretch;
  padding: 0;
  margin: 0;
  gap: 0;
  /* Largeur minimale pour que les items ne se compriment pas */
  min-width: max-content;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-right: 1px solid var(--grey-border);
  flex-shrink: 0;
  min-width: 200px;
  max-width: 260px;
}
.reassurance-item:last-child { border-right: none; }

.reassurance-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.reassurance-text__title { font-size: 13px; font-weight: 700; color: var(--coal); line-height: 1.2; white-space: nowrap; }
.reassurance-text__sub   { font-size: 11px; color: var(--grey-mid); margin-top: 2px; white-space: nowrap; }

/* Sur grands écrans : items s'étirent pour remplir toute la largeur */
@media (min-width: 1100px) {
  .reassurance-strip__scroll { overflow-x: visible; }
  .reassurance-strip__inner  {
    min-width: auto;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
  }
  .reassurance-item {
    flex: 1;
    min-width: 0;
    max-width: none;
  }
  .reassurance-text__title { white-space: normal; }
  .reassurance-text__sub   { white-space: normal; }
  .reassurance-strip__arrow { display: none !important; }
}

/* ============================================================
   MENU MOBILE — Hamburger overlay
============================================================ */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
  transition: background var(--trans);
  flex-shrink: 0;
}
.mobile-menu-btn:hover { background: var(--grey-bg); }
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--coal);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
/* Hamburger NE se transforme PAS en X — le X est dans le drawer */
/* .mobile-menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); } */
/* .mobile-menu-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); } */
/* .mobile-menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } */
/* On indique juste que le menu est ouvert via une couleur de fond */
.mobile-menu-btn.is-open { background: var(--grey-bg); }

/* Overlay mobile */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 950; /* Au-dessus du header (200) */
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.mobile-overlay.is-visible {
  display: block; /* Force l'affichage même hors media query */
  opacity: 1;
  pointer-events: auto;
}

/* Drawer mobile */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 320px; max-width: 90vw;
  height: 100%;
  background: var(--white);
  z-index: 1000; /* Au-dessus de tout — overlay (950) et header (200) */
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.is-open {
  display: block; /* Force l'affichage même hors media query */
  transform: translateX(0);
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 60px;
  background: var(--coal);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 2;
  gap: 12px;
}
/* Bouton X DANS le drawer — bien visible, grande zone de clic */
.mobile-drawer__close {
  width: 40px; height: 40px;
  min-width: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  transition: background var(--trans);
  order: -1; /* X à gauche, logo à droite */
  flex-shrink: 0;
}
.mobile-drawer__close:hover { background: rgba(255,255,255,0.25); }
.mobile-drawer__close svg { pointer-events: none; } /* fix clic sur SVG */
/* Logo dans le header du drawer */
.mobile-drawer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.mobile-drawer__logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.mobile-drawer__logo-name span { color: var(--red); }

/* Vehicle button in drawer */
.mobile-vehicle-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 20px;
  padding: 12px 16px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--trans);
}
.mobile-vehicle-btn:hover { background: var(--red-dark); }

/* Nav mobile */
.mobile-nav { border-bottom: 1px solid var(--grey-border); }
.mobile-nav__item {
  border-bottom: 1px solid var(--grey-border);
}
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--coal);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background var(--trans), color var(--trans);
}
.mobile-nav__link:hover { background: var(--grey-bg); color: var(--red); }
.mobile-nav__link--has-sub .mobile-nav__caret {
  transition: transform var(--trans);
  color: var(--grey-mid);
}
.mobile-nav__link--has-sub.is-open .mobile-nav__caret { transform: rotate(90deg); }

.mobile-sub {
  display: none;
  background: var(--grey-bg);
  border-top: 1px solid var(--grey-border);
  padding: 8px 0;
}
.mobile-sub.is-open { display: block; }
.mobile-sub__item {
  display: block;
  padding: 10px 20px 10px 36px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-dark);
  transition: color var(--trans), background var(--trans);
  position: relative;
}
.mobile-sub__item::before {
  content: '–';
  position: absolute;
  left: 20px;
  color: var(--grey-light);
}
.mobile-sub__item:hover { color: var(--red); background: rgba(232,0,28,0.04); }

.mobile-drawer__footer {
  padding: 20px;
  background: var(--grey-bg);
  border-top: 1px solid var(--grey-border);
}
.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--coal);
  border-bottom: 1px solid var(--grey-border);
  transition: color var(--trans);
}
.mobile-contact-item:last-child { border-bottom: none; }
.mobile-contact-item:hover { color: var(--red); }
.mobile-contact-item svg { flex-shrink: 0; color: var(--red); }

/* reassurance-strip--mobile supprimé — une seule version universelle avec scroll */

/* ============================================================
   RESPONSIVE — GRAND ÉCRAN (≤ 1380px)
   Compression progressive de la nav
============================================================ */
@media (max-width: 1380px) {
  .nav-item__link { padding: 0 9px; font-size: 12px; }
  .nav-all-btn { padding: 0 14px; font-size: 12px; }
  .nav-phone span:not(.nav-phone__number) { display: none; }
  .nav-phone { padding: 0 10px; }
  .nav-store { padding: 0 10px; font-size: 11px; }
}

@media (max-width: 1260px) {
  /* Cacher "Nos magasins" — trop étroit */
  .nav-store { display: none; }
  .nav-phone { padding: 0 10px; font-size: 11px; }
  .nav-item__link { padding: 0 8px; font-size: 11px; }
  .nav-all-btn { padding: 0 11px; font-size: 11px; }
}

@media (max-width: 1140px) {
  /* Cacher aussi le téléphone */
  .nav-phone { display: none; }
  .nav-item__link { padding: 0 7px; font-size: 11px; letter-spacing: 0; }
}

/* ============================================================
   RESPONSIVE — TABLETTE large (≤ 1100px)
   Hamburger commence à être préférable
============================================================ */
@media (max-width: 1100px) {
  .nav-phone { display: none; }
  .nav-store { display: none; }
  /* Resserrer actions header */
  .haction { padding: 8px 8px; }
  .haction--cart { padding: 8px 12px; }
  .haction--cart .haction__label { display: none; }
  /* Nav items */
  .nav-item__link { padding: 0 7px; font-size: 11px; letter-spacing: 0; }
  .nav-all-btn { padding: 0 10px; font-size: 11px; gap: 6px; }
  /* Vehicle btn — icône seule */
  .vehicle-btn__content { display: none; }
  .vehicle-btn { padding: 0 10px; gap: 0; }
  .header-main__inner { gap: 14px; }
  /* Réassurance */
  .reassurance-item { padding: 0 10px; }
  .reassurance-text__title { font-size: 11px; }
  .reassurance-text__sub { font-size: 10px; }
}

/* ============================================================
   RESPONSIVE — TABLETTE (≤ 900px)
============================================================ */
@media (max-width: 900px) {
  :root {
    --header-main-h: 64px;
    --header-nav-h:  0px;
  }

  /* Topbar: masquer items intermédiaires */
  .topbar__item:not(.topbar__item--highlight):not(:last-child) { display: none; }
  .topbar__sep { display: none; }
  .topbar__left { gap: 0; }

  /* Header: masquer nav complète */
  .header-nav { display: none; }

  /* Hamburger visible */
  .mobile-menu-btn { display: flex; }

  /* Masquer vehicle-btn complet sur tablette → icône seule */
  .vehicle-btn__label { display: none; }
  .vehicle-btn { height: 40px; }

  /* Masquer actions non essentielles */
  .haction:not(.haction--cart) { display: none; }
  .haction__sep { display: none; }
  .haction--cart { padding: 8px 14px; }
  .haction--cart .haction__label { display: none; }

  /* Réassurance desktop → mobile */

  /* Mobile drawer actif */
  .mobile-overlay { display: block; }
  .mobile-drawer { display: block; }

  /* Logo tagline cachée */
  .logo__tagline { display: none; }

  /* Gap réduit header */
  .header-main__inner { gap: 12px; }
  .container { padding: 0 16px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
============================================================ */
@media (max-width: 600px) {
  :root {
    --header-top-h:  32px;
    --header-main-h: 58px;
  }

  /* Topbar minimaliste */
  .topbar__item--highlight { font-size: 11px; }
  .topbar__item--highlight svg { display: none; }

  /* Logo: masquer texte, garder juste le mark */
  .logo__text { display: none; }
  .logo__mark { width: 38px; height: 38px; }

  /* Search: placeholder court */
  .search-form__input { font-size: 13px; padding: 0 48px 0 12px; height: 42px; }
  .search-form__input::placeholder { font-size: 12px; }
  .search-form__btn { height: 42px; width: 44px; }

  /* Véhicule: icône seule */
  .vehicle-btn { height: 42px; padding: 0 10px; }

  /* Panier: icône seule sur très petit écran */
  .haction--cart { padding: 6px 10px; }
  .haction--cart .haction__total { display: none; }

  /* Header gap minimal */
  .header-main__inner { gap: 8px; }
  .container { padding: 0 12px; }

  /* Réassurance mobile encore plus compacte */
}

/* ============================================================
   RESPONSIVE — TRÈS PETIT MOBILE (≤ 380px)
============================================================ */
@media (max-width: 380px) {
  .vehicle-btn { display: none; }
  .topbar { display: none; }
  .logo__mark { width: 34px; height: 34px; }
}


/* ============================================================
   HERO SECTION — Sélecteur véhicule + proposition de valeur
============================================================ */

/* --- Layout général --- */
.hero {
  background: var(--coal);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: stretch;
}

/* Texture industrielle en arrière-plan */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.018) 40px,
      rgba(255,255,255,0.018) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.018) 40px,
      rgba(255,255,255,0.018) 41px
    );
  pointer-events: none;
  z-index: 0;
}

/* Lueur rouge en arrière-plan à gauche */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,0,28,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: stretch;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* --- CÔTÉ GAUCHE : proposition de valeur --- */
.hero__left {
  padding: 56px 48px 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  background: rgba(232,0,28,0.12);
  border: 1px solid rgba(232,0,28,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -1px;
  text-transform: uppercase;
}
.hero__title em {
  font-style: normal;
  color: var(--red);
  position: relative;
  display: inline-block;
}
/* Underline animé sous le mot clé */
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-in 0.6s 0.4s ease forwards;
}
@keyframes underline-in {
  to { transform: scaleX(1); }
}

.hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 460px;
}

/* Stats en ligne */
.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.5px;
}
.hero__stat-number span {
  color: var(--red);
}
.hero__stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Boutons CTA */
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background var(--trans), transform 0.1s;
  white-space: nowrap;
}
.hero__cta-primary:hover  { background: var(--red-dark); }
.hero__cta-primary:active { transform: scale(0.98); }
.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.hero__cta-secondary:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* Logos marques de confiance */
.hero__brands {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hero__brands-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
  margin-right: 6px;
  white-space: nowrap;
}
.hero__brand-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 3px;
  transition: color var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.hero__brand-tag:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}

/* --- CÔTÉ DROIT : sélecteur de véhicule --- */
.hero__right {
  padding: 40px 0 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vehicle-selector {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}

/* Header du sélecteur */
.vehicle-selector__header {
  background: var(--red);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.vehicle-selector__header-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.vehicle-selector__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.vehicle-selector__subtitle {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

/* Corps du sélecteur */
.vehicle-selector__body { padding: 24px; }

/* Étapes */
.vs-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}
.vs-step {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.vs-step::after {
  content: '';
  position: absolute;
  top: 14px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--grey-border);
  z-index: 0;
}
.vs-step:last-child::after { display: none; }
.vs-step-circle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grey-bg);
  border: 2px solid var(--grey-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--grey-mid);
  position: relative;
  z-index: 1;
  transition: background var(--trans), border-color var(--trans), color var(--trans);
}
.vs-step.is-active .vs-step-circle {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.vs-step.is-done .vs-step-circle {
  background: var(--coal);
  border-color: var(--coal);
  color: var(--white);
}
.vs-step.is-done::after { background: var(--coal); }
.vs-step-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--grey-mid);
  white-space: nowrap;
}
.vs-step.is-active .vs-step-label { color: var(--red); }
.vs-step.is-done .vs-step-label   { color: var(--coal); }

/* Selects */
.vs-selects { display: flex; flex-direction: column; gap: 12px; }

.vs-field { display: flex; flex-direction: column; gap: 6px; }
.vs-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--grey-dark);
}
.vs-select-wrap { position: relative; }
.vs-select {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--coal);
  background: var(--grey-bg);
  border: 2px solid var(--grey-border);
  border-radius: var(--radius);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color var(--trans), background var(--trans);
}
.vs-select:focus   { border-color: var(--red); background: var(--white); }
.vs-select:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: var(--grey-bg);
}
.vs-select-arrow {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--grey-mid);
  transition: color var(--trans);
}
.vs-select-wrap:focus-within .vs-select-arrow { color: var(--red); }

/* Bouton rechercher */
.vs-submit {
  width: 100%;
  height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  transition: background var(--trans), transform 0.1s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.vs-submit:hover  { background: var(--red-dark); }
.vs-submit:active { transform: scale(0.99); }
.vs-submit:disabled {
  background: var(--grey-light);
  color: var(--grey-mid);
  cursor: not-allowed;
}

/* Lien recherche par référence */
.vs-ref-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--grey-mid);
  transition: color var(--trans);
}
.vs-ref-link a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vs-ref-link a:hover { color: var(--red-dark); }

/* --- ANIMATION D'ENTRÉE --- */
.hero__left  { animation: hero-fadein 0.5s ease both; }
.hero__right { animation: hero-fadein 0.5s 0.15s ease both; }
@keyframes hero-fadein {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .hero__left {
    padding: 40px 0 32px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hero__right {
    padding: 32px 0 40px;
  }
  .vehicle-selector { max-width: 500px; }
  .hero__title { font-size: clamp(28px, 5vw, 42px); }
}

@media (max-width: 600px) {
  .hero__left  { padding: 32px 0 24px; gap: 20px; }
  .hero__right { padding: 24px 0 32px; }
  .hero__stats { gap: 20px; }
  .hero__stat-number { font-size: 22px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .vehicle-selector { max-width: 100%; }
  .vehicle-selector__body { padding: 18px 16px; }
}


/* ============================================================
   SECTION 2 — GRILLE DE CATÉGORIES
   8 cartes en 4+4, style industriel avec numérotation technique
============================================================ */

.cats-section {
  background: var(--white);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Motif de fond subtil */
.cats-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 60%, rgba(232,0,28,0.03) 100%);
  pointer-events: none;
}

/* En-tête de section */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.section-header__left { flex: 1; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red);
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--coal);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.section-title span { color: var(--red); }

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--coal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--grey-border);
  padding-bottom: 4px;
  transition: color var(--trans), border-color var(--trans);
  white-space: nowrap;
  flex-shrink: 0;
}
.section-link:hover {
  color: var(--red);
  border-color: var(--red);
}
.section-link svg { transition: transform var(--trans); }
.section-link:hover svg { transform: translateX(4px); }

/* Grille des catégories */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Carte catégorie */
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: var(--coal);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  group: true;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  border-color: var(--red);
}

/* Accent diagonal rouge en haut à droite */
.cat-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 44px 44px 0;
  border-color: transparent var(--grey-border) transparent transparent;
  transition: border-color 0.22s ease;
}
.cat-card:hover::after {
  border-color: transparent var(--red) transparent transparent;
}

/* Numéro technique */
.cat-card__num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--grey-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.22s ease;
  z-index: 1;
}
.cat-card:hover .cat-card__num { color: var(--red); }

/* Zone icône */
.cat-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  padding-top: 20px;
  position: relative;
}
.cat-card__icon {
  width: 64px;
  height: 64px;
  color: var(--coal-soft);
  transition: color 0.22s ease, transform 0.22s ease;
}
.cat-card:hover .cat-card__icon {
  color: var(--red);
  transform: scale(1.08) translateY(-2px);
}

/* Contenu texte */
.cat-card__body {
  padding: 12px 18px 0;
  flex: 1;
}
.cat-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: var(--coal);
  line-height: 1.1;
  margin-bottom: 5px;
  transition: color 0.22s ease;
}
.cat-card:hover .cat-card__name { color: var(--red); }

.cat-card__desc {
  font-size: 11.5px;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* Footer de la carte */
.cat-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 16px;
  margin-top: 12px;
  border-top: 1px solid var(--grey-border);
  transition: border-color 0.22s ease;
}
.cat-card:hover .cat-card__footer { border-color: rgba(232,0,28,0.15); }

.cat-card__count {
  font-size: 11px;
  font-weight: 700;
  color: var(--grey-mid);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.22s ease;
}
.cat-card__count-dot {
  width: 5px; height: 5px;
  background: var(--grey-light);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.22s ease;
}
.cat-card:hover .cat-card__count { color: var(--coal); }
.cat-card:hover .cat-card__count-dot { background: var(--red); }

.cat-card__arrow {
  width: 28px; height: 28px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
  flex-shrink: 0;
}
.cat-card:hover .cat-card__arrow {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateX(3px);
}

/* Carte "featured" — grande, occupe 2 colonnes */
.cat-card--featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  background: var(--coal);
  border-color: var(--coal-mid);
}
.cat-card--featured::after {
  border-color: transparent var(--coal-soft) transparent transparent;
}
.cat-card--featured:hover {
  border-color: var(--red);
  box-shadow: 0 16px 40px rgba(0,0,0,0.20);
}
.cat-card--featured:hover::after {
  border-color: transparent var(--red) transparent transparent;
}
.cat-card--featured .cat-card__icon-wrap {
  width: 130px;
  min-width: 130px;
  height: auto;
  padding: 28px 0 28px 20px;
}
.cat-card--featured .cat-card__icon { width: 72px; height: 72px; color: rgba(255,255,255,0.25); }
.cat-card--featured:hover .cat-card__icon { color: var(--red); }
.cat-card--featured .cat-card__body { padding: 24px 0 24px 16px; flex: 1; }
.cat-card--featured .cat-card__name { font-size: 20px; color: var(--white); }
.cat-card--featured:hover .cat-card__name { color: var(--red); }
.cat-card--featured .cat-card__desc { color: rgba(255,255,255,0.45); }
.cat-card--featured .cat-card__num { color: rgba(255,255,255,0.2); }
.cat-card--featured:hover .cat-card__num { color: var(--red); }
.cat-card--featured .cat-card__footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0 20px 0 0;
  margin-top: 0;
  min-width: 100px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  height: 100%;
}
.cat-card--featured:hover .cat-card__footer { border-color: rgba(232,0,28,0.2); }
.cat-card--featured .cat-card__count { color: rgba(255,255,255,0.4); }
.cat-card--featured:hover .cat-card__count { color: rgba(255,255,255,0.8); }
.cat-card--featured .cat-card__arrow {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}
.cat-card--featured:hover .cat-card__arrow {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateX(3px);
}

/* Animation staggered au scroll */
.cat-card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.cat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cat-card:hover {
  transform: translateY(-5px) !important;
}

/* ============================================================
   CATS RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card--featured { grid-column: span 3; }
  .cat-card--featured .cat-card__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    height: auto;
    min-width: auto;
    width: 100%;
  }
  .cat-card--featured {
    flex-direction: column;
  }
  .cat-card--featured .cat-card__icon-wrap {
    width: 100%;
    padding: 24px 0 0;
  }
  .cat-card--featured .cat-card__body { padding: 12px 18px 0; }
}

@media (max-width: 760px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-card--featured { grid-column: span 2; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cats-section { padding: 48px 0 56px; }
}

@media (max-width: 480px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card__icon-wrap { height: 80px; }
  .cat-card__icon { width: 48px; height: 48px; }
  .cat-card__name { font-size: 14px; }
  .cat-card__desc { display: none; }
  .cat-card__body { padding: 8px 12px 0; }
  .cat-card__footer { padding: 10px 12px 12px; }
}


/* ============================================================
   SECTION 3 — BANNIÈRE MARQUES (infinite auto-scroll CSS)
============================================================ */
.brands-section {
  background: var(--coal);
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

/* Dégradés fade sur les bords */
.brands-section::before,
.brands-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.brands-section::before {
  left: 0;
  background: linear-gradient(to right, var(--coal), transparent);
}
.brands-section::after {
  right: 0;
  background: linear-gradient(to left, var(--coal), transparent);
}

.brands-section__label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.15);
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
  background: var(--coal);
  padding: 0 16px;
}

/* Track scrollant */
.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brands-scroll 32s linear infinite;
  padding: 22px 0;
}
.brands-track:hover { animation-play-state: paused; }

@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Item marque */
.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: opacity var(--trans);
  opacity: 0.45;
  flex-shrink: 0;
}
.brand-item:hover { opacity: 1; }
.brand-item:last-child { border-right: none; }

.brand-item__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  white-space: nowrap;
}
.brand-item__dot {
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--trans);
}
.brand-item:hover .brand-item__dot { opacity: 1; }

/* ============================================================
   SECTION 4 — PRODUITS POPULAIRES & PROMOTIONS
============================================================ */
.prods-section {
  background: var(--grey-bg);
  padding: 72px 0 80px;
  position: relative;
}

/* Tabs Populaires / Promotions */
.prods-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--grey-border);
  position: relative;
}
.prods-tab {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--grey-mid);
  padding: 14px 28px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: color var(--trans);
  white-space: nowrap;
}
.prods-tab::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.prods-tab.is-active {
  color: var(--coal);
}
.prods-tab.is-active::after { transform: scaleX(1); }
.prods-tab:hover { color: var(--coal); }

.prods-tab__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  background: var(--red);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.3px;
}

.prods-tab-link {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  transition: color var(--trans);
  white-space: nowrap;
}
.prods-tab-link:hover { color: var(--red); }
.prods-tab-link svg { transition: transform var(--trans); }
.prods-tab-link:hover svg { transform: translateX(3px); }

/* Panneaux */
.prods-panel { display: none; }
.prods-panel.is-active { display: block; }

/* Grille produits */
.prods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Carte produit */
.prod-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  position: relative;
}
.prod-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
  border-color: var(--grey-light);
}

/* Badges */
.prod-card__badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.prod-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  width: fit-content;
}
.prod-badge--promo  { background: var(--red);    color: var(--white); }
.prod-badge--new    { background: var(--coal);   color: var(--white); }
.prod-badge--top    { background: var(--yellow); color: var(--coal);  }
.prod-badge--stock  { background: #16a34a;       color: var(--white); }

/* Zone image */
.prod-card__img {
  aspect-ratio: 4/3;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--grey-border);
}
.prod-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s ease;
}
.prod-card:hover .prod-card__img img { transform: scale(1.05); }

/* Placeholder SVG si pas d'image */
.prod-card__img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--grey-light);
  width: 100%;
  height: 100%;
  padding: 20px;
}
.prod-card__img-placeholder svg { width: 56px; height: 56px; }
.prod-card__img-placeholder span {
  font-size: 10px;
  font-weight: 600;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Corps carte */
.prod-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prod-card__brand {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-mid);
}
.prod-card__name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--coal);
  line-height: 1.35;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-card__ref {
  font-size: 10.5px;
  color: var(--grey-mid);
  font-family: monospace;
}

/* Étoiles */
.prod-card__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}
.prod-star {
  width: 12px; height: 12px;
  color: var(--yellow);
  flex-shrink: 0;
}
.prod-star--empty { color: var(--grey-border); }
.prod-card__rating-count {
  font-size: 10.5px;
  color: var(--grey-mid);
  margin-left: 4px;
}

/* Compat véhicule */
.prod-card__compat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: #16a34a;
  font-weight: 600;
  margin-top: 2px;
}
.prod-card__compat svg { flex-shrink: 0; }

/* Footer carte */
.prod-card__footer {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.prod-card__pricing { display: flex; flex-direction: column; gap: 1px; }
.prod-card__price-old {
  font-size: 11px;
  color: var(--grey-mid);
  text-decoration: line-through;
  line-height: 1;
}
.prod-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.5px;
}
.prod-card__price--normal { color: var(--coal); }
.prod-card__price-ttc {
  font-size: 9px;
  font-weight: 500;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bouton ajouter au panier */
.prod-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--trans), transform 0.1s;
  white-space: nowrap;
  flex-shrink: 0;
}
.prod-card__btn:hover  { background: var(--red-dark); }
.prod-card__btn:active { transform: scale(0.96); }
/* Animation "pulse" quand on passe sur la carte */
.prod-card:hover .prod-card__btn {
  animation: btn-pulse 1.8s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,0,28,0.35); }
  50%       { box-shadow: 0 0 0 6px rgba(232,0,28,0); }
}

/* Animation entrée produits */
.prod-card {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.prod-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.prod-card:hover { transform: translateY(-3px) !important; }

/* ============================================================
   RESPONSIVE — Produits & Marques
============================================================ */
@media (max-width: 1100px) {
  .prods-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .prods-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .prods-section { padding: 48px 0 56px; }
  .prods-tab { padding: 12px 18px; font-size: 13px; }
  .brands-section::before,
  .brands-section::after { width: 60px; }
}
@media (max-width: 480px) {
  .prods-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .prod-card__name { font-size: 12px; }
  .prod-card__price { font-size: 18px; }
  .prod-card__btn { padding: 8px 10px; font-size: 11px; }
  .prod-card__footer { padding: 10px 12px 12px; gap: 6px; }
  .prod-card__body { padding: 12px; }
}


/* ============================================================
   SECTION 5 — CTA ENGAGEMENTS (compteurs animés)
============================================================ */
.engagements-section {
  background: var(--coal);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

/* Fond texture diagonale */
.engagements-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,0.012) 30px,
      rgba(255,255,255,0.012) 31px
    );
  pointer-events: none;
}

/* Accent rouge à droite */
.engagements-section::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,0,28,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.engagements-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Gauche — texte */
.engagements-left {}
.engagements-left .section-label { color: var(--red); }
.engagements-left .section-label::before { background: var(--red); }

.engagements-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.08;
  margin-bottom: 20px;
}
.engagements-title span { color: var(--red); }

.engagements-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 32px;
}

.engagements-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background var(--trans), transform 0.1s;
}
.engagements-cta:hover  { background: var(--red-dark); }
.engagements-cta:active { transform: scale(0.98); }

/* Droite — compteurs */
.engagements-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.counter-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.4s ease;
}
.counter-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}
.counter-card:hover::before { width: 100%; }

.counter-card:first-child  { border-radius: 6px 0 0 0; }
.counter-card:nth-child(2) { border-radius: 0 6px 0 0; }
.counter-card:nth-child(3) { border-radius: 0 0 0 6px; }
.counter-card:last-child   { border-radius: 0 0 6px 0; }

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}
.counter-number .counter-val { display: inline; }
.counter-number .counter-suffix { color: var(--red); font-size: 0.65em; }

.counter-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}
.counter-sublabel {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.4;
}

/* ============================================================
   SECTION 6 — BLOG CONSEILS AUTO
============================================================ */
.blog-section {
  background: var(--white);
  padding: 72px 0 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 24px;
  margin-top: 48px;
}

/* Article carte */
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--grey-border);
  text-decoration: none;
  color: var(--coal);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  background: var(--white);
}
.blog-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.09);
  transform: translateY(-4px);
  border-color: var(--grey-light);
}

/* Image */
.blog-card__img {
  aspect-ratio: 16/9;
  background: var(--grey-bg);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card--featured .blog-card__img { aspect-ratio: 4/3; }

.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.04); }

/* Placeholder image blog */
.blog-card__img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--grey-bg) 0%, #eaeaea 100%);
  color: var(--grey-light);
}
.blog-card__img-ph svg { width: 48px; height: 48px; }
.blog-card__img-ph span {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--grey-light);
}

/* Catégorie badge sur l'image */
.blog-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 1;
}

/* Corps */
.blog-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card--featured .blog-card__body { padding: 24px; }

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  color: var(--grey-mid);
  font-weight: 500;
}
.blog-card__meta-sep {
  width: 3px; height: 3px;
  background: var(--grey-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--coal);
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1.2;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card--featured .blog-card__title {
  font-size: 22px;
  -webkit-line-clamp: 4;
}
.blog-card:hover .blog-card__title { color: var(--red); }

.blog-card__excerpt {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--grey-border);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background var(--trans);
}
.blog-card:hover .blog-card__footer { background: rgba(232,0,28,0.03); }
.blog-card__footer svg { transition: transform var(--trans); }
.blog-card:hover .blog-card__footer svg { transform: translateX(4px); }

/* Animation entrée blog */
.blog-card {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.blog-card.is-visible { opacity: 1; transform: translateY(0); }
.blog-card:hover { transform: translateY(-4px) !important; }

/* ============================================================
   RESPONSIVE — Engagements + Blog
============================================================ */
@media (max-width: 1024px) {
  .engagements-inner { grid-template-columns: 1fr; gap: 40px; }
  .engagements-desc  { max-width: 100%; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card--featured { grid-column: span 2; }
  .blog-card--featured .blog-card__img { aspect-ratio: 16/7; }
}
@media (max-width: 760px) {
  .engagements-section { padding: 48px 0; }
  .engagements-counters { gap: 1px; }
  .counter-card { padding: 24px 18px; }
  .blog-section { padding: 48px 0 56px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-column: span 1; }
}
@media (max-width: 480px) {
  .engagements-counters { grid-template-columns: 1fr 1fr; }
  .counter-number { font-size: 28px; }
}


/* ============================================================
   SHOP SECTION — Filtres + Grille live
============================================================ */
.shop-section {
  background: var(--grey-bg);
  min-height: 80vh;
  padding: 40px 0 80px;
}

/* ── Filtres ── */
.shop-filters {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.shop-filters__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.shop-filters__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--coal);
}
.shop-filters__reset {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-mid);
  background: none;
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 5px 12px;
  cursor: pointer;
  transition: color var(--trans), border-color var(--trans);
}
.shop-filters__reset:hover { color: var(--red); border-color: var(--red); }

.shop-filters__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.shop-filter-field { display: flex; flex-direction: column; gap: 5px; }
.shop-filter-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--grey-dark);
}
.shop-filter-select-wrap { position: relative; }
.shop-filter-select {
  width: 100%;
  height: 40px;
  padding: 0 32px 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--coal);
  background: var(--grey-bg);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color var(--trans);
}
.shop-filter-select:focus { border-color: var(--red); background: var(--white); }
.shop-filter-arrow {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--grey-mid);
}

/* Tags filtres actifs */
.shop-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,0,28,0.08);
  border: 1px solid rgba(232,0,28,0.2);
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.filter-tag__remove {
  cursor: pointer;
  line-height: 1;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity var(--trans);
}
.filter-tag__remove:hover { opacity: 1; }

/* ── Barre résultats ── */
.shop-results__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-results__count {
  font-size: 13px;
  font-weight: 600;
  color: var(--coal);
}
.shop-results__count strong { color: var(--red); font-size: 16px; }
.shop-results__sort { font-size: 11px; color: var(--grey-mid); }

/* ── Grille produits ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Skeleton loader */
.shop-skeleton {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  height: 280px;
  animation: skeleton-pulse 1.4s ease-in-out infinite;
}
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ── Carte produit shop ── */
.shop-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.shop-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
  border-color: var(--grey-light);
}

/* Badge dispo */
.shop-card__dispo {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 3px;
}
.dispo--stock    { background: #dcfce7; color: #16a34a; }
.dispo--supplier { background: #fef9c3; color: #b45309; }
.dispo--unavailable { background: var(--grey-bg); color: var(--grey-mid); }

/* Zone image/icône */
.shop-card__img {
  height: 120px;
  background: linear-gradient(145deg, var(--grey-bg) 0%, #ebebeb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--grey-border);
  color: #b0b0b0;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
/* Accent décoratif coin */
.shop-card__img::before {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 70px; height: 70px;
  background: rgba(232,0,28,0.04);
  border-radius: 50%;
}
.shop-card:hover .shop-card__img { background: linear-gradient(145deg, #efefef 0%, #e5e5e5 100%); }
.shop-card:hover .shop-card__img { color: #888; }
.shop-card__img-icon {
  width: 80px;
  height: 80px;
  transition: transform 0.25s ease, color 0.25s ease;
  position: relative;
  z-index: 1;
}
.shop-card:hover .shop-card__img-icon { transform: scale(1.06) translateY(-2px); color: var(--red); }

/* Corps */
.shop-card__body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.shop-card__brand {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-mid);
}
.shop-card__name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--coal);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.shop-card__ref {
  font-size: 10px;
  color: var(--grey-mid);
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-card__cat {
  font-size: 10px;
  color: var(--grey-mid);
  background: var(--grey-bg);
  padding: 2px 7px;
  border-radius: 3px;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Footer carte */
.shop-card__footer {
  padding: 12px 14px;
  border-top: 1px solid var(--grey-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop-card__price-wrap { display: flex; align-items: baseline; gap: 6px; }

/* Ligne quantité + boutons */
.shop-card__cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

/* Sélecteur quantité */
.shop-card__qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  height: 32px;
}
.shop-card__qty-btn {
  width: 28px; height: 100%;
  background: var(--grey-bg);
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--coal);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background var(--trans), color var(--trans);
  flex-shrink: 0;
  padding: 0;
}
.shop-card__qty-btn:hover { background: var(--grey-border); color: var(--red); }
.shop-card__qty-input {
  width: 34px; height: 100%;
  border: none;
  border-left: 1.5px solid var(--grey-border);
  border-right: 1.5px solid var(--grey-border);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--coal);
  background: var(--white);
  font-family: var(--font-body);
  outline: none;
  -moz-appearance: textfield;
  padding: 0;
}
.shop-card__qty-input::-webkit-inner-spin-button,
.shop-card__qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.shop-card__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.3px;
}
.shop-card__price-null {
  font-size: 11px;
  color: var(--grey-mid);
  font-style: italic;
}
.shop-card__price-ttc {
  font-size: 9px;
  color: var(--grey-mid);
  font-weight: 500;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.shop-card__actions {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
  align-items: center;
}
.shop-card__btn-detail {
  width: 34px; height: 34px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-dark);
  cursor: pointer;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
  flex-shrink: 0;
}
.shop-card__btn-detail:hover { border-color: var(--coal); color: var(--coal); }
.shop-card__btn-cart {
  height: 34px;
  padding: 0 12px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  font-family: var(--font-body);
  display: flex; align-items: center; gap: 5px;
  transition: background var(--trans), transform 0.1s;
  flex-shrink: 0;
  white-space: nowrap;
}
.shop-card__btn-cart:hover  { background: var(--red-dark); }
.shop-card__btn-cart:active { transform: scale(0.97); }
.shop-card__btn-cart.added  { background: #16a34a; }
.shop-card__btn-cart:disabled { background: var(--grey-light); cursor: not-allowed; }

/* ── Pagination ── */
.shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.page-btn {
  width: 38px; height: 38px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--coal);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
}
.page-btn:hover { border-color: var(--red); color: var(--red); }
.page-btn.is-active { background: var(--red); border-color: var(--red); color: var(--white); }
.page-btn.is-prev-next { width: auto; padding: 0 14px; }

/* ── Vide / Erreur ── */
.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  color: var(--grey-mid);
}
.shop-empty svg { width: 56px; height: 56px; color: var(--grey-light); margin: 0 auto 16px; display: block; }
.shop-empty p { font-size: 15px; font-weight: 600; color: var(--coal); margin-bottom: 6px; }
.shop-empty small { font-size: 13px; }

/* ── Search suggestions dropdown ── */
.search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 500;
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.search-suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  cursor: pointer;
  transition: background var(--trans);
  border-bottom: 1px solid var(--grey-border);
  gap: 12px;
}
.search-suggestion:last-child { border-bottom: none; }
.search-suggestion:hover,
.search-suggestion.is-focused { background: var(--grey-bg); }
.search-suggestion__left { flex: 1; min-width: 0; }
.search-suggestion__ref {
  font-size: 12px;
  font-weight: 700;
  color: var(--coal);
  font-family: monospace;
  display: block;
}
.search-suggestion__name {
  font-size: 11.5px;
  color: var(--grey-mid);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.search-suggestion__price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
  flex-shrink: 0;
}
.search-suggestion__dispo {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
.search-suggestions__footer {
  padding: 10px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  cursor: pointer;
  background: var(--grey-bg);
}
.search-suggestions__footer:hover { background: #eee; }

/* ── Modal produit ── */
.prod-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1500;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.prod-modal-overlay.is-open { opacity: 1; visibility: visible; }

.prod-modal {
  background: var(--white);
  border-radius: 8px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  scrollbar-width: thin;
}
.prod-modal-overlay.is-open .prod-modal {
  transform: translateY(0) scale(1);
}

.prod-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 20px;
  border-bottom: 2px solid var(--grey-border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}
.prod-modal__ref {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 4px;
}
.prod-modal__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--coal);
  margin: 0;
  line-height: 1.2;
}
.prod-modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grey-bg);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--coal);
  transition: background var(--trans), color var(--trans);
}
.prod-modal__close:hover { background: var(--red); color: var(--white); }

.prod-modal__body { padding: 24px; }

.prod-modal__loading {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 48px;
  color: var(--grey-mid); font-size: 13px;
}
.prod-modal__spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--grey-border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Grille de détails */
.prod-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}
.prod-detail-row {
  display: contents;
}
.prod-detail-key,
.prod-detail-val {
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--grey-border);
}
.prod-detail-key {
  background: var(--grey-bg);
  font-weight: 600;
  color: var(--grey-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.prod-detail-val { color: var(--coal); font-weight: 500; }
.prod-detail-key:last-of-type,
.prod-detail-val:last-of-type { border-bottom: none; }

.prod-modal__price-block {
  background: var(--grey-bg);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.prod-modal__price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -1px;
}
.prod-modal__price-sub {
  font-size: 11px;
  color: var(--grey-mid);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.prod-modal__dispo-badge {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.prod-modal__btn-cart {
  width: 100%;
  height: 50px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--trans), transform 0.1s;
}
.prod-modal__btn-cart:hover  { background: var(--red-dark); }
.prod-modal__btn-cart:active { transform: scale(0.99); }
.prod-modal__btn-cart.added  { background: #16a34a; }

/* ============================================================
   SHOP RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-filters__row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .shop-filters__row { grid-template-columns: 1fr 1fr; }
  .shop-section { padding: 24px 0 48px; }
}
@media (max-width: 480px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .shop-filters__row { grid-template-columns: 1fr; }
  .shop-card__name { font-size: 11.5px; }
  .shop-card__price { font-size: 17px; }
  .shop-card__btn-cart { padding: 0 8px; font-size: 10px; }
  .shop-card__qty-input { width: 28px; }
  .shop-card__qty-btn { width: 24px; }
  .prod-modal { max-height: 100vh; border-radius: 0; }
  .prod-modal-overlay { padding: 0; align-items: flex-end; }
  .prod-detail-grid { grid-template-columns: 1fr; }
  .prod-detail-key { border-bottom: none; padding-bottom: 2px; }
}


/* ── Modal: quantité + bouton sur une ligne ── */
.prod-modal__cart-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.prod-modal__qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  height: 50px;
}
.prod-modal__qty .shop-card__qty-btn {
  width: 42px; height: 100%;
  font-size: 20px;
}
.prod-modal__qty .shop-card__qty-input {
  width: 52px; height: 100%;
  font-size: 16px;
  font-weight: 700;
}
.prod-modal__btn-cart {
  flex: 1;
}

/* ══════════════════════════════════════
   FIX MOBILE — kartice ne sječe dugme
═══════════════════════════════════════ */
@media (max-width: 480px) {
  /* Kartica: footer vertikalno */
  .shop-card__footer {
    padding: 10px 10px;
    gap: 8px;
  }
  .shop-card__cart-row {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
  }
  .shop-card__qty {
    width: 100%;
    justify-content: center;
  }
  .shop-card__qty-input { flex: 1; }
  .shop-card__actions {
    width: 100%;
    justify-content: stretch;
  }
  .shop-card__btn-detail { flex-shrink: 0; }
  .shop-card__btn-cart {
    flex: 1;
    justify-content: center;
    padding: 0 8px;
    font-size: 11px;
    height: 36px;
  }
  .shop-card__price { font-size: 18px; }
  .shop-card__name  { font-size: 11.5px; }
  .shop-card__img   { height: 90px; }
  .shop-card__img-icon { width: 60px; height: 60px; }
}

@media (max-width: 360px) {
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .shop-card__body { padding: 8px 8px 0; }
  .shop-card__ref  { display: none; }
}


/* ============================================================
   WISHLIST — Liste de souhaits
============================================================ */

/* Drawer — réutilise styles mini-cart, override couleur */
.wishlist-drawer .mini-cart__header { border-bottom-color: var(--coal); }
.wishlist-drawer .mini-cart__title  { color: var(--coal); }
.wishlist-drawer .mini-cart__title svg path { stroke: var(--red); }

/* Bouton coeur dans le header (Favoris) */
#wishlist-btn.haction--has-items svg path {
  fill: var(--red);
  stroke: var(--red);
}

/* ── Bouton ♡ sur la carte produit ── */
.shop-card__btn-wish {
  width: 34px; height: 34px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--grey-mid);
  transition: border-color var(--trans), color var(--trans),
              background var(--trans), transform 0.15s ease;
  position: relative;
}
.shop-card__btn-wish:hover {
  border-color: var(--red);
  color: var(--red);
  transform: scale(1.08);
}
.shop-card__btn-wish.is-wished {
  border-color: var(--red);
  background: #fff0f2;
  color: var(--red);
}
.shop-card__btn-wish.is-wished svg path {
  fill: var(--red);
  stroke: var(--red);
}
/* Animation coeur au clic */
@keyframes heart-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.shop-card__btn-wish.heart-pop { animation: heart-pop 0.4s ease forwards; }

/* ── Items dans la wishlist drawer ── */
.wishlist-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-border);
  align-items: flex-start;
}
.wishlist-item:last-child { border-bottom: none; }

.wishlist-item__icon {
  width: 52px; height: 52px;
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--grey-light);
}
.wishlist-item__icon svg { width: 32px; height: 32px; }

.wishlist-item__info { flex: 1; min-width: 0; }
.wishlist-item__brand {
  font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--grey-mid); margin-bottom: 3px;
}
.wishlist-item__name {
  font-size: 12.5px; font-weight: 600;
  color: var(--coal); line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.wishlist-item__ref {
  font-size: 10px; color: var(--grey-mid); font-family: monospace;
}
.wishlist-item__price {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 800;
  color: var(--red); margin-top: 4px;
}

.wishlist-item__actions {
  display: flex; flex-direction: column; gap: 5px;
  align-items: flex-end; flex-shrink: 0;
}
.wishlist-item__btn-cart {
  height: 30px; padding: 0 10px;
  background: var(--red); color: var(--white);
  border: none; border-radius: var(--radius);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.3px;
  cursor: pointer; font-family: var(--font-body);
  display: flex; align-items: center; gap: 4px;
  transition: background var(--trans);
  white-space: nowrap;
}
.wishlist-item__btn-cart:hover { background: var(--red-dark); }
.wishlist-item__btn-cart.added { background: #16a34a; }

.wishlist-item__btn-remove {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--grey-border);
  border-radius: 50%; cursor: pointer;
  color: var(--grey-mid);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.wishlist-item__btn-remove:hover {
  border-color: var(--red); color: var(--red); background: #fff0f2;
}

/* Dispo badge dans wishlist */
.wishlist-item__dispo {
  font-size: 9px; font-weight: 700;
  padding: 2px 6px; border-radius: 3px; margin-top: 3px;
  display: inline-block; width: fit-content;
}

/* Modal wishlist button */
.prod-modal__btn-wish {
  width: 50px; height: 50px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  color: var(--grey-mid);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.prod-modal__btn-wish:hover { border-color: var(--red); color: var(--red); }
.prod-modal__btn-wish.is-wished {
  border-color: var(--red); background: #fff0f2; color: var(--red);
}
.prod-modal__btn-wish.is-wished svg path { fill: var(--red); stroke: var(--red); }


/* ============================================================
   SHOP RESULTS — naslov sekcije + sinhronizacija
============================================================ */
.shop-results__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shop-results__section-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--coal);
  line-height: 1;
  margin: 0;
}
.shop-results__count { font-size: 12px; color: var(--grey-mid); font-weight: 500; }

/* Nav link aktivan */
.nav-item__link.is-active-filter,
.nav-item.is-active-filter > .nav-item__link {
  color: var(--white) !important;
  background: rgba(255,255,255,0.10);
}
.nav-item.is-active-filter > .nav-item__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
}

/* Footer link aktivan */
.footer-links a.is-active-filter {
  color: var(--red) !important;
  font-weight: 700;
}

/* ============================================================
   SITE FOOTER
============================================================ */
.site-footer {
  background: var(--coal);
  color: var(--grey-light);
  font-size: 13px;
  margin-top: auto;
}

/* Footer top */
.footer-top { padding: 48px 0 36px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-top__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Brand column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey-mid);
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-light);
  transition: color var(--trans);
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item svg { flex-shrink: 0; color: var(--red); }
.footer-contact-item--text { color: var(--grey-mid); cursor: default; }
.footer-contact-item--text:hover { color: var(--grey-mid); }

/* Footer columns */
.footer-col__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13px;
  color: var(--grey-mid);
  transition: color var(--trans), padding-left var(--trans);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

/* Footer bottom */
.footer-bottom {
  padding: 18px 0;
  background: var(--coal-mid);
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-legal { font-size: 11px; color: var(--grey-dark); }
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal-links a { font-size: 11px; color: var(--grey-mid); transition: color var(--trans); }
.footer-legal-links a:hover { color: var(--white); }
.footer-payments { display: flex; align-items: center; gap: 6px; }
.payment-icon {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.8;
  transition: opacity var(--trans);
}
.payment-icon:hover { opacity: 1; }

/* Footer responsive */
@media (max-width: 1100px) {
  .footer-top__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col--brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer-top__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-col--brand { grid-column: span 2; }
  .footer-brand__desc { max-width: 100%; }
  .footer-top { padding: 32px 0 24px; }
  .footer-bottom__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-legal { font-size: 10px; }
}
@media (max-width: 380px) {
  .footer-top__inner { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: span 1; }
}

/* FIX overflow nav — géré directement dans les règles principales ci-dessus */

/* ============================================================
   TOUTES LES CATÉGORIES — Mega panel full
============================================================ */
.all-cats-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-top: 3px solid var(--red);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.all-cats-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.all-cats-panel__list { padding: 8px 0; }
.all-cats-panel__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--coal);
  text-transform: uppercase;
  letter-spacing: 0.2px;
  transition: background var(--trans), color var(--trans);
  cursor: pointer;
  gap: 10px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.all-cats-panel__item:hover { background: var(--grey-bg); color: var(--red); }
.all-cats-panel__item-left { display: flex; align-items: center; gap: 12px; }
.all-cats-panel__icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--red); opacity: 0.7; }
.all-cats-panel__item:hover .all-cats-panel__icon { opacity: 1; }
.all-cats-panel__arrow { color: var(--grey-light); flex-shrink: 0; }
.all-cats-panel__sep { height: 1px; background: var(--grey-border); margin: 4px 0; }
/* Positionnement du wrapper bouton */
.nav-all-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: stretch;
}

/* ============================================================
   MINI CART — panier latéral
============================================================ */
.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.mini-cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: var(--white);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  z-index: 1400; /* Au-dessus de tout */
}
.mini-cart.is-open { transform: translateX(0); }

.mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 2px solid var(--grey-border);
  background: var(--white);
  flex-shrink: 0;
}
.mini-cart__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--coal);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini-cart__title-count {
  font-size: 12px;
  font-weight: 700;
  background: var(--red);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 20px;
}
.mini-cart__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--grey-bg);
  color: var(--coal);
  transition: background var(--trans), color var(--trans);
}
.mini-cart__close:hover { background: var(--grey-border); color: var(--red); }

/* Items liste */
.mini-cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  -webkit-overflow-scrolling: touch;
}
.mini-cart__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--grey-mid);
  padding: 40px 0;
}
.mini-cart__empty svg { color: var(--grey-light); }
.mini-cart__empty p { font-size: 14px; font-weight: 500; }
.mini-cart__empty a {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 72px; height: 72px;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  object-fit: contain;
  flex-shrink: 0;
  background: var(--grey-bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cart-item__img svg { color: var(--grey-light); }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--grey-mid);
  margin-bottom: 3px;
}
.cart-item__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--coal);
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item__ref {
  font-size: 11px;
  color: var(--grey-mid);
  margin-bottom: 8px;
}
.cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cart-item__qty-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--coal);
  background: var(--grey-bg);
  transition: background var(--trans), color var(--trans);
  line-height: 1;
}
.cart-item__qty-btn:hover { background: var(--grey-border); color: var(--red); }
.cart-item__qty-val {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--coal);
  border-left: 1px solid var(--grey-border);
  border-right: 1px solid var(--grey-border);
  line-height: 28px;
}
.cart-item__price {
  font-size: 16px;
  font-weight: 800;
  color: var(--red);
  font-family: var(--font-display);
}
.cart-item__remove {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-mid);
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
}
.cart-item__remove:hover { background: #fff0f2; color: var(--red); }

/* Footer mini cart */
.mini-cart__footer {
  padding: 20px 24px;
  border-top: 2px solid var(--grey-border);
  background: var(--white);
  flex-shrink: 0;
}
.mini-cart__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--grey-dark);
}
.mini-cart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 10px;
  border-top: 1px solid var(--grey-border);
}
.mini-cart__total-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--coal);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.mini-cart__total-amount {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
}
.mini-cart__livraison {
  font-size: 11px;
  color: var(--grey-mid);
  text-align: center;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mini-cart__livraison svg { color: var(--red); flex-shrink: 0; }
.mini-cart__cta-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background var(--trans), transform 0.1s;
  margin-bottom: 10px;
}
.mini-cart__cta-checkout:hover { background: var(--red-dark); }
.mini-cart__cta-checkout:active { transform: scale(0.99); }
.mini-cart__cta-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px;
  background: transparent;
  color: var(--coal);
  border: 2px solid var(--grey-border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: border-color var(--trans), color var(--trans);
}
.mini-cart__cta-cart:hover { border-color: var(--coal); }

/* Responsive mini cart */
@media (max-width: 480px) {
  .mini-cart { width: 100vw; }
}

/* ============================================================
   FIX HAMBURGER — bouton X visible au-dessus du drawer
============================================================ */
/* mobile-menu-btn nema potrebu za z-index — hamburger je u header-main (z-index:200) */


/* ============================================================
   NAV SCROLL WRAPPER — mega menus en position:fixed (géré par JS)
============================================================ */
.nav-scroll-wrapper { position: relative; }

/* Strelices nav — gradient sur les bords */
.nav-scroll-arrow--left {
  background: linear-gradient(to right, var(--coal) 50%, transparent);
  border-radius: 0;
  width: 32px; height: 100%;
  order: -1;
  flex-shrink: 0;
}
.nav-scroll-arrow--right {
  background: linear-gradient(to left, var(--coal) 50%, transparent);
  border-radius: 0;
  width: 32px; height: 100%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   LOGO — partagé connexion & inscription
═══════════════════════════════════════════════════════════════ */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.logo-text span { color: var(--red-light); }

/* ═══════════════════════════════════════════════════════════════
   CHAMPS FORMULAIRE — partagés
═══════════════════════════════════════════════════════════════ */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0; /* géré par le parent (field-grid ou spacing direct) */
}

.field-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--coal-soft);
}

.field-label .req { color: var(--red); margin-left: 2px; }

.field-wrap { position: relative; }

.field-wrap input,
.field-wrap select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--coal);
  background: var(--white);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  -webkit-appearance: none;
}

.field-wrap input::placeholder { color: var(--grey-light); }

.field-wrap input:focus,
.field-wrap select:focus {
  border-color: var(--coal);
  box-shadow: 0 0 0 3px rgba(26,26,26,.07);
}

.field-wrap input.has-icon,
.field-wrap input.has-toggle {
  padding-right: 44px;
}

/* États d'erreur */
.field-wrap input.error,
.field-wrap select.error,
.field-wrap input.input-error,
.field-wrap select.input-error {
  border-color: var(--red) !important;
  background: #FFF8F8;
}

.field-wrap input.error:focus,
.field-wrap select.error:focus,
.field-wrap input.input-error:focus {
  box-shadow: 0 0 0 3px rgba(232,0,28,.1);
}

/* Icône décorative à droite */
.field-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-mid);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Bouton toggle mot de passe */
.toggle-pass {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey-mid);
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color var(--trans);
}

.toggle-pass:hover { color: var(--coal); }

/* Textes sous le champ */
.field-hint {
  font-size: 12px;
  color: var(--grey-mid);
  line-height: 1.4;
}

.field-error {
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   ALERTES GLOBALES
═══════════════════════════════════════════════════════════════ */
.alert {
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.alert-error {
  background: #FFF0F2;
  border: 1px solid #F8C0C7;
  color: #B0001A;
}

.alert-global {
  background: #FFF0F2;
  border: 1px solid #F8C0C7;
  border-left: 4px solid var(--red);
  color: #B0001A;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.alert-icon { flex-shrink: 0; margin-top: 1px; }

.alert ul { padding-left: 16px; }
.alert ul li + li { margin-top: 4px; }

/* Bannière de blocage (brute-force) */
.lockout-banner {
  background: var(--coal);
  color: var(--yellow);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   BOUTON PRINCIPAL — partagé
═══════════════════════════════════════════════════════════════ */
.btn-submit {
  width: 100%;
  height: 52px;
  background: var(--coal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
  transition: width var(--trans);
}

.btn-submit:hover:not(:disabled)::before { width: 6px; }
.btn-submit:hover:not(:disabled) { background: var(--coal-mid); }
.btn-submit:active:not(:disabled) { transform: scale(.98); }

.btn-submit:disabled {
  background: var(--grey-light);
  cursor: not-allowed;
  color: var(--grey-mid);
}

.btn-submit:disabled::before { background: transparent; }

/* Variante plein-écran (inscription) */
.btn-submit.btn-wide {
  width: auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════════════════════════════
   GRILLE DE CHAMPS (inscription)
═══════════════════════════════════════════════════════════════ */
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.field-grid .full { grid-column: 1 / -1; }

/* ═══════════════════════════════════════════════════════════════
   CARTES DE FORMULAIRE (inscription)
═══════════════════════════════════════════════════════════════ */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--grey-border);
}

.form-card-head {
  background: var(--coal);
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-card-head svg {
  stroke: var(--grey-light);
  fill: none;
  flex-shrink: 0;
}

.form-card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}

.form-card-body { padding: 28px 24px; }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS SPÉCIFIQUES PAR TYPE (inscription — affichage dynamique)
═══════════════════════════════════════════════════════════════ */
.section-specific {
  display: none;
  animation: fadeIn .25s ease;
}

.section-specific.visible { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   SÉLECTEUR TYPE CLIENT (cartes radio)
═══════════════════════════════════════════════════════════════ */
.type-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.type-card {
  position: relative;
  cursor: pointer;
}

.type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.type-card-inner {
  border: 2px solid var(--grey-border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
  cursor: pointer;
}

.type-card:hover .type-card-inner {
  border-color: var(--grey-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.type-card input:checked + .type-card-inner {
  border-color: var(--coal);
  box-shadow: 0 0 0 3px rgba(26,26,26,.08);
}

.type-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: background var(--trans);
}

.type-card input:checked + .type-card-inner .type-card-icon {
  background: var(--red);
}

.type-card-icon svg {
  stroke: var(--grey-dark);
  fill: none;
  transition: stroke var(--trans);
}

.type-card input:checked + .type-card-inner .type-card-icon svg {
  stroke: var(--white);
}

.type-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--coal);
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.type-card-desc {
  font-size: 12px;
  color: var(--grey-mid);
  line-height: 1.4;
}

.type-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity var(--trans);
}

.type-card input:checked ~ .type-badge { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   JAUGE FORCE MOT DE PASSE (inscription)
═══════════════════════════════════════════════════════════════ */
.pwd-strength { margin-top: 8px; }

.pwd-bars {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.pwd-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--grey-border);
  transition: background .3s ease;
}

.pwd-bar.active-weak   { background: var(--red); }
.pwd-bar.active-medium { background: var(--yellow); }
.pwd-bar.active-strong { background: #0A8A4E; }

.pwd-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.pwd-rule {
  font-size: 11.5px;
  color: var(--grey-mid);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s ease;
}

.pwd-rule.ok { color: #0A8A4E; }

.pwd-rule .rule-icon {
  stroke: var(--grey-light);
  fill: none;
  flex-shrink: 0;
  transition: stroke .2s ease;
}

.pwd-rule.ok .rule-icon { stroke: #0A8A4E; }

/* ═══════════════════════════════════════════════════════════════
   CGU (inscription)
═══════════════════════════════════════════════════════════════ */
.cgu-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-top: 4px;
}

.cgu-wrap input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--coal);
  cursor: pointer;
}

.cgu-text {
  font-size: 13.5px;
  color: var(--grey-dark);
  line-height: 1.5;
}

.cgu-text a {
  color: var(--coal);
  font-weight: 600;
  text-decoration: underline;
}

.cgu-text a:hover { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════
   RANGÉE DE SOUMISSION (inscription)
═══════════════════════════════════════════════════════════════ */
.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.login-link {
  font-size: 14px;
  color: var(--grey-dark);
}

.login-link a {
  font-weight: 700;
  color: var(--coal);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
}

.login-link a:hover { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════
   INDICATEUR D'ÉTAPES (inscription)
═══════════════════════════════════════════════════════════════ */
.steps-bar {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.step.active { color: var(--coal); }

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  background: var(--white);
  flex-shrink: 0;
}

.step.active .step-num {
  border-color: var(--coal);
  background: var(--coal);
  color: var(--white);
}

.step-line {
  flex: 1;
  height: 1px;
  background: var(--grey-border);
  margin: 0 8px;
}

/* ═══════════════════════════════════════════════════════════════
   SUCCÈS INSCRIPTION
═══════════════════════════════════════════════════════════════ */
.success-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  border-top: 4px solid #0A8A4E;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: #E8F7EF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg { stroke: #0A8A4E; fill: none; }

.success-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--coal);
  margin-bottom: 12px;
}

.success-text {
  font-size: 15px;
  color: var(--grey-dark);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 32px;
}

.btn-return {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  background: var(--coal);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--trans);
}

.btn-return:hover { background: var(--red); }

/* ═══════════════════════════════════════════════════════════════
   CONNEXION — layout 2 colonnes
═══════════════════════════════════════════════════════════════ */

/* Corps entier dark pour la page connexion */
body.page-connexion {
  background: var(--coal);
  color: var(--white);
}

.connexion-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Panneau gauche (branding) */
.panel-left {
  position: relative;
  background: var(--coal-mid);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 56px;
  overflow: hidden;
}

.panel-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 24px,
    rgba(255,255,255,.025) 24px,
    rgba(255,255,255,.025) 25px
  );
  pointer-events: none;
}

.panel-left::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,0,28,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.65;
  max-width: 340px;
}

.stats-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--grey-mid);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Panneau droit (formulaire connexion) */
.panel-right {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px;
}

.form-box {
  width: 100%;
  max-width: 400px;
  animation: fadeUp .4s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-heading { margin-bottom: 36px; }

.form-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--coal);
  letter-spacing: -.01em;
  line-height: 1;
}

/* Options sous le formulaire connexion */
.options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  margin-top: 4px;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--coal);
  cursor: pointer;
}

.checkbox-wrap span {
  font-size: 13.5px;
  color: var(--grey-dark);
}

.link-forgot {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: color var(--trans);
}

.link-forgot:hover { color: var(--red-dark); }

/* Séparateur */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
  color: var(--grey-light);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-border);
}

/* Lien vers inscription */
.register-cta {
  text-align: center;
  font-size: 14px;
  color: var(--grey-dark);
}

.register-cta a {
  font-weight: 700;
  color: var(--coal);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
  transition: color var(--trans);
}

.register-cta a:hover { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════
   INSCRIPTION — mise en page single-column
═══════════════════════════════════════════════════════════════ */
body.page-inscription {
  background: var(--grey-bg);
  color: var(--coal);
}

/* Barre du haut (inscription) */
.topbar {
  background: var(--coal);
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--red);
}

.topbar-right {
  margin-left: auto;
  font-size: 13px;
  color: var(--grey-mid);
}

.topbar-right a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.topbar-right a:hover { color: var(--red-light); }

/* Conteneur de page */
.page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* En-tête de page inscription */
.page-header { margin-bottom: 40px; }

.page-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--coal);
  line-height: .95;
  letter-spacing: -.01em;
}

.page-subtitle {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-dark);
  line-height: 1.6;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* Connexion — mobile */
@media (max-width: 860px) {
  .connexion-wrap { grid-template-columns: 1fr; }
  .panel-left { display: none; }
  .panel-right {
    padding: 40px 24px;
    background: var(--coal);
    min-height: 100vh;
    align-items: flex-start;
    padding-top: 56px;
  }
  .form-box { max-width: 100%; }
  .form-title { color: var(--white); }
  .form-eyebrow { color: var(--red-light); }
  .field-label { color: var(--grey-light); }
  .field-wrap input {
    background: var(--coal-mid);
    border-color: var(--coal-soft);
    color: var(--white);
  }
  .field-wrap input::placeholder { color: var(--coal-soft); }
  .field-wrap input:focus { border-color: var(--grey-mid); box-shadow: none; }
  .checkbox-wrap span { color: var(--grey-light); }
  .register-cta { color: var(--grey-light); }
  .register-cta a { color: var(--white); }
  .btn-submit { background: var(--red); }
  .btn-submit::before { display: none; }
  .btn-submit:hover:not(:disabled) { background: var(--red-dark); }
  .divider { color: var(--grey-mid); }
  .divider::before, .divider::after { background: var(--coal-soft); }
}

/* Inscription — mobile */
@media (max-width: 640px) {
  .field-grid { grid-template-columns: 1fr; }
  .type-selector { grid-template-columns: 1fr; }
  .page-wrap { padding: 28px 16px 60px; }
  .form-card-body { padding: 20px 16px; }
  .submit-row { flex-direction: column; align-items: stretch; }
  .btn-submit.btn-wide { width: 100%; justify-content: center; }
  .pwd-rules { grid-template-columns: 1fr; }
  .steps-bar { display: none; }
}

/* =============================================================
   MENTIONS LÉGALES — Styles spécifiques
   À ajouter dans main-style.css
   ============================================================= */

/* ── Hero ── */
.legal-hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 60%, #1e0408 100%);
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid rgba(232, 0, 28, .15);
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
}
.legal-breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.legal-breadcrumb a:hover { color: #E8001C; }
.legal-breadcrumb span { color: rgba(255,255,255,.25); }
[aria-current="page"] { color: rgba(255,255,255,.75); }

.legal-hero__inner { max-width: 780px; }

.legal-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #E8001C;
  background: rgba(232, 0, 28, .1);
  border: 1px solid rgba(232, 0, 28, .25);
  padding: .3rem .75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.legal-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 .75rem;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.legal-hero__subtitle {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin: 0 0 1.25rem;
  max-width: 680px;
}

.legal-hero__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ── TOC bar — samo desktop ── */
.legal-toc {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.legal-toc__nav {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.legal-toc__nav::-webkit-scrollbar { display: none; }

.legal-toc__nav a {
  display: inline-block;
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  padding: .875rem 1rem;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.legal-toc__nav a:hover {
  color: #E8001C;
  border-bottom-color: #E8001C;
}

/* ── Body wrapper ── */
.legal-body {
  background: #f7f7f8;
  padding: 3rem 0 5rem;
}

/* ── DESKTOP LAYOUT: 2 kolone ── */
.legal-body__layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2.5rem;
  align-items: start;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0; /* sprečava overflow iz grida */
}

/* ── Sections ── */
.legal-section {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.legal-section--last {
  border-bottom: 3px solid #E8001C;
}

.legal-section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fafafa;
  border-bottom: 1px solid #eaeaea;
}

.legal-section__num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #E8001C;
  background: rgba(232, 0, 28, .07);
  padding: .25rem .55rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.legal-section__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.legal-section__body {
  padding: 1.75rem 1.5rem;
}

.legal-section__body p {
  font-size: .9125rem;
  line-height: 1.75;
  color: #333;
  margin: 0 0 1rem;
}
.legal-section__body p:last-child { margin-bottom: 0; }

.legal-section__body a { color: #E8001C; text-decoration: none; font-weight: 500; }
.legal-section__body a:hover { text-decoration: underline; }

.legal-sub {
  font-size: .9375rem;
  font-weight: 700;
  color: #111;
  margin: 1.75rem 0 .6rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid #eee;
}
.legal-sub:first-child { margin-top: 0; }

/* ── Carte éditeur ── */
.legal-card {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  margin: 1.25rem 0;
}

.legal-card__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  padding: .7rem 1.1rem;
  font-size: .875rem;
  border-bottom: 1px solid #eee;
}
.legal-card__row:last-child { border-bottom: none; }

.legal-card__label { font-weight: 600; color: #555; }
.legal-card__value { color: #111; word-break: break-word; }
.legal-card__value a { color: #E8001C; text-decoration: none; }
.legal-card__value a:hover { text-decoration: underline; }

/* ── Notices ── */
.legal-notice {
  display: flex;
  gap: .875rem;
  padding: 1rem 1.1rem;
  border-radius: 8px;
  margin: 1.25rem 0;
  font-size: .875rem;
  line-height: 1.65;
}
.legal-notice svg { flex-shrink: 0; margin-top: .15rem; }
.legal-notice p { margin: 0; }

.legal-notice--info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}
.legal-notice--info svg { color: #3b82f6; }

.legal-notice--warn {
  background: #fefce8;
  border-color: #fde047;
}
.legal-notice--warn svg { color: #ca8a04; }

.legal-notice--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.legal-notice--success svg { color: #22c55e; }

/* ── Liste ── */
.legal-list {
  padding-left: 1.25rem;
  margin: .75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.legal-list li { font-size: .9125rem; line-height: 1.65; color: #333; }
.legal-list li::marker { color: #E8001C; }

/* ── Tableaux ── */
.legal-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border-radius: 8px;
  border: 1px solid #e4e4e4;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .8125rem;
  background: #fff;
}

.legal-table thead { background: #111; }
.legal-table thead th {
  color: #fff;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .75rem 1rem;
  text-align: left;
  white-space: nowrap;
  font-size: .75rem;
  text-transform: uppercase;
}

.legal-table tbody tr { border-bottom: 1px solid #eee; transition: background .15s; }
.legal-table tbody tr:last-child { border-bottom: none; }
.legal-table tbody tr:nth-child(even) { background: #fafafa; }
.legal-table tbody tr:hover { background: #fff5f5; }
.legal-table td { padding: .7rem 1rem; color: #333; line-height: 1.55; vertical-align: top; }
.legal-table td strong { color: #111; }

/* ── Grille droits RGPD ── */
.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

.legal-right-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  background: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 1rem 1.1rem;
  font-size: .8125rem;
  transition: border-color .2s, box-shadow .2s;
}
.legal-right-card:hover {
  border-color: rgba(232, 0, 28, .3);
  box-shadow: 0 4px 12px rgba(232, 0, 28, .06);
}
.legal-right-card__icon { color: #E8001C; margin-bottom: .15rem; }
.legal-right-card strong { font-size: .875rem; color: #111; }
.legal-right-card span { color: #666; line-height: 1.5; }

/* ── Contact box ── */
.legal-contact-box {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: #fafafa;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 1.25rem 1.35rem;
  margin: 1.25rem 0;
}

.legal-contact-box__item { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: #333; }
.legal-contact-box__item svg { color: #E8001C; flex-shrink: 0; margin-top: .1rem; }
.legal-contact-box__item a { color: #E8001C; text-decoration: none; font-weight: 500; }
.legal-contact-box__item a:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   SIDEBAR — desktop (> 900px)
════════════════════════════════════════ */
.legal-sidebar {
  position: sticky;
  top: 60px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-sidebar__widget {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 1.1rem 1.15rem;
}

.legal-sidebar__widget--cta {
  background: linear-gradient(135deg, #0f0f0f, #1e0408);
  border-color: rgba(232, 0, 28, .2);
}

.legal-sidebar__widget-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: .9rem;
}
.legal-sidebar__widget--cta .legal-sidebar__widget-title { color: rgba(255,255,255,.45); }

.legal-sidebar__link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8375rem;
  color: #444;
  text-decoration: none;
  padding: .45rem .3rem;
  border-radius: 5px;
  transition: color .15s, background .15s;
}
.legal-sidebar__link:hover { color: #E8001C; background: rgba(232, 0, 28, .04); }
.legal-sidebar__link--external svg { color: #bbb; }

.legal-sidebar__cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  padding: .7rem 1rem;
  border-radius: 7px;
  text-decoration: none;
  margin-bottom: .5rem;
  background: #E8001C;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.legal-sidebar__cta-btn:hover { opacity: .88; }

.legal-sidebar__cta-btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 0;
}
.legal-sidebar__cta-btn--outline:hover { background: rgba(255,255,255,.07); }

/* ════════════════════════════════════════
   TABLET ≤ 900px
   Sidebar se skriva — sadržaj full-width
════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Jedna kolona, bez sidebar-a sa strane */
  .legal-body__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Sidebar: nije više sticky, dolazi ISPOD sadržaja */
  .legal-sidebar {
    position: static;
    top: auto;
    /* Grid automatski stavlja sidebar posle content-a jer je drugi u HTML-u */
  }

  /* Nav widget: linkovi u 2 kolone */
  .legal-sidebar__widget--nav nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  /* CTA widget: dugmad jedno pored drugog */
  .legal-sidebar__widget--cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
  }
  .legal-sidebar__widget--cta .legal-sidebar__widget-title,
  .legal-sidebar__widget--cta > p {
    width: 100%;
    margin-bottom: 0 !important;
  }
  .legal-sidebar__cta-btn {
    flex: 1;
    min-width: 140px;
    margin-bottom: 0;
  }
  .legal-sidebar__cta-btn--outline {
    flex: 1;
    min-width: 140px;
  }

  /* TOC bar — sakriven, sidebar nav ga zamenjuje */
  .legal-toc { display: none; }

}

/* ════════════════════════════════════════
   MOBILE ≤ 600px
════════════════════════════════════════ */
@media (max-width: 600px) {

  /* Hero */
  .legal-hero { padding: 1.5rem 0 2rem; }
  .legal-hero__meta { flex-direction: column; align-items: flex-start; gap: .25rem; }

  /* Body */
  .legal-body { padding: 1.5rem 0 3rem; }

  /* Sekcije */
  .legal-section__header { padding: .875rem 1rem; gap: .625rem; }
  .legal-section__title { font-size: .95rem; }
  .legal-section__body { padding: 1.1rem 1rem; }

  /* Kartica editora: label iznad vrednosti */
  .legal-card__row {
    grid-template-columns: 1fr;
    gap: .1rem;
    padding: .6rem .875rem;
  }
  .legal-card__label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #999;
  }

  /* Grille droits — 1 kolona */
  .legal-rights-grid { grid-template-columns: 1fr; }

  /* Nav widget: linkovi u 1 kolonu */
  .legal-sidebar__widget--nav nav {
    grid-template-columns: 1fr;
  }

  /* CTA dugmad — vertikalno, puna širina */
  .legal-sidebar__widget--cta {
    display: block;
  }
  .legal-sidebar__cta-btn,
  .legal-sidebar__cta-btn--outline {
    display: block;
    width: 100%;
    min-width: unset;
    flex: none;
    padding: .875rem 1rem;
    font-size: .9rem;
    margin-bottom: .5rem;
    text-align: center;
  }
  .legal-sidebar__cta-btn--outline { margin-bottom: 0; }

}

/* =============================================================
   FAQ — Styles spécifiques — Delta Motors
   MOBILE FIRST — base = mobile, puis desktop via min-width
   ============================================================= */

/* ── Reset local pour éviter tout débordement ── */
.faq-hero,
.faq-body,
.faq-contact-band {
  width: 100%;
  max-width: 100%;
  overflow-x: clip; /* clip au lieu de hidden — ne crée pas de stacking context */
  box-sizing: border-box;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.faq-hero {
  position: relative;
  background: #0a0a0a;
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid rgba(232,0,28,.15);
}

.faq-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,0,28,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,0,28,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.faq-hero__inner {
  position: relative;
}

.faq-hero__label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #E8001C;
  margin-bottom: .75rem;
}

.faq-hero__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .75rem;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.faq-hero__sub {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

/* Barre de recherche */
.faq-search {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: .5rem;
}

.faq-search__icon {
  position: absolute;
  left: .875rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.35);
  pointer-events: none;
}

.faq-search__input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .8rem 2.5rem .8rem 2.5rem;
  color: #fff;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, background .2s;
}

.faq-search__input::placeholder { color: rgba(255,255,255,.3); }
.faq-search__input:focus {
  border-color: rgba(232,0,28,.5);
  background: rgba(255,255,255,.1);
}

.faq-search__clear {
  position: absolute;
  right: .875rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.35);
  cursor: pointer;
  font-size: .75rem;
  opacity: 0;
  transition: opacity .2s;
  user-select: none;
}
.faq-search__clear:hover { color: #fff; }

.faq-search__hint {
  margin: .4rem 0 1.25rem;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  min-height: 1rem;
}

/* Stats */
.faq-hero__stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}

.faq-stat {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.faq-stat__num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
}

.faq-stat__label {
  font-size: .65rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ════════════════════════════════════════
   LAYOUT BODY
════════════════════════════════════════ */
.faq-body {
  background: #f7f7f8;
  padding: 1.25rem 0 3rem;
}

/* Mobile: une colonne, nav puis contenu */
.faq-layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

/* ════════════════════════════════════════
   NAV CATÉGORIES — MOBILE: scroll horizontal
════════════════════════════════════════ */
.faq-nav {
  position: relative;
  width: 100%;
}

/* Fade droit pour indiquer le scroll */
.faq-nav::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  background: linear-gradient(to right, transparent, #f7f7f8);
  pointer-events: none;
  z-index: 2;
  opacity: var(--nav-fade-opacity, 1);
  transition: opacity .2s;
}

.faq-nav__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eaeaea;
  /* espace pour le fade */
  padding-right: 48px;
  box-sizing: content-box;
}
.faq-nav__inner::-webkit-scrollbar { display: none; }

/* Sur mobile on cache certains éléments desktop */
.faq-nav__title { display: none; }
.faq-nav__icon  { display: none; }
.faq-nav__cta   { display: none; }

.faq-nav__link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  padding: .7rem .9rem;
  font-size: .78rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}
.faq-nav__link:hover {
  color: #E8001C;
  background: rgba(232,0,28,.03);
}
.faq-nav__link--active {
  color: #E8001C;
  font-weight: 700;
  border-bottom-color: #E8001C;
  background: rgba(232,0,28,.04);
}

.faq-nav__count {
  background: #f0f0f0;
  color: #888;
  font-size: .62rem;
  font-weight: 700;
  padding: .1rem .35rem;
  border-radius: 999px;
  display: none; /* caché sur mobile */
}

/* ════════════════════════════════════════
   FAQ MAIN — ACCORDION
════════════════════════════════════════ */
.faq-main {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.faq-category {
  scroll-margin-top: 70px;
  width: 100%;
  box-sizing: border-box;
}

.faq-category__header {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: .625rem;
  padding-bottom: .625rem;
  border-bottom: 2px solid #e4e4e4;
}

.faq-category__icon  { color: #E8001C; display: flex; flex-shrink: 0; }
.faq-category__title { font-size: .9375rem; font-weight: 700; color: #111; margin: 0; }
.faq-category__badge {
  margin-left: auto;
  background: #f0f0f0;
  color: #888;
  font-size: .68rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: 999px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  width: 100%;
  box-sizing: border-box;
}

.faq-item {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 9px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover       { border-color: #ddd; }
.faq-item--open {
  border-color: rgba(232,0,28,.2);
  box-shadow: 0 4px 16px rgba(232,0,28,.06);
}

.faq-item__trigger {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.faq-item__trigger:hover  { background: #fafafa; }
.faq-item--open .faq-item__trigger { background: #fafafa; }

.faq-item__q {
  flex: 1;
  min-width: 0;
  font-size: .875rem;
  font-weight: 600;
  color: #111;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: break-word;
}
.faq-item--open .faq-item__q { color: #E8001C; }

.faq-item__arrow {
  flex-shrink: 0;
  color: #bbb;
  margin-top: .15rem;
  transition: transform .25s cubic-bezier(.4,0,.2,1), color .2s;
  display: flex;
}
.faq-item--open .faq-item__arrow {
  transform: rotate(180deg);
  color: #E8001C;
}

.faq-item__answer-inner {
  padding: .875rem 1rem 1rem;
  font-size: .85rem;
  line-height: 1.75;
  color: #444;
  border-top: 1px solid #f0f0f0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.faq-item__answer-inner a {
  color: #E8001C;
  font-weight: 500;
  text-decoration: none;
}
.faq-item__answer-inner a:hover { text-decoration: underline; }

/* Aucun résultat */
.faq-no-results {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #aaa;
}
.faq-no-results svg  { margin-bottom: 1rem; opacity: .4; }
.faq-no-results p    { font-size: .9rem; color: #888; margin: 0 0 1rem; }
.faq-no-results a    { color: #E8001C; font-weight: 600; text-decoration: none; }
.faq-no-results a:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   BANDEAU CONTACT
════════════════════════════════════════ */
.faq-contact-band {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 60%, #1e0408 100%);
  border-top: 1px solid rgba(232,0,28,.15);
  padding: 2rem 0;
}

.faq-contact-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.faq-contact-band__text h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .35rem;
}
.faq-contact-band__text p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin: 0;
}

.faq-contact-band__actions {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  width: 100%;
}

.faq-contact-band__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  padding: .75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity .2s;
}
.faq-contact-band__btn:hover { opacity: .85; }

.faq-contact-band__btn--primary {
  background: #E8001C;
  color: #fff;
  border: none;
}
.faq-contact-band__btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
}

/* ════════════════════════════════════════
   TABLET ≥ 640px
════════════════════════════════════════ */
@media (min-width: 640px) {

  .faq-hero { padding: 2.5rem 0 2.5rem; }
  .faq-hero__title { font-size: 2.25rem; }
  .faq-hero__sub   { font-size: .9375rem; }
  .faq-stat__num   { font-size: 1.75rem; }
  .faq-hero__stats { gap: 2rem; }

  .faq-nav__count  { display: inline; }
  .faq-nav__link   { font-size: .8375rem; padding: .75rem 1rem; }

  .faq-item__trigger    { padding: 1rem 1.25rem; }
  .faq-item__q          { font-size: .9125rem; }
  .faq-item__answer-inner { padding: .875rem 1.25rem 1.25rem; font-size: .8875rem; }

  .faq-contact-band__inner    { flex-direction: row; justify-content: space-between; text-align: left; }
  .faq-contact-band__actions  { flex-direction: row; width: auto; }
  .faq-contact-band__btn      { width: auto; }

}

/* ════════════════════════════════════════
   DESKTOP ≥ 960px
════════════════════════════════════════ */
@media (min-width: 960px) {

  .faq-hero        { padding: 3rem 0 2.5rem; }
  .faq-hero__title { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -.03em; }
  .faq-hero__sub   { max-width: 580px; }
  .faq-stat__num   { font-size: 1.75rem; }
  .faq-hero__stats { gap: 2.5rem; }

  .faq-body { padding: 3rem 0 5rem; }

  /* Layout: 2 colonnes — sidebar fixe + contenu */
  .faq-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  /* Sidebar desktop */
  .faq-nav {
    position: sticky;
    top: 64px;
    width: auto;
  }

  /* Pas de fade sur desktop */
  .faq-nav::after { display: none; }

  .faq-nav__inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-x: visible;
    overflow-y: visible;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    background: #fff;
    padding-right: 0;
  }

  .faq-nav__title {
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #999;
    padding: 1rem 1.15rem .6rem;
  }

  .faq-nav__icon  { display: flex; }
  .faq-nav__count { display: inline; }

  .faq-nav__link {
    flex-shrink: 1;
    white-space: normal;
    padding: .55rem 1.15rem;
    font-size: .8375rem;
    border-bottom: none;
    border-left: 2px solid transparent;
  }
  .faq-nav__link:hover {
    border-left-color: rgba(232,0,28,.2);
  }
  .faq-nav__link--active {
    border-bottom: none;
    border-left-color: #E8001C;
    background: rgba(232,0,28,.06);
  }

  .faq-nav__cta {
    display: block;
    background: linear-gradient(135deg, #0f0f0f, #1e0408);
    padding: 1.1rem 1.15rem;
    border-top: 1px solid rgba(232,0,28,.2);
  }

  .faq-nav__cta-title {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: .4rem;
  }

  .faq-nav__cta p {
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    margin: 0 0 .75rem;
    line-height: 1.5;
  }

  .faq-nav__cta-btn {
    display: block;
    background: #E8001C;
    color: #fff;
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    padding: .6rem;
    border-radius: 7px;
    text-decoration: none;
    margin-bottom: .5rem;
    transition: opacity .2s;
  }
  .faq-nav__cta-btn:hover { opacity: .88; }

  .faq-nav__cta-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    color: rgba(255,255,255,.6);
    font-size: .75rem;
    text-decoration: none;
    padding: .35rem;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 7px;
    transition: color .2s, border-color .2s;
  }
  .faq-nav__cta-tel:hover { color: #fff; border-color: rgba(255,255,255,.35); }

  /* Accordion desktop */
  .faq-item__trigger      { padding: 1.1rem 1.25rem; }
  .faq-item__q            { font-size: .9125rem; }
  .faq-item__answer-inner { padding: 1rem 1.25rem 1.25rem; font-size: .8875rem; }

  .faq-contact-band { padding: 3rem 0; }
  .faq-contact-band__text h2 { font-size: 1.25rem; }

}

/* =============================================================
   CONTACT — Styles spécifiques — Delta Motors
   Mobile-first : base = mobile, desktop via min-width
   ============================================================= */

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.cnt-hero {
  position: relative;
  background: #0a0a0a;
  padding: 2rem 0 2.5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(232,0,28,.12);
  width: 100%;
  box-sizing: border-box;
}

/* Texture noise subtile */
.cnt-hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: .6;
}

/* Accent rouge en haut à droite */
.cnt-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232,0,28,.18) 0%, transparent 70%);
  pointer-events: none;
}

.cnt-hero__inner {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.cnt-hero__eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #E8001C;
  margin: 0 0 .75rem;
}

.cnt-hero__title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.cnt-hero__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 520px;
}

.cnt-hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.cnt-badge {
  display: inline-flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: .3rem .75rem;
  border-radius: 999px;
}

/* ════════════════════════════════════════
   CANAUX DE CONTACT
════════════════════════════════════════ */
.cnt-channels {
  background: #f4f4f5;
  padding: 2rem 0;
  width: 100%;
  box-sizing: border-box;
}

.cnt-channels__grid {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: 100%;
  box-sizing: border-box;
}

/* Carte canal */
.cnt-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1.5px solid #eaeaea;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .18s;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.cnt-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #E8001C;
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}

.cnt-card:hover {
  border-color: rgba(232,0,28,.25);
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.cnt-card:hover::before { transform: scaleY(1); }

.cnt-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cnt-card--phone .cnt-card__icon  { background: rgba(232,0,28,.08); color: #E8001C; }
.cnt-card--email .cnt-card__icon  { background: rgba(59,130,246,.08); color: #3b82f6; }
.cnt-card--whatsapp .cnt-card__icon { background: rgba(37,211,102,.1); color: #25d366; }

.cnt-card__body  { flex: 1; min-width: 0; }

.cnt-card__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: .2rem;
}

.cnt-card__value {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cnt-card__note {
  font-size: .75rem;
  color: #888;
  margin-top: .15rem;
}

.cnt-card__arrow {
  flex-shrink: 0;
  color: #ccc;
  transition: color .2s, transform .2s;
}
.cnt-card:hover .cnt-card__arrow {
  color: #E8001C;
  transform: translateX(3px);
}

/* ════════════════════════════════════════
   INFOS PRATIQUES
════════════════════════════════════════ */
.cnt-info {
  background: #fff;
  padding: 2rem 0 3rem;
  width: 100%;
  box-sizing: border-box;
}

.cnt-info__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

/* Bloc info générique */
.cnt-info-block {
  width: 100%;
  box-sizing: border-box;
}

.cnt-info-block__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(232,0,28,.07);
  color: #E8001C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.cnt-info-block__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 1.25rem;
  letter-spacing: -.01em;
}

.cnt-info-block__note {
  font-size: .78rem;
  color: #999;
  line-height: 1.6;
  margin: 1rem 0 0;
  padding: .875rem;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 3px solid #eee;
}

/* Horaires */
.cnt-hours {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}

.cnt-hours__row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .9rem;
  font-size: .875rem;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  transition: background .15s;
}
.cnt-hours__row:last-child { border-bottom: none; }
.cnt-hours__row:hover { background: #fafafa; }

.cnt-hours__row--closed .cnt-hours__time {
  color: #ccc;
  font-style: italic;
}

.cnt-hours__day {
  font-weight: 600;
  color: #333;
  width: 80px;
  flex-shrink: 0;
}

.cnt-hours__dot {
  flex: 1;
  border-bottom: 1px dashed #e0e0e0;
  margin: 0 .25rem;
}

.cnt-hours__time {
  font-weight: 500;
  color: #111;
  white-space: nowrap;
}

/* Adresse */
.cnt-address {
  font-style: normal;
  font-size: .9rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}

.cnt-address__name {
  font-weight: 700;
  color: #111;
  font-size: .9375rem;
}

.cnt-map-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: #E8001C;
  text-decoration: none;
  padding: .5rem .875rem;
  border: 1.5px solid rgba(232,0,28,.2);
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: background .2s, border-color .2s;
}
.cnt-map-btn:hover {
  background: rgba(232,0,28,.05);
  border-color: rgba(232,0,28,.4);
}

/* Carte embarquée */
.cnt-map-embed {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}

/* Liens rapides */
.cnt-quicklinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.cnt-quicklink {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: .65rem .75rem;
  background: #f7f7f8;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: color .15s, background .15s, border-color .15s;
}
.cnt-quicklink:hover {
  color: #E8001C;
  background: rgba(232,0,28,.04);
  border-color: rgba(232,0,28,.15);
}
.cnt-quicklink svg { flex-shrink: 0; color: #bbb; }
.cnt-quicklink:hover svg { color: #E8001C; }

/* Infos légales compactes */
.cnt-legal-info {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}

.cnt-legal-info__title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #aaa;
  padding: .6rem .9rem .4rem;
}

.cnt-legal-info__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .9rem;
  font-size: .78rem;
  border-top: 1px solid #eee;
  gap: 1rem;
}
.cnt-legal-info__row span:first-child {
  color: #888;
  font-weight: 500;
  flex-shrink: 0;
}
.cnt-legal-info__row span:last-child {
  color: #333;
  font-weight: 600;
  text-align: right;
  word-break: break-all;
}

/* ════════════════════════════════════════
   TABLET ≥ 640px
════════════════════════════════════════ */
@media (min-width: 640px) {

  .cnt-hero   { padding: 2.5rem 0 3rem; }
  .cnt-hero__sub { font-size: .9375rem; }

  .cnt-channels { padding: 2.5rem 0; }
  .cnt-channels__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  /* Téléphone prend toute la largeur sur tablet */
  .cnt-card--phone { grid-column: 1 / -1; }

  .cnt-info { padding: 2.5rem 0 4rem; }

  .cnt-map-embed { height: 240px; }

}

/* ════════════════════════════════════════
   DESKTOP ≥ 960px
════════════════════════════════════════ */
@media (min-width: 960px) {

  .cnt-hero   { padding: 3.5rem 0 4rem; }
  .cnt-hero__sub { font-size: 1rem; }

  .cnt-channels { padding: 3rem 0; }
  .cnt-channels__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Téléphone reprend 1 colonne sur desktop */
  .cnt-card--phone { grid-column: auto; }

  .cnt-card__value { font-size: 1.0625rem; }

  .cnt-info { padding: 3.5rem 0 5rem; }

  .cnt-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
  }

  .cnt-map-embed { height: 200px; }

  .cnt-quicklinks { grid-template-columns: 1fr; gap: .4rem; }
  .cnt-quicklink  { font-size: .8375rem; }

}

/* ════════════════════════════════════════
   GRAND ÉCRAN ≥ 1200px
════════════════════════════════════════ */
@media (min-width: 1200px) {
  .cnt-info__grid { gap: 4rem; }
  .cnt-map-embed  { height: 220px; }
}

/* =============================================================
   NOS MAGASINS — Styles spécifiques — Delta Motors
   Mobile-first : base = mobile, desktop via min-width
   ============================================================= */

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.mag-hero {
  position: relative;
  background: #0a0a0a;
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid rgba(232,0,28,.12);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.mag-hero__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232,0,28,.15) 0%, transparent 70%);
  pointer-events: none;
}

.mag-hero__inner {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.mag-hero__eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #E8001C;
  margin: 0 0 .75rem;
}

.mag-hero__title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 .875rem;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.mag-hero__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

/* ════════════════════════════════════════
   PHOTOS
════════════════════════════════════════ */
.mag-photos {
  background: #111;
  padding: 1.75rem 0 0;
  width: 100%;
  box-sizing: border-box;
}

.mag-photos__grid {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: 100%;
  box-sizing: border-box;
}

.mag-photo {
  position: relative;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  /* Ratio 16:9 par défaut mobile */
  aspect-ratio: 16 / 9;
}

.mag-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.mag-photo:hover .mag-photo__img { transform: scale(1.02); }

/* Placeholder si image absente */
.mag-photo__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: rgba(255,255,255,.2);
  background: #1a1a1a;
  border: 2px dashed rgba(255,255,255,.1);
  border-radius: 12px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.mag-photo__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem .9rem;
  font-size: .73rem;
  color: rgba(255,255,255,.8);
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  font-weight: 500;
}

/* ════════════════════════════════════════
   INFOS MAGASIN
════════════════════════════════════════ */
.mag-info {
  background: #f4f4f5;
  padding: 2rem 0 3rem;
  width: 100%;
  box-sizing: border-box;
}

.mag-info__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* ── Blocs génériques ── */
.mag-block {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

.mag-block__head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
  padding-bottom: .875rem;
  border-bottom: 1px solid #f0f0f0;
}

.mag-block__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(232,0,28,.07);
  color: #E8001C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mag-block__title {
  font-size: .9375rem;
  font-weight: 700;
  color: #111;
  margin: 0;
  letter-spacing: -.01em;
}

/* ── Adresse ── */
.mag-address {
  font-style: normal;
  font-size: .9rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1rem;
}

.mag-map-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: #E8001C;
  text-decoration: none;
  padding: .5rem .875rem;
  border: 1.5px solid rgba(232,0,28,.2);
  border-radius: 8px;
  transition: background .2s, border-color .2s;
}
.mag-map-btn:hover {
  background: rgba(232,0,28,.05);
  border-color: rgba(232,0,28,.4);
}

/* ── Horaires ── */
.mag-hours {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #eee;
  border-radius: 9px;
  overflow: hidden;
}

.mag-hours__row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .9rem;
  font-size: .875rem;
  border-bottom: 1px solid #f2f2f2;
  background: #fff;
}
.mag-hours__row:last-child { border-bottom: none; }

.mag-hours__row--closed { background: #fafafa; }
.mag-hours__row--closed .mag-hours__time {
  color: #ccc;
  font-style: italic;
}

.mag-hours__day {
  font-weight: 600;
  color: #222;
  width: 82px;
  flex-shrink: 0;
  font-size: .84rem;
}

.mag-hours__line {
  flex: 1;
  border-bottom: 1px dashed #e0e0e0;
  margin: 0 .25rem;
}

.mag-hours__time {
  font-weight: 500;
  color: #111;
  white-space: nowrap;
  font-size: .84rem;
}

.mag-hours__time--open {
  color: #16a34a;
  font-weight: 700;
}

/* ── Contact ── */
.mag-contacts {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.mag-contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: .65rem .875rem;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.mag-contact-item:hover {
  background: rgba(232,0,28,.03);
  border-color: rgba(232,0,28,.15);
}

.mag-contact-item__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #aaa;
  flex-shrink: 0;
}

.mag-contact-item__value {
  font-size: .875rem;
  font-weight: 600;
  color: #111;
  text-align: right;
  word-break: break-all;
}

/* ── Carte ── */
.mag-map-embed {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #eee;
}

/* ── Services ── */
.mag-services {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.mag-services__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: .875rem;
}

.mag-services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.mag-services__list li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: #333;
  line-height: 1.45;
}

.mag-services__list svg { flex-shrink: 0; margin-top: .15rem; }

/* ════════════════════════════════════════
   TABLET ≥ 640px
════════════════════════════════════════ */
@media (min-width: 640px) {

  .mag-hero   { padding: 2.5rem 0 3rem; }
  .mag-hero__sub { font-size: .9375rem; }

  .mag-photos { padding: 2rem 0 0; }
  .mag-photos__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Sur tablet les 2 photos côte à côte — ratio 4:3 */
  .mag-photo { aspect-ratio: 4 / 3; }

  .mag-info { padding: 2.5rem 0 4rem; }

  .mag-info__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  /* Main prend toute la largeur sur tablet */
  .mag-info__main { grid-column: 1 / -1; }

  .mag-map-embed { height: 260px; }

}

/* ════════════════════════════════════════
   DESKTOP ≥ 960px
════════════════════════════════════════ */
@media (min-width: 960px) {

  .mag-hero { padding: 3.5rem 0 4rem; }
  .mag-hero__sub { font-size: 1rem; }

  .mag-photos { padding: 2.5rem 0 0; }

  /* Photo extérieure plus grande que l'intérieure */
  .mag-photos__grid {
    grid-template-columns: 3fr 2fr;
    gap: 1.25rem;
  }

  .mag-photo--ext { aspect-ratio: 16 / 9; }
  .mag-photo--int { aspect-ratio: 4 / 3; }

  .mag-info { padding: 3rem 0 5rem; }

  /* Layout principal : 2 colonnes */
  .mag-info__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
  }

  .mag-info__main {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .mag-info__side {
    position: sticky;
    top: 72px;
  }

  .mag-map-embed { height: 280px; }

}

/* ════════════════════════════════════════
   GRAND ÉCRAN ≥ 1200px
════════════════════════════════════════ */
@media (min-width: 1200px) {
  .mag-photos__grid { gap: 1.5rem; }
  .mag-info__layout { gap: 3.5rem; }
  .mag-map-embed    { height: 300px; }
}

/* =============================================================
   À PROPOS — Styles spécifiques — Delta Motors
   Mobile-first — direction éditoriale : sombre, bold, honnête
   ============================================================= */

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.ap-hero {
  position: relative;
  background: #080808;
  padding: 2rem 0 3rem;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Grille géométrique fond */
.ap-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Accent rouge bas gauche */
.ap-hero__accent {
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,0,28,.12) 0%, transparent 65%);
  pointer-events: none;
}

.ap-hero__inner {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.ap-hero__eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #E8001C;
  margin: 0 0 .875rem;
}

/* Layout hero : texte + photo fondateur */
.ap-hero__layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.ap-hero__title {
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1.25rem;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.ap-hero__title em {
  font-style: normal;
  color: #E8001C;
}

.ap-hero__intro {
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin: 0 0 2rem;
  max-width: 520px;
}

/* Stats hero */
.ap-hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.ap-stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.ap-stat__num {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
}

.ap-stat__label {
  font-size: .65rem;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Carte fondateur ── */
.ap-hero__founder-wrap {
  display: flex;
  justify-content: center;
}

.ap-founder-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 3 / 4;
}

.ap-founder-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap-founder-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .875rem;
  color: rgba(255,255,255,.2);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  border: 2px dashed rgba(255,255,255,.08);
  border-radius: 16px;
}

.ap-founder-card__badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.ap-founder-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}

.ap-founder-card__role {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

/* ── Citation ── */
.ap-quote {
  margin: 0;
  padding: 1.5rem;
  border-left: 3px solid #E8001C;
  background: rgba(255,255,255,.03);
  border-radius: 0 10px 10px 0;
}

.ap-quote__text {
  font-size: 1.0625rem;
  font-style: italic;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin: 0 0 .75rem;
}

.ap-quote__author {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}

/* ════════════════════════════════════════
   SECTION HEADS (réutilisable)
════════════════════════════════════════ */
.ap-section-head {
  margin-bottom: 2.5rem;
}

.ap-section-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #E8001C;
  margin: 0 0 .5rem;
}

.ap-section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #111;
  margin: 0;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.ap-section-head--light .ap-section-title { color: #fff; }
.ap-section-head--light .ap-section-eyebrow { opacity: .9; }

/* ════════════════════════════════════════
   TIMELINE
════════════════════════════════════════ */
.ap-timeline-section {
  background: #f5f5f5;
  padding: 3rem 0 3.5rem;
  width: 100%;
  box-sizing: border-box;
}

.ap-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ap-tl-item {
  display: flex;
  gap: 1.25rem;
  position: relative;
}

/* Colonne gauche : année + ligne verticale */
.ap-tl-item__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 56px;
}

.ap-tl-year {
  font-size: .78rem;
  font-weight: 800;
  color: #E8001C;
  letter-spacing: .04em;
  background: #fff;
  border: 2px solid #E8001C;
  border-radius: 6px;
  padding: .2rem .4rem;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
}

.ap-tl-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(#E8001C, #eee);
  margin-top: .4rem;
  min-height: 2rem;
}

.ap-tl-line--last {
  background: linear-gradient(#E8001C, transparent);
}

/* Colonne droite : contenu */
.ap-tl-item__content {
  flex: 1;
  min-width: 0;
  padding-bottom: 2.5rem;
}

.ap-tl-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid #eaeaea;
  color: #E8001C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ap-tl-item__icon--current {
  background: #E8001C;
  color: #fff;
  border-color: #E8001C;
}

.ap-tl-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 .75rem;
  letter-spacing: -.01em;
  line-height: 1.35;
}

.ap-tl-item__text {
  font-size: .8875rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

.ap-tl-item__link {
  color: #E8001C;
  font-weight: 600;
  text-decoration: none;
}
.ap-tl-item__link:hover { text-decoration: underline; }

.ap-tl-item__highlight {
  margin-top: 1rem;
}

.ap-tl-item__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: #E8001C;
  text-decoration: none;
  border: 1.5px solid rgba(232,0,28,.2);
  padding: .4rem .875rem;
  border-radius: 7px;
  transition: background .2s, border-color .2s;
}
.ap-tl-item__cta:hover {
  background: rgba(232,0,28,.05);
  border-color: rgba(232,0,28,.4);
}

.ap-tl-item__img-wrap {
  margin: 1.25rem 0 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.ap-tl-item__img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ════════════════════════════════════════
   VALEURS
════════════════════════════════════════ */
.ap-values {
  background: #111;
  padding: 3rem 0 3.5rem;
  width: 100%;
  box-sizing: border-box;
}

.ap-values__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ap-value-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color .2s, background .2s;
}
.ap-value-card:hover {
  border-color: rgba(232,0,28,.3);
  background: rgba(232,0,28,.04);
}

.ap-value-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(232,0,28,.1);
  color: #E8001C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ap-value-card__title {
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .625rem;
}

.ap-value-card__text {
  font-size: .8375rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════════════════
   SECTION FONDATEUR (portrait étendu)
════════════════════════════════════════ */
.ap-founder {
  background: #fff;
  padding: 3rem 0 3.5rem;
  width: 100%;
  box-sizing: border-box;
}

.ap-founder__layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

.ap-founder__figure {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 3 / 4;
  max-height: 480px;
}

.ap-founder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap-founder__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .875rem;
  color: #bbb;
  font-size: .8rem;
  font-weight: 500;
  border: 2px dashed #ddd;
  border-radius: 14px;
}

.ap-founder__figcaption {
  font-size: .72rem;
  color: #aaa;
  text-align: center;
  margin-top: .625rem;
  font-style: italic;
}

.ap-founder__name {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 900;
  color: #111;
  margin: 0 0 .3rem;
  letter-spacing: -.03em;
}

.ap-founder__role-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #E8001C;
  margin: 0 0 1.5rem;
}

.ap-founder__bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ap-founder__bio p {
  font-size: .9125rem;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

.ap-founder__links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.ap-founder__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  padding: .7rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.ap-founder__link:hover { opacity: .88; transform: translateY(-1px); }

.ap-founder__link--primary {
  background: #E8001C;
  color: #fff;
}

.ap-founder__link--outline {
  background: transparent;
  border: 1.5px solid #e0e0e0;
  color: #333;
}
.ap-founder__link--outline:hover { border-color: #E8001C; color: #E8001C; }

/* ════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════ */
.ap-cta {
  background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #1a0304 100%);
  padding: 3rem 0;
  width: 100%;
  box-sizing: border-box;
}

.ap-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
  box-sizing: border-box;
}

.ap-cta__title {
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 .625rem;
  letter-spacing: -.025em;
}

.ap-cta__sub {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0;
}

.ap-cta__actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: 100%;
}

.ap-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  padding: .875rem 1.5rem;
  border-radius: 9px;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity .2s, transform .15s;
}
.ap-cta__btn:hover { opacity: .88; transform: translateY(-1px); }

.ap-cta__btn--primary {
  background: #E8001C;
  color: #fff;
}

.ap-cta__btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
}

/* ════════════════════════════════════════
   TABLET ≥ 640px
════════════════════════════════════════ */
@media (min-width: 640px) {

  .ap-hero { padding: 3rem 0 4rem; }

  .ap-hero__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .ap-hero__text { flex: 1; }
  .ap-hero__founder-wrap { flex-shrink: 0; width: 260px; }
  .ap-founder-card { max-width: none; }

  .ap-quote { padding: 2rem; }
  .ap-quote__text { font-size: 1.125rem; }

  .ap-values__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .ap-founder__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .ap-founder__img-col { flex-shrink: 0; width: 280px; }
  .ap-founder__text-col { flex: 1; }
  .ap-founder__figure { max-height: none; }

  .ap-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .ap-cta__text { flex: 1; }
  .ap-cta__actions {
    flex-direction: column;
    width: auto;
    flex-shrink: 0;
  }
  .ap-cta__btn { width: 220px; }

  .ap-tl-item__side { width: 70px; }
  .ap-tl-year { font-size: .875rem; }
  .ap-tl-item__title { font-size: 1.0625rem; }

}

/* ════════════════════════════════════════
   DESKTOP ≥ 960px
════════════════════════════════════════ */
@media (min-width: 960px) {

  .ap-hero { padding: 4rem 0 5rem; }
  .ap-hero__founder-wrap { width: 320px; }

  .ap-timeline-section { padding: 4.5rem 0 5rem; }

  .ap-tl-item { gap: 2rem; }
  .ap-tl-item__side { width: 80px; }
  .ap-tl-year { font-size: .9375rem; padding: .3rem .6rem; }
  .ap-tl-item__title { font-size: 1.125rem; }
  .ap-tl-item__text { font-size: .9rem; }
  .ap-tl-item__img-wrap img { height: 260px; }

  .ap-values { padding: 4.5rem 0 5rem; }
  .ap-values__grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

  .ap-founder { padding: 5rem 0; }
  .ap-founder__img-col { width: 380px; }

  .ap-cta { padding: 4rem 0; }
  .ap-cta__actions { flex-direction: row; }
  .ap-cta__btn { width: auto; }

}

/* =============================================================
   BLOG AUTO — Styles spécifiques — Delta Motors
   Mobile-first — direction éditoriale magazine technique
   ============================================================= */

/* ════════════════════════════════════════
   HERO LISTE
════════════════════════════════════════ */
.blg-hero {
  position: relative;
  background: #0c0c0c;
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid rgba(232,0,28,.12);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Bande oblique rouge en arrière-plan */
.blg-hero__stripe {
  position: absolute;
  top: 0;
  right: -10%;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(232,0,28,.07) 100%);
  pointer-events: none;
}

.blg-hero__inner {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.blg-hero__eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #E8001C;
  margin: 0 0 .75rem;
}

.blg-hero__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 .875rem;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.blg-hero__title span {
  color: #E8001C;
}

.blg-hero__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

/* ════════════════════════════════════════
   FILTRES CATÉGORIES
════════════════════════════════════════ */
.blg-cats {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.blg-cats__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.blg-cats__inner::-webkit-scrollbar { display: none; }

.blg-cat {
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-block;
  padding: .75rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.blg-cat:hover         { color: #E8001C; }
.blg-cat--active       { color: #E8001C; border-bottom-color: #E8001C; }

/* ════════════════════════════════════════
   TAG générique (réutilisé partout)
════════════════════════════════════════ */
.blg-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #E8001C;
  background: rgba(232,0,28,.08);
  border: 1px solid rgba(232,0,28,.15);
  padding: .2rem .55rem;
  border-radius: 4px;
  margin-bottom: .75rem;
}

/* ════════════════════════════════════════
   ARTICLE À LA UNE
════════════════════════════════════════ */
.blg-featured {
  background: #f5f5f5;
  padding: 2rem 0;
}

.blg-featured__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s, transform .2s;
}
.blg-featured__card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-2px);
}

.blg-featured__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
}

.blg-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.blg-featured__card:hover .blg-featured__img { transform: scale(1.03); }

.blg-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  background: #f0f0f0;
}

.blg-featured__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #E8001C;
  color: #fff;
  padding: .3rem .7rem;
  border-radius: 4px;
}

.blg-featured__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.blg-featured__title {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #111;
  margin: 0 0 .75rem;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.blg-featured__chapeau {
  font-size: .9rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.blg-featured__meta {
  font-size: .75rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.blg-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 700;
  color: #E8001C;
  margin-top: auto;
}

/* ════════════════════════════════════════
   FILTRE BAR
════════════════════════════════════════ */
.blg-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: .625rem 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blg-filter-bar__label {
  font-size: .825rem;
  color: #444;
}

.blg-filter-bar__reset {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .775rem;
  font-weight: 600;
  color: #E8001C;
  text-decoration: none;
}
.blg-filter-bar__reset:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   GRILLE ARTICLES
════════════════════════════════════════ */
.blg-grid-section {
  background: #f5f5f5;
  padding: 2rem 0 3rem;
}

.blg-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.blg-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.blg-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.blg-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
  display: block;
}

.blg-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blg-card:hover .blg-card__img { transform: scale(1.04); }

.blg-card__cat {
  position: absolute;
  bottom: .625rem;
  left: .625rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(0,0,0,.65);
  color: #fff;
  padding: .2rem .55rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.blg-card__body {
  padding: 1.1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blg-card__meta {
  font-size: .72rem;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .5rem;
}

.blg-card__title {
  font-size: .9375rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 .5rem;
  line-height: 1.35;
  letter-spacing: -.01em;
}
.blg-card__title a { color: inherit; text-decoration: none; }
.blg-card__title a:hover { color: #E8001C; }

.blg-card__chapeau {
  font-size: .8125rem;
  color: #666;
  line-height: 1.65;
  margin: 0 0 .875rem;
  flex: 1;
}

.blg-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .775rem;
  font-weight: 700;
  color: #E8001C;
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s;
}
.blg-card__link:hover { gap: .6rem; }

/* ════════════════════════════════════════
   ÉTAT VIDE
════════════════════════════════════════ */
.blg-empty {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}

.blg-empty__icon {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.blg-empty__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 .75rem;
}

.blg-empty__text {
  font-size: .9rem;
  color: #777;
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.blg-empty__btn {
  display: inline-block;
  background: #E8001C;
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .2s;
}
.blg-empty__btn:hover { opacity: .88; }

/* ════════════════════════════════════════
   PAGINATION
════════════════════════════════════════ */
.blg-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.blg-page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #eee;
  color: #555;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.blg-page-btn:hover { border-color: #E8001C; color: #E8001C; }

.blg-page-nums {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.blg-page-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  background: #fff;
  border: 1px solid #eee;
  transition: border-color .15s, color .15s, background .15s;
}
.blg-page-num:hover     { border-color: #E8001C; color: #E8001C; }
.blg-page-num--active   { background: #E8001C; color: #fff; border-color: #E8001C; }

.blg-page-ellipsis {
  width: 40px;
  text-align: center;
  color: #bbb;
  font-size: .875rem;
}

/* ════════════════════════════════════════
   BANDE SUGGESTION
════════════════════════════════════════ */
.blg-suggest {
  background: linear-gradient(135deg, #0a0a0a, #1a0304);
  border-top: 1px solid rgba(232,0,28,.12);
  padding: 2.5rem 0;
}

.blg-suggest__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blg-suggest__text h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .4rem;
  letter-spacing: -.02em;
}

.blg-suggest__text p {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}

.blg-suggest__actions {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.blg-suggest__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 700;
  padding: .75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .2s;
  box-sizing: border-box;
}
.blg-suggest__btn:hover { opacity: .88; }

.blg-suggest__btn--primary {
  background: #E8001C;
  color: #fff;
}
.blg-suggest__btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75);
}

/* ════════════════════════════════════════
   ARTICLE INDIVIDUEL (blog-post.php)
════════════════════════════════════════ */

/* Hero article */
.bp-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.bp-hero__img-wrap {
  position: absolute;
  inset: 0;
  background: #111;
}

.bp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .5;
}

.bp-hero__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.15);
  background: #111;
}

.bp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(0,0,0,.8) 100%);
}

.bp-hero__inner {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  margin-top: auto;
}

.bp-hero__title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin: .75rem 0 1rem;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.bp-hero__chapeau {
  font-size: .9375rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin: 0 0 1.25rem;
  max-width: 680px;
}

.bp-hero__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

.bp-hero__author {
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* Layout article */
.bp-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

/* Contenu rédactionnel */
.bp-article { min-width: 0; }

.bp-content {
  font-size: .9375rem;
  line-height: 1.85;
  color: #333;
}

.bp-content h2 {
  font-size: 1.375rem;
  font-weight: 800;
  color: #111;
  margin: 2rem 0 .75rem;
  letter-spacing: -.02em;
  border-left: 3px solid #E8001C;
  padding-left: .875rem;
}

.bp-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin: 1.5rem 0 .5rem;
}

.bp-content p { margin: 0 0 1.25rem; }

.bp-content ul, .bp-content ol {
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}
.bp-content li { margin-bottom: .4rem; line-height: 1.7; }
.bp-content li::marker { color: #E8001C; }

.bp-content a { color: #E8001C; font-weight: 500; }
.bp-content a:hover { text-decoration: underline; }

.bp-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.5rem 0;
  display: block;
}

.bp-content blockquote {
  border-left: 3px solid #E8001C;
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  background: #f9f9f9;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}

.bp-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .875rem;
}
.bp-content th {
  background: #111;
  color: #fff;
  padding: .6rem .875rem;
  text-align: left;
  font-weight: 600;
}
.bp-content td {
  padding: .55rem .875rem;
  border-bottom: 1px solid #eee;
  color: #333;
}
.bp-content tr:nth-child(even) td { background: #fafafa; }

/* Footer article */
.bp-article__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.bp-share {
  display: flex;
  align-items: center;
  gap: .625rem;
}

.bp-share__label {
  font-size: .75rem;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.bp-share__btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.bp-share__btn:hover {
  border-color: #E8001C;
  color: #E8001C;
  background: rgba(232,0,28,.04);
}

.bp-back {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition: color .15s;
}
.bp-back:hover { color: #E8001C; }

/* Sidebar article */
.bp-sidebar__inner {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.25rem;
}

.bp-sidebar__title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 1rem;
}

.bp-related-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.bp-related-item {
  display: flex;
  gap: .75rem;
  text-decoration: none;
  align-items: flex-start;
  transition: opacity .2s;
}
.bp-related-item:hover { opacity: .8; }

.bp-related-item__img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 7px;
  flex-shrink: 0;
}

.bp-related-item__img-placeholder {
  width: 72px;
  height: 54px;
  background: #e8e8e8;
  border-radius: 7px;
  flex-shrink: 0;
}

.bp-related-item__body { flex: 1; min-width: 0; }

.bp-related-item__title {
  font-size: .8125rem;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  margin-bottom: .2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bp-related-item__meta {
  font-size: .7rem;
  color: #aaa;
}

.bp-sidebar__empty {
  font-size: .825rem;
  color: #aaa;
  margin: 0 0 1.5rem;
  font-style: italic;
}

.bp-sidebar__cta {
  background: linear-gradient(135deg, #0a0a0a, #1e0408);
  border-radius: 10px;
  padding: 1.1rem;
  text-align: center;
}

.bp-sidebar__cta-text {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .75rem;
  line-height: 1.5;
}

.bp-sidebar__cta-btn {
  display: block;
  background: #E8001C;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .6rem 1rem;
  border-radius: 7px;
  text-decoration: none;
  transition: opacity .2s;
}
.bp-sidebar__cta-btn:hover { opacity: .88; }

/* ════════════════════════════════════════
   TABLET ≥ 640px
════════════════════════════════════════ */
@media (min-width: 640px) {

  .blg-hero   { padding: 3rem 0 3.5rem; }

  .blg-featured { padding: 2.5rem 0; }
  .blg-featured__card {
    flex-direction: row;
    align-items: stretch;
  }
  .blg-featured__img-wrap {
    width: 50%;
    flex-shrink: 0;
    aspect-ratio: auto;
  }
  .blg-featured__body { padding: 2rem; }
  .blg-featured__title { font-size: 1.5rem; }

  .blg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .blg-suggest__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .blg-suggest__actions {
    flex-direction: row;
    flex-shrink: 0;
  }
  .blg-suggest__btn { width: auto; }

  .bp-hero { min-height: 420px; }
  .bp-layout { flex-direction: row; align-items: flex-start; }
  .bp-article { flex: 1; }
  .bp-sidebar { width: 260px; flex-shrink: 0; position: sticky; top: 72px; }

}

/* ════════════════════════════════════════
   DESKTOP ≥ 960px
════════════════════════════════════════ */
@media (min-width: 960px) {

  .blg-hero { padding: 3.5rem 0 4rem; }

  .blg-featured__img-wrap { width: 55%; }
  .blg-featured__title    { font-size: 1.875rem; }

  .blg-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  .blg-grid-section { padding: 2.5rem 0 4rem; }

  .bp-hero        { min-height: 500px; }
  .bp-content     { font-size: 1rem; }
  .bp-sidebar     { width: 300px; }

}

/* =============================================================
   PRESSE — Styles spécifiques — Delta Motors
   Mobile-first
   ============================================================= */

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.prs-hero {
  position: relative;
  background: #080808;
  padding: 2rem 0 3rem;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(232,0,28,.12);
}

.prs-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(232,0,28,.1) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 24px,
      rgba(255,255,255,.018) 24px,
      rgba(255,255,255,.018) 25px
    );
  pointer-events: none;
}

.prs-hero__inner {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.prs-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #E8001C;
  margin: 0 0 .75rem;
}

.prs-eyebrow--light { color: rgba(232,0,28,.8); }

.prs-hero__content { max-width: 580px; }

.prs-hero__title {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.prs-hero__title em {
  font-style: normal;
  color: #E8001C;
}

.prs-hero__sub {
  font-size: .9375rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.prs-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #E8001C;
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  padding: .8rem 1.5rem;
  border-radius: 9px;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.prs-hero__cta:hover { opacity: .88; transform: translateY(-1px); }

/* ════════════════════════════════════════
   CHIFFRES CLÉS
════════════════════════════════════════ */
.prs-numbers {
  background: #f5f5f5;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}

.prs-numbers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.prs-number-card {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1.25rem 1.1rem;
  background: #fff;
}

.prs-number-card__num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #E8001C;
  letter-spacing: -.03em;
  line-height: 1;
}

.prs-number-card__label {
  font-size: .72rem;
  color: #888;
  line-height: 1.4;
}

/* ════════════════════════════════════════
   À PROPOS (pitch média)
════════════════════════════════════════ */
.prs-about {
  background: #fff;
  padding: 2.5rem 0 3rem;
}

.prs-section-title {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #111;
  margin: .4rem 0 1.25rem;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.prs-about__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.prs-about__text p {
  font-size: .9125rem;
  color: #444;
  line-height: 1.8;
  margin: 0 0 1rem;
}
.prs-about__text a { color: #E8001C; font-weight: 500; text-decoration: none; }
.prs-about__text a:hover { text-decoration: underline; }

.prs-about__link {
  display: inline-block;
  font-size: .825rem;
  font-weight: 700;
  color: #E8001C;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(232,0,28,.25);
  padding-bottom: .1rem;
  transition: border-color .2s;
}
.prs-about__link:hover { border-color: #E8001C; }

/* Fiche identité */
.prs-id-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
}

.prs-id-card__title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #aaa;
  padding: .75rem 1rem .4rem;
}

.prs-id-card__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  padding: .55rem 1rem;
  border-top: 1px solid #eee;
  font-size: .8125rem;
}
.prs-id-card__row span:first-child { color: #888; font-weight: 500; flex-shrink: 0; }
.prs-id-card__row span:last-child  { color: #222; font-weight: 600; text-align: right; word-break: break-word; }
.prs-id-card__row a { color: #E8001C; text-decoration: none; }
.prs-id-card__row a:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   KIT MÉDIA
════════════════════════════════════════ */
.prs-kit {
  background: #f5f5f5;
  padding: 2.5rem 0 3rem;
}

.prs-kit__head { margin-bottom: 1.75rem; }

.prs-kit__intro {
  font-size: .875rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  max-width: 580px;
}

.prs-kit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Carte kit */
.prs-kit-item {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.prs-kit-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); }

.prs-kit-item--featured {
  border-color: rgba(232,0,28,.2);
  box-shadow: 0 0 0 2px rgba(232,0,28,.07);
}

.prs-kit-item__preview {
  width: 100%;
  aspect-ratio: 16 / 8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prs-kit-item__preview--dark  { background: #111; }
.prs-kit-item__preview--light { background: #f8f8f8; border-bottom: 1px solid #eee; }
.prs-kit-item__preview--img   { background: #e8e8e8; }

.prs-kit-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prs-kit-item__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.3);
  font-size: .72rem;
  letter-spacing: .04em;
}
.prs-kit-item__placeholder--dark  { color: #bbb; }
.prs-kit-item__placeholder--photo { color: #aaa; }

.prs-kit-item__info {
  padding: .875rem 1rem .5rem;
  flex: 1;
}

.prs-kit-item__name {
  font-size: .875rem;
  font-weight: 700;
  color: #111;
  margin-bottom: .2rem;
}

.prs-kit-item__formats {
  font-size: .72rem;
  color: #aaa;
}

.prs-kit-item__dl {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 1rem 1rem;
  padding: .6rem .875rem;
  border-radius: 7px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  background: #f5f5f5;
  color: #333;
  border: 1px solid #eee;
  transition: background .15s, border-color .15s, color .15s;
  justify-content: center;
}
.prs-kit-item__dl:hover {
  background: rgba(232,0,28,.05);
  border-color: rgba(232,0,28,.2);
  color: #E8001C;
}

.prs-kit-item__dl--primary {
  background: #E8001C;
  color: #fff;
  border-color: #E8001C;
}
.prs-kit-item__dl--primary:hover {
  background: #c5001a;
  border-color: #c5001a;
  color: #fff;
}

/* Charte utilisation */
.prs-usage {
  display: flex;
  gap: .875rem;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  font-size: .8125rem;
  line-height: 1.65;
  color: #6d4c00;
  align-items: flex-start;
}

.prs-usage__icon { flex-shrink: 0; color: #f59e0b; margin-top: .1rem; }
.prs-usage__text strong { font-weight: 700; }

/* ════════════════════════════════════════
   COMMUNIQUÉS DE PRESSE
════════════════════════════════════════ */
.prs-releases {
  background: #fff;
  padding: 2.5rem 0 3rem;
}

.prs-releases__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
}

.prs-release {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s;
}
.prs-release:last-child { border-bottom: none; }
.prs-release:hover { background: #fafafa; }

.prs-release__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  background: #f5f5f5;
  border-radius: 8px;
  padding: .5rem .6rem;
  min-width: 44px;
}

.prs-release__day {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
  letter-spacing: -.02em;
}

.prs-release__month {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #E8001C;
  letter-spacing: .06em;
}

.prs-release__year {
  font-size: .6rem;
  color: #aaa;
  margin-top: .1rem;
}

.prs-release__body { flex: 1; min-width: 0; }

.prs-release__title {
  font-size: .9375rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 .4rem;
  line-height: 1.35;
}

.prs-release__chapeau {
  font-size: .8rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

.prs-release__dl {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  font-size: .65rem;
  font-weight: 700;
  color: #E8001C;
  text-decoration: none;
  border: 1.5px solid rgba(232,0,28,.2);
  padding: .5rem .625rem;
  border-radius: 7px;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.prs-release__dl:hover {
  background: rgba(232,0,28,.05);
  border-color: #E8001C;
}

/* État vide */
.prs-releases__empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border: 1px dashed #ddd;
  border-radius: 12px;
}

.prs-releases__empty-icon { color: #ccc; margin-bottom: 1.25rem; }

.prs-releases__empty-text {
  font-size: .9rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════════════════
   CONTACT PRESSE
════════════════════════════════════════ */
.prs-contact {
  background: linear-gradient(135deg, #080808 0%, #111 50%, #1a0304 100%);
  padding: 3rem 0;
  border-top: 1px solid rgba(232,0,28,.12);
}

.prs-contact__layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

.prs-contact__title {
  font-size: clamp(1.4rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin: .4rem 0 1rem;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.prs-contact__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin: 0 0 .75rem;
}
.prs-contact__sub:last-child { margin-bottom: 0; }

.prs-contact__cards {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.prs-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, background .2s;
}
.prs-contact-card:hover:not(.prs-contact-card--addr) {
  border-color: rgba(232,0,28,.3);
  background: rgba(232,0,28,.04);
}

.prs-contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232,0,28,.12);
  color: #E8001C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prs-contact-card__body { flex: 1; min-width: 0; }

.prs-contact-card__label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .2rem;
}

.prs-contact-card__value {
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
}

.prs-contact-card__note {
  font-size: .73rem;
  color: rgba(255,255,255,.35);
  margin-top: .15rem;
}

.prs-contact-card__arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,.25);
  transition: color .2s, transform .2s;
  margin-top: .25rem;
}
.prs-contact-card:hover .prs-contact-card__arrow {
  color: #E8001C;
  transform: translateX(3px);
}

/* ════════════════════════════════════════
   TABLET ≥ 640px
════════════════════════════════════════ */
@media (min-width: 640px) {

  .prs-hero   { padding: 3rem 0 4rem; }

  .prs-numbers__grid { grid-template-columns: repeat(4, 1fr); }
  .prs-number-card__num { font-size: 1.875rem; }

  .prs-about { padding: 3rem 0 3.5rem; }
  .prs-about__layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
  }

  .prs-kit__grid { grid-template-columns: 1fr 1fr; }

  .prs-contact__layout { flex-direction: row; gap: 3rem; align-items: flex-start; }
  .prs-contact__text   { flex: 1; }
  .prs-contact__cards  { flex-shrink: 0; width: 320px; }

}

/* ════════════════════════════════════════
   DESKTOP ≥ 960px
════════════════════════════════════════ */
@media (min-width: 960px) {

  .prs-hero { padding: 4rem 0 5rem; }

  .prs-about { padding: 4rem 0 4.5rem; }
  .prs-about__layout { grid-template-columns: 1fr 300px; gap: 4rem; }

  .prs-kit { padding: 4rem 0 4.5rem; }
  .prs-kit__grid { grid-template-columns: repeat(4, 1fr); }

  .prs-releases { padding: 4rem 0 4.5rem; }

  .prs-contact { padding: 5rem 0; }
  .prs-contact__cards { width: 360px; }

  .prs-release__title   { font-size: 1rem; }

}

/* =============================================================
   ESPACE PRO — Styles spécifiques — Delta Motors
   Mobile-first
   ============================================================= */

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.pro-hero {
  position: relative;
  background: #080808;
  padding: 2rem 0 3rem;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(232,0,28,.12);
}

.pro-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 100% 40%, rgba(232,0,28,.1) 0%, transparent 60%),
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,.015) 30px,
      rgba(255,255,255,.015) 31px
    );
  pointer-events: none;
}

.pro-hero__inner {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.pro-hero__layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: .875rem;
}

.pro-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #E8001C;
  margin: 0 0 .7rem;
  display: block;
}
.pro-eyebrow--light { color: rgba(232,0,28,.85); }

.pro-hero__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -.04em;
  line-height: 1.08;
}
.pro-hero__title em { font-style: normal; color: #E8001C; }

.pro-hero__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.72;
  margin: 0 0 2rem;
  max-width: 500px;
}

.pro-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* Panneau stats */
.pro-hero__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
}

.pro-hero__panel-item {
  background: rgba(255,255,255,.04);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transition: background .2s;
}
.pro-hero__panel-item:hover { background: rgba(232,0,28,.08); }

.pro-hero__panel-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: #E8001C;
  letter-spacing: -.04em;
  line-height: 1;
}

.pro-hero__panel-label {
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── Boutons ── */
.pro-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 700;
  padding: .8rem 1.5rem;
  border-radius: 9px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s, transform .15s;
}
.pro-btn:hover { opacity: .88; transform: translateY(-1px); }

.pro-btn--primary { background: #E8001C; color: #fff; }
.pro-btn--outline { background: transparent; border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); }
.pro-btn--ghost   { background: transparent; border: 1.5px solid rgba(255,255,255,.15); color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════
   SECTION TITLES (réutilisable)
════════════════════════════════════════ */
.pro-section-title {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #111;
  margin: .35rem 0 1.5rem;
  letter-spacing: -.025em;
  line-height: 1.2;
}
.pro-section-title--light { color: #fff; }

/* ════════════════════════════════════════
   PROFILS ÉLIGIBLES
════════════════════════════════════════ */
.pro-who {
  background: #fff;
  padding: 2.5rem 0 3rem;
}

.pro-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .625rem;
  margin-bottom: 1.5rem;
}

.pro-profil {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: .875rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: #222;
  transition: border-color .15s, background .15s;
}
.pro-profil:hover { border-color: rgba(232,0,28,.2); background: rgba(232,0,28,.03); }

.pro-profil__emoji { font-size: 1.2rem; flex-shrink: 0; }

.pro-who__note {
  font-size: .8rem;
  color: #888;
  line-height: 1.7;
  background: #f9f9f9;
  border-left: 3px solid #e0e0e0;
  padding: .875rem 1rem;
  border-radius: 0 8px 8px 0;
  margin: 0;
}

/* ════════════════════════════════════════
   AVANTAGES
════════════════════════════════════════ */
.pro-avantages {
  background: #111;
  padding: 3rem 0;
}

.pro-avantages__grid {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.pro-avantage-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.4rem;
  transition: border-color .2s, background .2s;
}
.pro-avantage-card:hover {
  border-color: rgba(232,0,28,.25);
  background: rgba(232,0,28,.04);
}

.pro-avantage-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232,0,28,.1);
  color: #E8001C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .875rem;
}

.pro-avantage-card__titre {
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .5rem;
}

.pro-avantage-card__texte {
  font-size: .8375rem;
  color: rgba(255,255,255,.47);
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════════════════
   TARIFS
════════════════════════════════════════ */
.pro-tarifs {
  background: #f5f5f5;
  padding: 2.5rem 0 3rem;
}

.pro-tarifs__intro {
  font-size: .875rem;
  color: #666;
  line-height: 1.7;
  margin: -.75rem 0 1.5rem;
  max-width: 560px;
}

.pro-tarifs__table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.pro-tarifs__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: .875rem;
  min-width: 480px;
}

.pro-tarifs__table thead { background: #111; }
.pro-tarifs__table thead th {
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .75rem 1rem;
  text-align: left;
  white-space: nowrap;
}

.pro-tarifs__table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background .15s;
}
.pro-tarifs__table tbody tr:last-child { border-bottom: none; }
.pro-tarifs__table tbody tr:hover:not(.pro-tarifs__tr--highlight) { background: #fafafa; }

.pro-tarifs__table td { padding: .75rem 1rem; color: #333; vertical-align: top; }

.pro-tarifs__remise {
  font-weight: 800;
  color: #E8001C;
  white-space: nowrap;
}

.pro-tarifs__avantages {
  font-size: .8125rem;
  color: #777;
}

.pro-tarifs__tr--highlight {
  background: #fff8f8 !important;
}
.pro-tarifs__tr--highlight td:first-child strong { color: #E8001C; }

.pro-tarifs__note {
  font-size: .75rem;
  color: #aaa;
  margin: 0;
  line-height: 1.6;
}

/* ════════════════════════════════════════
   ÉTAPES
════════════════════════════════════════ */
.pro-steps {
  background: #fff;
  padding: 2.5rem 0 3rem;
}

.pro-steps__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pro-step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color .2s;
}
.pro-step:hover { border-color: rgba(232,0,28,.15); }

.pro-step__num {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(232,0,28,.2);
  letter-spacing: -.05em;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.pro-step__titre {
  font-size: .9375rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 .375rem;
}

.pro-step__texte {
  font-size: .8375rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.pro-faq {
  background: #f5f5f5;
  padding: 2.5rem 0 3rem;
}

.pro-faq__list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.pro-faq-item {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 9px;
  overflow: hidden;
  transition: border-color .2s;
}
.pro-faq-item--open { border-color: rgba(232,0,28,.2); box-shadow: 0 4px 14px rgba(232,0,28,.06); }

.pro-faq-item__trigger {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .875rem;
  font-weight: 600;
  color: #111;
  line-height: 1.45;
  transition: background .15s;
}
.pro-faq-item__trigger:hover { background: #fafafa; }
.pro-faq-item--open .pro-faq-item__trigger { color: #E8001C; background: #fafafa; }

.pro-faq-item__arrow {
  flex-shrink: 0;
  color: #ccc;
  margin-top: .1rem;
  transition: transform .22s cubic-bezier(.4,0,.2,1), color .2s;
}
.pro-faq-item--open .pro-faq-item__arrow { transform: rotate(180deg); color: #E8001C; }

.pro-faq-item__answer-inner {
  padding: .875rem 1.1rem 1rem;
  font-size: .8375rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid #f0f0f0;
}

/* ════════════════════════════════════════
   CTA BAND
════════════════════════════════════════ */
.pro-cta-band {
  background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #1a0304 100%);
  border-top: 1px solid rgba(232,0,28,.12);
  padding: 2.5rem 0;
}

.pro-cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pro-cta-band__text h2 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 .4rem;
  letter-spacing: -.02em;
}
.pro-cta-band__text p {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}

.pro-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* ════════════════════════════════════════
   TABLET ≥ 640px
════════════════════════════════════════ */
@media (min-width: 640px) {

  .pro-hero { padding: 3rem 0 4rem; }
  .pro-hero__layout { flex-direction: row; align-items: center; gap: 3rem; }
  .pro-hero__content { flex: 1; }
  .pro-hero__panel { flex-shrink: 0; width: 260px; }

  .pro-who__grid { grid-template-columns: repeat(3, 1fr); }

  .pro-avantages__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .pro-steps__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .pro-cta-band { padding: 3rem 0; }
  .pro-cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .pro-cta-band__text { flex: 1; }
}

/* ════════════════════════════════════════
   DESKTOP ≥ 960px
════════════════════════════════════════ */
@media (min-width: 960px) {

  .pro-hero { padding: 4rem 0 5rem; }
  .pro-hero__panel { width: 300px; }
  .pro-hero__panel-num { font-size: 2.25rem; }

  .pro-who__grid { grid-template-columns: repeat(6, 1fr); }
  .pro-profil { flex-direction: column; text-align: center; padding: 1.25rem .875rem; gap: .5rem; }

  .pro-avantages { padding: 4rem 0; }
  .pro-avantages__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

  .pro-steps { padding: 4rem 0; }
  .pro-steps__grid { grid-template-columns: repeat(4, 1fr); }
  .pro-step { flex-direction: column; }

  .pro-faq { padding: 4rem 0; }

}

/* =============================================================
   PARTENAIRES — Styles spécifiques — Delta Motors
   Mobile-first
   ============================================================= */

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.ptr-hero {
  position: relative;
  background: #080808;
  padding: 2rem 0 3rem;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(232,0,28,.12);
}

.ptr-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(232,0,28,.1) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 28px,
      rgba(255,255,255,.015) 28px,
      rgba(255,255,255,.015) 29px
    );
  pointer-events: none;
}

.ptr-hero__inner {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.ptr-hero__content { max-width: 620px; }

.ptr-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #E8001C;
  margin: 0 0 .7rem;
  display: block;
}
.ptr-eyebrow--light { color: rgba(232,0,28,.85); }

.ptr-hero__title {
  font-size: clamp(1.875rem, 5.5vw, 3.25rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -.04em;
  line-height: 1.1;
}
.ptr-hero__title em { font-style: normal; color: #E8001C; }

.ptr-hero__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.72;
  margin: 0 0 2rem;
}

/* Stats hero */
.ptr-hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.ptr-stat {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.ptr-stat__num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
}

.ptr-stat__label {
  font-size: .64rem;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ════════════════════════════════════════
   ENGAGEMENTS
════════════════════════════════════════ */
.ptr-engagements {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid #eee;
}

.ptr-engagements__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ptr-engagement {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ptr-engagement__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232,0,28,.07);
  color: #E8001C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ptr-engagement__titre {
  font-size: .9375rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 .375rem;
  letter-spacing: -.01em;
}

.ptr-engagement__texte {
  font-size: .8375rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════════════════
   SECTION TITLE
════════════════════════════════════════ */
.ptr-section-title {
  font-size: clamp(1.2rem, 3.5vw, 1.875rem);
  font-weight: 800;
  color: #111;
  margin: .35rem 0 2rem;
  letter-spacing: -.025em;
  line-height: 1.2;
}

/* ════════════════════════════════════════
   GRILLE PARTENAIRES
════════════════════════════════════════ */
.ptr-grid-section {
  background: #f5f5f5;
  padding: 2.5rem 0 3.5rem;
}

.ptr-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── Carte partenaire ── */
.ptr-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 1.5rem;
  transition: box-shadow .2s, border-color .2s;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.ptr-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
  border-color: rgba(232,0,28,.15);
}

/* En-tête carte */
.ptr-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.ptr-card__logo-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ptr-card__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  box-sizing: border-box;
  display: block;
}

.ptr-card__initiales {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  border-radius: 12px;
}

.ptr-card__head-info {
  flex: 1;
  min-width: 0;
}

.ptr-card__nom {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 .2rem;
  letter-spacing: -.015em;
}

.ptr-card__pays {
  font-size: .75rem;
  color: #888;
  font-weight: 500;
}

.ptr-card__cat {
  flex-shrink: 0;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #E8001C;
  background: rgba(232,0,28,.07);
  border: 1px solid rgba(232,0,28,.12);
  padding: .2rem .55rem;
  border-radius: 5px;
  align-self: flex-start;
}

/* Description */
.ptr-card__desc {
  font-size: .875rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* Tags spécialités */
.ptr-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.ptr-card__tag {
  font-size: .72rem;
  font-weight: 600;
  color: #555;
  background: #f0f0f0;
  border: 1px solid #e8e8e8;
  padding: .2rem .6rem;
  border-radius: 5px;
  transition: background .15s, color .15s;
}
.ptr-card:hover .ptr-card__tag {
  background: rgba(232,0,28,.05);
  border-color: rgba(232,0,28,.12);
  color: #444;
}

/* Footer carte */
.ptr-card__footer {
  padding-top: .875rem;
  border-top: 1px solid #f0f0f0;
}

.ptr-card__depuis {
  font-size: .72rem;
  color: #bbb;
  font-style: italic;
}

/* ════════════════════════════════════════
   DEVENIR PARTENAIRE
════════════════════════════════════════ */
.ptr-devenir {
  background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #1a0304 100%);
  border-top: 1px solid rgba(232,0,28,.12);
  padding: 3rem 0;
}

.ptr-devenir__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.ptr-devenir__title {
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: .4rem 0 .875rem;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.ptr-devenir__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.ptr-devenir__criteres {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.ptr-devenir__criteres li {
  font-size: .8375rem;
  color: rgba(255,255,255,.55);
  padding-left: 1.25rem;
  position: relative;
}
.ptr-devenir__criteres li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8001C;
}

.ptr-devenir__btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  background: #E8001C;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  padding: .875rem 1.75rem;
  border-radius: 9px;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  margin-bottom: 1rem;
}
.ptr-devenir__btn:hover { opacity: .88; transform: translateY(-1px); }

.ptr-devenir__note {
  font-size: .775rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════
   TABLET ≥ 640px
════════════════════════════════════════ */
@media (min-width: 640px) {

  .ptr-hero { padding: 3rem 0 3.5rem; }
  .ptr-stat__num { font-size: 1.875rem; }

  .ptr-engagements__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .ptr-engagement { flex-direction: column; }
  .ptr-engagement__icon { margin-bottom: .25rem; }

  .ptr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .ptr-devenir__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .ptr-devenir__text { flex: 1; }
  .ptr-devenir__action { flex-shrink: 0; width: 260px; padding-top: 3rem; }

}

/* ════════════════════════════════════════
   DESKTOP ≥ 960px
════════════════════════════════════════ */
@media (min-width: 960px) {

  .ptr-hero { padding: 4rem 0 4.5rem; }

  .ptr-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .ptr-devenir { padding: 4rem 0; }
  .ptr-devenir__action { width: 300px; }

  .ptr-card__head { flex-wrap: nowrap; }

}
/* ============================================================
   PAGE WRAP — base commune pour panier, favoris, checkout
============================================================ */
.page-wrap {
  min-height: 70vh;
  padding: 40px 0 80px;
  background: var(--grey-bg);
}
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.page-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--coal);
  margin: 0;
}
.page-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-mid);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 12px 24px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; border: none; cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--trans), transform 0.1s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary:hover  { background: var(--red-dark); color: var(--white); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary.btn-block { width: 100%; justify-content: center; }
.btn-primary.btn-success { background: #16a34a; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); color: var(--coal);
  padding: 11px 20px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; border: 1.5px solid var(--grey-border);
  cursor: pointer; font-family: var(--font-body);
  transition: border-color var(--trans), color var(--trans);
  text-decoration: none; white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--coal); }
.btn-ghost.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn-ghost.btn-back { color: var(--grey-dark); }
.btn-continue { font-size: 13px; font-weight: 600; color: var(--red); text-decoration: none; }
.btn-continue:hover { text-decoration: underline; }
.btn-link { background: none; border: none; color: var(--red); font-size: 12px; font-weight: 600; cursor: pointer; text-decoration: underline; padding: 0; }
.btn-next { margin-left: auto; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field.full { grid-column: span 2; }
.field-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--grey-dark); }
.field-input {
  height: 44px; padding: 0 14px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius); font-size: 14px;
  color: var(--coal); background: var(--white);
  font-family: var(--font-body); outline: none;
  transition: border-color var(--trans);
}
textarea.field-input { height: auto; padding: 10px 14px; resize: vertical; }
.field-input:focus { border-color: var(--red); }
.field-input.error { border-color: var(--red); background: #fff5f5; }
.field-select-wrap { position: relative; }
.field-select {
  width: 100%; height: 44px; padding: 0 36px 0 14px;
  border: 1.5px solid var(--grey-border); border-radius: var(--radius);
  font-size: 14px; color: var(--coal); background: var(--white);
  font-family: var(--font-body); outline: none; appearance: none;
  cursor: pointer; transition: border-color var(--trans);
}
.field-select:focus { border-color: var(--red); }
.field-select-arrow { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--grey-mid); }
.field-hint { font-size: 11px; color: var(--grey-mid); }
.field-hint-inline { font-size: 10px; color: var(--grey-mid); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field-error { font-size: 11px; color: var(--red); margin-top: 2px; }
.req { color: var(--red); }
.color-green { color: #16a34a !important; font-weight: 700; }

/* ============================================================
   PANIER
============================================================ */
.cart-shipping-bar {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  padding: 14px 20px;
  margin-bottom: 24px;
}
.cart-shipping-bar__track {
  height: 6px; background: var(--grey-border); border-radius: 3px; overflow: hidden; margin-bottom: 8px;
}
.cart-shipping-bar__fill {
  height: 100%; background: var(--red); border-radius: 3px;
  transition: width 0.4s ease;
}
.cart-shipping-bar__label { font-size: 12px; color: var(--grey-dark); margin: 0; }

.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }

.cart-table-head {
  display: grid;
  grid-template-columns: 1fr 130px 100px 100px 36px;
  gap: 12px;
  padding: 10px 16px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--grey-mid);
  background: var(--grey-bg); border-radius: 6px; margin-bottom: 2px;
}
.cart-th-qty, .cart-th-price, .cart-th-total { text-align: center; }

.cart-item-row {
  display: grid;
  grid-template-columns: 1fr 130px 100px 100px 36px;
  gap: 12px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 8px;
  transition: box-shadow var(--trans);
}
.cart-item-row:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }

.cart-item-info { display: flex; align-items: center; gap: 14px; min-width: 0; }
.cart-item-icon { width: 56px; height: 48px; flex-shrink: 0; background: var(--grey-bg); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--grey-light); }
.cart-item-icon svg { width: 36px; height: 36px; }
.cart-item-ref { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey-mid); }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--coal); line-height: 1.3; }
.cart-item-unit { font-size: 10px; color: var(--grey-mid); margin-top: 2px; }
.cart-item-price-unit { text-align: center; font-size: 13px; color: var(--grey-dark); font-weight: 500; }
.cart-item-total { text-align: center; font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--red); }
.cart-item-remove { width: 32px; height: 32px; border-radius: 50%; background: var(--grey-bg); border: 1px solid var(--grey-border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--grey-mid); transition: all var(--trans); }
.cart-item-remove:hover { background: #fff0f2; border-color: var(--red); color: var(--red); }

.qty-control { display: flex; align-items: center; border: 1.5px solid var(--grey-border); border-radius: var(--radius); overflow: hidden; height: 36px; }
.qty-btn { width: 32px; height: 100%; background: var(--grey-bg); border: none; font-size: 18px; color: var(--coal); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--trans), color var(--trans); }
.qty-btn:hover { background: var(--grey-border); color: var(--red); }
.qty-input { width: 38px; height: 100%; border: none; border-left: 1.5px solid var(--grey-border); border-right: 1.5px solid var(--grey-border); text-align: center; font-size: 13px; font-weight: 700; color: var(--coal); font-family: var(--font-body); outline: none; -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.cart-empty { text-align: center; padding: 64px 24px; }
.cart-empty svg { color: var(--grey-light); margin: 0 auto 20px; display: block; }
.cart-empty h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--coal); margin-bottom: 8px; }
.cart-empty p { color: var(--grey-mid); font-size: 14px; margin-bottom: 24px; }

.cart-actions { display: flex; gap: 12px; margin-top: 8px; }

.cart-summary-box { background: var(--white); border: 1px solid var(--grey-border); border-radius: 8px; padding: 24px; }
.cart-summary-title { font-family: var(--font-display); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--coal); margin-bottom: 20px; }
.cart-summary-lines { display: flex; flex-direction: column; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--grey-border); margin-bottom: 16px; }
.cart-summary-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--grey-dark); }
.cart-summary-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-summary-total span:first-child { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; color: var(--coal); }
.cart-total-amount { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--red); }
.cart-payment-icons { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 16px 0; padding-top: 16px; border-top: 1px solid var(--grey-border); }
.cart-reassurance { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; }
.cart-reassurance li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--grey-dark); }
.cart-eu-note { margin-top: 12px; font-size: 11px; color: var(--grey-mid); background: var(--grey-bg); border-radius: 4px; padding: 10px 14px; line-height: 1.6; }
.cart-eu-note a { color: var(--red); }

/* ============================================================
   FAVORIS
============================================================ */
.wishlist-layout { max-width: 860px; }
.wishlist-empty { text-align: center; padding: 64px 24px; }
.wishlist-empty svg { color: var(--grey-light); margin: 0 auto 20px; display: block; }
.wishlist-empty h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--coal); margin-bottom: 8px; }
.wishlist-empty p { color: var(--grey-mid); font-size: 14px; margin-bottom: 24px; }

.wl-item-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: 6px; padding: 16px; margin-bottom: 8px;
  transition: box-shadow var(--trans), opacity var(--trans);
}
.wl-item-row:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.wl-item-icon { width: 52px; height: 44px; flex-shrink: 0; background: var(--grey-bg); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--grey-light); }
.wl-item-icon svg { width: 34px; height: 34px; }
.wl-item-info { flex: 1; min-width: 0; }
.wl-item-ref { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey-mid); }
.wl-item-name { font-size: 13px; font-weight: 600; color: var(--coal); line-height: 1.3; margin: 2px 0 4px; }
.wl-item-dispo { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 3px; }
.wl-item-price { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--red); flex-shrink: 0; }
.wl-ttc { font-size: 10px; font-weight: 400; color: var(--grey-mid); font-family: var(--font-body); margin-left: 2px; }
.wl-item-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; }
.wishlist-bulk-actions { display: flex; gap: 12px; margin-top: 20px; }

/* ============================================================
   CHECKOUT
============================================================ */
.checkout-container { max-width: 1100px; }

.checkout-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 36px;
}
.checkout-step {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex: 1; max-width: 160px;
}
.checkout-step__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grey-border); color: var(--grey-mid);
  font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), color var(--trans);
}
.checkout-step__label { font-size: 12px; font-weight: 600; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.5px; }
.checkout-step.is-active .checkout-step__num { background: var(--red); color: var(--white); }
.checkout-step.is-active .checkout-step__label { color: var(--coal); }
.checkout-step.is-done .checkout-step__num { background: var(--coal); color: var(--white); }
.checkout-step.is-done .checkout-step__label { color: var(--coal); }
.checkout-steps__sep { flex: 1; max-width: 80px; height: 2px; background: var(--grey-border); margin-bottom: 20px; transition: background var(--trans); }

.checkout-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }

.checkout-panel {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: 8px; padding: 28px;
}
.checkout-panel__title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  text-transform: uppercase; color: var(--coal);
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-border);
}
.checkout-panel__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--grey-border); gap: 12px;
}

/* Livraison */
.shipping-options { margin-top: 24px; }
.shipping-options__title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--grey-dark); margin-bottom: 12px; }
.shipping-option {
  display: flex; align-items: center; gap: 14px;
  border: 1.5px solid var(--grey-border); border-radius: var(--radius);
  padding: 14px 18px; margin-bottom: 8px; cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
}
.shipping-option input[type="radio"] { width: 16px; height: 16px; accent-color: var(--red); flex-shrink: 0; }
.shipping-option.selected { border-color: var(--red); background: #fff5f5; }
.shipping-option__info { flex: 1; }
.shipping-option__info strong { display: block; font-size: 14px; font-weight: 600; color: var(--coal); }
.shipping-option__info span { font-size: 12px; color: var(--grey-mid); }
.shipping-option__price { font-weight: 700; color: var(--coal); font-size: 14px; white-space: nowrap; }

/* Paiement */
.payment-methods { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.payment-method {
  display: flex; align-items: center; gap: 8px; flex-direction: column; justify-content: center;
  border: 1.5px solid var(--grey-border); border-radius: var(--radius);
  padding: 14px 20px; cursor: pointer; flex: 1; min-width: 100px;
  transition: border-color var(--trans), background var(--trans);
  font-size: 12px; font-weight: 600; color: var(--coal);
  text-align: center;
}
.payment-method input[type="radio"] { display: none; }
.payment-method.selected { border-color: var(--red); background: #fff5f5; }
.payment-method:hover { border-color: var(--grey-dark); }

.card-form { margin-top: 4px; }
.card-form__secure-badge { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: #16a34a; background: #f0fdf4; padding: 8px 14px; border-radius: 4px; margin-bottom: 16px; }
.card-form__notice { display: flex; align-items: flex-start; gap: 8px; background: var(--grey-bg); border-radius: 4px; padding: 12px 14px; font-size: 11.5px; color: var(--grey-dark); line-height: 1.5; margin-bottom: 16px; }
.virement-info { background: var(--grey-bg); border-radius: 6px; padding: 16px 20px; font-size: 13px; line-height: 1.7; }
.virement-info code { background: var(--white); border: 1px solid var(--grey-border); padding: 2px 8px; border-radius: 3px; font-size: 12px; }

/* Récap */
.recap-section { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--grey-border); }
.recap-section:last-of-type { border-bottom: none; }
.recap-section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.recap-section__head h3 { font-family: var(--font-display); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--coal); margin: 0; }
.recap-address { font-size: 13px; color: var(--grey-dark); line-height: 1.8; }
.recap-shipping { font-size: 12px; color: var(--grey-mid); margin-top: 6px; }
.recap-payment { font-size: 13px; font-weight: 600; color: var(--coal); }
.recap-item { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--grey-bg); }
.recap-item__name { color: var(--coal); flex: 1; }
.recap-item__price { font-weight: 700; color: var(--coal); margin-left: 16px; white-space: nowrap; }
.recap-totals { background: var(--grey-bg); border-radius: 6px; padding: 16px; margin: 20px 0; }
.recap-total-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--grey-dark); padding: 4px 0; }
.recap-grand-total { font-size: 16px; font-weight: 800; color: var(--coal); padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--grey-border); }
.recap-grand-total span:last-child { color: var(--red); font-family: var(--font-display); font-size: 20px; }

/* RGPD / CGU */
.checkout-legal { background: #f8f9fa; border-radius: 6px; padding: 16px 20px; margin: 20px 0 0; }
.checkout-legal__retractation { font-size: 11.5px; color: var(--grey-mid); line-height: 1.6; margin: 10px 0 0; padding: 10px 0 0; border-top: 1px solid var(--grey-border); }
.cgu-wrap { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.cgu-wrap input { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--red); }
.cgu-text { font-size: 13px; color: var(--coal); line-height: 1.5; }
.cgu-text a { color: var(--red); }

/* Confirmation */
.checkout-success { text-align: center; padding: 48px 32px; }
.success-icon-wrap { display: flex; justify-content: center; margin-bottom: 20px; }
.checkout-success__title { font-family: var(--font-display); font-size: 28px; font-weight: 800; text-transform: uppercase; color: var(--coal); margin-bottom: 16px; }
.checkout-success__text { font-size: 15px; color: var(--grey-dark); line-height: 1.7; margin-bottom: 28px; }
.checkout-success__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.checkout-success__eu { font-size: 11px; color: var(--grey-mid); display: flex; align-items: center; gap: 6px; justify-content: center; }

/* Sidebar checkout */
.checkout-sidebar { position: sticky; top: calc(var(--header-main-h) + var(--header-nav-h) + 20px); }
.checkout-sidebar__box { background: var(--white); border: 1px solid var(--grey-border); border-radius: 8px; padding: 20px; }
.checkout-sidebar__title { font-family: var(--font-display); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--coal); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--grey-border); }
.sidebar-item { display: flex; justify-content: space-between; font-size: 12px; padding: 6px 0; border-bottom: 1px solid var(--grey-bg); }
.sidebar-item__name { color: var(--grey-dark); flex: 1; margin-right: 8px; }
.sidebar-item__price { font-weight: 700; color: var(--coal); white-space: nowrap; }
.checkout-sidebar__totals { margin-top: 12px; }
.sidebar-total-line { display: flex; justify-content: space-between; font-size: 12px; color: var(--grey-mid); padding: 4px 0; }
.sidebar-total-line--total { font-size: 15px; font-weight: 800; color: var(--coal); padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--grey-border); }
.sidebar-total-line--total span:last-child { color: var(--red); font-family: var(--font-display); font-size: 18px; }
.checkout-sidebar__security { font-size: 10.5px; color: var(--grey-mid); text-align: center; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ── Responsive panier / favoris / checkout ── */

/* ─ Tablette (≤ 900px) ─ */
@media (max-width: 900px) {
  /* Panier */
  .cart-layout { grid-template-columns: 1fr; }
  .cart-items-col { order: 1; }
  .cart-summary-col { order: 2; }
  .cart-table-head { display: none; }
  .cart-item-row {
    grid-template-columns: 1fr auto 36px;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  .cart-item-info    { grid-column: 1 / -1; }
  .cart-item-qty-wrap { grid-column: 1; }
  .cart-item-price-unit { display: none; }
  .cart-item-total   { grid-column: 2; text-align: right; font-size: 20px; }
  .cart-item-remove  { grid-column: 3; grid-row: 2; }

  /* Favoris */
  .wl-item-row { flex-wrap: wrap; gap: 12px; }
  .wl-item-price { order: 3; }
  .wl-item-actions { order: 4; width: 100%; justify-content: flex-start; }

  /* Checkout */
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; order: -1; }
  .checkout-steps { gap: 0; }
}

/* ─ Mobile (≤ 600px) ─ */
@media (max-width: 600px) {
  .page-wrap  { padding: 20px 0 60px; }
  .page-title { font-size: 20px; gap: 8px; }
  .page-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: span 1; }

  /* Panier */
  .cart-item-row { grid-template-columns: 1fr auto 32px; padding: 12px; }
  .qty-control { height: 34px; }
  .qty-btn   { width: 28px; font-size: 16px; }
  .qty-input { width: 34px; }
  .cart-item-total { font-size: 17px; }
  .cart-shipping-bar { padding: 12px 14px; }

  /* Favoris — stack vertical sur petit écran */
  .wl-item-row { flex-direction: column; align-items: flex-start; }
  .wl-item-icon { display: none; } /* cache icône sur très petit */
  .wl-item-price { font-size: 22px; }
  .wl-item-actions { width: 100%; }
  .wl-item-actions .btn-primary { flex: 1; justify-content: center; }

  /* Checkout étapes */
  .checkout-panel { padding: 16px 14px; }
  .checkout-panel__title { font-size: 15px; gap: 8px; margin-bottom: 18px; }
  .checkout-step { flex: none; min-width: 0; }
  .checkout-step__label { display: none; } /* cache labels sur très petit */
  .checkout-step__num { width: 32px; height: 32px; font-size: 13px; }
  .checkout-steps__sep { max-width: 32px; }
  .checkout-panel__footer { flex-direction: column; gap: 10px; }
  .checkout-panel__footer .btn-next,
  .checkout-panel__footer .btn-confirm { width: 100%; justify-content: center; }
  .checkout-panel__footer .btn-back { width: 100%; justify-content: center; order: 2; }
  .checkout-panel__footer .btn-primary { order: 1; }

  /* Paiement */
  .payment-methods { flex-direction: column; }
  .payment-method { flex-direction: row; padding: 12px 14px; gap: 10px; }

  /* Récap */
  .recap-grand-total span:last-child { font-size: 18px; }

  /* CGU */
  .checkout-legal { padding: 12px 14px; }

  /* Sidebar checkout */
  .checkout-sidebar__box { padding: 14px; }
  .sidebar-total-line--total span:last-child { font-size: 16px; }
}

/* ─ Très petit (≤ 380px) ─ */
@media (max-width: 380px) {
  .checkout-steps { justify-content: space-between; }
  .cart-item-row { grid-template-columns: 1fr 32px; }
  .cart-item-qty-wrap { grid-column: 1 / -1; }
  .cart-item-total { grid-column: 1; }
  .cart-item-remove { grid-column: 2; grid-row: 2; }
  .wl-item-actions { flex-direction: column; }
  .wl-item-actions .btn-primary,
  .wl-item-actions .btn-ghost { width: 100%; justify-content: center; }
}

/* Mini-cart drawer — liens footer */
.mini-cart__wl-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.btn-link-small {
  background: none; border: none;
  color: var(--grey-mid); font-size: 12px;
  font-weight: 600; cursor: pointer;
  text-decoration: underline; padding: 0;
  font-family: var(--font-body);
  transition: color var(--trans);
}
.btn-link-small:hover { color: var(--red); }

/* ============================================================
   BADGES — "Dans le panier" i "Favori" na karticama
============================================================ */

/* Badge korpa — donji lijevi ugao slike */
.card-in-cart-badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: var(--coal);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  pointer-events: none;
  animation: badge-pop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes badge-pop {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

/* Badge wishlist — donji desni ugao slike */
.card-in-wish-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: #fff0f2;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(232,0,28,0.2);
  animation: badge-pop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Carta in korpa — bordo sottile verde */
.shop-card.card-is-in-cart {
  border-color: var(--coal);
  box-shadow: 0 0 0 1px var(--coal);
}

/* Carta in wishlist — bordo sottile rosso */
.shop-card.card-is-wished {
  border-color: rgba(232,0,28,0.35);
}

/* shop-card__img deve avere position:relative per i badge */
.shop-card__img { position: relative; }

/* ============================================================
   CHECKOUT — Mode selection, B2B, Legal consents
============================================================ */

/* Progress bar */
.checkout-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 36px;
}
.cp-step {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  flex: 1; max-width: 140px;
}
.cp-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--grey-border); color: var(--grey-mid);
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), color var(--trans);
}
.cp-label { font-size: 11px; font-weight: 600; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.5px; }
.cp-sep   { flex: 1; max-width: 60px; height: 2px; background: var(--grey-border); margin-bottom: 20px; }
.cp-step.is-active .cp-num  { background: var(--red); color: var(--white); }
.cp-step.is-active .cp-label{ color: var(--coal); }
.cp-step.is-done .cp-num    { background: var(--coal); color: var(--white); }
.cp-step.is-done .cp-label  { color: var(--coal); }

/* Panel base */
.co-panel {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: 8px; padding: 28px; margin-bottom: 4px;
}
.co-panel__title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
  text-transform: uppercase; color: var(--coal);
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-border);
}
.co-panel__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--grey-border); gap: 12px;
  flex-wrap: wrap;
}

/* Mode grid (étape 0) */
.co-mode-grid { display: flex; flex-direction: column; gap: 10px; }

.co-mode-card {
  display: flex; align-items: center; gap: 16px;
  border: 1.5px solid var(--grey-border); border-radius: 8px;
  padding: 16px 18px; background: var(--white); cursor: pointer;
  font-family: var(--font-body); text-align: left; width: 100%;
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
}
.co-mode-card:hover {
  border-color: var(--red); background: #fff9f9;
  box-shadow: 0 2px 12px rgba(232,0,28,0.08);
}
.co-mode-card--outline { border-style: dashed; }
.co-mode-card--outline:hover { border-style: solid; }

.co-mode-card__icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--grey-bg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--coal); transition: background var(--trans), color var(--trans);
}
.co-mode-card:hover .co-mode-card__icon { background: rgba(232,0,28,0.08); color: var(--red); }
.co-mode-card__icon--outline { background: transparent; border: 1.5px dashed var(--grey-border); }

.co-mode-card__body { flex: 1; min-width: 0; }
.co-mode-card__body strong { display: block; font-size: 14px; font-weight: 700; color: var(--coal); margin-bottom: 2px; }
.co-mode-card__body span  { font-size: 12px; color: var(--grey-mid); line-height: 1.4; }

.co-mode-card__tag {
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 3px 8px; border-radius: 3px;
  flex-shrink: 0; white-space: nowrap;
}
.co-mode-card__tag--blue { background: #dbeafe; color: #1d4ed8; }
.co-mode-card__tag--coal { background: var(--coal); color: var(--white); }

.co-mode-card__arrow { flex-shrink: 0; color: var(--grey-light); transition: color var(--trans), transform var(--trans); }
.co-mode-card:hover .co-mode-card__arrow { color: var(--red); transform: translateX(3px); }

.co-mode-sep {
  display: flex; align-items: center; gap: 12px;
  margin: 6px 0;
}
.co-mode-sep::before, .co-mode-sep::after {
  content: ''; flex: 1; height: 1px; background: var(--grey-border);
}
.co-mode-sep span { font-size: 12px; color: var(--grey-mid); font-weight: 500; }

/* Note légale */
.co-legal-note {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 11.5px; color: var(--grey-mid); line-height: 1.6;
  margin-top: 20px; padding: 12px 14px;
  background: var(--grey-bg); border-radius: 4px;
}
.co-legal-note svg { flex-shrink: 0; margin-top: 1px; }

/* Connexion */
.co-login-form { max-width: 420px; }
.co-login-notice {
  display: flex; align-items: flex-start; gap: 8px;
  background: #f0fdf4; border-radius: 4px; padding: 10px 14px;
  font-size: 12px; color: #16a34a; font-weight: 600; margin-bottom: 20px;
}
.co-login-actions { display: flex; align-items: center; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.co-login-alt {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: var(--grey-mid); margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--grey-border);
}

/* Type de compte (étape 0c) */
.co-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.co-type-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  border: 1.5px solid var(--grey-border); border-radius: 8px;
  padding: 20px 12px; cursor: pointer; position: relative;
  transition: border-color var(--trans), background var(--trans);
  text-align: center;
}
.co-type-card input[type="radio"] { display: none; }
.co-type-card__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grey-bg); display: flex; align-items: center; justify-content: center;
  color: var(--grey-dark); transition: background var(--trans), color var(--trans);
}
.co-type-card strong { font-size: 13px; font-weight: 700; color: var(--coal); }
.co-type-card span   { font-size: 11px; color: var(--grey-mid); }
.co-type-check {
  position: absolute; top: 8px; right: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--grey-border); color: transparent;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), color var(--trans);
}
.co-type-card.is-selected {
  border-color: var(--red); background: #fff9f9;
}
.co-type-card.is-selected .co-type-card__icon { background: rgba(232,0,28,0.08); color: var(--red); }
.co-type-card.is-selected .co-type-check { background: var(--red); color: var(--white); }

/* B2B block */
.co-b2b-block { margin-bottom: 20px; }
.co-b2b-notice {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fef9c3; border: 1px solid #fde047; border-radius: 6px;
  padding: 14px 16px; font-size: 12.5px; color: #713f12;
  line-height: 1.6; margin-bottom: 16px;
}
.co-b2b-notice svg { flex-shrink: 0; margin-top: 1px; color: #ca8a04; }

/* Create block */
.co-create-block { margin-bottom: 20px; }
.co-create-notice {
  display: flex; align-items: flex-start; gap: 8px;
  background: #eff6ff; border-radius: 4px; padding: 10px 14px;
  font-size: 12px; color: #1d4ed8; font-weight: 500; margin-bottom: 14px;
}

.co-section-sub {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--grey-dark);
  margin: 20px 0 12px;
}
.co-shipping-opts { margin-top: 20px; }

/* Secure badge */
.co-secure-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; color: #16a34a;
  background: #f0fdf4; padding: 8px 14px; border-radius: 4px;
  margin-bottom: 4px;
}

/* Bloc légal consentements */
.co-legal-block {
  background: #f8f9fa; border-radius: 6px;
  padding: 18px 20px; margin-top: 20px;
}
.co-legal-block__title {
  font-family: var(--font-display); font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--coal);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-border);
}
.co-consent-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--grey-border);
  cursor: pointer;
}
.co-consent-row:last-child { border-bottom: none; }
.co-consent-row--optional { opacity: 0.8; }
.co-consent-row input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--red); cursor: pointer;
}
.co-consent-text { font-size: 12.5px; color: var(--coal); line-height: 1.6; }
.co-consent-text a { color: var(--red); text-decoration: underline; }
.co-consent-error { outline: 2px solid var(--red); border-radius: 4px; }

/* Badges req/opt */
.req-inline {
  display: inline-block; background: rgba(232,0,28,0.1); color: var(--red);
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 1px 6px; border-radius: 3px; margin-right: 6px;
}
.opt-inline {
  display: inline-block; background: var(--grey-bg); color: var(--grey-mid);
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 1px 6px; border-radius: 3px; margin-right: 6px;
}

/* Succès */
.co-success { text-align: center; padding: 48px 32px; }
.co-success__icon { display: flex; justify-content: center; margin-bottom: 20px; }
.co-success__title {
  font-family: var(--font-display); font-size: 26px; font-weight: 800;
  text-transform: uppercase; color: var(--coal); margin-bottom: 14px;
}
.co-success__text { font-size: 14px; color: var(--grey-dark); line-height: 1.7; margin-bottom: 24px; }
.co-success__eu {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 11px; color: var(--grey-mid); margin-bottom: 24px;
}
.co-success__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Responsive checkout mode */
@media (max-width: 600px) {
  .co-type-grid { grid-template-columns: 1fr; }
  .co-mode-card__tag { display: none; }
  .co-panel { padding: 18px 14px; }
  .co-panel__footer { flex-direction: column; }
  .co-panel__footer .btn-primary,
  .co-panel__footer .btn-ghost { width: 100%; justify-content: center; }
  .checkout-progress { gap: 0; }
  .cp-label { display: none; }
}

/* ============================================================
   HOMEPAGE — Hero, Categories, Brands, Banners, Why, FAQ
============================================================ */

/* ── Hero ── */
.hero-section {
  position: relative;
  background: var(--coal);
  overflow: hidden;
  padding: 72px 0 64px;
  margin-bottom: 0;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,0,28,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,0,28,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-glow--1 {
  width: 400px; height: 400px;
  background: rgba(232,0,28,.12);
  top: -100px; right: 10%;
}
.hero-glow--2 {
  width: 300px; height: 300px;
  background: rgba(232,0,28,.06);
  bottom: -80px; left: 5%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow { margin-bottom: 16px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(232,0,28,.12);
  border: 1px solid rgba(232,0,28,.25);
  color: rgba(255,255,255,.8);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .8px;
  padding: 5px 12px; border-radius: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero-title--accent { color: var(--red); }
.hero-desc {
  font-size: 15px; color: rgba(255,255,255,.5);
  margin-bottom: 28px; line-height: 1.6;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all var(--trans);
  white-space: nowrap;
}
.hero-btn--primary {
  background: var(--red); color: var(--white);
}
.hero-btn--primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-1px); }
.hero-btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
}
.hero-btn--outline:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.45);
}
.trust-item svg { flex-shrink: 0; }

/* Stats grid */
.hero-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.hero-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
  transition: background var(--trans), border-color var(--trans);
}
.hero-stat:hover {
  background: rgba(232,0,28,.06);
  border-color: rgba(232,0,28,.2);
}
.hero-stat__num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  color: var(--white); letter-spacing: -1px; line-height: 1;
  margin-bottom: 6px;
}
.hero-stat__label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .6px;
  color: rgba(255,255,255,.35);
}

/* ── Sections communes ── */
.section-head {
  text-align: center; margin-bottom: 36px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.3px;
  color: var(--coal);
  margin: 0 0 8px;
}
.section-sub {
  font-size: 14px; color: var(--grey-mid); margin: 0;
}

/* ── Catégories ── */
.cats-section {
  padding: 60px 0 48px;
  background: var(--white);
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cat-card {
  background: var(--grey-bg);
  border: 1.5px solid var(--grey-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.cat-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
  border-color: var(--red);
}
.cat-card__link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 14px;
  text-decoration: none;
  color: inherit;
}
.cat-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  color: var(--grey-mid);
  transition: color var(--trans);
}
.cat-card:hover .cat-card__icon { color: var(--red); }
.cat-card__icon svg { width: 100%; height: 100%; }
.cat-card__body { flex: 1; min-width: 0; }
.cat-card__name {
  font-size: 13px; font-weight: 700;
  color: var(--coal); margin: 0 0 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cat-card__count {
  font-size: 11px; color: var(--grey-mid); font-weight: 500;
}
.cat-card__arrow {
  color: var(--grey-light); font-size: 14px; flex-shrink: 0;
  transition: color var(--trans), transform var(--trans);
}
.cat-card:hover .cat-card__arrow { color: var(--red); transform: translateX(3px); }

/* ── Marques ── */
.brands-section {
  padding: 48px 0;
  background: var(--grey-bg);
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}
.brands-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.brand-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
  color: var(--coal);
  text-decoration: none;
  transition: border-color var(--trans), color var(--trans), background var(--trans), transform var(--trans);
}
.brand-pill:hover {
  border-color: var(--red); color: var(--red);
  background: rgba(232,0,28,.04);
  transform: translateY(-1px);
}
.brand-pill__count {
  font-size: 10px; font-weight: 500; color: var(--grey-mid);
  background: var(--grey-bg); border-radius: 10px;
  padding: 1px 6px;
}

/* ── Banners ── */
.banners-section {
  padding: 48px 0;
  background: var(--white);
}
.banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.banner {
  position: relative;
  border-radius: 12px;
  padding: 36px 32px;
  overflow: hidden;
  display: flex; align-items: center;
}
.banner--pro {
  background: linear-gradient(135deg, #1A1A1A 0%, #2d1f1f 100%);
  border: 1px solid rgba(232,0,28,.2);
}
.banner--livraison {
  background: linear-gradient(135deg, #0f1f1f 0%, #1a2d2a 100%);
  border: 1px solid rgba(39,174,96,.2);
}
.banner__content { position: relative; z-index: 1; flex: 1; }
.banner__badge {
  display: inline-block;
  font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 12px;
}
.banner--pro .banner__badge { background: rgba(232,0,28,.2); color: #ff6b6b; }
.banner--livraison .banner__badge { background: rgba(39,174,96,.2); color: #6fcf97; }
.banner__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}
.banner__text { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; line-height: 1.6; }
.banner__cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; border-radius: var(--radius);
  padding: 10px 20px; transition: all var(--trans);
}
.banner--pro .banner__cta {
  background: var(--red); color: var(--white);
}
.banner--pro .banner__cta:hover { background: var(--red-dark); }
.banner--livraison .banner__cta {
  background: #16a34a; color: var(--white);
}
.banner--livraison .banner__cta:hover { background: #15803d; }
.banner__deco {
  position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%);
  width: 160px; height: 160px;
  pointer-events: none;
}
.banner__deco svg { width: 100%; height: 100%; }

/* ── Why section ── */
.why-section {
  padding: 64px 0;
  background: var(--grey-bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  padding: 24px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.why-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.why-card__icon {
  width: 44px; height: 44px;
  background: rgba(232,0,28,.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 14px;
}
.why-card__title {
  font-size: 15px; font-weight: 700;
  color: var(--coal); margin-bottom: 8px;
}
.why-card__text {
  font-size: 13px; color: var(--grey-mid); line-height: 1.6; margin: 0;
}

/* ── FAQ ── */
.faq-section {
  padding: 64px 0;
  background: var(--white);
}
.faq-wrap { max-width: 760px; }
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 1px solid var(--grey-border);
}
.faq-item:first-child { border-top: 1px solid var(--grey-border); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 4px;
  background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-body);
  font-size: 15px; font-weight: 600; color: var(--coal);
  transition: color var(--trans);
}
.faq-question:hover { color: var(--red); }
.faq-question[aria-expanded="true"] { color: var(--red); }
.faq-arrow { flex-shrink: 0; transition: transform .25s ease; color: var(--grey-mid); }
.faq-answer {
  padding: 0 4px 18px;
  font-size: 14px; color: var(--grey-dark); line-height: 1.7;
}
.faq-answer p { margin: 0; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .hero-section { padding: 48px 0 40px; }
  .hero-title { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-btn { justify-content: center; }
  .hero-trust { gap: 12px; }
  .cats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .banners-grid { grid-template-columns: 1fr; }
  .banner__deco { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .brands-strip { gap: 7px; }
}
@media (max-width: 480px) {
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .cat-card__link { padding: 12px 10px; gap: 10px; }
  .cat-card__icon { width: 36px; height: 36px; }
  .cat-card__name { font-size: 12px; }
}

/* ============================================================
   SHOP CARD — Design amélioré (override)
============================================================ */
.shop-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}
.shop-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,.11), 0 2px 8px rgba(0,0,0,.05);
  transform: translateY(-4px);
  border-color: rgba(232,0,28,.4);
}

/* Image zone */
.shop-card__img {
  height: 130px;
  background: linear-gradient(145deg, #f8f8f8 0%, #efefef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--grey-border);
  color: #c0c0c0;
  position: relative;
  overflow: hidden;
  transition: background .22s;
}
.shop-card:hover .shop-card__img {
  background: linear-gradient(145deg, #fff5f5 0%, #fce8e8 100%);
}

/* Ref badge */
.shop-card__ref {
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
  display: block;
}

/* Name */
.shop-card__name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--coal);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Prix */
.shop-card__price {
  font-family: var(--font-display, sans-serif);
  font-size: 18px;
  font-weight: 800;
  color: var(--coal);
  letter-spacing: -.3px;
}
.shop-card__price-ht {
  font-size: 10.5px;
  color: var(--grey-mid);
  font-weight: 500;
}

/* Bouton panier */
.shop-card__btn-cart {
  background: var(--coal);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .18s ease, transform .12s ease;
  width: 100%;
}
.shop-card__btn-cart:hover {
  background: var(--red);
  transform: scale(1.02);
}

/* Dispo badge */
.shop-card__dispo {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 1;
}
.dispo--stock    { background: #dcfce7; color: #15803d; }
.dispo--supplier { background: #fef9c3; color: #92400e; }
.dispo--unavailable { background: #f1f5f9; color: #94a3b8; }

/* Source badge */
.shop-card__source {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: 2px 6px;
  border-radius: 3px;
  z-index: 1;
}

/* Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

/* Filter bar */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

/* Results bar */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--grey-mid);
  border-bottom: 1px solid var(--grey-border);
}
.results-bar strong { color: var(--coal); }

/* ============================================================
   FIXES — Kartica: dugme korpa vidljivo, mob 2 kolone
============================================================ */

/* Shop card footer — osiguraj da je dugme uvijek vidljivo */
.shop-card__footer {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

/* Qty + cart button row */
.shop-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* Qty kontroler */
.shop-card__qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--grey-border);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.shop-card__qty-btn {
  width: 28px; height: 32px;
  background: var(--grey-bg);
  border: none; cursor: pointer;
  font-size: 16px; font-weight: 700;
  color: var(--coal);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.shop-card__qty-btn:hover { background: var(--grey-border); }
.shop-card__qty-input {
  width: 32px; height: 32px;
  border: none; border-left: 1px solid var(--grey-border); border-right: 1px solid var(--grey-border);
  text-align: center; font-size: 13px; font-weight: 700;
  color: var(--coal); background: var(--white);
  -moz-appearance: textfield;
}
.shop-card__qty-input::-webkit-outer-spin-button,
.shop-card__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Bouton ajouter au panier — prend toute la largeur restante */
.shop-card__btn-cart {
  flex: 1;
  min-width: 0;
  height: 32px;
  background: var(--coal);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .18s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-card__btn-cart:hover { background: var(--red); }

/* ── Mobile: 2 cartes par ligne ── */
@media (max-width: 640px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .shop-card__img { height: 100px !important; }
  .shop-card__footer { padding: 8px !important; gap: 7px !important; }
  .shop-card__name { font-size: 11px !important; -webkit-line-clamp: 2; }
  .shop-card__price { font-size: 15px !important; }
  .shop-card__qty-btn { width: 24px !important; height: 28px !important; }
  .shop-card__qty-input { width: 26px !important; height: 28px !important; font-size: 12px !important; }
  .shop-card__btn-cart {
    height: 28px !important;
    font-size: 10px !important;
    gap: 3px !important;
  }
  /* Sakrij tekst na dugmetu, ostavi samo ikonu na mob */
  .shop-card__btn-cart .btn-cart-text { display: none; }
}

@media (max-width: 380px) {
  .shop-grid { gap: 6px !important; }
  .shop-card__img { height: 80px !important; }
}

/* ── Logo header i footer — ograničena veličina ── */
.logo__img {
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .logo__img {
    height: 44px;
    max-width: 120px;
  }
}

/* ============================================================
   SHOP CARD — Layout fix: dugme AJOUTER uvijek vidljivo
============================================================ */

/* Footer kartice */
.shop-card__footer {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* Cijena */
.shop-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.shop-card__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--coal);
  letter-spacing: -.5px;
}
.shop-card__price-ttc {
  font-size: 10px;
  color: var(--grey-mid);
  font-weight: 500;
}

/* Red 1: qty kontroler */
.shop-card__cart-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Qty + ikone (info, wishlist) u istom redu */
.shop-card__qty {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.shop-card__qty-btn {
  width: 28px; height: 30px;
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  cursor: pointer;
  font-size: 15px; font-weight: 700;
  color: var(--coal);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.shop-card__qty-btn:first-child { border-radius: 6px 0 0 6px; }
.shop-card__qty-btn--plus { border-radius: 0 6px 6px 0; }
.shop-card__qty-btn:hover { background: var(--grey-border); }
.shop-card__qty-input {
  width: 32px; height: 30px;
  border: 1px solid var(--grey-border);
  border-left: none; border-right: none;
  text-align: center;
  font-size: 13px; font-weight: 700;
  color: var(--coal); background: var(--white);
  -moz-appearance: textfield;
}
.shop-card__qty-input::-webkit-outer-spin-button,
.shop-card__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Actions (info + wishlist) — mali gumbi */
.shop-card__actions {
  display: flex;
  align-items: center;
  gap: 5px;
}
.shop-card__btn-detail,
.shop-card__btn-wish {
  width: 28px; height: 28px;
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  color: var(--grey-mid);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.shop-card__btn-detail:hover { background: var(--grey-border); color: var(--coal); }
.shop-card__btn-wish:hover   { color: var(--red); background: rgba(232,0,28,.06); border-color: rgba(232,0,28,.2); }
.shop-card__btn-wish.is-wished { color: var(--red); border-color: rgba(232,0,28,.3); background: rgba(232,0,28,.06); }

/* Dugme AJOUTER — cijela širina, vlastiti red */
.shop-card__btn-cart {
  width: 100%;
  height: 36px;
  background: var(--coal);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .18s;
  letter-spacing: .03em;
}
.shop-card__btn-cart:hover { background: var(--red); }

/* Mobile 2 kolone */
@media (max-width: 640px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .shop-card__img { height: 100px !important; }
  .shop-card__footer { padding: 8px 8px 10px !important; gap: 6px !important; }
  .shop-card__price { font-size: 16px !important; }
  .shop-card__qty-btn { width: 24px !important; height: 26px !important; font-size: 13px !important; }
  .shop-card__qty-input { width: 26px !important; height: 26px !important; font-size: 12px !important; }
  .shop-card__btn-detail,
  .shop-card__btn-wish { width: 24px !important; height: 24px !important; }
  .shop-card__btn-cart { height: 30px !important; font-size: 11px !important; }
}
@media (max-width: 380px) {
  .shop-grid { gap: 5px !important; }
}

/* ── Retractation page responsive ── */
@media (max-width: 760px) {
  .retractation-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Legal page layout (retractation, cgv, mentions-legales…) ── */
.legal-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.legal-page-sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.remb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 860px) {
  .legal-page-grid {
    grid-template-columns: 1fr;
  }
  .legal-page-sidebar {
    position: static;
  }
  .remb-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SITEMAP PAGE — Plan du site responsive grid
============================================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Tablet — 2 colonne, terza va sotto */
@media (max-width: 900px) {
  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* Terza colonna (légal) va a piena larghezza */
  .sitemap-grid > div:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* Mobile — tutto in una colonna */
@media (max-width: 600px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sitemap-grid > div:last-child {
    grid-column: auto;
    display: block;
  }
}