.property-slider-container {
  margin-bottom: 2rem;
  position: relative;
}

.property-slider {
  width: 100%;
  height: 350px;
  position: relative;
}

.property-slider .swiper-slide {
  width: 450px;
  height: 350px;
  overflow: hidden;
}

.property-slider .swiper-slide a {
  display: block;
  width: 450px;
  height: 350px;
  cursor: pointer;
  position: relative;
}

.property-slider .swiper-slide img {
  width: 450px;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-slider .swiper-slide:hover img {
  transform: scale(1.05);
}

.property-slider__video-preview {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.property-slider__play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
}

.property-slider__play-overlay svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
}

/* Navigation Controls Container */
.property-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Navigation Buttons */
.property-slider__button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  color: #2f363e;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.property-slider__button:hover:not(.swiper-button-disabled) {
  background-color: #bda674;
  border-color: #bda674;
  color: #ffffff;
}

.property-slider__button.swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
  border-color: #cccccc;
}

.property-slider__button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

/* Pagination – same as property-places */
.property-slider__pagination {
  position: static !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: auto !important;
  padding: 0 10px;
}

.property-slider__pagination .swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.property-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d1d5db;
  opacity: 1;
  margin: 0 !important;
  transition: background 0.2s ease;
  cursor: pointer;
}

.property-slider__pagination .swiper-pagination-bullet-active {
  background: #b91c1c;
}

/* Responsive: 1.2 slides per view on mobile */
@media (max-width: 767px) {
  .property-slider {
    height: 250px;
  }

  /* Let Swiper control slide width for 1.2 slides (override fixed width) */
  .property-slider .swiper-slide {
    width: auto;
    height: 250px;
    box-sizing: border-box;
  }

  .property-slider .swiper-slide a,
  .property-slider .swiper-slide img {
    width: 100%;
    height: 250px;
    max-width: none;
  }

  .property-slider__controls {
    gap: 10px;
    margin-top: 20px;
  }
  
  .property-slider__button {
    width: 40px;
    height: 40px;
  }
  
  .property-slider__button svg {
    width: 16px;
    height: 16px;
  }
  
  .property-slider__pagination {
    display: none;
  }
}
