/*
Theme Name: GrizzlyTec Pro
Theme URI: https://grizzlytecpro.dz
Author: GrizzlyTec Pro
Author URI: https://grizzlytecpro.dz
Description: Thème officiel GrizzlyTec Pro – Solutions GPS & Géolocalisation pour les entreprises algériennes.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
License: Proprietary
Text Domain: grizzlytecpro
Tags: business, gps, tracking, algeria, geolocation
*/

/* ===== VARIABLES ===== */
:root {
  --primary:       #1a56c8;
  --primary-dark:  #1447a5;
  --primary-light: rgba(26, 86, 200, 0.10);
  --bg:            #ffffff;
  --bg-muted:      #f8fafc;
  --bg-card:       #ffffff;
  --text:          #0f172a;
  --text-muted:    #64748b;
  --border:        #e2e8f0;
  --radius:        0.5rem;
  --shadow:        0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-lg:     0 10px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.08);
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container:     1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
/* Icônes SVG dans les boutons : taille fixe pour éviter la dilatation sur largeur 100% */
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.site-logo img { width: 42px; height: 42px; object-fit: contain; }
.site-logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}
.site-logo span em { color: var(--primary); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
/* Support structure <ul><li><a> générée par wp_nav_menu() */
.nav-links .gtp-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links .gtp-menu li { position: relative; }
.nav-links .gtp-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 180px;
  padding: .5rem 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  z-index: 200;
  list-style: none;
}
.nav-links .gtp-menu li:hover > ul { display: block; }
.nav-links .gtp-menu li ul li a {
  display: block;
  padding: .5rem 1rem;
}
.nav-links a,
.nav-links .gtp-menu a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .gtp-menu .current-menu-item > a,
.nav-links .gtp-menu .current-page-ancestor > a { color: var(--primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color .2s, color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.nav-phone { cursor: default; }
/* .nav-phone:hover — supprimé : bouton non-cliquable */

/* Bouton bilingue FR/AR dans le header */
.nav-bilingual-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 1.1rem;
  background: var(--primary);
  color: #fff !important;
  font-size: .88rem;
  font-weight: 700;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 160px;
  text-align: center;
  /* border transparent initial pour éviter le saut de taille lors du passage en arabe */
  border: 2px solid transparent;
  transition: background .35s ease, color .35s ease, border-color .35s ease, opacity .25s;
  text-decoration: none;
  cursor: default;
}
/* État arabe : fond blanc, texte + bordure bleu */
.nav-bilingual-btn.nb-ar {
  background: #fff !important;
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.nav-bilingual-btn span {
  display: block;
  transition: opacity .35s ease, transform .35s ease;
}
.nav-bilingual-btn span.nb-out {
  opacity: 0;
  transform: translateY(-5px);
}
@media (max-width: 900px) {
  .nav-bilingual-btn { display: none; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--text);
}
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu.open { display: block; }
/* Structure <ul><li><a> de wp_nav_menu() */
.mobile-menu .gtp-mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu .gtp-mobile-menu-list li ul {
  list-style: none;
  padding: 0 0 0 1rem;
  margin: 0;
}
.mobile-menu a,
.mobile-menu .gtp-mobile-menu-list a {
  display: block;
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .gtp-mobile-menu-list li:last-child > a { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu .gtp-mobile-menu-list .current-menu-item > a { color: var(--primary); }
.mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
/* Forcer inline-flex : .mobile-menu a { display:block } écraserait sinon le .btn */
.mobile-menu .mobile-actions .btn {
  display: inline-flex !important;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  width: 100%;
}
.mobile-menu .mobile-actions .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f8fafc;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,.7) 0%, rgba(255,255,255,.4) 40%, rgba(255,255,255,.1) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3rem 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(26,86,200,.2);
  border-radius: 99px;
  padding: .35rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-title em { color: var(--primary); font-style: normal; }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0;
}

/* ── Smartphone mockup ── */
.hero-phone-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.hero-phone-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--clr-primary);
  background: rgba(26, 86, 200, .10);
  border: 1px solid rgba(26, 86, 200, .25);
  padding: 4px 14px;
  border-radius: 20px;
  margin: 0;
  letter-spacing: .01em;
}
.hero-phone-link {
  display: block;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-phone-link:hover {
  transform: scale(1.05) translateY(-5px);
}
.hero-phone-frame {
  width: 128px;
  height: 234px;
  background: #1a1a2e;
  border-radius: 22px;
  border: 5px solid #2d2d50;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.40), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #c8dfe8;
}
.hero-phone-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
/* ─── Pulsation smartphone ─── */
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,.40), inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 0 rgba(26,86,200,.60); }
  50%      { box-shadow: 0 20px 60px rgba(0,0,0,.40), inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 22px rgba(26,86,200,.00); }
}
.hero-phone-frame.is-pulsing {
  animation: phonePulse var(--pulse-dur, 2s) ease-in-out infinite;
}

