/* ════════════════════════════════════════════════════════════════════
   MAP V2 — Top Filter Bar (V1 du design canvas)
   Stratégie : on garde la nav du site (cohérence) et on ajoute
   un hero + filter bar dans le style V1.
   ════════════════════════════════════════════════════════════════════ */

:root {
  --line: rgba(14,11,31,0.16);
  --line-soft: rgba(14,11,31,0.08);
  --muted: rgba(14,11,31,0.55);
  --accent-shadow: rgba(108,71,255,.22);
}

body {
  min-height: 100vh;
  background: var(--paper, #F6F3FF);
}

.mv2 {
  min-height: calc(100vh - 82px);
  padding-top: 82px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.mv2 .narrow { font-family: 'Archivo Narrow', sans-serif; }
.mv2 .bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: .02em; }
.mv2 .eyebrow {
  font-family: 'Archivo Narrow';
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Glass — adaptation locale ── */
.mv2-glass {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 8px 32px rgba(108,71,255,.10), 0 1px 0 rgba(255,255,255,.6) inset;
}
.mv2-glass-strong {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 10px 40px rgba(108,71,255,.14), 0 1px 0 rgba(255,255,255,.7) inset;
}

/* ── Hero strip ── */
.mv2-hero {
  padding: 0 24px 14px;
  flex-shrink: 0;
}
.mv2-hero-row {
  margin-top: 0 !important;
}
.mv2-crumbs {
  margin-top: 0;
}
.mv2-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.mv2-crumbs {
  font-family: 'Archivo Narrow';
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.mv2-crumbs a { color: inherit; text-decoration: none; }
.mv2-crumbs a:hover { color: var(--ink); }
.mv2-crumbs .sep { opacity: .4; }
.mv2-title {
  font-family: 'Archivo Narrow';
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  line-height: .95;
  letter-spacing: -.005em;
  margin-top: 6px;
  text-transform: uppercase;
}
.mv2-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
}

/* ── Counter ── */
.mv2-counter {
  display: flex;
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.mv2-counter .col {
  padding: 10px 18px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
  min-width: 80px;
}
.mv2-counter .col:last-child { border-right: 0; }
.mv2-counter .n {
  font-family: 'Archivo Narrow';
  font-weight: 700;
  font-size: 24px;
  color: var(--orange);
  line-height: 1;
}
.mv2-counter .lbl {
  font-family: 'Archivo Narrow';
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Filter bar (la pièce maîtresse de la V1) ── */
.mv2-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: 100px;
  position: relative;
  z-index: 500;
}
.fb-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  flex: 0 1 280px;
  min-width: 200px;
  position: relative;
}
.fb-search .ic { color: var(--muted); flex: 0 0 auto; display: flex; }
.fb-search input {
  border: 0;
  outline: 0;
  background: transparent;
  flex: 1;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--ink);
  min-width: 0;
}
.fb-search input::placeholder { color: var(--muted); }
.fb-divider {
  width: 1px;
  height: 24px;
  background: var(--line-soft);
  flex: 0 0 auto;
}
.fb-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 1 auto;
  flex-wrap: wrap;
}
.mv2-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s, transform .1s;
  font-family: inherit;
  color: var(--ink);
}
.mv2-chip:hover { background: var(--paper); }
.mv2-chip.on {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 14px rgba(14,11,31,.18);
}
.mv2-chip.violet {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
  box-shadow: 0 4px 14px var(--accent-shadow);
}
.mv2-chip.orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(255,90,31,.28);
}
.mv2-chip.add {
  border-style: dashed;
  background: transparent;
  color: var(--muted);
}
.mv2-chip.add:hover {
  border-style: solid;
  color: var(--ink);
  background: #fff;
}
.mv2-chip .x {
  opacity: .7;
  font-weight: 600;
  margin-left: 2px;
  font-size: 14px;
  line-height: 1;
}
.mv2-chip .x:hover { opacity: 1; }
.mv2-chip-icon { font-size: 14px; }

.fb-reset {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--orange);
  font-family: 'Archivo Narrow';
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 100px;
  cursor: pointer;
}
.fb-reset:hover { background: rgba(255,90,31,.08); }
.fb-reset.hidden { display: none; }

.kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  padding: 2px 7px;
  border-radius: 6px;
  font-family: 'Bebas Neue';
  font-size: 11px;
  letter-spacing: .06em;
}

