/* Container principal */
.landing-interactive {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Carte */
#map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Bouton toggle filtres carte */
.toggle-map-filters {
  position: absolute;
  bottom: 40px;
  left: 12px;
  width: 48px;
  height: 48px;
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  border: 1px solid var(--_colors---color--brand--neutral--neutral-00);
  border-radius: 3px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-map-filters:hover,
.toggle-map-filters:focus {
  border-color: var(--_colors---color--brand--primary--primary-500);
  outline: none;
}

.toggle-map-filters:before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"%23333\"><path d=\"M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z\"/></svg>") no-repeat center;
  background-size: contain;
}

/* Filtres carte */
.map-filters {
  position: absolute;
  bottom: 90px;
  left: 12px;
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  padding: 20px 24px;
  display: none;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: var(--_layout---radius--radius-4);
  min-width: 160px;
}

.map-filters.active {
  display: block;
}

.map-filters .checkbox {
  margin: 0 0 12px 0;
}

.map-filters .checkbox:last-of-type {
  margin-bottom: 0;
}

.map-filters .checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.map-filters .checkbox input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.btn {
  padding: var(--_layout-2---spacing--spacing-12\<deleted\|variable-79c12b57-0604-9216-7dba-22283d724c16\>) var(--_layout-2---spacing--spacing-16\<deleted\|variable-957fcdec-8cfa-f745-be01-e3a7cab07509\>);
  grid-column-gap: var(--_layout-2---spacing--spacing-8\<deleted\|variable-130f80b6-dac2-77e4-52d8-fdcfcb51f81f\>);
  border-top-right-radius: var(--_layout---radius--radius-8);
  border-bottom-left-radius: var(--_layout---radius--radius-8);
  background-color: var(--_colors---color--brand--primary--primary-500);
  color: var(--_colors---color--brand--neutral--neutral-00);
  font-size: var(--_colors---font--size--s);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--_colors---color--brand--primary--primary-400);
}

.btn:active {
  background-color: var(--_colors---color--brand--primary--primary-600);
}

.btn:focus {
  background-color: var(--_colors---color--brand--primary--primary-600);
}

.map-filters .checkbox span {
  user-select: none;
  color: var(--_colors---color--brand--neutral--neutral-800);
}

/* Sidebar */
.listView-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.sideView .listView-container {
  height: auto;
}

.sideView--details-container {
  position: absolute;
  width:30%;
  max-width: 30%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  transition: right 0.3s ease;
}

.sideView--details-container.closed {
  right: -30%;
}

.sideView--details-container.closed .hideShow-sideView:before {
  transform: rotate(180deg);
}

.hideShow-sideView {
  position: absolute;
  left: -72px;
  top: 12px;
  width: 72px;
  height: 70px;
  color: var(--_colors---color--brand--neutral--neutral-600);
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  border: 1px solid var(--_colors---color--brand--neutral--neutral-200);
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px 0 0 9px;
  opacity: 1;
  visibility: visible;
  cursor: pointer;
  z-index: 101;
}

.hideShow-sideView:before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2714%27 height=%2714%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27currentColor%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27m9 18 6-6-6-6%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  transform: rotate(0);
}

.sideView--details {
  position: relative;
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  border-top-left-radius: var(--_layout---radius--radius-4);
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}

.sideView--titre {
  font-size: 24px;
  color: var(--_colors---color--brand--neutral--neutral-800);
  font-weight: 600;
  margin: 0;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  padding: 0 120px;
  z-index: -1;
}

.sideView--titre-section {
  font-size: 16px;
  color: var(--_colors---color--brand--neutral--neutral-800);
  font-weight: 600;
  margin: 0 0 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--_colors---color--brand--neutral--neutral-100);
}

.sideView--liste {
  max-width: 1034px;
  margin: 0 auto;
  transition: all 0.3s ease;
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 4;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
}

.sideView--liste.hidden {
  display: none;
}

.sideView--search-container {
  position: sticky;
  top: 0;
  z-index: 5;
}

.sideView--search {
  transition: all 0.3s ease;
  background-color: var(--_colors---color--brand--primary--primary-500);
  background: linear-gradient(to left, var(--_colors---color--brand--primary--primary-400) 0, var(--_colors---color--brand--primary--primary-500) 100%);
  padding: 24px 20px;
  color: var(--_colors---color--brand--neutral--neutral-00);
}

.sideView--search .input-group {
  margin-bottom: 12px;
  color: var(--_colors---color--brand--neutral--neutral-800);
  display: flex;
  align-items: stretch;
}