/* ─── Flèche clignotante vers le smartphone ─── */
@keyframes arrowBlink {
  /* translateX seulement — le wrapper gère translateY et scaleX */
  0%   { opacity: 1;   transform: translateX(0); }
  35%  { opacity: .08; transform: translateX(-10px); }
  70%  { opacity: 1;   transform: translateX(4px); }
  100% { opacity: 1;   transform: translateX(0); }
}
/* Wrapper : position absolue + flip (inline style depuis PHP) */
.hero-phone-arrow {
  position: absolute;
  pointer-events: none;
  z-index: 15;
  filter: drop-shadow(0 0 6px rgba(26,86,200,.55));
  display: flex;
  align-items: center;
}
/* Élément intérieur : animation uniquement */
.hero-phone-arrow-inner {
  animation: arrowBlink 1.5s ease-in-out infinite;
  display: flex;
  align-items: center;
}
.hero-phone-arrow svg {
  width: 42px;
  height: 42px;
  display: block;
}

/* Le décalage et la taille du téléphone sont gérés en inline via le Customizer */
.hero-glow {
  position: absolute;
  /* taille et flou pilotés via inline style depuis PHP */
  width: 580px;
  height: 580px;
  background: var(--primary-light);
  border-radius: 50%;
  filter: blur(80px);
}
/* Grand satellite — position pilotée via Customizer (inline style) */
.hero-satellite {
  position: absolute;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.18));
  animation: float 6s ease-in-out infinite;
}
/* Petit satellite — position pilotée via Customizer (inline style) */
.hero-satellite-small {
  position: absolute;
  object-fit: contain;
  opacity: .9;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.15));
  animation: float 9s ease-in-out infinite;
  display: none;
}
@media (min-width: 1025px) {
  .hero-satellite-small { display: block; }
}

/* ── Véhicules GPS sur carte hero ─────────────────────────────── */
.hero-gps-car {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 2;
  animation: heroCarBob 3s ease-in-out infinite;
  transform-origin: center bottom;
}
@keyframes heroCarBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.hero-gps-pin {
  display: flex;
  justify-content: center;
  margin-bottom: -2px;
}
.hero-car-body {
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
}
@media (max-width: 768px) {
  .hero-gps-car { display: none; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--primary);
  padding: .875rem 0;
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1rem;
  text-align: center;
  align-items: center;
}
.stat-item {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  opacity: .85;
  font-weight: 500;
  line-height: 1.2;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}
.section-header p { font-size: 1.05rem; color: var(--text-muted); }
.section-header--left { text-align: left; margin: 0 0 3.5rem; }

/* ===== FEATURES ===== */
.features-section { padding: 6rem 0; background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem;
  transition: box-shadow .2s, border-color .2s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(26,86,200,.2); }
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; }
.feature-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.65; }

/* ===== PRODUCTS ===== */
.products-section { padding: 6rem 0; background: var(--bg-muted); }
.products-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,86,200,.2);
  transform: translateY(-3px);
}
.product-thumb {
  aspect-ratio: 4/3;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-thumb img { transition: transform .4s ease; }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-thumb svg {
  width: 72px;
  height: 72px;
  color: #cbd5e1;
  transition: transform .4s;
}
.product-card:hover .product-thumb svg { transform: scale(1.1); }
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.product-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-excerpt {
  font-size: .88rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.product-footer--no-price { justify-content: stretch; }
.product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

/* ===== CATALOGUE PAGE ===== */
.catalogue-section { padding: 5rem 0; }
.catalogue-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 1.25rem 1.5rem;
}
.search-field {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.search-field svg {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}
.search-field input {
  width: 100%;
  padding: .65rem .65rem .65rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-muted);
  transition: border-color .2s;
  outline: none;
}
.search-field input:focus { border-color: var(--primary); }
.filter-btn {
  padding: .6rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-muted);
  transition: all .2s;
  font-family: var(--font);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.product-card.hidden { display: none; }

/* Stock badges */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 500;
  padding: .25rem .65rem;
  border-radius: 99px;
}
.stock-badge.in-stock { background: #dcfce7; color: #15803d; }
.stock-badge.out-stock { background: #fee2e2; color: #b91c1c; }

/* ===== PLATFORM PAGE ===== */
.platform-section { padding: 6rem 0; }
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.platform-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.platform-text h2 em { color: var(--primary); font-style: normal; }
.platform-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.platform-features { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.platform-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pf-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: .1rem;
}
.pf-icon svg { width: 16px; height: 16px; }
.pf-text strong { display: block; font-weight: 600; margin-bottom: .2rem; }
.pf-text span { font-size: .9rem; color: var(--text-muted); }
.platform-screen {
  background: #0f172a;
  border-radius: 1rem;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1e293b;
  box-shadow: var(--shadow-lg);
  text-align: center;
  color: rgba(255,255,255,.5);
  padding: 2rem;
}
.platform-screen svg { width: 56px; height: 56px; color: var(--primary); opacity: .5; margin: 0 auto 1rem; }
.platform-screen--image { padding: 0; overflow: hidden; background: #0f172a; }

.app-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.app-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  font-size: .9rem;
}
.app-link:hover { border-color: var(--primary); box-shadow: var(--shadow); color: var(--primary); }
.app-link svg { width: 20px; height: 20px; color: var(--primary); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 6rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cd-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.cd-icon svg { width: 18px; height: 18px; }
.cd-text strong { display: block; font-size: .85rem; font-weight: 600; color: var(--text-muted); margin-bottom: .25rem; text-transform: uppercase; letter-spacing: .05em; }
.cd-text span, .cd-text a { font-size: .95rem; color: var(--text); }
.cd-text a:hover { color: var(--primary); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.75rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .88rem; font-weight: 500; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .92rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-muted);
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: auto; padding: .65rem 2rem; font-size: .95rem; }
.form-message {
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: .9rem;
  display: none;
}
.form-message.success { background: #dcfce7; color: #15803d; display: block; }
.form-message.error { background: #fee2e2; color: #b91c1c; display: block; }
.form-group .req { color: #ef4444; }
.form-section-label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .75rem;
}
.devis-cats { display: flex; flex-direction: column; gap: .5rem; }
.devis-cat-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: .55rem .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-muted);
  transition: border-color .15s;
}
.devis-cat-row:has(.devis-cat-cb:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
}
.devis-cat-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 500;
  flex: 1;
  margin: 0;
}
.devis-cat-label input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.devis-cat-qty {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
  animation: fadeIn .15s ease;
}
.devis-cat-qty input[type="number"] {
  width: 5rem;
  padding: .3rem .5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  background: #fff;
}

/* ── Devis : type de client ── */
.devis-client-type {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.devis-type-option {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-muted);
  cursor: pointer;
  font-size: .95rem;
  font-weight: 500;
  transition: border-color .15s, background .15s;
  user-select: none;
  min-width: 160px;
}
.devis-type-option:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}
.devis-type-option input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.devis-type-icon { font-size: 1.2rem; }

