/* ============================================================
   LVM Road Trips — Design System
   Location Voiture Montréal
   ============================================================ */

/* 1. DESIGN TOKENS
   ──────────────── */
:root {
  --lvm-ink: #1a1814;
  --lvm-ink-75: rgba(26,24,20,.75);
  --lvm-ink-50: rgba(26,24,20,.50);
  --lvm-ink-25: rgba(26,24,20,.25);
  --lvm-cream: #FAF7F2;
  --lvm-warm: #F0EBE3;
  --lvm-sand: #D4C5B2;
  --lvm-terra: #C4713B;
  --lvm-terra-hover: #d47a42;
  --lvm-terra-light: #FEF0E7;
  --lvm-forest: #2D4A3E;
  --lvm-forest-light: #E8F0ED;
  --lvm-sky: #4A7C9B;
  --lvm-sky-light: #E7F1F7;
  --lvm-night: #1E293B;
  --lvm-gold: #C9A84C;
  --lvm-gold-light: #F7F2E3;
  --lvm-rose: #B85C5C;
  --lvm-rose-light: #F7EBEB;
  --lvm-muted: #8B8579;
  --lvm-border: rgba(26,24,20,.08);
  --lvm-white: #ffffff;

  --lvm-shadow-sm: 0 1px 3px rgba(0,0,0,.04);
  --lvm-shadow-md: 0 8px 30px rgba(0,0,0,.06);
  --lvm-shadow-lg: 0 20px 60px rgba(0,0,0,.08);
  --lvm-shadow-cta: 0 8px 25px rgba(196,113,59,.3);

  --lvm-radius: 16px;
  --lvm-radius-sm: 10px;
  --lvm-radius-xs: 6px;
  --lvm-radius-pill: 100px;

  --lvm-font-heading: 'Instrument Serif', serif;
  --lvm-font-body: 'DM Sans', sans-serif;
  --lvm-font-mono: 'JetBrains Mono', monospace;

  --lvm-section-py: clamp(60px, 8vw, 120px);
  --lvm-container: 1200px;
  --lvm-content: 760px;
  --lvm-gap: clamp(16px, 3vw, 32px);
}


/* 0. OVERRIDES OceanWP pour road_trips
   ────────────────────────────────────── */

/* Fix double scrollbar : empêcher tout débordement horizontal */
body.single-road_trips,
body.single-road_trips #outer-wrap,
body.single-road_trips #wrap {
  overflow-x: hidden !important;
  max-width: 100% !important;
}
.lvm-roadtrip,
.lvm-roadtrip *:not(svg):not(path):not(iframe) {
  box-sizing: border-box;
}
.lvm-roadtrip {
  overflow: visible;
}
/* Masquer sidebar, page header, breadcrumb natif */
body.single-road_trips #right-sidebar,
body.single-road_trips #left-sidebar,
body.single-road_trips .sidebar-box,
body.single-road_trips .page-header,
body.single-road_trips .oceanwp-breadcrumb {
  display: none !important;
}
/* Le contenu prend toute la largeur */
body.single-road_trips #content-wrap,
body.single-road_trips #primary,
body.single-road_trips #content {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}


/* Override OceanWP typography sur .lvm-roadtrip */
.lvm-roadtrip h1, .lvm-roadtrip h2, .lvm-roadtrip h3,
.lvm-roadtrip h4, .lvm-roadtrip h5, .lvm-roadtrip h6 {
  font-family: var(--lvm-font-heading) !important;
  color: inherit !important;
  line-height: 1.2 !important;
}
.lvm-roadtrip p, .lvm-roadtrip a, .lvm-roadtrip span,
.lvm-roadtrip div, .lvm-roadtrip li, .lvm-roadtrip button {
  font-family: inherit;
}


/* 2. BASE & TYPOGRAPHY
   ──────────────────── */
.lvm-section,
.lvm-roadtrip {
  font-family: var(--lvm-font-body);
  color: var(--lvm-ink);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.lvm-roadtrip {
  overflow: visible;
  background: var(--lvm-cream);
  width: 100%;
}

.lvm-container {
  max-width: var(--lvm-container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
  width: 100%;
}

.lvm-section {
  padding: clamp(48px, 6vw, 96px) 0;
}

.lvm-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--lvm-terra);
  margin-bottom: 14px;
}
.lvm-section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--lvm-terra);
}

.lvm-section-title {
  font-family: var(--lvm-font-heading);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 16px;
  color: var(--lvm-ink);
}

.lvm-section-subtitle {
  color: var(--lvm-muted);
  font-size: 16px;
  max-width: var(--lvm-content);
  margin: 0 0 36px;
  line-height: 1.7;
}


/* 3. READING PROGRESS BAR
   ──────────────────────── */
.lvm-progress-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}
.lvm-progress-bar {
  height: 100%;
  width: 0;
  background: var(--lvm-terra);
  transition: width .15s linear;
}


/* 4. HERO
   ─────── */
.lvm-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  background-color: var(--lvm-forest);
  color: var(--lvm-white);
  overflow: hidden;
}
.lvm-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.lvm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.1) 100%);
  z-index: 1;
}
.lvm-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--lvm-container);
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(24px, 5vw, 48px) clamp(36px, 4vw, 56px);
}
.lvm-hero-tag {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  opacity: .85;
  margin-bottom: 20px;
}
.lvm-hero h1 {
  font-family: var(--lvm-font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  margin: 0 0 24px;
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.lvm-hero-excerpt {
  font-size: 18px;
  max-width: 640px;
  opacity: .9;
  margin-bottom: 40px;
  line-height: 1.65;
}
.lvm-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.lvm-hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lvm-font-mono);
  font-size: 15px;
  font-weight: 500;
}
.lvm-hero-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}


