:root {
  --rose-fuchsia: #FF3EB5;
  --rouge-passion: #E30049;
  --noir-profond: #0B0B0B;
  --gris-perle: #B6B6B6;
  --blanc-pur: #FFFFFF;
}

body {
  background-color: var(--noir-profond);
  color: var(--blanc-pur);
  font-family: "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  
  margin: 0;
  min-height: 100vh;
}

/* ========================================
   SECTION PRÉSENTATION
   ======================================== */
.presentation-section {
  padding: 80px var(--page-side-padding) 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.presentation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.presentation-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-fuchsia), var(--rouge-passion));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  line-height: 1.2;
}

.presentation-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gris-perle);
  margin-bottom: 20px;
  text-align: justify;
}

.presentation-text p.highlight {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blanc-pur);
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 62, 181, 0.1), rgba(227, 0, 73, 0.1));
  border-left: 4px solid var(--rose-fuchsia);
  border-radius: 8px;
  text-align: left;
}

.presentation-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 62, 181, 0.3);
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.presentation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
  max-height: 600px;
}

.presentation-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .presentation-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .presentation-text h2 {
    font-size: 2rem;
  }

  .presentation-text p {
    font-size: 1.05rem;
  }

  .presentation-section {
    padding: 100px 30px 60px;
  }
}

@media (max-width: 768px) {
  .presentation-text h2 {
    font-size: 1.75rem;
  }

  .presentation-text p {
    font-size: 1rem;
    text-align: left;
  }

  .presentation-text p.highlight {
    font-size: 1.1rem;
  }

  .presentation-section {
    padding: 80px 20px 40px;
  }
}

/* ========================================
   SECTION PRÉSENTATION ALTERNATIVE
   ======================================== */
.presentation-section-alt {
  padding: 80px var(--page-side-padding);
}

.presentation-section-alt .presentation-container {
  grid-template-columns: 1fr 1fr;
}

.presentation-section-alt .presentation-image {
  order: -1;
}

.presentation-section-alt .presentation-text h2 {
  background: linear-gradient(135deg, var(--rouge-passion), var(--rose-fuchsia));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 992px) {
  .presentation-section-alt {
    padding: 60px 30px;
  }

  .presentation-section-alt .presentation-image {
    order: 0;
  }
}

@media (max-width: 768px) {
  .presentation-section-alt {
    padding: 40px 20px;
  }
}

.map-section {
  padding-left: var(--page-side-padding);
  padding-right: var(--page-side-padding);
  padding-bottom: 50px;
  max-width: 1800px;
  text-align: center;
  position: relative;
}

.section-description {
  color: var(--gris-perle);
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 25px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* ========================================
   BOUTON TOGGLE FILTRES
   ======================================== */
.filter-toggle-container {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* filter-toggle-btn supprimé - utilise btn btn-primary du design system */

/* Body lock quand filtre ouvert */
html.no-scroll,
html.no-scroll body {
  overflow: hidden !important;
}

/* ========================================
   PANEL DE FILTRES
   ======================================== */
.filter-panel {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  height: 100vh;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  border-left: 2px solid rgba(255, 62, 181, 0.3);
  display: flex;
  flex-direction: column;
}

.filter-panel.active {
  right: 0;
}

.filter-header {
  padding: 25px 30px;
  background: linear-gradient(180deg, rgba(255, 62, 181, 0.1) 0%, transparent 100%);
  border-bottom: 2px solid rgba(255, 62, 181, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  z-index: 10;
}

.filter-header h3 {
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--rose-fuchsia), var(--rouge-passion));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.filter-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 62, 181, 0.2);
  border: 2px solid var(--rose-fuchsia);
  border-radius: 50%;
  color: var(--rose-fuchsia);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.filter-close:hover {
  background: var(--rose-fuchsia);
  color: white;
  transform: rotate(90deg);
}

.filter-body {
  padding: 30px;
  padding-right: 22px;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-fuchsia) rgba(255, 255, 255, 0.05);
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group label {
  display: block;
  color: var(--blanc-pur);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.filter-group input,
.filter-group select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 62, 181, 0.3);
  border-radius: 10px;
  color: var(--blanc-pur);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: var(--rose-fuchsia);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(255, 62, 181, 0.2);
}

/* Option styles now centralized in general/forms.css */

.range-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.range-inputs input {
  flex: 1;
}