/* ── Devis : panneaux documents ── */
.devis-docs-panel { display: none; }
.devis-docs-panel.devis-docs-visible {
  display: block;
  animation: fadeIn .2s ease;
}
.devis-docs-optional {
  font-weight: 400;
  font-size: .82rem;
  color: var(--text-muted);
  margin-left: .4rem;
}
.devis-docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.devis-doc-row {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-muted);
}
.devis-doc-label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.devis-doc-upload {
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  flex-wrap: wrap;
}
.devis-doc-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.devis-doc-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s;
}
.devis-doc-btn svg { width: 14px; height: 14px; }
.devis-doc-btn:hover { background: #1648b0; }
.devis-doc-name {
  font-size: .8rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}
@media (max-width: 640px) {
  .devis-docs-grid { grid-template-columns: 1fr; }
  .devis-client-type { flex-direction: column; }
  .devis-type-option { min-width: unset; }
}
@keyframes fadeIn { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: none; } }

/* ===== SINGLE PRODUCT ===== */
.single-product-section { padding: 5rem 0; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--text-muted); margin-bottom: 2rem; }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--border); }
.single-product-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.product-image-box {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-box svg { width: 100px; height: 100px; color: #cbd5e1; }
.product-info h1 { font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: 1rem; }
.product-info .product-price-big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.product-info .product-desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.product-features-list { margin-bottom: 2rem; }
.product-features-list h4 { font-size: .95rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 1rem; }
.product-features-list ul { display: flex; flex-direction: column; gap: .6rem; }
.product-features-list li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; }
.product-features-list li::before { content: '✓'; color: var(--primary); font-weight: 700; }
.product-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.product-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.meta-tag {
  padding: .3rem .8rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .82rem;
  color: var(--text-muted);
}
.meta-tag strong { color: var(--text); font-weight: 600; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1a56c8 0%, #1447a5 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.page-hero p { font-size: 1.1rem; opacity: .85; max-width: 560px; margin: 0 auto; }

/* ===== PLATFORM PREVIEW (homepage) ===== */
.platform-preview-section {
  padding: 6rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.platform-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.plist { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0; }
.plist-item { display: flex; gap: 1rem; align-items: flex-start; }
.plist-dot {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: .15rem;
}
.plist-dot svg { width: 13px; height: 13px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.site-footer > .container {
  max-width: 1440px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { min-width: 0; }
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand .site-logo span { font-size: 1rem; white-space: nowrap; vertical-align: middle; }
.footer-brand p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }
.footer-col h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul li a, .footer-col ul li span {
  font-size: .9rem;
  color: var(--text-muted);
  transition: color .2s;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-col ul li svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: .15rem; }
.footer-apps-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
}
.footer-apps-inner > ul { flex: 1 1 auto; min-width: 0; }
.footer-apps-extra-wrap {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: .75rem;
}
.footer-apps-extra {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.footer-apps-img {
  max-width: 100px;
  width: 100%;
  height: auto;
  border-radius: .5rem;
  display: block;
}
.footer-apps-text {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
  margin: 0;
  text-align: center;
}
.footer-phones { align-items: flex-start !important; }
.footer-phones-grid {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-phone-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .6rem;
}
.footer-phone-label {
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(26,86,200,.1);
  color: var(--primary);
  padding: .1em .5em;
  border-radius: .3rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 7rem;
}
.footer-phone-num {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .88rem; color: var(--text-muted); }

/* ===== NAV SOCIAL ICONS ===== */
.nav-social {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding-right: .5rem;
  border-right: 1px solid var(--border);
  margin-right: .25rem;
}
.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text-muted);
  transition: color .2s, background .2s;
}
.nav-social-link:hover { color: var(--primary); background: var(--primary-light); }
.nav-social-link svg { width: 17px; height: 17px; }

/* Mobile social list */
.mobile-social {
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.mobile-social .nav-social-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  width: auto;
  padding: .4rem .75rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-muted);
}
.mobile-social .nav-social-link:hover { border-color: var(--primary); }

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(1deg); }
  66%       { transform: translateY(-7px) rotate(-1deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

/* ===== PAGE TITLE ===== */
.entry-title, .wp-block-post-title { display: none; }

/* ===== GPS MAP ANIMATION SECTION ===== */
.gtp-gps-anim-section {
  padding: 5rem 0 4rem;
  background: #f0f4ff;
  overflow: hidden;
}
.gtp-gps-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.gtp-gps-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(26,86,200,.1);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 2rem;
  margin-bottom: .85rem;
}
.gtp-gps-badge svg { width: 14px; height: 14px; }
.gtp-gps-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 .6rem;
}
.gtp-gps-header p {
  font-size: .98rem;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
}
.gtp-gps-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* ── Carte ── */
.gtp-map-stage {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(26,86,200,.12);
  padding: 1.2rem;
  position: relative;
}
.gtp-dz-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.gtp-dz-fill {
  fill: rgba(26,86,200,.08);
}
.gtp-dz-stroke {
  fill: none;
  stroke: #1a56c8;
  stroke-width: 1.5;
  stroke-linejoin: round;
}
.gtp-route-line {
  fill: none;
  stroke: #1a56c8;
  stroke-width: 1;
  stroke-dasharray: 5 4;
  opacity: .45;
  animation: gtp-dash 20s linear infinite;
}
@keyframes gtp-dash {
  to { stroke-dashoffset: -200; }
}

