/* Property listing / detail specific components */

.badge-new {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1rem;
}

/* Video hero carousel (front page) */
#videoCarousel .carousel-item video {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

/* Destinations section */
.destinations .destination-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.destinations .destination-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.destinations .destination-card .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
  color: #fff;
}

/* Availability calendar (single property) */
.availability-calendar .ui-datepicker {
  z-index: 999 !important;
}
.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-right: 1rem;
  font-size: .85rem;
}
.calendar-legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot.available { background: #4caf50; }
.dot.booked { background: #e53935; }

/* Booking / enquiry widget */
.booker-widget {
  border: 1px solid var(--grey);
  border-radius: 10px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

/* User dashboard (child-theme features: login / register / profile / shortlist) */
.dashboard-sidebar {
  background: var(--light);
  border-radius: 10px;
  padding: 1.5rem;
}
.dashboard-sidebar .nav-link {
  color: var(--text-dark);
  border-radius: 6px;
}
.dashboard-sidebar .nav-link.active {
  background: var(--brand);
  color: #fff;
}
.shortlist-btn {
  border: none;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: .75rem;
  right: .75rem;
}
.shortlist-btn.is-active {
  color: #e53935;
}
