/* ===== DESIGN SYSTEM RENT CINE PROD ===== */
/* Inspiré d'Airbnb, Peerspace et Rooster */
/* Style épuré, moderne, lisible et haut de gamme */

/* Variables CSS du système de design */
:root {
  /* Couleurs */
  --color-bg: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-dark: #1a1a2e;
  --color-text: #1a1a1a;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #dbeafe;
  --color-primary-contrast: #ffffff;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  --color-accent: #10b981;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-shadow: rgba(0, 0, 0, 0.08);
  --color-shadow-hover: rgba(0, 0, 0, 0.12);

  /* Ombres */
  --shadow-1: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Rayons de bordure */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  /* Espacements */
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */

  /* Typographie */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  /* 12px */
  --font-size-sm: 0.875rem;
  /* 14px */
  --font-size-base: 1rem;
  /* 16px */
  --font-size-lg: 1.125rem;
  /* 18px */
  --font-size-xl: 1.25rem;
  /* 20px */
  --font-size-2xl: 1.5rem;
  /* 24px */
  --font-size-3xl: 1.875rem;
  /* 30px */
  --font-size-4xl: 2.25rem;
  /* 36px */
  --font-size-5xl: 3rem;
  /* 48px */
  --font-size-6xl: 3.75rem;
  /* 60px */

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Breakpoints */
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}

/* Reset et styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== NAVIGATION ===== */
/* ===== HEADER & NAVIGATION (OPTIMIZED) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-1);
  z-index: 1000;
  transition: transform var(--transition-normal);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-6);
}

.main-nav {
  display: flex;
  gap: var(--space-1);
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: var(--font-size-sm);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
}

.nav-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600 !important;
}

.cart-badge {
  background: var(--color-secondary);
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

/* User Menu & Dropdown */
.user-menu {
  position: relative;
  margin-left: var(--space-4);
}

.profil-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  transition: all var(--transition-normal);
}

.profil-btn:hover {
  background-color: var(--color-bg-secondary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-1);
}

.profil-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.dropdown-content {
  display: none;
  /* JS toggles this */
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-3);
  padding: var(--space-2) 0;
  overflow: hidden;
  z-index: 1001;
  transform-origin: top right;
  animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: background-color var(--transition-fast);
}

.dropdown-content a:hover {
  background-color: var(--color-bg-secondary);
  color: var(--color-primary);
}

.dropdown-content hr {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: var(--space-2) 0;
}

.burger-toggle {
  display: none;
  /* Hidden on desktop */
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .burger-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }

  .burger-toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s linear;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1050;
  }

  .site-header.nav-open .main-nav {
    right: 0;
  }

  .main-nav a {
    width: 100%;
    font-size: var(--font-size-base);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
    border-radius: 0;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: none;
    color: var(--color-primary);
    padding-left: 10px;
  }
}

/* ===== EN-TÊTES ===== */
.en-tete_retro {
  height: 70vh;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(245, 158, 11, 0.9)), url('img/xl.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  text-align: center;
  padding: var(--space-10);
}

.en-tete_retro h1 {
  color: var(--color-primary-contrast);
  font-size: var(--font-size-6xl);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-6);
  line-height: 1.2;
}

.en-tete_retro p {
  color: var(--color-primary-contrast);
  font-size: var(--font-size-xl);
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  line-height: 1.6;
}

.en-tete_lieux {
  margin-top: 80px;
  height: 60vh;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(245, 158, 11, 0.9)), url('img/lieux.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-10);
}

.en-tete_lieux h1 {
  color: var(--color-primary-contrast);
  font-size: var(--font-size-5xl);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-6);
  line-height: 1.2;
}

.en-tete_lieux p {
  color: var(--color-primary-contrast);
  font-size: var(--font-size-xl);
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  line-height: 1.6;
}

.en-tete_modeles {
  margin-top: 80px;
  height: 60vh;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(245, 158, 11, 0.9)), url('img/modeles/adelia/adelia.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-10);
}

.en-tete_modeles h1 {
  color: var(--color-primary-contrast);
  font-size: var(--font-size-5xl);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-6);
  line-height: 1.2;
}

.en-tete_modeles p {
  color: var(--color-primary-contrast);
  font-size: var(--font-size-xl);
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  line-height: 1.6;
}