.sideView--search .input-group input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: var(--_layout---radius--radius-4) 0 0 var(--_layout---radius--radius-4);
  font-size: var(--_colors---font--size--xs);
  font-family: "Montserrat", sans-serif;
}

.sideView--search .input-group-btn {
  display: flex;
}

.sideView--search .input-group-btn .btn {
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 0 var(--_layout---radius--radius-4) var(--_layout---radius--radius-4) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--_colors---color--brand--primary--primary-500);
  font-size: var(--_colors---font--size--s);
}

.sideView--search .input-group-btn .btn:hover {
  background-color: var(--_colors---color--brand--neutral--neutral-100);
}

.sideView--search-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
  color: var(--_colors---color--brand--neutral--neutral-00);
}

.sideView--search-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 12px;
}

.sideView--result-label {
  margin: 0;
  font-size: var(--_colors---font--size--xs);
  line-height: 16px;
  font-weight: 500;
  color: var(--_colors---color--brand--neutral--neutral-00);
}

.btn-icon-inline {
  background: none;
  border: none;
  color: var(--_colors---color--brand--neutral--neutral-00);
  cursor: pointer;
  font-size: var(--_colors---font--size--xs);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--_layout---radius--radius-4);
  transition: background-color 0.2s;
}

.btn-icon-inline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Override pour vue liste */
.list-view--search .btn-icon-inline {
  color: var(--_colors---color--brand--neutral--neutral-800);
}

.list-view--search .btn-icon-inline:hover {
  background-color: var(--_colors---color--brand--neutral--neutral-100);
}

.sideView--tri {
  padding: 24px 20px;
  background-color: var(--_colors---color--brand--neutral--neutral-00);
}

.tri {
  position: relative;
}

.tri > label {
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}

.slide-tri {
  background-color: transparent;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  position: relative;
  padding-right: 24px;
}

.slide-tri:after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2714%27 height=%2714%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27currentColor%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27m9 18 6-6-6-6%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  margin-left: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.sideView--tri .slide-tri.open::after {
  transform: translateY(-50%) rotate(-90deg);
}

.slide-tri-target {
  display: none;
  position: absolute;
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  width: 100%;
  top: 100%;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: var(--_layout---radius--radius-4);
  padding: 12px;
  margin-top: 6px;
}

.slide-tri-target .radio {
  margin: 12px 0;
}

.slide-tri-target .radio label {
  display: block;
  cursor: pointer;
  font-size: var(--_colors---font--size--xs);
  color: var(--_colors---color--brand--neutral--neutral-800);
  padding: 6px;
  border-radius: var(--_layout---radius--radius-4);
  transition: background-color 0.2s;
}

.slide-tri-target .radio label:hover {
  background-color: var(--_colors---color--brand--neutral--neutral-100);
}

.slide-tri-target .radio input[type="radio"] {
  margin-right: 10px;
}

/* Liste des bâtiments */
.noBatiments {
  padding: 40px 24px;
  text-align: center;
  font-size: 18px;
  color: var(--_colors---color--brand--neutral--neutral-600);
}

.noBatiments.hidden {
  display: none;
}

.liste-batiments {
  padding: 0 20px;
}

.liste-batiments-wrapper {
  overflow: hidden;
}

.liste-batiments--item {
  position: relative;
  margin-bottom: 12px;
  border-top: 1px solid var(--_colors---color--brand--neutral--neutral-100);
  padding-top: 12px;
}

.liste-batiments--item:first-child {
  border-top: none;
  padding-top: 0;
}

.liste-batiments--item-detail {
  display: flex;
  background-color: transparent;
  border: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 0;
}

.liste-batiments--visuel {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  overflow: hidden;
  border-radius: var(--_layout---radius--radius-4);
}

.liste-batiments--visuel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.liste-batiments--visuel .no-image {
  width: 100%;
  height: 100%;
  background-color: var(--_colors---color--brand--neutral--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--_colors---color--brand--neutral--neutral-600);
  font-size: var(--_colors---font--size--xs);
}

.liste-batiments--detail {
  padding-left: 16px;
  flex-grow: 1;
}

.liste-batiments--header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-right: 30px;
}

.liste-batiments--scpi {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.liste-batiments--scpi li {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: var(--_colors---color--brand--neutral--neutral-800);
}

.liste-batiments--scpi li:after {
  content: '';
  margin: 0 6px;
  width: 4px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--_colors---color--brand--neutral--neutral-800);
}

.liste-batiments--scpi li:last-of-type:after {
  content: none;
}

.liste-batiments--ville {
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 6px;
}

