
.property-section {
  padding: 100px 20px;
  background-color: #fff;
}

.property-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 10px;
}

.property-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  position: relative;
}

.property-swiper {
  position: relative;
}

.property-swiper img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

.property-swiper {
  position: relative;
  overflow: hidden;
}

.property-swiper img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

/* Full bottom black gradient */
.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 1;
}

/* Price on top of gradient */
.price-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 14px;
  z-index: 2;
}

.price-tag strong {
  font-size: 20px;
  display: block;
}


.featured-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #28a745;
  color: white;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 3px;
  z-index: 2;
  font-weight: 600;
}

.wishlist-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  color: white;
  z-index: 2;
  cursor: pointer;
}

.swiper-pagination {
  bottom: 10px !important;
  text-align: center;
  z-index: 2;
  margin-left: 192px;
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.7);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.property-meta {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #555;
  padding: 12px 20px 0;
}

.property-meta span {
  background: #f0f4f8;
  padding: 5px 10px;
  border-radius: 20px;
}

.property-info {
  padding: 10px 20px 20px;
}

.property-info h3 {
  font-size: 20px;
  margin: 0;
  color: #222;
}

.property-info p {
  margin: 5px 0 0;
  color: #888;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .property-card {
    max-width: 100%;
  }
}