.en-tete_equipements {
  margin-top: 80px;
  height: 60vh;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(245, 158, 11, 0.9)), url('img/ARRI.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-10);
}

/* ===== CARTES PRODUITS ===== */
.voiture {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  max-width: 1200px;
  margin: var(--space-20) auto;
  padding: 0 var(--space-6);
}

.voiture-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border-light);
}

.voiture-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-4);
}

.voiture-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.voiture-card:hover .voiture-image {
  transform: scale(1.05);
}

.voiture-info {
  padding: var(--space-6);
}

.voiture-title {
  font-size: var(--font-size-xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  font-weight: 600;
  line-height: 1.3;
}

.voiture-ville,
.voiture-region {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 500;
}

.voiture-description {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.voiture-price {
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.voiture-button {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  font-size: var(--font-size-sm);
}

.voiture-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-3);
}

/* ===== CARTES LIEUX ===== */
.lieux {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  padding: var(--space-6);
  max-width: 1200px;
  margin: var(--space-20) auto;
}

.lieux-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  width: 100%;
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border-light);
}

.lieux-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-4);
}

.lieux-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.lieux-card:hover .lieux-image {
  transform: scale(1.05);
}

.lieux-info {
  padding: var(--space-6);
}

.lieux-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.3;
}

.lieux-description {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
  font-size: var(--font-size-sm);
}

.lieux-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.lieux-region,
.lieux-ville {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 500;
}

.lieux-button {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  background-color: var(--color-primary);
  color: var(--color-primary-contrast);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  font-size: var(--font-size-sm);
}

.lieux-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-3);
}

/* ===== GALERIE ===== */
.gallery-container {
  max-width: 1200px;
  margin: var(--space-20) auto;
  padding: var(--space-6);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
}

.gallery-item-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  transition: transform var(--transition-normal);
}

.gallery-item-container:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-4);
}

.gallery-item {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item-container:hover .gallery-item {
  transform: scale(1.05);
}

.image-description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: var(--space-5);
  font-size: var(--font-size-sm);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.gallery-item-container:hover .image-description {
  transform: translateY(0);
}

/* ===== COMMENTAIRES ===== */
.commentaire-container {
  max-width: 1200px;
  margin: var(--space-20) auto;
  padding: var(--space-6);
}

.commentaire-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-2);
  transition: transform var(--transition-normal);
  border: 1px solid var(--color-border-light);
}

.commentaire-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

.commentaire-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-4);
  gap: var(--space-4);
}

.commentaire-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.commentaire-info {
  flex: 1;
}

.commentaire-auteur {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
  font-size: var(--font-size-base);
}

.commentaire-date {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.commentaire-contenu {
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  font-size: var(--font-size-base);
}

.commentaire-actions {
  display: flex;
  gap: var(--space-4);
}

.commentaire-button {
  padding: var(--space-2) var(--space-4);
  border: none;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-weight: 500;
}

.commentaire-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

/* ===== VIDÉO ===== */
.présentation_video {
  text-align: center;
  font-size: var(--font-size-3xl);
  color: var(--color-text);
  margin-top: var(--space-8);
  margin-bottom: var(--space-6);
  font-weight: 600;
}

.video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-20);
}

.video iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
}

/* ===== FICHE DÉTAIL ===== */
.fiche-detail {
  max-width: 800px;
  margin: var(--space-20) auto;
  padding: var(--space-6);
  background-color: var(--color-bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--color-border-light);
}

.fiche-detail img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}

.fiche-detail p {
  font-size: var(--font-size-base);
  color: var(--color-text);
  text-align: center;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
  color: var(--color-primary-contrast);
  padding: var(--space-20) var(--space-6);
  margin-top: var(--space-20);
}

.footer-column {
  flex: 1;
  max-width: 300px;
  padding: 0 var(--space-6);
}

.footer-column h4 {
  color: var(--color-primary-contrast);
  margin-bottom: var(--space-5);
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: var(--space-3);
}

.footer-column ul li a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-normal);
  font-size: var(--font-size-sm);
}

.footer-column ul li a:hover {
  color: var(--color-primary-contrast);
}