.liste-batiments--type,
.liste-batiments--nom,
.liste-batiments--plus {
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

/* Pagination */
.liste-batiments--pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--_colors---color--brand--neutral--neutral-50);
  border-top: 1px solid var(--_colors---color--brand--neutral--neutral-100);
  margin: 32px -20px 0;
  padding: 20px;
  position: sticky;
  bottom: 0;
}

.liste-batiments--pagination-resultat {
  font-size: var(--_colors---font--size--xs);
  color: var(--_colors---color--brand--neutral--neutral-800);
}

.liste-batiments--pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination {
  transition: all 0.3s ease;
  background-color: transparent;
  color: var(--_colors---color--brand--neutral--neutral-800);
  border: none;
  margin: 0;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--_layout---radius--radius-4);
  font-size: var(--_colors---font--size--xs);
}

.pagination:hover:not(.disabled) {
  background-color: var(--_colors---color--brand--neutral--neutral-200);
}

.pagination.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-list-chiffres {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px;
}

.pagination-list-chiffres li {
  margin: 0;
}

.paginationLink {
  background: none;
  border: none;
  color: var(--_colors---color--brand--neutral--neutral-800);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--_layout---radius--radius-4);
  font-size: var(--_colors---font--size--xs);
  transition: background-color 0.2s;
}

.paginationLink:hover {
  background-color: var(--_colors---color--brand--neutral--neutral-200);
}

.pagination-list-chiffres li.active .paginationLink {
  background-color: var(--_colors---color--brand--primary--primary-500);
  color: var(--_colors---color--brand--neutral--neutral-00);
}

/* Filtres slide */
.hasSlideToView {
  transition: all 0.3s ease;
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  overflow: auto;
  width: 100%;
}

.hasSlideToView.hidden {
  right: -100%;
}

.hasSlideToView--header {
  padding: 16px 16px;
  border-bottom: 1px solid var(--_colors---color--brand--neutral--neutral-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  z-index: 5;
}

.btn-inline {
  background: none;
  border: none;
  color: var(--_colors---color--brand--primary--primary-500);
  cursor: pointer;
  font-size: var(--_colors---font--size--xs);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--_layout---radius--radius-4);
  transition: background-color 0.2s;
}

.btn-inline:hover {
  background-color: var(--_colors---color--brand--primary--primary-200);
}

.hasSlideToView--body {
  padding: 24px 20px 40px;
  overflow: hidden;
}

.sideView--filtre-section {
  margin-bottom: 32px;
}

.sideView--filtre-section .checkbox {
  margin-bottom: 10px;
}

.sideView--filtre-section .checkbox h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.sideView--filtre-section .checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: var(--_colors---font--size--xs);
  color: var(--_colors---color--brand--neutral--neutral-800);
  padding: 6px;
  border-radius: var(--_layout---radius--radius-4);
  transition: background-color 0.2s;
}

.sideView--filtre-section .checkbox label:hover {
  background-color: var(--_colors---color--brand--neutral--neutral-100);
}

.sideView--filtre-section .checkbox input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.voir-x-biens {
  position: sticky;
  z-index: 1;
  bottom: 20px;
  text-align: center;
  padding: 20px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.relative {
  position: relative;
}

.hidden {
  display: none;
}

.spacing-30 {
  margin-bottom: 24px;
}

/* Styles pour les icônes Tabler */
.tabler-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.no-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spacing-50 {
  margin-bottom: 40px;
}

/* Fiche détaillée bâtiment */
.fiche-batiments--item {
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  overflow: auto;
  width: 100%;
  transform: translateX(100%);
  animation: slideInFromRight 0.4s ease-out forwards;
}

.fiche-batiments--item.closing {
  animation: slideOutToRight 0.4s ease-in forwards;
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOutToRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

.fiche-batiments--body {
  padding: 24px 20px 0;
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100% - 60px);
}

.fiche-batiments--top-carousel {
  border-bottom: 1px solid var(--_colors---color--brand--neutral--neutral-100);
  overflow: hidden;
  padding: 0 20px;
  margin: 0 -20px 20px;
}

.fiche-batiments--top-carousel img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  border-radius: var(--_layout---radius--radius-4);
}

.carousel-info {
  font-size: var(--_colors---font--size--xs);
  color: var(--_colors---color--brand--neutral--neutral-600);
  margin: 12px 0 0;
  padding: 0 20px;
  font-style: italic;
}