/* ── Quick chips (populaires) ── */
.mv2-quick {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0;
}
.mv2-quick::-webkit-scrollbar { display: none; }
.mv2-quick .eyebrow {
  flex: 0 0 auto;
  margin-right: 4px;
}
.qc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 11px;
  font-size: 11.5px;
  flex: 0 0 auto;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  transition: all .12s;
  white-space: nowrap;
}
.qc:hover { background: #fff; border-color: var(--ink); }
.qc.active {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
}

/* ── Dropdowns (search, sport, dept) ── */
.dropdown-wrap { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 340px;
  z-index: 1000;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(14,11,31,.18);
  padding: 14px;
  max-height: 420px;
  overflow-y: auto;
}
.dropdown h5 {
  margin: 0 0 10px;
  font-family: 'Archivo Narrow';
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.dropdown .opts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dropdown .opt {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  transition: background .12s, color .12s, border-color .12s;
}
.dropdown .opt:hover { background: #fff; border-color: var(--ink); }
.dropdown .opt.on {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
}
.dropdown .opt-sub {
  font-size: 10px;
  opacity: .6;
  margin-left: 4px;
}

/* Dropdown département : recherche + option "Toute la France" */
#fb-dept-dropdown { width: 380px; }
.dept-search-wrap { margin-bottom: 10px; }
.dept-search-input {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--paper, #F6F3FF);
  border-radius: 100px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  transition: border-color .12s;
  box-sizing: border-box;
}
.dept-search-input:focus { border-color: var(--violet); background: #fff; }
.dropdown .opt.opt-all {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  padding: 9px 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.dropdown .opt.opt-all.on { background: var(--violet); border-color: var(--violet); }
.dropdown .opt.opt-all:hover { background: var(--violet); border-color: var(--violet); }
.dropdown .opts-empty {
  font-size: 12px;
  color: var(--muted);
  padding: 8px 4px;
  text-align: center;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(14,11,31,.18);
  padding: 8px;
  max-height: 380px;
  overflow: auto;
}
.search-dropdown .grp-label {
  padding: 8px 12px 4px;
  font-family: 'Archivo Narrow';
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.search-dropdown .item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .1s;
}
.search-dropdown .item:hover,
.search-dropdown .item.focused { background: var(--paper); }
.search-dropdown .item .ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  font-size: 14px;
}
.search-dropdown .item .grow {
  flex: 1;
  min-width: 0;
}
.search-dropdown .item .n {
  font-family: 'Archivo Narrow';
  font-weight: 700;
  font-size: 13px;
}
.search-dropdown .item .s {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 1px;
}
.search-dropdown .item .kbd { margin-left: auto; }
.search-dropdown .empty {
  padding: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* ── Map stage ── */
.mv2-stage {
  flex: 1;
  position: relative;
  margin: 0 24px 24px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 10px 40px rgba(108,71,255,.08);
  height: calc(100vh - 320px);
  min-height: 520px;
}
#mv2-map {
  position: absolute;
  inset: 0;
  background: #ecebe5;
  z-index: 1;
}
.tint-pastel .leaflet-tile-pane {
  filter: hue-rotate(260deg) saturate(.55) brightness(1.04) contrast(.94);
}
.leaflet-container {
  background: #ece7df;
  font-family: 'Inter';
}
.leaflet-control-attribution {
  font-size: 9px !important;
  background: rgba(255,255,255,.7) !important;
  padding: 2px 6px !important;
}
.leaflet-control-zoom {
  border: 0 !important;
  box-shadow: 0 6px 18px rgba(14,11,31,.12) !important;
}
.leaflet-control-zoom a {
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid var(--line-soft) !important;
  font-size: 18px !important;
  width: 34px !important;
  height: 34px !important;
  line-height: 32px !important;
}
.leaflet-control-zoom a:first-child { border-radius: 10px 10px 0 0 !important; }
.leaflet-control-zoom a:last-child { border-radius: 0 0 10px 10px !important; }

/* Clusters customisés */
.k-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 50%;
  color: #fff;
  font-family: 'Archivo Narrow';
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(14,11,31,.20);
  transition: transform .15s;
  cursor: pointer;
}
.k-cluster:hover { transform: scale(1.10); }
.k-cluster.s { background: var(--orange); width: 30px; height: 30px; font-size: 12px; }
.k-cluster.m { background: var(--violet); width: 38px; height: 38px; font-size: 13px; }
.k-cluster.l { background: var(--ink); width: 48px; height: 48px; font-size: 14px; position: relative; }
.k-cluster.l::after {
  content: '✦';
  position: absolute;
  top: -3px; right: -3px;
  background: var(--lime);
  color: var(--ink);
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  border: 2px solid #fff;
}

/* Pins customisés */
.k-pin {
  width: 34px;
  height: 42px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  cursor: pointer;
}
.k-pin .head {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--ink);
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(14,11,31,.30);
  border: 2px solid #fff;
  transition: transform .15s, box-shadow .15s;
}
.k-pin:hover .head {
  box-shadow: 0 10px 22px rgba(14,11,31,.45);
}
.k-pin .glyph {
  transform: rotate(45deg);
  color: #fff;
  font-size: 14px;
}

/* Map overlays */
.mv2-status {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border-radius: 100px;
  z-index: 400;
}
.mv2-status .live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,90,31,.18);
  position: relative;
}
.mv2-status .live::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .4;
  animation: mv2pulse 1.6s ease-out infinite;
}
@keyframes mv2pulse {
  0% { transform: scale(.5); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.mv2-status .lbl-l {
  font-family: 'Archivo Narrow';
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1px;
}
.mv2-status .lbl-r {
  font-family: 'Archivo Narrow';
  font-weight: 700;
  font-size: 13px;
}

.mv2-legend {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 11px;
  z-index: 400;
}
.mv2-legend .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  vertical-align: -1px;
}
.mv2-legend .src {
  color: var(--muted);
  margin-left: 4px;
  font-size: 10px;
}

/* ── Results drawer (bottom-right glass) ── */
.mv2-drawer {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 360px;
  max-width: calc(100% - 32px);
  border-radius: 22px;
  padding: 14px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(100% - 32px);
  transition: max-height .3s cubic-bezier(.2,.7,.3,1);
}
.mv2-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mv2-drawer-head .left { display: flex; flex-direction: column; gap: 2px; }
.mv2-drawer-head .lbl-r {
  font-family: 'Archivo Narrow';
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.mv2-drawer-head .lbl-r .acc {
  font-style: italic;
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
  margin-left: 6px;
}
.mv2-toggle-list {
  background: var(--ink);
  color: #fff;
  border: 1.5px solid var(--ink);
  padding: 7px 14px;
  border-radius: 100px;
  font-family: 'Archivo Narrow';
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mv2-toggle-list:hover { background: var(--orange); border-color: var(--orange); }
.mv2-drawer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  scrollbar-width: thin;
}
.mv2-drawer-list::-webkit-scrollbar { width: 4px; }
.mv2-drawer-list::-webkit-scrollbar-thumb { background: rgba(14,11,31,.15); border-radius: 99px; }
.mv2-drawer.collapsed .mv2-drawer-list { display: none; }
.mv2-drawer.collapsed { max-height: 90px; }

/* Result card */
.r-card {
  display: flex;
  gap: 12px;
  padding: 11px 12px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
}
.r-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(108,71,255,.10);
  border-color: var(--line);
}
.r-card.active {
  border-color: var(--violet);
  box-shadow: 0 8px 24px var(--accent-shadow);
}
.r-card .badge {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--violet);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  font-size: 18px;
}
.r-card .body {
  flex: 1;
  min-width: 0;
}
.r-card h4 {
  margin: 0;
  font-family: 'Archivo Narrow';
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.r-card .loc {
  font-family: 'Archivo Narrow';
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.r-card .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
}
.r-card .foot .s {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  color: var(--ink);
  text-transform: capitalize;
}
.r-card .foot .go {
  font-family: 'Archivo Narrow';
  font-weight: 700;
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Popup Leaflet ── */
.leaflet-popup-content-wrapper {
  background: rgba(255,255,255,.94) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,.7) !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 40px rgba(14,11,31,.18), 0 1px 0 rgba(255,255,255,.6) inset !important;
  padding: 0 !important;
}
.leaflet-popup-content { margin: 0 !important; width: 260px !important; }
.leaflet-popup-tip { background: rgba(255,255,255,.94) !important; box-shadow: none !important; }
.leaflet-popup-close-button { display: none !important; }
.mv2-popup { padding: 14px; }
.mv2-popup .head { display: flex; gap: 10px; }
.mv2-popup .badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--violet);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 20px;
}
.mv2-popup h3 {
  margin: 0;
  font-family: 'Archivo Narrow';
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.mv2-popup .meta {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 4px;
  font-family: 'Archivo Narrow';
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.mv2-popup .sports {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.mv2-popup .sports .s {
  background: #fff;
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 10.5px;
  text-transform: capitalize;
}
.mv2-popup .cta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mv2-popup .cta a {
  font-family: 'Archivo Narrow';
  font-size: 12px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 1px;
}

/* ── Loader ── */
.mv2-loader {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-soft);
  box-shadow: 0 12px 32px rgba(14,11,31,.12);
}
.mv2-loader.hidden { display: none; }
.mv2-loader .spinner {
  width: 28px; height: 28px;
  border: 3px solid var(--line);
  border-top-color: var(--violet);
  border-radius: 50%;
  animation: mv2spin .7s linear infinite;
}
.mv2-loader .lbl {
  font-family: 'Archivo Narrow';
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes mv2spin { to { transform: rotate(360deg); } }

/* ── Mobile ── */
@media (max-width: 880px) {
  .mv2 { padding-top: 68px; }
  .mv2-hero { padding: 0 14px 10px; }
  .mv2-title { font-size: clamp(28px, 7vw, 40px); }
  .mv2-hero-row { gap: 12px; }
  .mv2-counter .col { padding: 8px 12px; min-width: 70px; }
  .mv2-counter .n { font-size: 20px; }
  .mv2-filter-bar { padding: 5px; flex-wrap: wrap; }
  .fb-search { flex: 1 1 100%; min-width: 0; padding: 8px 14px; }
  .fb-search input { font-size: 14px; }
  .fb-divider { display: none; }
  .fb-group { flex-wrap: wrap; }
  .fb-reset { font-size: 11px; padding: 6px 10px; }
  .kbd { display: none; }
  .mv2-stage { margin: 0 14px 14px; border-radius: 18px; }
  .mv2-status { top: 8px; left: 8px; padding: 6px 12px 6px 10px; }
  .mv2-status .lbl-l { font-size: 8px; }
  .mv2-status .lbl-r { font-size: 11px; }
  .mv2-legend { left: 8px; bottom: 8px; padding: 5px 10px; font-size: 10px; }
  .mv2-drawer {
    right: 8px; bottom: 8px;
    width: calc(100% - 16px);
    max-height: 60%;
  }
  .dropdown { width: calc(100vw - 40px); max-width: 360px; }
}

/* ── Bottom nav masqué sur la carte ── */
body > .bottom-nav,
body > .bottom-nav-spacer { display: none !important; }

/* ── Fuzzy suggestion ── */
.search-suggestion {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,165,0,.06);
  border: 1px dashed rgba(255,165,0,.3);
  font-size: 12px;
  color: var(--muted);
  margin: 4px 8px 4px;
}
.search-suggestion .kw {
  font-family: 'Archivo Narrow';
  font-weight: 700;
  color: var(--orange);
  cursor: pointer;
  text-decoration: underline dotted;
}

/* ══ Detail drawer (panel droit) ══════════════════════════════════ */
.detail-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -24px 0 72px rgba(14,11,31,.18);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.detail-drawer.open { transform: translateX(0); }

/* ── Hero (toujours affiché, photo ou gradient) ── */
.detail-drawer .dd-hero {
  height: 200px;
  background: linear-gradient(145deg, #1a0a3c 0%, #6C47FF 45%, var(--orange) 100%);
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
}
.detail-drawer .dd-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 18px, transparent 18px 36px);
  pointer-events: none;
}
.detail-drawer .dd-hero .dd-photo-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo Narrow'; font-weight: 600;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  pointer-events: none;
}
.detail-drawer .dd-close {
  position: absolute; top: 13px; right: 13px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(14,11,31,.75); color: #fff; border: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; z-index: 920;
  transition: background .15s;
}
.detail-drawer .dd-close:hover { background: var(--ink); }
.detail-drawer .dd-badges {
  position: absolute; top: 13px; left: 13px;
  display: flex; gap: 7px; z-index: 2;
}
.detail-drawer .dd-badges .b {
  padding: 5px 12px; border-radius: 100px;
  font-family: 'Archivo Narrow'; font-weight: 800;
  font-size: 11px; letter-spacing: .07em; text-transform: uppercase;
}
.detail-drawer .dd-badges .b-dark {
  background: rgba(14,11,31,.85); color: #fff;
}
.detail-drawer .dd-badges .b-lime {
  background: #C6F135; color: #111;
}