/* ===== SEO CHECK LISTS ===== */
.fp-check {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
}

.fp-check li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.fp-check li::before {
  content: "\2714";
  /* Puce de validation premium */
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-primary);
  /* même couleur que les titres du site */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* 
  nav {
    padding: var(--space-3) var(--space-6);
    height: auto;
    flex-direction: column;
    gap: var(--space-4);
  }

  .menu-gauche1,
  .menu-droit1 {
    width: 100%;
    justify-content: center;
    padding: var(--space-2) 0;
    flex-wrap: wrap;
    gap: var(--space-4);
  }

  nav a {
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-xs);
  } 
*/

  .en-tete_retro,
  .en-tete_lieux,
  .en-tete_modeles,
  .en-tete_equipements {
    height: 50vh;
    padding: var(--space-6);
    margin-top: 120px;
  }

  .en-tete_retro h1,
  .en-tete_lieux h1,
  .en-tete_modeles h1 {
    font-size: var(--font-size-3xl);
  }

  .en-tete_retro p,
  .en-tete_lieux p,
  .en-tete_modeles p {
    font-size: var(--font-size-lg);
  }
}

@media (max-width: 480px) {

  .en-tete_retro h1,
  .en-tete_lieux h1,
  .en-tete_modeles h1 {
    font-size: var(--font-size-2xl);
  }
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  width: 100%;
  border-bottom: 1px solid #eee;
  background: #fff;
  position: relative;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* Logo */
.logo a {
  font-weight: 700;
  text-decoration: none;
  color: #333;
  font-size: 24px;
}

/* Navigation principale (Desktop) - Par défaut visible en horizontal */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  flex: 1;
}

/* FORCER le burger caché sur desktop */
.burger-toggle {
  display: none !important;
}

/* FORCER le menu visible sur desktop */
@media (min-width: 769px) {
  .main-nav {
    display: flex !important;
  }

  .burger-toggle {
    display: none !important;
  }
}

.main-nav a {
  white-space: nowrap;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.nav-cart-link:hover {
  color: #e63946;
}

.nav-cart-link {
  display: flex !important;
  align-items: center;
  gap: 5px;
}

/* Menu Utilisateur */
.user-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.btn-menu {
  position: relative;
  z-index: 20;
}

.profile-wrapper {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
}

.profil-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #333;
  padding: 5px 10px;
  border-radius: 20px;
  transition: background 0.2s;
}

.profil-btn:hover {
  background-color: #f5f5f5;
}

.profil-photo {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  padding: 5px 0;
}

.profile-dropdown {
  top: 100%;
  right: 0;
  margin-top: 8px;
  z-index: 50;
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #333;
  color: #fff;
  padding-left: 25px;
}

/* Burger Toggle (Mobile) */
.burger-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.burger-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-text {
  display: none;
  width: auto;
  height: auto;
  margin: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #111827;
}