/* 5. QUICK BAR
   ──────────── */
.lvm-quickbar {
  position: relative;
  z-index: 10;
  margin-top: -48px;
  padding: 0 clamp(24px, 5vw, 48px);
}
.lvm-quickbar-inner {
  max-width: var(--lvm-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--lvm-border);
  border-radius: var(--lvm-radius);
  overflow: hidden;
  box-shadow: var(--lvm-shadow-lg);
}
.lvm-quickbar-item {
  background: var(--lvm-white);
  padding: 28px 20px;
  text-align: center;
}
.lvm-quickbar-item-icon {
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
}
.lvm-quickbar-item-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--lvm-muted);
  margin-bottom: 6px;
  display: block;
}
.lvm-quickbar-item-value {
  font-family: var(--lvm-font-mono);
  font-size: 17px;
  font-weight: 600;
  color: var(--lvm-ink);
  display: block;
}


/* 6. TABLE OF CONTENTS (sticky)
   ───────────────────────────── */
.lvm-toc {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lvm-forest);
  padding: 0;
  transition: box-shadow .3s;
}
.lvm-toc.is-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.lvm-toc-inner {
  max-width: var(--lvm-container);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
}
.lvm-toc-inner::-webkit-scrollbar { display: none; }
.lvm-toc a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s, background .2s;
  border-bottom: 2px solid transparent;
}
.lvm-toc a:hover,
.lvm-toc a.is-active {
  color: var(--lvm-white);
  background: rgba(255,255,255,.08);
  border-bottom-color: var(--lvm-terra);
}


/* 7. INTRODUCTION
   ─────────────── */
.lvm-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lvm-gap);
  align-items: start;
}
@media (min-width: 768px) {
  .lvm-intro { grid-template-columns: 1.2fr 1fr; }
}

.lvm-intro-text {
  font-size: 18px;
  line-height: 1.85;
}
.lvm-intro-text p:first-of-type::first-letter {
  font-family: var(--lvm-font-heading);
  font-size: 3.5em;
  float: left;
  line-height: .85;
  margin: 6px 12px 0 0;
  color: var(--lvm-terra);
}

.lvm-intro-figure {
  position: sticky;
  top: 80px;
}
.lvm-intro-figure img {
  width: 100%;
  border-radius: var(--lvm-radius);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.lvm-intro-figure figcaption {
  font-size: 14px;
  color: var(--lvm-muted);
  margin-top: 8px;
  text-align: center;
}


/* 8. CTA BOXES
   ──────────── */
.lvm-cta-box {
  background: linear-gradient(135deg, var(--lvm-forest) 0%, #1d3a2f 100%);
  border-radius: var(--lvm-radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin: 48px 0;
}
.lvm-cta-box-text {
  color: var(--lvm-white);
  font-size: 19px;
  font-weight: 500;
}
.lvm-cta-box-text span {
  display: block;
  font-size: 15px;
  opacity: .7;
  margin-top: 6px;
  font-weight: 400;
}

.lvm-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--lvm-terra);
  color: var(--lvm-white);
  border: none;
  border-radius: var(--lvm-radius-pill);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--lvm-font-body);
  text-decoration: none;
  cursor: pointer;
  transition: all .3s;
}
.lvm-cta:hover {
  background: var(--lvm-terra-hover);
  transform: translateY(-2px);
  box-shadow: var(--lvm-shadow-cta);
  color: var(--lvm-white);
}
.lvm-cta-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
}
.lvm-cta-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  box-shadow: none;
}


/* 9. MAP
   ────── */
.lvm-map-wrap {
  background: var(--lvm-white);
  border-radius: var(--lvm-radius);
  border: 1px solid var(--lvm-border);
  overflow: hidden;
  box-shadow: var(--lvm-shadow-md);
}
.lvm-map-legend {
  display: flex;
  gap: 24px;
  padding: 16px 24px;
  font-size: 14px;
  color: var(--lvm-muted);
  border-bottom: 1px solid var(--lvm-border);
}
.lvm-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lvm-legend-item span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.lvm-legend-start span { background: var(--lvm-forest); }
.lvm-legend-stop span  { background: var(--lvm-terra); }
.lvm-legend-end span   { background: var(--lvm-rose); }

.lvm-map {
  height: 480px;
  width: 100%;
}

.lvm-map-stops {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
  border-top: 1px solid var(--lvm-border);
}
.lvm-map-stops::-webkit-scrollbar { display: none; }
.lvm-map-stop-btn {
  flex: 0 0 auto;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lvm-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  font-family: var(--lvm-font-body);
}
.lvm-map-stop-btn:hover,
.lvm-map-stop-btn.is-active {
  color: var(--lvm-terra);
  border-bottom-color: var(--lvm-terra);
}
.lvm-map-stop-btn .stop-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lvm-terra-light);
  color: var(--lvm-terra);
  font-size: 11px;
  font-weight: 700;
  margin-right: 8px;
}

/* Leaflet popup */
.lvm-popup {
  font-family: var(--lvm-font-body);
  min-width: 200px;
}
.lvm-popup img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--lvm-radius-xs);
  margin-bottom: 8px;
}
.lvm-popup h4 {
  font-family: var(--lvm-font-heading);
  font-size: 17px;
  margin: 0 0 4px;
}
.lvm-popup p {
  font-size: 15px;
  color: var(--lvm-muted);
  margin: 0;
  line-height: 1.5;
}