.range-inputs span {
  color: var(--gris-perle);
  font-weight: 600;
}

.filter-footer {
  padding: 20px 30px;
  background: rgba(26, 26, 26, 0.95);
  border-top: 1px solid rgba(255, 62, 181, 0.2);
  display: flex;
  gap: 15px;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.btn-reset,
.btn-apply {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-reset {
  background: rgba(255, 255, 255, 0.1);
  color: var(--blanc-pur);
  border: 2px solid rgba(255, 62, 181, 0.3);
}

.btn-reset:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--rose-fuchsia);
}

.btn-apply {
  background: linear-gradient(135deg, var(--rose-fuchsia), var(--rouge-passion));
  color: var(--blanc-pur);
  box-shadow: 0 4px 15px rgba(255, 62, 181, 0.3);
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 62, 181, 0.5);
}

/* Scrollbar du panel */
.filter-body::-webkit-scrollbar {
  width: 8px;
}

.filter-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.filter-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--rose-fuchsia), var(--rouge-passion));
  border-radius: 10px;
}

.filter-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #FF00FF, var(--rouge-passion));
}

/* ========================================
   COMPTEUR DE RÉSULTATS
   ======================================== */
.results-counter {
  margin-top: 30px;
  padding: 12px 25px;
  background: rgba(255, 62, 181, 0.1);
  border: 1px solid rgba(255, 62, 181, 0.3);
  border-radius: 50px;
  display: inline-block;
  color: var(--rose-fuchsia);
  font-weight: 600;
  font-size: 1rem;
  animation: fadeIn 0.5s ease;
}

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

/* ========================================
   CARTE
   ======================================== */
.map-section {
  }

.map-wrapper {
  width: 100%;
  max-width: 1200px;
  height: 60vh;
  min-height: 400px;
  max-height: 750px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(255, 62, 181, 0.3),
    inset 0 0 50px rgba(255, 62, 181, 0.1);
  animation: mapGlow 4s ease-in-out infinite alternate;
  margin: 25px auto 0;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 30px;
  background: linear-gradient(45deg, var(--rose-fuchsia), var(--rouge-passion), #FF00FF, var(--rose-fuchsia));
  background-size: 300% 300%;
  z-index: -1;
  animation: gradientShift 6s ease infinite;
}

@keyframes mapGlow {
  from { 
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 80px rgba(255, 62, 181, 0.25),
      inset 0 0 50px rgba(255, 62, 181, 0.1);
  }
  to { 
    box-shadow: 
      0 25px 80px rgba(0, 0, 0, 0.6),
      0 0 120px rgba(255, 62, 181, 0.4),
      inset 0 0 70px rgba(255, 62, 181, 0.15);
  }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Marqueur des membres */
.location-pin {
  position: relative;
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, var(--rose-fuchsia), var(--rouge-passion));
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 62, 181, 0.6);
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.location-pin .profile-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 30px !important;
  box-sizing: border-box;
  height: 30px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.location-pin::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 30px !important;
  box-sizing: border-box;
  height: 34px;
  background: radial-gradient(circle, rgba(255, 62, 181, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(7px);
}

/* Marqueur utilisateur */
.user-marker {
  width: 24px;
  height: 24px;
  background: radial-gradient(circle, #ffffff 0%, #00BFFF 40%, #0080FF 100%);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 
    0 0 25px rgba(0, 191, 255, 0.8),
    0 0 50px rgba(0, 191, 255, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: userPulse 2.5s ease-in-out infinite;
}

.user-marker::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 50%;
  animation: ripple 2.5s ease-out infinite;
}

.user-marker::after {
  content: '';
  position: absolute;
  inset: -18px;
  border: 2px solid rgba(0, 191, 255, 0.2);
  border-radius: 50%;
  animation: ripple 2.5s ease-out infinite 0.5s;
}

@keyframes userPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

.custom-user-icon {
  background: transparent !important;
  border: none !important;
  z-index: 100 !important; /* En dessous des location-pin */
}

.custom-member-icon {
  background: transparent !important;
  border: none !important;
  z-index: 200 !important; /* Au-dessus du marqueur utilisateur */
}

.leaflet-marker-icon {
  background: transparent !important;
  border: none !important;
}

.leaflet-div-icon {
  background: transparent !important;
  border: none !important;
}

#map {
  width: 100%;
  height: 100%;
}

/* Masquer les popups Leaflet */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip,
.leaflet-popup-close-button {
  display: none !important;
}

/* ========================================
   MARKER CLUSTERS PERSONNALISÉS
   ======================================== */

/* Reset des styles par défaut Leaflet */
.custom-cluster-marker {
  background: transparent !important;
  border: none !important;
}

/* Conteneur principal du cluster */
.custom-cluster-icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Animation au survol */
.custom-cluster-icon:hover {
  transform: scale(1.15);
}

/* Cercle intérieur du cluster */
.cluster-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-fuchsia) 0%, var(--rouge-passion) 100%);
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 2px rgba(11, 11, 11, 0.3),
    0 0 30px rgba(255, 62, 181, 0.7),
    0 8px 20px rgba(0, 0, 0, 0.4),
    inset 0 2px 5px rgba(255, 255, 255, 0.3);
  z-index: 10;
  transition: all 0.3s ease;
}