/* Animation Burger actif */
.site-header.nav-open .burger-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.site-header.nav-open .burger-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .burger-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Badges (Notifs / Panier) */
.unread-badge,
.cart-badge {
  background-color: #e63946;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #fff;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes cartBadgePulse {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* ===== RESPONSIVE (Mobile Styles) ===== */
@media (max-width: 768px) {
  .header-inner {
    padding: 10px 15px;
    flex-wrap: wrap;
  }

  .logo {
    flex-grow: 1;
  }

  /* FORCER le burger visible sur mobile */
  .burger-toggle {
    display: block !important;
    position: relative;
    z-index: 3000;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
    gap: 10px;
    flex-shrink: 0;
  }

  .user-menu {
    display: flex;
    position: relative;
    z-index: 2000;
    margin-right: 0;
  }

  /* FORCER le menu caché par défaut sur mobile */
  .main-nav {
    display: none !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
    order: 3;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
    flex: 0 0 100%;
  }

  /* FORCER le menu visible quand nav-open */
  .site-header.nav-open .main-nav {
    display: flex !important;
    animation: slideDown 0.3s ease-out;
  }

  .main-nav a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    width: 100%;
    white-space: normal;
    border-bottom: 1px solid #f5f5f5;
  }

  .site-header:not(.is-logged) .dropdown-content:not(.profile-dropdown) {
    /* Caché par défaut mais toggleDropdown() peut l'ouvrir via style inline */
    display: none;
  }

  .mobile-profile-menu {
    width: 100%;
    margin-top: 8px;
  }

  .mobile-profile-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
  }

  .mobile-profile-caret {
    font-size: 14px;
  }

  .mobile-profile-submenu {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    margin-top: 8px;
  }

  .mobile-profile-submenu.is-open {
    display: flex;
  }

  .mobile-profile-submenu a {
    padding: 8px 0;
    color: #111827;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
  }

  .mobile-profile-submenu a:last-child {
    border-bottom: none;
  }

  .mobile-profile-logout {
    color: #dc2626;
  }

  .site-header.is-logged .logo {
    display: none !important;
  }

  .site-header.is-logged .header-actions {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    order: 1;
  }

  .site-header.is-logged .btn-menu {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: row !important;
    width: auto !important;
    height: auto !important;
    min-height: 40px;
    padding: 6px 10px;
  }

  .site-header.is-logged .mobile-menu-text {
    display: inline-flex;
  }

  .site-header.is-logged .mobile-menu-icon {
    display: none !important;
  }

  .site-header.is-logged .burger-toggle::before {
    content: none !important;
  }

  .site-header.is-logged .main-nav {
    order: 2;
  }

  .site-header.is-logged .dropdown-content.profile-dropdown {
    pointer-events: auto;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    min-width: 220px;
    max-width: calc(100vw - 16px);
    z-index: 9999;
  }

  .site-header.is-logged,
  .site-header.is-logged .header-inner,
  .site-header.is-logged .header-actions,
  .site-header.is-logged .profile-wrapper {
    overflow: visible !important;
  }

}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FICHE PAGE STRUCTURE ===== */
.fiche-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.fiche-wrapper * {
  box-sizing: border-box;
}

/* Section Galerie */
/* Section Galerie */
.fiche-wrapper .fiche-gallery {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 1rem;
  margin-bottom: 2rem;
  height: 420px !important;
  /* Force fixed height */
}

.fiche-wrapper .fiche-gallery-main {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.fiche-wrapper .fiche-gallery-main a,
.fiche-wrapper .fiche-gallery-grid a {
  display: block;
  width: 100%;
  height: 100%;
}

.fiche-wrapper .fiche-gallery-main img,
.fiche-wrapper .fiche-gallery-grid img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
}

.fiche-wrapper .fiche-gallery-main img:hover,
.fiche-wrapper .fiche-gallery-grid img:hover {
  transform: scale(1.02);
}

.badge.chauffeur-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #111;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

/* Grille des 4 petites images à droite */
/* Grille des 4 petites images à droite */
.fiche-wrapper .fiche-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  height: 100%;
  overflow: hidden;
}