/* Leaflet custom markers */
.lvm-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: var(--lvm-font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--lvm-white);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  border: 2px solid var(--lvm-white);
}
.lvm-marker-start { background: var(--lvm-forest); width: 36px; height: 36px; }
.lvm-marker-stop  { background: var(--lvm-terra); }
.lvm-marker-end   { background: var(--lvm-rose); width: 36px; height: 36px; }


/* 10. PACE SELECTOR
   ──────────────── */
.lvm-pace {
  margin-bottom: 48px;
}
.lvm-pace-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.lvm-pace-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 12px;
  background: var(--lvm-white);
  border: 2px solid var(--lvm-border);
  border-radius: var(--lvm-radius-sm);
  cursor: pointer;
  transition: all .25s;
  font-family: var(--lvm-font-body);
}
.lvm-pace-btn:hover {
  border-color: var(--lvm-sand);
  box-shadow: var(--lvm-shadow-sm);
}
.lvm-pace-btn.is-active {
  border-color: var(--lvm-terra);
  background: var(--lvm-terra-light);
  box-shadow: 0 0 0 4px rgba(196,113,59,.1);
}
.lvm-pace-emoji { font-size: 1.75rem; }
.lvm-pace-label {
  font-weight: 700;
  font-size: 16px;
}
.lvm-pace-days {
  font-size: 14px;
  color: var(--lvm-muted);
}
.lvm-pace-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--lvm-terra);
  color: var(--lvm-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--lvm-radius-pill);
  letter-spacing: .02em;
}
.lvm-pace-summary {
  background: var(--lvm-warm);
  border-radius: var(--lvm-radius-sm);
  padding: 18px 24px;
  font-size: 15px;
  color: var(--lvm-ink-75);
  line-height: 1.7;
}


/* 11. DAY CARDS (ÉTAPES)
   ────────────────────── */
.lvm-day-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--lvm-white);
  border-radius: var(--lvm-radius);
  overflow: hidden;
  border: 1px solid var(--lvm-border);
  margin-bottom: 32px;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
@media (min-width: 768px) {
  .lvm-day-card { grid-template-columns: 1fr 1fr; }
  .lvm-day-card:nth-child(even) .lvm-day-card-img { order: 2; }
}

.lvm-day-card[hidden] { display: none; }

.lvm-day-card-img {
  position: relative;
  overflow: hidden;
}
.lvm-day-card-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.lvm-day-card:hover .lvm-day-card-img img {
  transform: scale(1.03);
}
.lvm-day-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--lvm-ink);
  color: var(--lvm-white);
  font-family: var(--lvm-font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--lvm-radius-pill);
  letter-spacing: .04em;
}

.lvm-day-card-body {
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lvm-day-route {
  font-size: 14px;
  color: var(--lvm-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.lvm-day-card-body h3 {
  font-family: var(--lvm-font-heading);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 16px;
}
.lvm-day-card-body p {
  color: var(--lvm-ink-75);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.lvm-day-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.lvm-day-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  background: var(--lvm-warm);
  border-radius: var(--lvm-radius-pill);
  color: var(--lvm-ink-75);
}

.lvm-day-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.lvm-day-cta {
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--lvm-radius-pill);
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.lvm-day-cta-primary {
  background: var(--lvm-terra);
  color: var(--lvm-white);
}
.lvm-day-cta-primary:hover {
  background: var(--lvm-terra-hover);
  box-shadow: var(--lvm-shadow-cta);
  color: var(--lvm-white);
}
.lvm-day-cta-secondary {
  background: var(--lvm-warm);
  color: var(--lvm-ink);
}
.lvm-day-cta-secondary:hover {
  background: var(--lvm-sand);
}


/* 12. ACTIVITY DRAWER
   ─────────────────── */
.lvm-activities-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lvm-forest);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--lvm-font-body);
}
.lvm-activities-toggle::after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--lvm-forest-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}
.lvm-activities-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.lvm-activities-drawer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.16,1,.3,1);
}
.lvm-activities-drawer.is-open {
  max-height: 800px;
}

.lvm-activity-list {
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lvm-activity {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--lvm-cream);
  border-radius: var(--lvm-radius-xs);
  font-size: 15px;
}
.lvm-activity-icon {
  font-size: 21px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lvm-white);
  border-radius: var(--lvm-radius-xs);
}
.lvm-activity-info { flex: 1; min-width: 0; }
.lvm-activity-name {
  font-weight: 600;
  color: var(--lvm-ink);
}
.lvm-activity-note {
  font-size: 14px;
  color: var(--lvm-muted);
  margin-top: 3px;
}
.lvm-activity-price {
  font-family: var(--lvm-font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--lvm-forest);
  white-space: nowrap;
  flex-shrink: 0;
}
.lvm-activity-link {
  font-size: 14px;
  color: var(--lvm-terra);
  text-decoration: none;
  font-weight: 600;
}
.lvm-activity-link:hover { text-decoration: underline; }


/* 13. ACCOMMODATION CARDS
   ─────────────────────── */
