.slider-container {
  position: relative;
  margin-top: 2.5em;
}

/* Navigation buttons */
.slider-navigation {
  position: absolute;
  top: -60px;
  right: 1em;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  font-size: 0;
}

.swiper-button-prev::after {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.swiper-button-next::after {
  margin-right: 3px;
}

.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Swiper styles */
.swiper {
  width: 100%;
}

.swiper-slide {
  background: transparent;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev {
  opacity: 1;
  transform: scale(1);
}

/* Property card */
.property-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-image-container {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

.property-location {
  position: absolute;
  bottom: 12px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
}

.location-icon {
  width: 14px;
  height: 14px;
  fill: white;
}

.location-text {
  color: white;
  font-size: 13px;
  font-weight: 500;
}

.property-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
  min-height: 56px;
}

.property-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 1em;
  border-top: 1px solid var(--color-accent-hover);

}

.price-main {
  color: var(--color-gold);
  font-size: 2em;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.price-starting {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5em;
}

/* View All Button */
.view-all-container {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.view-all-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(5px);
}

.arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-all-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .slider-navigation {
    top: -50px;
  }

  .property-title {
    font-size: 18px;
  }

  .price-main {
    font-size: 20px;
  }
}