/* ── Body ── */
.detail-drawer .dd-body {
  padding: 18px 20px 28px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Nom */
.detail-drawer h2 {
  margin: 0 0 5px;
  font-family: 'Archivo Narrow'; font-weight: 800;
  font-size: 26px; line-height: 1.1; letter-spacing: .01em;
  color: var(--ink);
}

/* Localisation */
.detail-drawer .dd-addr {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Archivo Narrow'; font-weight: 600;
  font-size: 12px; letter-spacing: .04em;
  color: var(--muted); margin-bottom: 16px;
}

/* Stats 3 colonnes dans une box bordée */
.detail-drawer .dd-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border: 1.5px solid rgba(14,11,31,.15); border-radius: 14px;
  overflow: hidden; margin-bottom: 18px;
}
.detail-drawer .dd-stats .dd-stat {
  padding: 12px 8px; text-align: center;
  border-right: 1px solid rgba(14,11,31,.1);
}
.detail-drawer .dd-stats .dd-stat:last-child { border-right: 0; }
.detail-drawer .dd-stats .n {
  font-family: 'Archivo Narrow'; font-weight: 800;
  font-size: 20px; color: var(--orange); line-height: 1;
}
.detail-drawer .dd-stats .n sub {
  font-size: 11px; font-weight: 700; vertical-align: baseline;
}
.detail-drawer .dd-stats .l {
  font-family: 'Archivo Narrow'; font-weight: 700;
  font-size: 9px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px;
}