.lvm-acc-hero {
  background: linear-gradient(135deg, #FF5A5F 0%, #e04347 100%);
  border-radius: var(--lvm-radius);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
  color: var(--lvm-white);
}
.lvm-acc-hero-text {
  font-size: 20px;
  font-weight: 600;
}
.lvm-acc-hero-text span {
  display: block;
  font-size: 15px;
  opacity: .85;
  font-weight: 400;
  margin-top: 6px;
}

.lvm-acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.lvm-acc-card {
  background: var(--lvm-white);
  border-radius: var(--lvm-radius-sm);
  overflow: hidden;
  border: 1px solid var(--lvm-border);
  transition: all .3s;
}
.lvm-acc-card:hover {
  box-shadow: var(--lvm-shadow-md);
  transform: translateY(-4px);
}

.lvm-acc-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.lvm-acc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.lvm-acc-card:hover .lvm-acc-card-img img {
  transform: scale(1.05);
}
.lvm-acc-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--lvm-white);
  padding: 5px 14px;
  border-radius: var(--lvm-radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.lvm-acc-card-body {
  padding: 24px;
}
.lvm-acc-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lvm-gold);
  margin-bottom: 6px;
}
.lvm-acc-location {
  font-size: 12px;
  color: var(--lvm-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.lvm-acc-card-body h3,
.lvm-acc-card-body h4 {
  font-family: var(--lvm-font-heading) !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
  letter-spacing: -.005em;
  color: var(--lvm-ink) !important;
}
.lvm-acc-desc {
  font-size: 15px;
  color: var(--lvm-ink-75);
  line-height: 1.7;
  margin-bottom: 18px;
}
.lvm-acc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lvm-acc-price {
  font-family: var(--lvm-font-mono);
  font-size: 17px;
  font-weight: 600;
  color: var(--lvm-ink);
}
.lvm-acc-price small {
  font-weight: 400;
  font-size: 14px;
  color: var(--lvm-muted);
}
.lvm-acc-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--lvm-terra);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.lvm-acc-link:hover {
  gap: 8px;
  text-decoration: none;
}


/* 14. BUDGET CALCULATOR
   ──────────────────── */
.lvm-budget-widget {
  background: var(--lvm-white);
  border-radius: var(--lvm-radius);
  border: 1px solid var(--lvm-border);
  overflow: hidden;
  box-shadow: var(--lvm-shadow-md);
}

.lvm-budget-header {
  background: linear-gradient(135deg, var(--lvm-night) 0%, #0f172a 100%);
  color: var(--lvm-white);
  padding: 32px;
  text-align: center;
}
.lvm-budget-total-label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .6;
  margin-bottom: 8px;
}
.lvm-budget-total {
  font-family: var(--lvm-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--lvm-gold);
  display: block;
}
.lvm-budget-per-person {
  display: block;
  font-size: 15px;
  opacity: .7;
  margin-top: 4px;
}

.lvm-budget-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--lvm-border);
}
.lvm-budget-control {
  background: var(--lvm-cream);
  padding: 16px 20px;
}
.lvm-budget-control label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--lvm-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.lvm-budget-control select {
  width: 100%;
  height: auto !important;
  min-height: 44px;
  padding: 11px 38px 11px 14px !important;
  border: 1px solid var(--lvm-border) !important;
  border-radius: var(--lvm-radius-xs) !important;
  font-family: var(--lvm-font-body) !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  color: var(--lvm-ink) !important;
  background-color: var(--lvm-white) !important;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Chevron custom SVG (remplace le chevron natif qui peut masquer le texte) */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%23C4713B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: border-color .2s, box-shadow .2s;
}
.lvm-budget-control select:hover,
.lvm-budget-control select:focus-visible {
  border-color: var(--lvm-terra) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(196,113,59,.15) !important;
}

.lvm-budget-chart {
  padding: 24px 32px;
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 100px;
}
.lvm-budget-chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  min-height: 8px;
  transition: height .4s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.lvm-budget-chart-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--lvm-muted);
  white-space: nowrap;
}

.lvm-budget-lines {
  padding: 0 32px 24px;
}
.lvm-budget-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--lvm-border);
}
.lvm-budget-line:last-child { border-bottom: none; }
.lvm-budget-line-icon {
  font-size: 19px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--lvm-radius-xs);
  flex-shrink: 0;
}
.lvm-budget-line-name {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
}
.lvm-budget-line-amount {
  font-family: var(--lvm-font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--lvm-ink);
}
.lvm-budget-line-link {
  font-size: 13px;
  color: var(--lvm-terra);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.lvm-budget-line-link:hover { text-decoration: underline; }

.lvm-budget-footer {
  padding: 16px 32px;
  background: var(--lvm-cream);
  font-size: 14px;
  color: var(--lvm-muted);
  text-align: center;
}


/* 15. SEASON CARDS
   ──────────────── */
.lvm-seasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.lvm-season-card {
  background: var(--lvm-white);
  border-radius: var(--lvm-radius-sm);
  padding: 24px;
  text-align: center;
  border: 2px solid var(--lvm-border);
  cursor: pointer;
  transition: all .25s;
  position: relative;
}
.lvm-season-card::after {
  content: "Cliquer pour voir";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--lvm-terra);
  opacity: 0;
  transition: opacity .2s;
}
.lvm-season-card:hover::after { opacity: .8; }
.lvm-season-card:hover,
.lvm-season-card:focus-visible {
  border-color: var(--lvm-terra);
  box-shadow: var(--lvm-shadow-sm);
  transform: translateY(-2px);
}
.lvm-season-card:focus-visible {
  outline: 2px solid var(--lvm-terra);
  outline-offset: 2px;
}
.lvm-season-card.is-active {
  border-color: var(--lvm-terra);
  background: var(--lvm-terra-light);
  box-shadow: var(--lvm-shadow-md);
}
.lvm-season-card.is-active::after {
  content: "Sélectionné";
  color: var(--lvm-terra);
  opacity: 1;
  font-style: normal;
}

