#property-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.property-item {
  min-width: 25%;
  /* 4 items visible */
  flex: 0 0 25%;
}

@media (max-width: 768px) {
  .property-item {
    min-width: 100%;
  }
}

.skeleton {
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: 4px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.property-item {
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skeleton-item,
.property-item {
  min-height: 300px;
}

#map-loader {
  transition: opacity 0.3s ease;
}

.locality-slider {
  transition: transform 0.5s ease;
  will-change: transform;
}

.locality-item {
  min-width: 220px;
}

#builders-container {
  transition: all 0.4s ease;
}
.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  transition: 0.3s;
}

.btn-icon:hover {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}s

.property-card {
  position: relative;
  cursor: pointer;
}

.property-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
  border-radius: inherit;
  text-decoration: none;
}

.property-card-link:focus {
  outline: 2px solid #0d6efd;
  outline-offset: 2px;
}

.property-card-body,
.property-card-view {
  pointer-events: none;
}

.property-card .property-image .pd-wishlist-btn,
.property-card .property-image [data-no-card-nav],
.property-card .carousel-indicators,
.property-card .carousel [data-bs-slide],
.property-card .carousel [data-bs-target],
.property-card-actions,
.property-card-actions * {
  pointer-events: auto;
}

.property-card .property-image .pd-wishlist-btn,
.property-card-actions {
  position: relative;
  z-index: 2;
}

.property-card .property-image .pd-wishlist-btn {
  position: absolute;
}

.property-card .carousel-indicators,
.property-card .carousel [data-bs-slide],
.property-card .carousel [data-bs-target] {
  z-index: 3;
  pointer-events: auto;
}

.btn-contact-property.is-connected,
.btn-contact-owner.is-connected {
  opacity: 0.92;
  cursor: default;
}

.pd-wishlist-btn.wishlist-added {
  background-color: #fff !important;
}

.pd-wishlist-btn:hover {
  background-color: #fee !important;
}