.fiche-batiments--types {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.fiche-batiments--types li {
  position: relative;
  padding-left: 48px;
  font-size: var(--_colors---font--size--xs);
  font-weight: 600;
  color: var(--_colors---color--brand--neutral--neutral-800);
  margin-bottom: 8px;
}

.fiche-batiments--types li:before {
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  background: linear-gradient(to left, var(--_colors---color--brand--primary--primary-400) 0, var(--_colors---color--brand--primary--primary-500) 100%);
  content: '';
  width: 32px;
  height: 3px;
  border-radius: 2px;
  display: inline-block;
  left: 0;
}

.fiche-batiments--ville {
  font-family: "Montserrat", sans-serif;
  font-size: var(--_colors---font--size--l);
  line-height: 28px;
  margin: 0 0 8px;
  font-weight: 500;
  color: var(--_colors---color--brand--neutral--neutral-800);
}

.fiche-batiments--nom {
  font-family: "Montserrat", sans-serif;
  font-size: var(--_colors---font--size--m);
  line-height: 24px;
  margin: 0 0 8px;
  font-weight: 500;
  color: var(--_colors---color--brand--neutral--neutral-800);
}

.fiche-batiments--typologie {
  font-family: "Montserrat", sans-serif;
  font-size: var(--_colors---font--size--xs);
  line-height: 20px;
  color: var(--_colors---color--brand--neutral--neutral-600);
  font-weight: 500;
}

.fiche-batiments--infos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fiche-batiments--info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--_colors---font--size--xs);
  color: var(--_colors---color--brand--neutral--neutral-800);
}

.fiche-batiments--info span:first-child {
  font-weight: 500;
  color: var(--_colors---color--brand--neutral--neutral-600);
}

.fiche-batiments--info span:last-child {
  font-weight: 600;
  color: var(--_colors---color--brand--neutral--neutral-800);
}

.fiche-batiments--complement {
  border-top: 1px solid var(--_colors---color--brand--neutral--neutral-100);
  padding-top: 24px;
}

.custom-title.horizontal {
  margin-bottom: 16px;
}

.custom-title .title {
  font-size: var(--_colors---font--size--m);
  font-weight: 600;
  color: var(--_colors---color--brand--neutral--neutral-800);
  margin: 0;
}

.complement.complement-lieu {
  font-size: var(--_colors---font--size--xs);
  color: var(--_colors---color--brand--neutral--neutral-600);
  line-height: 20px;
}

.fiche-batiments--locataires {
  margin-top: 24px;
  border-top: 1px solid var(--_colors---color--brand--neutral--neutral-100);
  padding-top: 24px;
}

.carousel-fiche {
  margin-top: 16px;
}

.carousel-fiche .item-container {
  padding: 0 8px;
}

.carousel-fiche .item {
  padding: 12px 16px;
  background-color: var(--_colors---color--brand--neutral--neutral-50);
  border-radius: var(--_layout---radius--radius-4);
  text-align: center;
}

.carousel-fiche .item span {
  font-size: var(--_colors---font--size--xs);
  font-weight: 500;
  color: var(--_colors---color--brand--neutral--neutral-800);
}

/* Toggle vue map/liste */
.view-toggle-container {
  position: relative;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  z-index: 2000;
  margin-bottom: 10px;
}

.view-toggle {
  display: flex;
  width: fit-content;
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  border: none;
  border-radius: 0 24px 0 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.view-toggle-item {
  padding: 12px 24px;
  background: none;
  border: none;
  color: var(--_colors---color--brand--neutral--neutral-800);
  font-size: var(--_colors---font--size--s);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.view-toggle-item:hover {
  background-color: var(--_colors---color--brand--neutral--neutral-100);
}

.view-toggle-item.active {
  background-color: var(--_colors---color--brand--primary--primary-500);
  color: var(--_colors---color--brand--neutral--neutral-00);
}

.view-toggle-item.active:hover {
  background-color: var(--_colors---color--brand--primary--primary-400);
}

/* Vue liste */
.list-view-container {
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 100;

}

/* Container class */
.container {
  padding-right: var(--_layout---spacing--spacing-64);
  padding-left: var(--_layout---spacing--spacing-64);
  grid-row-gap: var(--_layout---spacing--spacing-16);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  display: flex;
}

.list-view--search-container {
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: var(--_colors---color--brand--primary--primary-50);
}

.list-view--search {
  transition: all 0.3s ease;
  background-color: transparent;
  padding: 24px 20px;
  color: var(--_colors---color--brand--neutral--neutral-800);
}

.list-view--search .input-group {
  margin-bottom: 12px;
  color: var(--_colors---color--brand--neutral--neutral-800);
  display: flex;
  align-items: stretch;
  border: 1px solid;
  border-radius: 0 16px 0 16px;
}

.list-view--search .input-group input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: var(--_layout---radius--radius-4) 0 0 var(--_layout---radius--radius-4);
  font-size: var(--_colors---font--size--xs);
  font-family: "Montserrat", sans-serif;
  border-radius: 0 16px 0 16px;
}

.list-view--search .input-group-btn {
  display: flex;
}

.list-view--search .input-group-btn .btn {
  background-color: transparent;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 0 var(--_layout---radius--radius-4) var(--_layout---radius--radius-4) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--_colors---color--brand--neutral--neutral-800);
  font-size: var(--_colors---font--size--s);
}