.lvm-season-emoji { font-size: 2rem; margin-bottom: 8px; display: block; }
.lvm-season-label {
  font-family: var(--lvm-font-heading);
  font-size: 19px;
  margin-bottom: 4px;
}
.lvm-season-months {
  font-size: 14px;
  color: var(--lvm-muted);
  margin-bottom: 8px;
}
.lvm-season-temp {
  font-family: var(--lvm-font-mono);
  font-size: 15px;
  margin-bottom: 8px;
}

.lvm-season-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: var(--lvm-radius-pill);
}
.lvm-badge-ideal      { background: var(--lvm-forest-light); color: var(--lvm-forest); }
.lvm-badge-recommande { background: var(--lvm-sky-light);    color: var(--lvm-sky); }
.lvm-badge-possible   { background: var(--lvm-gold-light);   color: var(--lvm-gold); }
.lvm-badge-deconseille { background: var(--lvm-rose-light);  color: var(--lvm-rose); }

.lvm-season-detail {
  margin-top: 24px;
  background: var(--lvm-white);
  border-radius: var(--lvm-radius-sm);
  padding: 24px 32px;
  border: 1px solid var(--lvm-border);
  font-size: 16px;
  line-height: 1.8;
  color: var(--lvm-ink-75);
  display: none;
}
.lvm-season-detail.is-visible { display: block; }


/* 16. TIPS CARDS
   ─────────────── */
.lvm-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.lvm-tip-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--lvm-white);
  border-radius: var(--lvm-radius-sm);
  border: 1px solid var(--lvm-border);
  transition: box-shadow .3s;
}
.lvm-tip-card:hover {
  box-shadow: var(--lvm-shadow-sm);
}

.lvm-tip-icon {
  font-size: 26px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--lvm-radius-sm);
  flex-shrink: 0;
}

.lvm-tip-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}
.lvm-tip-text {
  font-size: 15px;
  color: var(--lvm-ink-75);
  line-height: 1.65;
}


/* 17. FAQ ACCORDION
   ──────────────── */
.lvm-faq-list {
  max-width: var(--lvm-content);
  margin: 0 auto;
}

.lvm-faq-item {
  border-bottom: 1px solid var(--lvm-border);
}
.lvm-faq-item:first-child {
  border-top: 1px solid var(--lvm-border);
}

.lvm-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--lvm-font-heading);
  font-size: 19px;
  color: var(--lvm-ink);
  transition: color .2s;
}
.lvm-faq-question:hover { color: var(--lvm-terra); }

.lvm-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lvm-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.lvm-faq-question[aria-expanded="true"] .lvm-faq-icon {
  transform: rotate(45deg);
  background: var(--lvm-terra-light);
}

.lvm-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.16,1,.3,1);
}
.lvm-faq-answer-inner {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--lvm-ink-75);
}


/* 18. RELATED TRIPS
   ──────────────── */
.lvm-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Archive card — réutilisé pour related */
.rt-card {
  background: var(--lvm-white);
  border-radius: var(--lvm-radius-sm);
  overflow: hidden;
  border: 1px solid var(--lvm-border);
  transition: all .3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.rt-card:hover {
  box-shadow: var(--lvm-shadow-md);
  transform: translateY(-4px);
}

.rt-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.rt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.rt-card:hover .rt-card-img img { transform: scale(1.05); }

.rt-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: var(--lvm-radius-pill);
}
.rt-diff-facile  { background: var(--lvm-forest-light); color: var(--lvm-forest); }
.rt-diff-modere  { background: var(--lvm-gold-light);   color: var(--lvm-gold); }
.rt-diff-sportif { background: var(--lvm-rose-light);   color: var(--lvm-rose); }

.rt-card-body { padding: 20px; }
.rt-card-dest {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  color: var(--lvm-muted);
  margin-bottom: 6px;
}
.rt-card-title {
  font-family: var(--lvm-font-heading);
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 8px;
}
.rt-card-meta {
  font-size: 15px;
  color: var(--lvm-muted);
  margin-bottom: 10px;
}
.rt-card-excerpt {
  font-size: 15px;
  color: var(--lvm-ink-75);
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rt-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--lvm-border);
}
.rt-card-rating {
  font-size: 15px;
  font-weight: 600;
}
.rt-card-price {
  font-family: var(--lvm-font-mono);
  font-size: 15px;
  color: var(--lvm-forest);
  font-weight: 500;
}
.rt-card-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--lvm-terra);
  text-decoration: none;
}
.rt-card-link:hover { text-decoration: underline; }


/* 19. FINAL CTA
   ──────────── */
.lvm-final-cta {
  background: var(--lvm-ink);
  padding: var(--lvm-section-py) 0;
  text-align: center;
  color: var(--lvm-white);
}
.lvm-final-cta h2 {
  font-family: var(--lvm-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 12px;
  font-weight: 400;
  color: #ffffff !important;
}
.lvm-final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,.7) !important;
  margin: 0 0 32px;
}
.lvm-final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}


/* 20. DISCLOSURE
   ──────────── */
.lvm-disclosure {
  font-size: 14px;
  color: var(--lvm-muted);
  line-height: 1.6;
  padding: 16px 20px;
  background: var(--lvm-warm);
  border-radius: var(--lvm-radius-xs);
  border-left: 3px solid var(--lvm-sand);
  margin-bottom: 32px;
}


/* 21. SCROLL REVEAL
   ──────────────── */
.lvm-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.lvm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* 22. RESPONSIVE
   ──────────── */