/* Sections */
.detail-drawer .dd-section { margin-bottom: 16px; }
.detail-drawer .dd-section h4 {
  margin: 0 0 9px;
  font-family: 'Archivo Narrow'; font-weight: 700;
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}

/* Tags sports */
.detail-drawer .dd-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.detail-drawer .dd-tags .t {
  background: #fff; border: 1.5px solid rgba(14,11,31,.15);
  padding: 5px 13px; border-radius: 100px;
  font-size: 12.5px; font-weight: 500; color: var(--ink);
  display: flex; align-items: center; gap: 5px;
}

/* Tags public (colorés) */
.detail-drawer .dd-tags .t-pub {
  background: rgba(108,71,255,.07); border-color: rgba(108,71,255,.2);
  color: var(--ink);
}

/* Planning rows */
.detail-drawer .dd-planning { display: flex; flex-direction: column; gap: 6px; }
.detail-drawer .dd-planning .dd-slot {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 10px;
  background: rgba(14,11,31,.03); border: 1px solid rgba(14,11,31,.08);
}
.detail-drawer .dd-planning .dd-slot .slot-day {
  font-family: 'Archivo Narrow'; font-weight: 800;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); min-width: 50px;
}
.detail-drawer .dd-planning .dd-slot .slot-info {
  font-size: 12px; color: var(--ink); line-height: 1.3;
}
.detail-drawer .dd-planning .dd-slot .slot-time {
  font-family: 'Archivo Narrow'; font-weight: 700;
  font-size: 12px; color: var(--muted); margin-left: auto; white-space: nowrap;
}