.list-view--search .input-group-btn .btn:hover {
  background-color: var(--_colors---color--brand--neutral--neutral-100);
  color: var(--_colors---color--brand--neutral--neutral-800);
}

.list-view--search-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin: 40px 0 0 0;
  color: var(--_colors---color--brand--neutral--neutral-800);
}

.list-view--search-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 12px;
}

.list-view--result-label {
  margin: 0;
  font-size: var(--_colors---font--size--xs);
  line-height: 16px;
  font-weight: 500;
  color: var(--_colors---color--brand--neutral--neutral-800);
}

.list-view--tri {
  padding: 24px 20px;
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  border-bottom: 1px solid var(--_colors---color--brand--neutral--neutral-100);
}

/* Cards grid */
.list-view--cards-container {
  padding: 24px 20px;
}

.list-view--cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.list-view--card {
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  border: 1px solid var(--_colors---color--brand--neutral--neutral-100);
  border-radius: var(--_layout---radius--radius-4);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.list-view--card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.list-view--card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--_colors---color--brand--neutral--neutral-100);
}

.list-view--card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-view--card-image .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-view--card-content {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.list-view--card-ville {
  font-size: var(--_colors---font--size--m);
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 8px;
  color: var(--_colors---color--brand--neutral--neutral-800);
  font-family: "Montserrat", sans-serif;
}

.list-view--card-type {
  font-size: var(--_colors---font--size--xs);
  line-height: 18px;
  font-weight: 500;
  color: var(--_colors---color--brand--neutral--neutral-600);
  margin-bottom: 8px;
}

.list-view--card-date {
  font-size: var(--_colors---font--size--xs);
  line-height: 18px;
  font-weight: 500;
  color: var(--_colors---color--brand--neutral--neutral-600);
  margin-top: auto;
}

.list-view--pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--_colors---color--brand--neutral--neutral-50);
  border-top: 1px solid var(--_colors---color--brand--neutral--neutral-100);
  margin: 32px -20px 0;
  padding: 20px;
  position: sticky;
  bottom: 0;
}

.list-view--pagination-resultat {
  font-size: var(--_colors---font--size--xs);
  color: var(--_colors---color--brand--neutral--neutral-800);
}

.list-view--pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Filtres pour vue liste */
.list-view--filtre-overlay {
  position: fixed;
  top: 155px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.list-view--filtre-panel {
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  width: 100%;
  max-width: 400px;
  height: 100%;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  animation: slideInFromRight 0.4s ease-out forwards;
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.map.hidden {
  display: none;
}

.sideView--details-container.hidden {
  display: none;
}

/* Modal fiche détaillée pour vue liste */
.property-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.property-modal {
  background-color: var(--_colors---color--brand--neutral--neutral-00);
  border-radius: var(--_layout---radius--radius-4);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  animation: slideInFromBottom 0.4s ease-out forwards;
}

.property-modal.closing {
  animation: slideOutToBottom 0.4s ease-in forwards;
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutToBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.property-modal-content {
  position: relative;
}

/* Responsive */
@media (max-width: 991px) {
  .sideView--details-container {
    width: 100% !important;
    max-width: 100% !important;
    right: 0 !important;
    top: 0;
  }

  .sideView--details-container.closed {
    right: -100% !important;
  }

  .sideView--details {
    height: auto;
    background-color: transparent;
    overflow: visible;
  }

  .sideView--search {
    border-radius: 4px 4px 24px 24px;
  }

  .sideView--liste {
    position: relative;
    background-color: transparent;
    overflow: visible;
  }

  .sideView--tri {
    display: none;
  }

  .sideView--titre {
    font-size: 20px;
    padding: 0 100px;
  }

  .hasSlideToView {
    position: fixed;
    top: 80px;
  }

  /* Vue liste responsive */
  .list-view--cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .list-view--pagination-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .list-view--pagination {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .list-view--cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .view-toggle-container {
    top: 12px;
    left: 12px;
  }

  .view-toggle-item {
    padding: 10px 16px;
    font-size: var(--_colors---font--size--xs);
  }
}