/* ── MOBILE (< 768px) ── */
@media (max-width: 767px) {
  /* Hero */
  .lvm-hero { min-height: 50vh; }
  .lvm-hero h1 { font-size: 2.5rem; }
  .lvm-hero-excerpt { font-size: 16px; margin-bottom: 28px; }
  .lvm-hero-stats { gap: 16px; }
  .lvm-hero-stat { font-size: 13px; }
  .lvm-hero-stat-icon { width: 36px; height: 36px; font-size: 1rem; }
  .lvm-hero-inner { padding-bottom: 36px !important; }

  /* Quick bar */
  .lvm-quickbar { margin-top: -36px; }
  .lvm-quickbar-inner { grid-template-columns: repeat(2, 1fr); }
  .lvm-quickbar-item:last-child { grid-column: 1 / -1; }
  .lvm-quickbar-item { padding: 20px 16px; }
  .lvm-quickbar-item-value { font-size: 15px; }

  /* TOC */
  .lvm-toc a { padding: 12px 16px; font-size: 13px; }

  /* Sections */
  .lvm-section { padding: clamp(36px, 5vw, 56px) 0; }
  .lvm-section-title { font-size: 1.75rem; }

  /* Intro */
  .lvm-intro-text { font-size: 16px; }
  .lvm-intro-figure { position: static; margin-top: 24px; }
  .lvm-intro-figure img { aspect-ratio: 16/10; }

  /* CTA box */
  .lvm-cta-box { padding: 24px; text-align: center; justify-content: center; flex-direction: column; }
  .lvm-cta-box-text { font-size: 17px; text-align: center; }
  .lvm-cta { padding: 14px 28px; font-size: 15px; width: 100%; justify-content: center; }

  /* Map */
  .lvm-map { height: 300px; }
  .lvm-map-stop-btn { padding: 12px 14px; font-size: 13px; }

  /* Pace */
  .lvm-pace-buttons { grid-template-columns: 1fr; gap: 8px; }
  .lvm-pace-btn { flex-direction: row; padding: 16px 20px; gap: 12px; }
  .lvm-pace-emoji { font-size: 1.5rem; }
  .lvm-pace-badge { position: static; margin-left: auto; }

  /* Day cards */
  .lvm-day-card { margin-bottom: 24px; }
  .lvm-day-card-img img { min-height: 220px; }
  .lvm-day-card-body { padding: 24px; }
  .lvm-day-card-body h3 { font-size: 1.35rem; }
  .lvm-day-ctas { flex-direction: column; }
  .lvm-day-cta { text-align: center; justify-content: center; }

  /* Activities */
  .lvm-activity { flex-wrap: wrap; }
  .lvm-activity-price { margin-left: 50px; }

  /* Accommodations */
  .lvm-acc-hero { text-align: center; justify-content: center; flex-direction: column; padding: 28px 24px; }
  .lvm-acc-hero-text { font-size: 18px; }
  .lvm-acc-grid { grid-template-columns: 1fr; }
  .lvm-acc-card-body { padding: 20px; }

  /* Budget */
  .lvm-budget-controls { grid-template-columns: 1fr; }
  .lvm-budget-lines { padding: 0 20px 20px; }
  .lvm-budget-chart { padding: 16px 20px; }
  .lvm-budget-header { padding: 28px 20px; }
  .lvm-budget-total { font-size: 2rem !important; }
  .lvm-budget-line { flex-wrap: wrap; }

  /* Seasons */
  .lvm-seasons-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lvm-season-card { padding: 20px 16px; }
  .lvm-season-emoji { font-size: 1.75rem; }

  /* Tips */
  .lvm-tips-grid { grid-template-columns: 1fr; }
  .lvm-tip-card { padding: 20px; }

  /* FAQ */
  .lvm-faq-question { font-size: 17px !important; padding: 18px 0; }

  /* Final CTA */
  .lvm-final-cta h2 { font-size: 1.5rem !important; }
  .lvm-final-cta-buttons { flex-direction: column; align-items: center; }
  .lvm-final-cta-buttons .lvm-cta { width: 100%; max-width: 320px; justify-content: center; }

  /* Related / archive cards */
  .lvm-related-grid { grid-template-columns: 1fr; }
  .rt-card-title { font-size: 1.1rem !important; }

  /* Breadcrumb */
  .lvm-breadcrumb { font-size: 14px !important; }
}

/* ── TABLETTE (768-1023px) ── */
@media (min-width: 768px) and (max-width: 1023px) {
  .lvm-quickbar-inner { grid-template-columns: repeat(5, 1fr); }
  .lvm-acc-grid { grid-template-columns: repeat(2, 1fr); }
  .lvm-day-card-body { padding: 28px; }
  .lvm-tips-grid { grid-template-columns: repeat(2, 1fr); }
  .lvm-seasons-grid { grid-template-columns: repeat(4, 1fr); }
}


/* 23. PRINT
   ──────── */
@media print {
  .lvm-progress-wrap,
  .lvm-toc,
  .lvm-pace,
  .lvm-map-section,
  .lvm-budget-controls,
  .lvm-budget-chart,
  .lvm-cta,
  .lvm-cta-box,
  .lvm-acc-hero,
  .lvm-final-cta { display: none !important; }

  .lvm-section { padding: 24px 0; }
  .lvm-day-card { break-inside: avoid; }
}

/* ============================================================
   SECTIONS AJOUTÉES v1.7 — Véhicule reco + Checklist + Related
   ============================================================ */