.custom-cluster-icon:hover .cluster-inner {
  box-shadow:
    0 0 0 2px rgba(11, 11, 11, 0.3),
    0 0 50px rgba(255, 62, 181, 1),
    0 12px 30px rgba(0, 0, 0, 0.5),
    inset 0 2px 5px rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 1);
}

/* Nombre de profils */
.cluster-count {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: -0.5px;
}

/* Label "profils" */
.cluster-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  line-height: 1;
}

/* Animation de pulsation */
.cluster-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid rgba(255, 62, 181, 0.5);
  animation: clusterPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

@keyframes clusterPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
    border-color: rgba(255, 62, 181, 0.5);
  }
  50% {
    transform: scale(1.25);
    opacity: 0;
    border-color: rgba(255, 62, 181, 0.2);
  }
}

/* Tailles des clusters */
.custom-cluster-small .cluster-count {
  font-size: 16px;
}

.custom-cluster-small .cluster-label {
  font-size: 8px;
}

.custom-cluster-medium .cluster-count {
  font-size: 20px;
}

.custom-cluster-medium .cluster-label {
  font-size: 9px;
}

.custom-cluster-large .cluster-count {
  font-size: 24px;
}

.custom-cluster-large .cluster-label {
  font-size: 10px;
}

/* Effet de couverture au survol (showCoverageOnHover) */
.leaflet-marker-pane .leaflet-marker-shadow {
  display: none;
}

path.leaflet-interactive {
  fill: rgba(255, 62, 181, 0.15);
  stroke: var(--rose-fuchsia);
  stroke-width: 2;
  stroke-dasharray: 5, 5;
  animation: coverageDash 1s linear infinite;
}

@keyframes coverageDash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 10; }
}

/* Spiderfy lines personnalisées */
.leaflet-cluster-spider-leg {
  stroke: var(--rose-fuchsia) !important;
  stroke-width: 2.5 !important;
  stroke-opacity: 0.7 !important;
  filter: drop-shadow(0 0 8px rgba(255, 62, 181, 0.6));
}

/* Fix z-index des contrôles Leaflet pour ne pas passer par-dessus le header */
.leaflet-bottom,
.leaflet-top,
.leaflet-control {
  z-index: 500 !important;
}

/* Anciens styles de fallback (au cas où) */
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
  background-color: transparent !important;
  border: none !important;
}

/* ========================================
   MODAL PROFIL
   ======================================== */
.profile-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  animation: fadeIn 0.15s ease;
  overflow-y: auto;
}

.profile-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
  border-radius: 35px;
  max-width: 950px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  animation: slideUp 0.2s ease-out;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(255, 62, 181, 0.4);
  background-clip: padding-box;
}

.modal-content::before {
  display: none;
}

@keyframes gradientBorder {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(11, 11, 11, 0.8);
  border: 2px solid rgba(255, 62, 181, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 28px;
  color: var(--rose-fuchsia);
  transition: all 0.3s ease;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: var(--rose-fuchsia);
  color: white;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 25px rgba(255, 62, 181, 0.8);
}

.modal-header {
  position: relative;
  text-align: center;
  padding: 50px var(--page-side-padding) 30px;
  background:
    radial-gradient(circle at top, rgba(255, 62, 181, 0.15) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255, 62, 181, 0.05) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 62, 181, 0.2);
}

