/* ==============================
   HOME FEATURED (LUXURY)
============================== */


.home-featured-lux .featured-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.home-featured-lux h2 {
  font-size: 2.2rem;
  margin-bottom: .8rem;
}

.home-featured-lux .featured-header p {
  color: #555;
  font-size: 1rem;
}

/* GRID */
.home-featured-lux .featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

/* CARD */
.home-featured-lux .featured-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-featured-lux .featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.1);
}

/* IMAGE */
.home-featured-lux .featured-image {
  position: relative;
  height: 280px;
  background: #eee;
}

.home-featured-lux .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* STATUS */
.home-featured-lux .featured-status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: .35rem .9rem;
  font-size: .7rem;
  border-radius: 30px;
  color: #fff;
}

.home-featured-lux .featured-status.available { background: #1f7a4d; }
.home-featured-lux .featured-status.reserved { background: #b08900; }
.home-featured-lux .featured-status.sold { background: #8b0000; }

/* BODY */
.home-featured-lux .featured-body {
  padding: 1.8rem;
  text-align: center;
}

.home-featured-lux .featured-body h3 {
  font-size: 1.3rem;
  margin-bottom: .4rem;
}

.home-featured-lux .meta {
  font-size: .9rem;
  color: #666;
  margin-bottom: .8rem;
}

.home-featured-lux .price {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* FOOTER */
.home-featured-lux .featured-footer {
  text-align: center;
  margin-top: 3rem;
}