/* Véhicule recommandé */
.lvm-vehicle-reco {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  max-width: 1100px;
  margin: clamp(32px, 4vw, 48px) auto 0;
  align-items: start;
}
.lvm-vehicle-reco-card {
  padding: clamp(32px, 3.5vw, 44px);
  background: var(--lvm-forest);
  color: #fff;
  border-radius: var(--lvm-radius);
  box-shadow: var(--lvm-shadow-lg);
  position: relative;
  overflow: hidden;
}
.lvm-vehicle-reco-card--primary::before {
  content: "Recommandation";
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--lvm-terra);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--lvm-radius-pill);
}
.lvm-vehicle-reco-card .loc-section-label,
.lvm-vehicle-reco-card .lvm-section-label {
  color: rgba(255,255,255,.7) !important;
}
.lvm-vehicle-reco-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 18px;
}
.lvm-vehicle-reco-card h3 {
  font-family: var(--lvm-font-heading) !important;
  font-size: clamp(1.55rem, 2.3vw, 1.95rem) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  margin: 0 0 16px !important;
  color: #fff !important;
  letter-spacing: -.015em !important;
  text-wrap: balance;
}
.lvm-vehicle-reco-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.lvm-vehicle-reco-card p strong {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, rgba(184,112,75,.55) 60%);
  padding: 0 2px;
}
.lvm-vehicle-reco-card .lvm-cta {
  background: var(--lvm-terra);
  color: #fff;
}
.lvm-vehicle-reco-card .lvm-cta:hover {
  background: var(--lvm-terra-hover, #9B5D3A);
  transform: translateY(-1px);
}
.lvm-vehicle-reco-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lvm-vehicle-reco-checklist li {
  padding: 14px 16px 14px 40px;
  background: var(--lvm-cream);
  border-radius: var(--lvm-radius-sm);
  font-size: 14px;
  line-height: 1.55;
  color: var(--lvm-ink-75);
  position: relative;
}
.lvm-vehicle-reco-checklist li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lvm-terra);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lvm-vehicle-reco-checklist li strong {
  color: var(--lvm-ink);
  font-weight: 700;
}

/* Checklist avant départ */
.lvm-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  max-width: 1180px;
  margin: clamp(32px, 4vw, 48px) auto 0;
}
.lvm-checklist-col {
  padding: 24px 24px 28px;
  background: #fff;
  border: 1px solid var(--lvm-border);
  border-radius: var(--lvm-radius);
}
.lvm-roadtrip .lvm-checklist-col h3.lvm-checklist-title,
h3.lvm-checklist-title {
  font-family: var(--lvm-font-body) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--lvm-ink) !important;
  margin: 0 0 18px !important;
  letter-spacing: 0 !important;
  line-height: 1.3 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lvm-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lvm-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--lvm-ink-75);
  padding: 4px 0;
}
.lvm-checklist input[type="checkbox"] {
  accent-color: var(--lvm-terra);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

/* Road trips similaires */
.lvm-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  max-width: 1180px;
  margin: clamp(32px, 4vw, 48px) auto 0;
}
.lvm-related-card {
  background: #fff;
  border: 1px solid var(--lvm-border);
  border-radius: var(--lvm-radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .35s, border-color .3s;
}
.lvm-related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lvm-shadow-lg);
  border-color: rgba(184,112,75,.3);
}
.lvm-related-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.lvm-related-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--lvm-cream);
}
.lvm-related-img--placeholder {
  background: linear-gradient(135deg, var(--lvm-cream) 0%, var(--lvm-warm) 100%);
}
.lvm-related-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.lvm-related-title {
  font-family: var(--lvm-font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--lvm-ink);
  letter-spacing: -.01em;
  margin: 0;
  text-wrap: balance;
}
.lvm-related-excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--lvm-ink-75);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.lvm-related-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--lvm-border);
  font-size: 13px;
  color: var(--lvm-muted);
  font-weight: 500;
}
.lvm-related-meta strong {
  color: var(--lvm-ink);
  font-weight: 700;
  margin-right: 2px;
}
.lvm-related-arrow {
  margin-left: auto;
  font-size: 16px;
  color: var(--lvm-terra);
  transition: transform .25s;
}
.lvm-related-card:hover .lvm-related-arrow { transform: translateX(4px); }