.avatar-container {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.modal-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid transparent;
  background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
              linear-gradient(135deg, var(--rose-fuchsia), var(--rouge-passion)) border-box;
  box-shadow: 
    0 0 0 3px rgba(11, 11, 11, 0.5),
    0 0 40px rgba(255, 62, 181, 0.4),
    0 15px 35px rgba(0, 0, 0, 0.5);
  animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
  0%, 100% { 
    box-shadow: 
      0 0 0 3px rgba(11, 11, 11, 0.5),
      0 0 40px rgba(255, 62, 181, 0.4),
      0 15px 35px rgba(0, 0, 0, 0.5);
  }
  50% { 
    box-shadow: 
      0 0 0 3px rgba(11, 11, 11, 0.5),
      0 0 60px rgba(255, 62, 181, 0.6),
      0 15px 35px rgba(0, 0, 0, 0.5);
  }
}

.modal-username {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--rose-fuchsia), var(--rouge-passion), #FF00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.modal-bio {
  color: var(--gris-perle);
  font-style: italic;
  font-size: 1.05rem;
  margin: 0 0 25px 0;
  line-height: 1.5;
  opacity: 0.9;
}

.action-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

.contact-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(255, 62, 181, 0.15), rgba(227, 0, 73, 0.15));
  border: 2px solid var(--rose-fuchsia);
  border-radius: 50px;
  color: var(--blanc-pur);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(255, 62, 181, 0.2);
  white-space: nowrap;
}

.contact-btn:hover {
  background: linear-gradient(135deg, var(--rose-fuchsia), var(--rouge-passion));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 62, 181, 0.4);
}

.booking-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--rose-fuchsia), var(--rouge-passion));
  border: none;
  border-radius: 50px;
  color: var(--blanc-pur);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(255, 62, 181, 0.3);
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 62, 181, 0.5);
}

.order-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #FF3EB5, #E30049);
  border: none;
  border-radius: 50px;
  color: var(--blanc-pur);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(255, 62, 181, 0.3);
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 62, 181, 0.5);
}

.modal-body {
  padding: 35px var(--page-side-padding);
  overflow: visible;
  flex: 1;
}

.modal-content::-webkit-scrollbar {
  width: 12px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin: 10px 0;
  border: 1px solid rgba(255, 62, 181, 0.1);
}

.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,
    var(--rose-fuchsia) 0%,
    var(--rouge-passion) 50%,
    #FF00FF 100%
  );
  border-radius: 10px;
  border: 2px solid rgba(26, 26, 26, 0.8);
  background-clip: padding-box;
  box-shadow:
    0 0 15px rgba(255, 62, 181, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg,
    #FF00FF 0%,
    var(--rouge-passion) 50%,
    var(--rose-fuchsia) 100%
  );
  border: 2px solid rgba(26, 26, 26, 0.6);
  box-shadow:
    0 0 25px rgba(255, 62, 181, 0.6),
    inset 0 0 15px rgba(255, 255, 255, 0.2);
  transform: scaleX(1.1);
}

.modal-section {
  margin-bottom: 35px;
}

.modal-section-title {
  font-size: 1.4rem;
  color: var(--rose-fuchsia);
  margin-bottom: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 62, 181, 0.2);
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 62, 181, 0.1);
  transition: background 0.2s ease;
}

.info-row:hover {
  background: rgba(255, 62, 181, 0.05);
  padding-left: 10px;
  margin-left: -10px;
  border-radius: 8px;
}

.info-label {
  color: var(--gris-perle);
  font-weight: 600;
  font-size: 0.95rem;
}

.info-value {
  color: var(--blanc-pur);
  font-size: 0.95rem;
  text-align: right;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 15px;
  overflow-x: hidden;
  box-sizing: border-box;
}

.media-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 62, 181, 0.2);
}

.media-item:hover {
  border-color: var(--rose-fuchsia);
  box-shadow: 0 10px 30px rgba(255, 62, 181, 0.3);
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  pointer-events: none;
}

.media-item.video video {
  background: #000;
}

.media-item video {
  position: relative;
}

.media-item.video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}


/* === LIGHTBOX === */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999 !important;
  animation: fadeIn 0.4s ease;
  backdrop-filter: blur(15px);
}

