
.map-button-fixed {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  border-radius: 8px;
}
.map-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  z-index: 1000;
}
.map-popup.active {
  display: block;
}

.label-filtres {
  margin-top:10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.titre-filtres{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.gest-checkbox{
  display: flex;
  align-items: center;
  justify-content:flex-start !important;
  width: 100%;
  cursor: pointer;
  position: relative;
  text-indent: 10px;
}

.bouton-filtres-mobile{
  display: block;
  background-color:#f5b301;
  color:black;
  padding:10px 30px; 
  margin-top:20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  float:right;
  border:0px;
  border-radius: 10px;
}

.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: 80%;
  height: 100%;
  background: #f0f0f0;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  padding: 20px;
}
.sidebar.visible {
  transform: translateX(0);
}
.open-filters-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1002;
  padding: 10px;
  background: #000;
  color: #fff;
  border-radius: 4px;
}


.bloc-lieux-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

.bloc-lieu-item {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.bloc-lieu-slider {
  width: 100%;
  position: relative;
}

.bloc-lieu-slider .swiper-wrapper {
  width: 100%;
  height: auto;
}

.swiper-slide{
  padding:0px !important;
}

.bloc-lieu-slider .swiper-slide {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
}

.bloc-lieu-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10; /* <-- Important pour que les flèches soient devant */
  padding: 0 1rem;
  pointer-events: none; /* on désactive les clics sauf sur les boutons eux-mêmes */
}

.slider-button-prev,
.slider-button-next {
  background: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  pointer-events: auto; /* <-- Permet le clic */
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.slider-button-prev:hover,
.slider-button-next:hover {
  background: rgba(200, 200, 200, 0.9);
}


.bloc-lieu-content {
  padding: 1.5rem;
}

.bloc-lieu-title {
  font-size: 1.25rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bloc-lieu-title a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

.bloc-lieu-stars {
  font-size: 1rem;
  color: #f5b301;
}

.bloc-lieu-location {
  font-size: 10px;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  margin-top: 0.25rem;
}

.bloc-lieu-infos {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
}

.bloc-lieu-infos li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