/* Responsive */
@media (max-width: 960px) {
  .lvm-vehicle-reco { grid-template-columns: 1fr; }
  .lvm-checklist-grid { grid-template-columns: 1fr; max-width: 560px; }
  .lvm-related-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* ============================================================
   SECTION TRANSPORT & LOGISTIQUE
   ============================================================ */
.lvm-logistic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  max-width: 1180px;
  margin: clamp(32px, 4vw, 48px) auto 0;
}
.lvm-logistic-card {
  padding: 32px 32px 30px;
  background: #fff;
  border: 1px solid var(--lvm-border);
  border-radius: var(--lvm-radius);
  box-shadow: var(--lvm-shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.lvm-logistic-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--lvm-terra);
  opacity: .85;
}
.lvm-logistic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--lvm-terra-light);
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.lvm-logistic-card h3 {
  font-family: var(--lvm-font-heading) !important;
  font-size: clamp(1.3rem, 1.8vw, 1.55rem) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: var(--lvm-ink) !important;
  letter-spacing: -.01em !important;
  margin: 0 !important;
  text-wrap: balance;
}
.lvm-logistic-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lvm-ink-85);
  margin: 0;
  text-wrap: pretty;
}
/* Highlight inline sur strong : "chip" visuel qui casse la monotonie */
.lvm-logistic-card p strong {
  color: var(--lvm-ink);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, rgba(184,112,75,.18) 60%);
  padding: 0 2px;
}
@media (max-width: 860px) {
  .lvm-logistic-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CARTE — UX améliorations v1.9 (popup enrichi, overview, tooltips, segments)
   ============================================================ */

/* Bouton "Vue d'ensemble" overlay (coin haut-droit de la carte) */
.lvm-map-overview-btn-wrap {
  box-shadow: 0 2px 10px rgba(0,0,0,.15) !important;
  border-radius: var(--lvm-radius-sm) !important;
  border: none !important;
  overflow: hidden;
  margin: 12px !important;
}
.lvm-map-overview-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: #fff;
  color: var(--lvm-ink);
  font-family: var(--lvm-font-body);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.lvm-map-overview-btn svg { color: var(--lvm-terra); flex-shrink: 0; transition: color .2s; }
.lvm-map-overview-btn:hover svg,
.lvm-map-overview-btn:focus-visible svg { color: #fff; }
.lvm-map-overview-btn:hover,
.lvm-map-overview-btn:focus-visible {
  background: var(--lvm-terra);
  color: #fff;
  outline: none;
}

/* Récap total sous la carte (remplace les labels segments encombrants) */
.lvm-map-recap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 16px 22px;
  background: var(--lvm-cream);
  border-top: 1px solid var(--lvm-border);
  font-family: var(--lvm-font-body);
  font-size: 14px;
  color: var(--lvm-ink-75);
}
.lvm-map-recap-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lvm-map-recap-item svg { color: var(--lvm-terra); flex-shrink: 0; }
.lvm-map-recap-item strong {
  color: var(--lvm-ink);
  font-family: var(--lvm-font-mono, 'JetBrains Mono', monospace);
  font-weight: 700;
  font-size: 15px;
}
.lvm-map-recap-hint {
  margin-left: auto;
  font-size: 12.5px;
  color: var(--lvm-muted);
  font-style: italic;
  opacity: .85;
}
.lvm-map-recap-hint svg { color: var(--lvm-muted); }
@media (max-width: 640px) {
  .lvm-map-recap { gap: 14px; padding: 14px 16px; font-size: 13px; }
  .lvm-map-recap-hint { margin-left: 0; flex-basis: 100%; text-align: center; }
}

/* Ligne "Distance depuis l'étape précédente" dans popup */
.lvm-popup-dist {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  margin: 0 0 12px;
  background: var(--lvm-terra-light);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--lvm-ink-75);
  line-height: 1.4;
}
.lvm-popup-dist svg { color: var(--lvm-terra); flex-shrink: 0; }
.lvm-popup-dist strong {
  color: var(--lvm-terra);
  font-family: var(--lvm-font-mono, 'JetBrains Mono', monospace);
  font-weight: 700;
}

/* Tooltip Leaflet custom (au hover desktop) */
.leaflet-tooltip {
  background: var(--lvm-ink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  font-family: var(--lvm-font-body) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  padding: 6px 10px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.2) !important;
}
.leaflet-tooltip-top:before { border-top-color: var(--lvm-ink) !important; }

/* Popup enrichi */
.lvm-popup { min-width: 260px; max-width: 280px; }
.lvm-popup img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--lvm-radius-sm) var(--lvm-radius-sm) 0 0;
  display: block;
}
.lvm-popup-body {
  padding: 14px 16px 16px;
}
.lvm-popup-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lvm-terra);
  background: var(--lvm-terra-light);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.lvm-popup h4 {
  font-family: var(--lvm-font-heading) !important;
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: var(--lvm-ink) !important;
  margin: 0 0 8px !important;
  letter-spacing: -.005em !important;
}
.lvm-popup p {
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: var(--lvm-ink-75) !important;
  margin: 0 0 12px !important;
}
.lvm-popup-actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.lvm-popup-detail, .lvm-popup-gmaps {
  flex: 1;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--lvm-radius-sm);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
  border: none;
  font-family: var(--lvm-font-body);
}
.lvm-popup-detail {
  background: var(--lvm-terra);
  color: #fff;
}
.lvm-popup-detail:hover {
  background: var(--lvm-terra-hover, #9B5D3A);
  transform: translateY(-1px);
}
.lvm-popup-gmaps {
  background: #fff;
  color: var(--lvm-ink);
  border: 1px solid var(--lvm-border);
}
.lvm-popup-gmaps:hover {
  background: var(--lvm-cream);
  border-color: var(--lvm-terra);
  color: var(--lvm-terra);
}

/* Marker active state (synchronisé avec nav-bar) */
.lvm-marker.is-active {
  transform: scale(1.25);
  box-shadow: 0 0 0 4px rgba(184,112,75,.35), 0 4px 14px rgba(0,0,0,.25) !important;
  z-index: 1000;
}
.lvm-marker { transition: transform .3s, box-shadow .3s; }

/* Animation pulse quand on scrolle vers un jour via "Détails ↓" */
@keyframes lvm-day-pulse {
  0% { box-shadow: 0 0 0 0 rgba(184,112,75,.55), 0 4px 14px rgba(0,0,0,.08); }
  40% { box-shadow: 0 0 0 14px rgba(184,112,75,0), 0 4px 14px rgba(0,0,0,.08); }
  100% { box-shadow: 0 0 0 0 rgba(184,112,75,0), 0 4px 14px rgba(0,0,0,.08); }
}

/* Mobile : popup moins large + labels segments cachés si trop d'encombrement */
@media (max-width: 640px) {
  .lvm-popup { min-width: 220px; max-width: 240px; }
  .lvm-popup img { height: 110px; }
  .lvm-segment-label { font-size: 10px; padding: 2px 7px; }
  .lvm-map-overview-btn { padding: 8px 10px; font-size: 12px; }
}