/* ── Villes ── */
.gtp-cities circle {
  fill: #1a56c8;
  opacity: .7;
}
.gtp-cities text {
  fill: #1e3a8a;
  font-size: 8px;
  font-family: inherit;
  font-weight: 600;
  dominant-baseline: auto;
}

/* ── Traceur GPS ── */
#gtp-tracker { pointer-events: none; }
.gtp-ring-3 {
  fill: rgba(26,86,200,.12);
  animation: gtp-pulse-ring 2s ease-out infinite;
}
.gtp-ring-2 {
  fill: rgba(26,86,200,.22);
  animation: gtp-pulse-ring 2s ease-out infinite .4s;
}
.gtp-ring-1 {
  fill: rgba(26,86,200,.5);
  animation: gtp-pulse-ring 2s ease-out infinite .8s;
}
@keyframes gtp-pulse-ring {
  0%   { opacity: 1; }
  70%  { opacity: .3; }
  100% { opacity: 0; }
}
.gtp-pin-body {
  fill: #1a56c8;
  filter: drop-shadow(0 2px 6px rgba(26,86,200,.5));
}
.gtp-pin-hole { fill: #fff; }

/* ── Véhicules ── */
.gtp-vehicles-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.gtp-vehicle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  background: #fff;
  border-radius: 16px;
  padding: .9rem 1.1rem 1rem;
  box-shadow: 0 4px 20px rgba(26,86,200,.09);
  width: 120px;
  animation: gtp-bob 3s ease-in-out infinite;
  animation-delay: calc(var(--vi) * 0.55s);
  transition: transform .2s;
}
.gtp-vehicle-card:hover { transform: translateY(-4px); }
@keyframes gtp-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.gtp-car-pip {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.gtp-pip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: gtp-pip-pulse 1.8s ease-out infinite;
}
@keyframes gtp-pip-pulse {
  0%  { box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.gtp-pip-label {
  font-size: .65rem;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.gtp-car-svg {
  width: 88px;
  height: auto;
}
.gtp-car-label {
  font-size: .75rem;
  font-weight: 700;
  color: #1e3a8a;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Responsive GPS section */
@media (min-width: 768px) {
  .gtp-gps-body {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
  }
  .gtp-map-stage { max-width: 340px; flex-shrink: 0; }
  .gtp-vehicles-row {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    align-self: center;
  }
  .gtp-vehicle-card { width: 130px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  /* Hero visuel : centré, contenu, pas de débordement */
  .hero-visual {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    min-height: 240px;
  }
  /* Annule le décalage Customizer (translateX/translateY) — centrage forcé */
  .hero-phone-wrap {
    transform: scale(0.9) !important;
    transform-origin: center center !important;
  }
  .hero-satellite { display: none !important; }
  .hero-glow     { display: none !important; }
  .hero-phone-frame { width: 108px; height: 196px; }
  .hero-phone-logo  { width: 36px;  height: 36px;  }
  .features-grid  { grid-template-columns: 1fr 1fr; }
  .products-grid  { grid-template-columns: 1fr 1fr; }
  .catalogue-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .single-product-grid    { grid-template-columns: 1fr; }
  .contact-grid           { grid-template-columns: 1fr; }
  .platform-grid          { grid-template-columns: 1fr; }
  .platform-preview-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* ── Navigation ── */
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: block; }

  /* ── Hero ── */
  .hero               { min-height: auto; }   /* annule le min-height Customizer sur mobile */
  .hero-visual        { display: none !important; }
  .hero-satellite-small { display: none !important; }
  .hero-inner         { padding: 2.5rem 0; }
  /* Annule l'offset translateX/Y du Customizer (appliqué en style="" inline) */
  .hero-col           { transform: none !important; text-align: left !important; }
  .hero-grid          { gap: 0; }
  .hero-title         { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }
  .hero-desc          { font-size: .975rem; max-width: 100% !important; }
  .hero-actions       { flex-direction: column; gap: .75rem; align-items: flex-start; }
  .hero-actions .btn  { white-space: normal; }
  /* Fond hero : légèrement plus opaque pour garder la lisibilité sans le visuel */
  .hero-bg::after     { background: linear-gradient(to right, rgba(255,255,255,.88) 0%, rgba(255,255,255,.75) 100%); }

  /* ── Logo ticker ── */
  .logo-chip          { min-width: 100px; min-height: 52px; padding: .5rem 1rem; }
  .logo-ticker-section { padding: .35rem 0; }

  /* ── Sections : réduction des paddings ── */
  .features-section,
  .products-section,
  .platform-section,
  .catalogue-section,
  .contact-section    { padding: 3.5rem 0; }
  .platform-preview-section { padding: 3.5rem 0; }
  .rental-promo-section     { padding: 3.5rem 0; }

  /* ── Section headers ── */
  .section-header       { margin-bottom: 2rem; }
  .section-header--left { margin-bottom: 2rem; }
  .products-section-header { margin-bottom: 1.75rem; gap: 1rem; }

  /* ── Grids : une colonne ── */
  .features-grid  { grid-template-columns: 1fr; gap: 1.25rem; }
  .products-grid  { grid-template-columns: 1fr; gap: 1.25rem; }
  .catalogue-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid      { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; gap: .75rem; }

  /* ── Grids qui passent à 1 col à 1024px : réduction du gap vertical ── */
  .platform-grid         { gap: 2.5rem; }
  .platform-preview-grid { gap: 2.5rem; }
  .contact-grid          { gap: 2rem; }
  .rental-promo-grid     { gap: 2rem; }

  /* ── Cartes et boîtes : réduction des paddings internes ── */
  .feature-card         { padding: 1.5rem; }
  .contact-form-wrap    { padding: 1.5rem; }

  /* ── Footer ── */
  .site-footer          { padding: 3rem 0 1.5rem; }
  .footer-grid          { margin-bottom: 2rem; }

  /* ── Catalogue / Toolbar & cartes ── */
  .catalogue-toolbar { flex-direction: column; }
  .search-field      { min-width: 100%; }
  .product-body      { padding: 1rem; }
  .product-title     { font-size: .95rem !important; }

  /* ── Stats bar ── */
  .stat-number { font-size: 1.65rem; }
  .stat-label  { font-size: .72rem; }

  /* ── Mini-cartes rental promo : réduction thumbnail ── */
  .rental-mini-thumb  { width: 110px; height: 80px; }
  .rental-mini-name   { font-size: .88rem; }
}

/* ===== LOGO TICKER (bandeau clients) ===== */
/* @keyframes ticker-scroll supprimé — animation gérée en JS (pixels entiers) */

.logo-ticker-section {
  padding: .5rem 0;
  background: rgba(255, 255, 255, .97);
  border-top: none;
  border-bottom: none;
  overflow: hidden;
}
.logo-ticker-inner {
  display: flex;
  align-items: center;
}
.logo-ticker-label {
  display: none;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9ca3af;
  white-space: nowrap;
  padding: 0 1.5rem;
  border-right: 1px solid #e5e7eb;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .logo-ticker-label { display: block; }
}
.logo-ticker-overflow {
  overflow: hidden;
  flex: 1;
}
.logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  /* Pas d'animation CSS — le JS gère le défilement par pixels entiers */
  will-change: auto;
}
/* La pause hover est gérée en JS */
.logo-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  padding: .625rem 1.5rem;
  border-radius: .625rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
  min-width: 140px;
  min-height: 64px;
  flex-shrink: 0;
  transition: border-color .2s, box-shadow .2s;
}
.logo-chip:hover {
  border-color: rgba(26, 86, 200, .25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .10);
}

/* Chip : image seule */
.logo-chip:not(.logo-chip--with-name):not(.logo-chip--text-only) {
  padding: .75rem 1.75rem;
}

/* Chip : image + nom */
.logo-chip--with-name {
  min-width: 160px;
  padding: .625rem 1.25rem .75rem;
}

/* Chip : texte seul (pas d'image) */
.logo-chip--text-only {
  min-width: 130px;
  padding: .75rem 1.25rem;
}

.logo-chip img {
  /* max-height uniquement : l'image garde ses dimensions naturelles si elle est plus petite,
     elle est seulement réduite proportionnellement si elle dépasse le cadre */
  height: auto;
  width: auto;
  max-height: 38px;
  max-width: 130px;
  object-fit: contain;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity .25s;
  flex-shrink: 0;
  display: block;
}
.logo-chip:hover img {
  opacity: .82;
}

/* Nom sous l'image */
.logo-chip--with-name .logo-chip-name {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #9ca3af;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  transition: color .2s;
}
.logo-chip--with-name:hover .logo-chip-name {
  color: #6b7280;
}

/* Texte seul */
.logo-chip--text-only .logo-chip-name {
  font-size: .9375rem;
  font-weight: 700;
  color: #6b7280;
  text-align: center;
  transition: color .2s;
}
.logo-chip--text-only:hover .logo-chip-name {
  color: #374151;
}


/* ══════════════════════════════════════════════════════════════════
   PAGE LOCATION DE VOITURE
   ══════════════════════════════════════════════════════════════════ */

/* Hero spécifique location */
.location-hero .page-hero-icon {
  width: 56px; height: 56px;
  background: rgba(26,86,200,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .5rem;
  color: var(--primary);
}
.location-hero .page-hero-icon svg { width: 28px; height: 28px; }
.location-hero h1 { margin-bottom: .375rem; }
.location-hero p  { margin-top: 0; }

/* ── Menu secondaire catégories ────────────────────────────────── */
.location-subnav {
  background: #fff;
  border-bottom: 2px solid #e5e7eb;
  position: sticky;
  top: 72px;
  z-index: 90;
  transition: box-shadow .25s;
}
.location-subnav.is-stuck {
  box-shadow: 0 4px 18px rgba(0,0,0,.10);
}
.location-subnav-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.location-subnav-inner::-webkit-scrollbar { display: none; }

.loc-filter {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.1rem;
  border-radius: 2rem;
  border: 1.5px solid #e5e7eb;
  background: transparent;
  color: #374151;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s, border-color .18s, color .18s;
}
.loc-filter svg { width: 15px; height: 15px; }
.loc-filter:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(26,86,200,.05);
}
.loc-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.loc-filter-count {
  background: rgba(255,255,255,.25);
  border-radius: 1rem;
  padding: .05em .5em;
  font-size: .75rem;
  font-weight: 700;
}
.loc-filter.active .loc-filter-count {
  background: rgba(255,255,255,.25);
}
.loc-filter:not(.active) .loc-filter-count {
  background: #f3f4f6;
  color: #6b7280;
}

/* ── Bandeau CTA réservation ─────────────────────────────────────── */
.plv-cta-banner {
  background: linear-gradient(135deg, #1a56c8 0%, #0f3a8a 100%);
  padding: 0.6rem 0;
  position: relative;
  overflow: hidden;
}
.plv-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23ffffff' opacity='.08'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.plv-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.plv-cta-text {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  color: #fff;
}
.plv-cta-text strong {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.plv-cta-text span {
  font-size: .9rem;
  opacity: .85;
  line-height: 1.4;
}
.plv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: #1a56c8;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s, background .2s;
  flex-shrink: 0;
}
.plv-cta-btn:hover {
  background: #f0f6ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
.plv-cta-btn svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .plv-cta-inner { flex-direction: column; align-items: flex-start; }
  .plv-cta-btn { width: 100%; justify-content: center; }
}

/* ── Section + recherche ─────────────────────────────────────────── */
.location-section {
  padding: 3rem 0 5rem;
  background: #f8fafc;
  min-height: 60vh;
}
.location-search-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: .75rem;
  padding: .7rem 1.1rem;
  max-width: 440px;
  margin: 0 0 2.5rem;
  transition: border-color .2s;
}
.location-search-bar:focus-within {
  border-color: var(--primary);
}
.location-search-bar svg { width: 18px; height: 18px; color: #9ca3af; flex-shrink: 0; }
.location-search-bar input {
  border: none;
  outline: none;
  background: transparent;
  font-size: .9375rem;
  color: #111827;
  width: 100%;
}

/* ── Grille véhicules ────────────────────────────────────────────── */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

/* ── Carte véhicule ─────────────────────────────────────────────── */
.vehicle-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.11);
  border-color: rgba(26,86,200,.2);
}
.vehicle-unavailable {
  opacity: .7;
  filter: grayscale(.4);
}