/* Tarifs */
.detail-drawer .dd-tarif-text {
  font-size: 13px; color: var(--ink); line-height: 1.5;
}
.detail-drawer .dd-tarif-text strong { font-weight: 700; }

/* Présentation */
.detail-drawer .dd-pres {
  font-size: 13px; color: var(--muted); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Liens contact */
.detail-drawer .dd-links { display: flex; gap: 8px; flex-wrap: wrap; }
.detail-drawer .dd-links a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 100px;
  font-family: 'Archivo Narrow'; font-weight: 700;
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid rgba(14,11,31,.15);
  background: #fff; color: var(--ink);
  transition: border-color .15s, color .15s;
}
.detail-drawer .dd-links a:hover { border-color: var(--orange); color: var(--orange); }
.detail-drawer .dd-links a.link-tel { border-color: rgba(108,71,255,.3); color: var(--violet); }
.detail-drawer .dd-links a.link-tel:hover { border-color: var(--violet); background: rgba(108,71,255,.06); }

/* CTA */
.detail-drawer .dd-cta {
  margin-top: auto; padding-top: 18px;
  display: flex; gap: 10px; align-items: center;
}
.detail-drawer .dd-cta .primary {
  flex: 1; background: var(--ink);
  color: #fff; border: 0; border-radius: 100px; padding: 15px 20px;
  font-family: 'Archivo Narrow'; font-weight: 800;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: background .15s, transform .12s;
  text-align: center; text-decoration: none; display: block;
}
.detail-drawer .dd-cta .primary:hover { background: var(--violet); transform: translateY(-1px); }
.detail-drawer .dd-cta .star {
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 1.5px solid rgba(14,11,31,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; flex: 0 0 48px;
  transition: background .15s, border-color .15s;
}
.detail-drawer .dd-cta .star:hover { background: rgba(14,11,31,.05); border-color: rgba(14,11,31,.4); }
/* Overlay quand drawer ouvert */
.dd-overlay {
  display: none; position: fixed; inset: 0; z-index: 899;
  background: rgba(14,11,31,.18);
  backdrop-filter: blur(2px);
}
.dd-overlay.visible { display: block; }

@media (max-width: 880px) {
  .detail-drawer { width: 100%; }
}

@media (max-width: 480px) {
  .mv2 { padding-top: 76px; }
  .mv2-hero { padding: 0 12px 8px; }
  .mv2-title { font-size: clamp(24px, 8vw, 32px); }
  .mv2-counter .col { padding: 6px 10px; min-width: 60px; }
  .mv2-counter .n { font-size: 18px; }
  .mv2-counter .lbl { font-size: 9px; }
}
/* ════════════════════════════════════════════════════════════════════
   Drill-down géo : France → région → département
   ════════════════════════════════════════════════════════════════════ */

/* Breadcrumb posé sur la carte */
.mv2-geo-crumbs {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 740;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink, #0E0B1F);
  max-width: calc(100% - 90px);
  overflow: hidden;
  white-space: nowrap;
}
.mv2-geo-crumbs button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: #6C47FF;
  cursor: pointer;
}
.mv2-geo-crumbs button:hover { text-decoration: underline; }
.mv2-geo-crumbs button:focus-visible { outline: 3px solid #6C47FF; outline-offset: 2px; border-radius: 4px; }
.mv2-geo-crumbs .sep { opacity: .4; }
.mv2-geo-crumbs .cur { opacity: .85; overflow: hidden; text-overflow: ellipsis; }

/* Pastille count posée au centre des régions / départements.
   Même langage glass que .mv2-glass : blanc translucide + blur + ombre violette. */
.k-geo-label {
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 14px;
  padding: 5px 12px 6px;
  box-shadow:
    0 6px 24px rgba(108,71,255,.16),
    0 1px 0 rgba(255,255,255,.7) inset,
    0 0 0 1px rgba(108,71,255,.10);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s cubic-bezier(.2,.8,.3,1.1), box-shadow .15s ease, background .15s ease;
}
.k-geo-label:hover {
  background: rgba(255,255,255,.95);
  transform: translate(-50%, -50%) scale(1.08) translateY(-2px);
  box-shadow:
    0 12px 32px rgba(108,71,255,.26),
    0 1px 0 rgba(255,255,255,.8) inset,
    0 0 0 1.5px rgba(255,107,44,.45);
}
.k-geo-label .nm {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted, #6b6880);
  max-width: 230px; /* "Provence-Alpes-Côte d'Azur" passe entier */
  overflow: hidden;
  text-overflow: ellipsis;
}
.k-geo-label .ct {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 800;
  color: #6C47FF;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.k-geo-label .ct em {
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink, #0E0B1F);
  opacity: .55;
}

/* Variante compacte pour les départements */
.k-geo-label.sm { padding: 4px 10px 5px; border-radius: 11px; }
.k-geo-label.sm .nm { font-size: 8.5px; max-width: 120px; }
.k-geo-label.sm .ct { font-size: 13.5px; }
.k-geo-label.sm .ct em { font-size: 8px; }

/* Reduced motion : pas de lift animé */
@media (prefers-reduced-motion: reduce) {
  .k-geo-label { transition: none; }
  .k-geo-label:hover { transform: translate(-50%, -50%); }
}

/* Hint dans le drawer résultats quand on est en vue France/région */
.geo-hint {
  padding: 22px 12px;
  text-align: center;
  color: var(--muted, #6b6880);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .mv2-geo-crumbs { top: 10px; left: 10px; padding: 7px 11px; font-size: 12px; }
  .k-geo-label { padding: 4px 9px 5px; }
  .k-geo-label .nm { max-width: 92px; font-size: 8.5px; }
  .k-geo-label .ct { font-size: 13.5px; }
  .k-geo-label.sm .nm { max-width: 80px; }
  .k-geo-label.sm .ct { font-size: 12px; }
}