.lightbox-content {
  position: relative;
  width: auto;
  height: auto;
  min-width: 300px;
  min-height: 300px;
  max-width: 90vw;
  max-height: 90vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 62, 181, 0.3),
    inset 0 0 60px rgba(255, 62, 181, 0.08);
  animation: lightboxZoom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-content::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--rose-fuchsia), var(--rouge-passion), #FF00FF, var(--rose-fuchsia));
  background-size: 300% 300%;
  z-index: -1;
  animation: gradientShift 8s ease infinite;
  opacity: 0.6;
}

@keyframes lightboxZoom {
  from { 
    transform: scale(0.7) translateY(50px);
    opacity: 0;
  }
  to { 
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 62, 181, 0.8);
  border: none;
  border-radius: 50%;
  color: var(--blanc-pur);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 100000;
}

.lightbox-close:hover {
  background: rgba(255, 62, 181, 1);
  transform: scale(1.1);
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  display: block;
  width: 24px;
  height: 24px;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(255, 62, 181, 0.8);
  border: none;
  border-radius: 50%;
  color: var(--blanc-pur);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 100000;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 62, 181, 1);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:active,
.lightbox-next:active {
  transform: translateY(-50%) scale(1);
}

.lightbox-media-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  box-sizing: border-box;
}

.lightbox-content img,
.lightbox-content video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Boutons zoom Leaflet - taille minimale tactile */
.leaflet-control-zoom a {
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* ========================= */
/*   TABLETTE (769-1024px)   */
/* ========================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-content {
        gap: 20px;
    }

    .map-container {
        flex: 1;
    }

    .sidebar-results {
        width: 320px;
    }

    .search-input {
        font-size: 15px;
    }

    .filter-chips {
        gap: 8px;
    }

    .filter-chip {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .profile-card {
        padding: 15px;
    }

    .profile-avatar-small {
        width: 55px;
        height: 55px;
    }

    .profile-name {
        font-size: 1rem;
    }

    /* Modal */
    .modal-content {
        max-width: 700px;
    }

    .modal-avatar {
        width: 120px;
        height: 120px;
    }

    .modal-username {
        font-size: 2rem;
    }
}

/* Amélioration petit mobile */
@media (max-width: 480px) {
    .search-header {
        padding: 15px;
    }

    .search-input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .filter-chips {
        gap: 6px;
    }

    .filter-chip {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .profile-card {
        padding: 12px;
        gap: 12px;
    }

    .profile-avatar-small {
        width: 45px;
        height: 45px;
    }

    .profile-name {
        font-size: 0.95rem;
    }

    .profile-bio {
        font-size: 0.8rem;
    }

    .modal-avatar {
        width: 100px;
        height: 100px;
    }

    .modal-username {
        font-size: 1.6rem;
    }

    .modal-bio {
        font-size: 0.9rem;
    }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .contact-btn,
    .booking-btn,
    .order-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

/* Orientation paysage mobile */
@media (max-width: 900px) and (orientation: landscape) {
    .main-content {
        flex-direction: row;
    }

    .map-container {
        flex: 1;
        height: calc(100vh - 80px);
    }

    .sidebar-results {
        width: 300px;
        height: calc(100vh - 80px);
    }
}

/* Filter panel mobile */
@media (max-width: 480px) {
    .filter-panel {
        width: 100%;
        right: -100%;
    }

    .filter-header {
        padding: 18px 20px;
    }

    .filter-header h3 {
        font-size: 1.3rem;
    }

    .filter-body {
        padding: 20px;
    }

    .filter-group {
        margin-bottom: 18px;
    }

    .filter-footer {
        padding: 15px 20px;
    }
}

/* ========================================
   MAP RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .map-section {
        padding-left: var(--page-side-padding);
        padding-right: var(--page-side-padding);
        padding-bottom: 30px;
        }

    .map-wrapper {
        border-radius: 20px;
        height: 45vh;
        min-height: 280px;
    }

    .map-wrapper::before {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding-left: var(--page-side-padding);
        padding-right: var(--page-side-padding);
        padding-bottom: 20px;
        }

    .map-wrapper {
        border-radius: 16px;
        height: 40vh;
        min-height: 250px;
    }

    .map-wrapper::before {
        border-radius: 16px;
    }

    .results-counter {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .map-section {
        padding-left: var(--page-side-padding);
        padding-right: var(--page-side-padding);
        padding-bottom: 15px;
        }

    .map-wrapper {
        border-radius: 12px;
        height: 35vh;
        min-height: 220px;
    }

    .map-wrapper::before {
        border-radius: 12px;
    }

    .results-counter {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}