/* Miniature */
.vehicle-thumb {
  position: relative;
  height: 200px;
  background: #f3f4f6;
  overflow: hidden;
}
.vehicle-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
  /* Prévenir le flou GPU lors du compositing de la carte parente */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  image-rendering: auto;
}
.vehicle-card:hover .vehicle-thumb img {
  transform: translate3d(0, 0, 0) scale(1.04);
}

.vehicle-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #d1d5db;
}
.vehicle-thumb-placeholder svg { width: 64px; height: 64px; }

/* Badges flottants */
.vehicle-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .25em .7em;
  border-radius: .35rem;
}
.vehicle-avail {
  position: absolute;
  bottom: .75rem; right: .75rem;
  font-size: .72rem;
  font-weight: 700;
  padding: .25em .7em;
  border-radius: .35rem;
}
.vehicle-avail.avail {
  background: rgba(16,185,129,.15);
  color: #065f46;
}
.vehicle-avail.unavail {
  background: rgba(239,68,68,.12);
  color: #991b1b;
}

/* Corps */
.vehicle-body {
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vehicle-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .35rem;
}
.vehicle-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 .85rem;
  line-height: 1.3;
}
.vehicle-year {
  font-size: .8rem;
  font-weight: 500;
  color: #9ca3af;
  margin-left: .35rem;
}