/* Responsive : sur mobile, tout en colonne */
@media (max-width: 768px) {
  .fiche-wrapper {
    padding: 15px;
    max-width: 100%;
  }

  .fiche-wrapper .fiche-gallery {
    display: flex;
    flex-direction: column;
    height: auto !important;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .fiche-wrapper .fiche-gallery-main {
    height: auto;
    width: 100%;
    margin-bottom: 0;
    min-height: 250px;
  }

  .fiche-wrapper .fiche-gallery-main a {
    height: auto;
  }

  .fiche-wrapper .fiche-gallery-main img {
    height: auto !important;
    max-height: 400px;
    width: 100%;
    object-fit: cover;
  }

  .fiche-wrapper .fiche-gallery-grid {
    height: auto;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 0.75rem;
  }

  .fiche-wrapper .fiche-gallery-grid a {
    height: auto;
    min-height: 120px;
  }

  .fiche-wrapper .fiche-gallery-grid img {
    height: auto !important;
    min-height: 120px;
    max-height: 200px;
    width: 100%;
    object-fit: cover;
  }

  /* Empêcher tout débordement horizontal */
  .fiche-wrapper section,
  .fiche-wrapper div {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Images responsives */
  .fiche-wrapper img {
    max-width: 100%;
    height: auto;
  }
}

/* Section Réservation */
.fiche-reservation {
  margin-bottom: 40px;
}

.fiche-reservation-card {
  background: var(--color-bg);
  padding: 30px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--color-border-light);
}

.fiche-reservation-title {
  color: var(--color-text);
  margin: 0 0 15px 0;
  font-size: 28px;
  font-weight: 600;
}

.fiche-reservation-price {
  margin: 20px 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
}

.fiche-price-amount {
  color: var(--color-primary);
}

.fiche-price-mode {
  font-size: 16px;
  color: var(--color-text-muted);
  font-style: italic;
  font-weight: normal;
}

.fiche-caution {
  background: #fff3cd;
  padding: 15px;
  border-radius: var(--radius-md);
  margin: 20px 0;
  border: 1px solid #ffeaa7;
}

.fiche-caution h4 {
  color: #856404;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.fiche-caution h4 i {
  margin-right: 8px;
}

.fiche-caution-amount {
  font-size: 18px;
  font-weight: bold;
  color: #856404;
  margin-bottom: 8px;
}

.fiche-caution p {
  font-size: 14px;
  color: #856404;
  margin: 0;
}

.fiche-reservation-actions {
  margin-top: 25px;
}

.fiche-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

.fiche-btn-primary {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
}

.fiche-btn-primary:hover {
  background: var(--color-primary-hover);
}

.fiche-btn-cart {
  background: #28a745;
  color: white;
}

.fiche-btn-cart:hover {
  background: #218838;
}

.fiche-login-message {
  color: #6c757d;
  margin-bottom: 15px;
  font-size: 14px;
}

.fiche-login-message i {
  margin-right: 5px;
}

/* Section Contenu */
.fiche-content {
  margin-bottom: 40px;
}

.fiche-content-inner {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fiche-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 16px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
}

.fiche-location svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.fiche-description {
  margin-bottom: 30px;
}

.fiche-description h3 {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.fiche-description p {
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

.fiche-prestataire {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-border-light);
}

.fiche-prestataire h3 {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.fiche-prestataire-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
}

.fiche-prestataire-link:hover {
  background: #f0f0f0;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fiche-prestataire-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
}

.fiche-prestataire-info {
  flex: 1;
}

.fiche-prestataire-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.fiche-prestataire-name {
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 5px;
}

.fiche-prestataire-name i {
  font-size: 12px;
  color: var(--color-primary);
}

.fiche-avis {
  margin-top: 30px;
}

.fiche-avis h2 {
  margin: 0 0 30px 0;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

/* Responsive Mobile - Toutes les sections de fiche */
@media (max-width: 768px) {

  /* Wrapper principal */
  .fiche-wrapper {
    padding: 15px;
    max-width: 100%;
  }

  /* Section Réservation */
  .fiche-reservation {
    margin-bottom: 30px;
  }

  .fiche-reservation-card {
    padding: 20px;
  }

  .fiche-reservation-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .fiche-reservation-price {
    font-size: 20px;
    margin: 15px 0;
  }

  .fiche-caution {
    padding: 12px;
    margin: 15px 0;
  }

  .fiche-caution h4 {
    font-size: 14px;
  }

  .fiche-caution-amount {
    font-size: 16px;
  }

  .fiche-btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  /* Section Contenu */
  .fiche-content {
    margin-bottom: 30px;
  }

  .fiche-content-inner {
    padding: 20px;
  }

  .fiche-location {
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .fiche-description h3,
  .fiche-prestataire h3,
  .fiche-avis h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .fiche-description p {
    font-size: 14px;
    line-height: 1.6;
  }

  .description-content {
    font-size: 14px;
    line-height: 1.6;
  }

  .description-content p {
    margin-bottom: 12px;
  }

  .fiche-prestataire {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .fiche-prestataire-link {
    padding: 12px;
  }

  .fiche-prestataire-avatar {
    width: 45px;
    height: 45px;
  }

  .fiche-avis {
    margin-top: 25px;
  }
}

/* ===== PREMIUM FICHE EXTENSIONS ===== */
/* Override du bouton reservation pour les fiches Premium (WhatsApp) */
.fiche-premium .fiche-btn-primary {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

/* FIX HERO TOP GAP */
.hero {
  margin-top: 0 !important;
  padding-top: 100px !important;
  /* Ajusté pour le header fixe (80px + marge) */
  min-height: auto !important;
  background-position: center top !important;
}

.hero-content {
  padding-top: 20px !important;
  /* Réduit l'espace interne */
  margin-top: 0 !important;
}

/* Suppression des marges body/html potentielles */
body,
html {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ===== PERFORMANCE & CLEANUP OVERRIDES ===== */
/* ÉTAPE A : Suppression des images de background pour l'allègement */
.en-tete_retro,
.en-tete_lieux,
.en-tete_modeles,
.en-tete_equipements {
  background-image: none !important;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Ajout d'un pattern subtil css-only pour garder le côté "premium" sans image lourde */
.en-tete_retro::before,
.en-tete_lieux::before,
.en-tete_modeles::before,
.en-tete_equipements::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image: radial-gradient(#3b82f6 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
}

/* S'assurer que le texte reste lisible et au-dessus */
.en-tete_retro>*,
.en-tete_lieux>*,
.en-tete_modeles>*,
.en-tete_equipements>* {
  position: relative;
  z-index: 1;
  color: var(--color-text) !important;
  /* Force text dark sur fond clair */
  text-shadow: none !important;
}

.en-tete_retro h1,
.en-tete_lieux h1,
.en-tete_modeles h1,
.en-tete_equipements h1,
.en-tete_retro p,
.en-tete_lieux p,
.en-tete_modeles p,
.en-tete_equipements p {
  color: var(--color-text) !important;
  text-shadow: none !important;
}

/* =========================================
   FIX MOBILE & PAYSAGE (USER REQUEST - V2 ROBUST)
   ========================================= */

/* 1. Forcer le mode "App Mobile/Tablette" (Tactile) -> Toujours Burger, Jamais Sidebar */
@media (hover: none) and (pointer: coarse) {

  /* Forcer le header en topbar fixe/sticky */
  .site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
  }

  /* Configuration du bouton Burger avec texte "MENU" */
  .burger-toggle {
    display: flex !important;
    flex-direction: column !important;
    /* Garder les barres empilées */
    justify-content: space-around !important;
    width: 30px !important;
    /* Fixer la largeur de l'icône */
    height: 25px !important;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative !important;
    /* Pour positionner le texte */
    overflow: visible !important;
    /* Laisser le texte sortir */
    margin-right: 5px;
    /* Marge de sécurité à droite */
  }

  /* Le texte "MENU" positionné à GAUCHE de l'icône */
  .burger-toggle::before {
    content: none;
  }

  /* Style des barres du burger (Reset de sécurité) */
  .burger-toggle span {
    width: 100% !important;
    height: 3px !important;
    background: var(--color-text, #333) !important;
    display: block !important;
  }

  /* CACHER la Nav Desktop & Sidebar FORCE */
  /* On surcharge toutes les variantes desktop */
  .nav-desktop,
  .sidebar,
  .sidebar-nav,
  .menu-lateral {
    display: none !important;
  }

  /* Configurer le menu "Tiroir" (Nav Mobile) */
  .main-nav {
    /* On s'assure que le menu est caché (right: -100%) ou ouvert (right: 0) */
    /* Et surtout qu'il est en mode vertical */
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 300px !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.98) !important;
    align-items: flex-start !important;
    padding: 100px 30px !important;
    z-index: 1050 !important;
    transition: right 0.3s ease-in-out !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
  }

  .site-header.nav-open .main-nav,
  .fp-header-v2.fp-nav-open .main-nav {
    right: 0 !important;
  }
}

/* 2. Adaptation Nav pour Tactile Large (Tablette/Smartphone Paysage) */
/* Cible les écrans larges MAIS tactiles => On applique le fix mobile */
@media (hover: none) and (pointer: coarse) and (min-width: 1024px) {
  .main-nav {
    right: -100%;
    /* Caché par défaut */
  }

  .site-header.nav-open .main-nav {
    right: 0 !important;
    /* Ouvert */
  }

  /* Liens en pleine largeur */
  .main-nav a {
    border-bottom: 1px solid #eee !important;
    width: 100% !important;
    padding: 15px 0 !important;
  }
}

/* 3. Optimisation Grille Paysage Mobile (Surcharge Listing) */
@media (hover: none) and (pointer: coarse) and (orientation: landscape) {

  .listing-grid,
  .grid,
  .cards {
    /* Force 3 colonnes si possible (min 200px) */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 15px !important;
  }

  /* Si des containers limitent la largeur, on les débride */
  .listing-container,
  .container {
    max-width: 100% !important;
    padding: 0 20px !important;
  }
}

/* =========================================
   FIX MOBILE HEADER LOGGED IN - USER REQUEST
   ========================================= */
@media (max-width: 1024px) {

  /* 1) N'afficher MENU qu'une seule fois */
  .site-header.is-logged .burger-toggle::before {
    content: none !important;
    display: none !important;
  }

  .site-header.is-logged .burger-toggle span.mobile-menu-text {
    height: auto !important;
    background: transparent !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: var(--color-text, #333) !important;
    letter-spacing: 0.5px;
    display: inline-block !important;
  }

  /* 2) Le menu PROFIL se déroule et s'affiche correctement */
  .site-header.is-logged .profile-wrapper {
    position: relative;
  }

  .site-header.is-logged .profile-dropdown {
    position: absolute !important;
    top: calc(100% + 15px) !important;
    right: 0 !important;
    left: auto !important;
    width: auto !important;
    min-width: 250px !important;
    max-width: calc(100vw - 20px) !important;
    z-index: 10000 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid var(--color-border);
  }

  .site-header.is-logged .profile-wrapper.open .profile-dropdown {
    display: block !important;
  }

  /* 3) Le menu principal sans trait en haut */
  .main-nav {
    border-top: none !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05) !important;
  }

  .main-nav a:first-child {
    border-top: none !important;
  }
}

/* ===== EN-TETES HERO ===== */
.mp-hero-wrap {
  padding: 40px 0 30px;
}
@media (min-width: 769px) {
  .mp-hero-wrap {
    margin-top: 0;
  }
}
.mp-hero-title {
  font-size: 28px;
}
.mp-hero-sub {
  font-size: 15px;
}
@media (max-width: 768px) {
  .mp-hero-wrap {
    padding: 100px 20px 20px !important;
  }
  .mp-hero-title {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
  .mp-hero-sub {
    font-size: 13px !important;
    margin-bottom: 20px !important;
  }
}

/* ===== CARTES CLIQUABLES - lien couvre toute la carte ===== */
.mp-mock-card {
  position: relative;
}
.mp-mock-card .mp-mock-btn {
  position: static;
}
.mp-mock-card .mp-card-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.mp-mock-card .mp-mock-btn {
  position: relative;
  z-index: 2;
}

/* ===== LISTES EDITORIALES - Style tiret discret ===== */
/* S'applique aux zones de contenu : descriptions, SEO, fiches, mock cards */
.mp-mock-body ul,
.mp-mock-body ol,
.mp-seo-content ul,
.mp-seo-content ol,
.listing-content ul,
.listing-content ol,
.listing-description ul,
.listing-description ol,
.page-content ul,
.page-content ol,
.fiche-description ul,
.fiche-description ol,
.seo-content ul,
.seo-content ol,
article ul,
article ol,
.content ul,
.content ol {
  list-style: none;
  padding-left: 0;
  margin: 8px 0;
}

.mp-mock-body ul li,
.mp-mock-body ol li,
.mp-seo-content ul li,
.mp-seo-content ol li,
.listing-content ul li,
.listing-content ol li,
.listing-description ul li,
.listing-description ol li,
.page-content ul li,
.page-content ol li,
.fiche-description ul li,
.fiche-description ol li,
.seo-content ul li,
.seo-content ol li,
article ul li,
article ol li,
.content ul li,
.content ol li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.6;
}

.mp-mock-body ul li::before,
.mp-mock-body ol li::before,
.mp-seo-content ul li::before,
.mp-seo-content ol li::before,
.listing-content ul li::before,
.listing-content ol li::before,
.listing-description ul li::before,
.listing-description ol li::before,
.page-content ul li::before,
.page-content ol li::before,
.fiche-description ul li::before,
.fiche-description ol li::before,
.seo-content ul li::before,
.seo-content ol li::before,
article ul li::before,
article ol li::before,
.content ul li::before,
.content ol li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #4a7cf7;
  font-weight: 700;
  font-size: 14px;
}
}