/* Specs */
.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  margin-bottom: 1rem;
}
.vehicle-spec {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .8125rem;
  color: #6b7280;
}
.vehicle-spec svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Footer carte */
.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px solid #f3f4f6;
}
.vehicle-price { display: flex; align-items: baseline; gap: .3rem; }
.price-amount {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
}
.price-unit {
  font-size: .78rem;
  color: #9ca3af;
  font-weight: 500;
}

/* Bouton petit */
.btn-sm {
  padding: .45rem .9rem;
  font-size: .8125rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.btn-sm svg { width: 14px; height: 14px; }

/* Messages vide */
.vehicle-no-result,
.vehicle-empty {
  text-align: center;
  padding: 5rem 0;
  color: var(--text-muted);
}
.vehicle-no-result-icon {
  margin: 0 auto 1.25rem;
  width: 72px; height: 72px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #d1d5db;
}
.vehicle-no-result-icon svg { width: 36px; height: 36px; }

/* ── Carrousel Véhicules (page Location) ──────────────────────── */
/* ── Layout 3 colonnes (promos + carrousel) ── */
.vloc-layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.vloc-layout .vloc-wrap {
  flex: 1 1 0;
  min-width: 0;
  max-width: 660px;
  margin: 0 auto;
}
.vloc-layout--has-promo .vloc-wrap {
  margin: 0;
}
.vloc-promo {
  flex: 0 0 200px;
  width: 200px;
  padding-top: 1.5rem;
}
.vloc-promo-content {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.vloc-promo-content p { margin-bottom: .75rem; }
.vloc-promo-content p:last-child { margin-bottom: 0; }
.vloc-promo-content strong { color: var(--primary); }

/* Sans promo : comportement centré original */
.vloc-wrap {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.vloc-carousel-outer {
  position: relative;
  margin: 0 28px;
}
.vloc-img-wrap {
  overflow: hidden;
  border-radius: 18px;
  background: #f1f5f9;
  line-height: 0;
}
.vloc-img-track {
  display: flex;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.vloc-img-slide { flex-shrink: 0; }
.vloc-img-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center center;
  background: #f1f5f9;
  display: block;
}
.vloc-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #9ca3af;
}
.vloc-img-placeholder svg { width: 80px; height: 80px; }
/* ── Flèches de navigation ── */
.vloc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 1.5px solid #e2e8f0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,.14);
  transition: background .18s, box-shadow .18s, transform .18s;
  color: #374151;
}
.vloc-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transform: translateY(-50%) scale(1.08);
}
.vloc-prev { left: -22px; }
.vloc-next { right: -22px; }
.vloc-info-wrap {
  padding: 1.5rem 1rem 0;
}
.vloc-info-slide { display: none; }
.vloc-info-slide.active { display: block; }
.vloc-name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #111827;
  text-transform: uppercase;
  margin: 0 0 .6rem;
}
.vloc-name span {
  font-weight: 500;
  font-size: .85em;
  color: #6b7280;
  margin-left: .4rem;
  text-transform: none;
  letter-spacing: 0;
}
.vloc-specs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin-bottom: .75rem;
  font-size: .95rem;
  color: #374151;
}
.vloc-spec-item { display: flex; align-items: center; gap: .35rem; }
.vloc-spec-item svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.vloc-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a56c8;
  margin: 0;
}
.vloc-price span {
  font-size: .85rem;
  font-weight: 400;
  color: #6b7280;
}
/* ── Ligne horizontale : badge + prix + bouton ── */
.vloc-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .6rem;
  flex-wrap: wrap;
}
.vloc-info-left {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.vloc-badge-avail {
  display: inline-flex;
  align-items: center;
  font-size: .78rem;
  font-weight: 700;
  padding: .2em .75em;
  border-radius: 1rem;
}
.vloc-badge-avail.avail   { background: #d1fae5; color: #065f46; }
.vloc-badge-avail.unavail { background: #fee2e2; color: #991b1b; }
.vloc-btn-reserver {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: .48rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: .88rem;
  transition: background .2s, transform .15s;
  letter-spacing: .02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.vloc-btn-reserver:hover { background: #1345a8; transform: translateY(-1px); }
.vloc-btn-indisponible {
  display: inline-flex;
  align-items: center;
  background: #e5e7eb;
  color: #9ca3af;
  font-weight: 600;
  padding: .48rem 1.4rem;
  border-radius: 999px;
  font-size: .88rem;
  cursor: not-allowed;
}
.vloc-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 1.4rem;
}
.vloc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
  padding: 0;
}
.vloc-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}
.vloc-empty {
  text-align: center;
  padding: 5rem 0;
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .vloc-carousel-outer { margin: 0 16px; }
  .vloc-prev { left: -14px; }
  .vloc-next { right: -14px; }
  .vloc-img-slide img, .vloc-img-placeholder { aspect-ratio: 16 / 9; height: auto; }
  .vloc-name { font-size: 1.05rem; }
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 640px) {
  .vehicle-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .location-subnav { top: 60px; }
  .location-search-bar { max-width: 100%; }
}
@media (min-width: 641px) and (max-width: 1023px) {
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SECTION PROMO LOCATION (accueil) ===== */
.rental-promo-section {
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #f8fafc 100%);
  padding: 5rem 0;
  border-top: 1px solid #dbeafe;
}
.rental-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.rental-promo-grid--no-vehicles {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.rental-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(26, 86, 200, .1);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}
.rental-promo-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Nom de marque */
.rental-promo-brand {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.1;
  margin: 0 0 .75rem;
}

/* Titre */
.rental-promo-title {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.18;
  color: #0f172a;
  margin-bottom: 1rem;
}
.rental-promo-title em {
  color: var(--primary);
  font-style: normal;
}

/* Description */
.rental-promo-desc {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .975rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

/* Liste avantages */
.rental-promo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.rental-promo-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 500;
  color: #1e293b;
}
.rental-promo-features li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Colonne cartes véhicules */
.rental-promo-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Mini carte véhicule */
.rental-mini-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .875rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.rental-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,86,200,.12);
  border-color: rgba(26,86,200,.3);
}

/* Thumbnail */
.rental-mini-thumb {
  flex-shrink: 0;
  width: 130px;
  height: 90px;
  background: #f3f4f6;
  overflow: hidden;
}
.rental-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.rental-mini-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
}
.rental-mini-placeholder svg { width: 40px; height: 40px; }

/* Infos */
.rental-mini-info {
  flex: 1;
  padding: .75rem 1rem .75rem 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.rental-mini-name {
  font-size: .95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}
.rental-mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}
.rental-mini-specs span {
  font-size: .7rem;
  font-weight: 600;
  background: #f1f5f9;
  color: #64748b;
  padding: .15rem .5rem;
  border-radius: .375rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.rental-mini-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-top: .1rem;
}
.rental-mini-price span {
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: .15rem;
}

/* Responsive */
@media (max-width: 900px) {
  .rental-promo-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .rental-promo-desc { max-width: 100%; }
}

/* ===== TRÈS PETITS ÉCRANS (≤ 480px) ===== */
@media (max-width: 480px) {
  /* Rental promo */
  .rental-mini-thumb         { width: 100px; height: 76px; }
  .rental-promo-section      { padding: 3rem 0; }
  .rental-promo-title        { font-size: 1.5rem; }

  /* Stats bar */
  .stat-number               { font-size: 1.45rem; }
  .stat-label                { font-size: .68rem; }
  .stats-grid                { gap: .5rem; }

  /* Sections */
  .features-section,
  .products-section,
  .platform-section,
  .catalogue-section,
  .contact-section           { padding: 2.5rem 0; }
  .platform-preview-section  { padding: 2.5rem 0; }

  /* Cartes */
  .feature-card              { padding: 1.25rem; }
  .contact-form-wrap         { padding: 1.1rem; }

  /* Hero */
  .hero-inner                { padding: 2rem 0; }
  .hero-title                { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-badge                { font-size: .72rem; padding: .3rem .75rem; }

  /* Section header */
  .section-header            { margin-bottom: 1.5rem; }
  .section-header h2         { font-size: 1.6rem; }

  /* Boutons : éviter le débordement horizontal */
  .btn                       { font-size: .88rem; padding: .65rem 1.25rem; }

  /* Mobile menu */
  .mobile-menu               { padding: .75rem 1rem 1.25rem; }

  /* Footer */
  .site-footer               { padding: 2.5rem 0 1.25rem; }

  /* Logo ticker chips plus compacts */
  .logo-chip                 { min-width: 110px; padding: .5rem 1rem; }
  .logo-chip img             { max-height: 30px; }

  /* Vehicle grid (location page) */
  .vehicle-grid              { grid-template-columns: 1fr !important; }
  .vehicle-thumb             { height: 160px; }

  /* Reservation form (location page) */
  .location-section          { padding: 2rem 0 3rem; }
  .plv-cta-inner             { gap: .75rem; }

  /* Promos latérales : masquées sur mobile */
  .vloc-layout               { flex-direction: column; }
  .vloc-promo                { display: none; }
  .vloc-layout--has-promo .vloc-wrap { margin: 0 auto; }
}
