body {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}
.sticky-room {
position: sticky;
top: 80px; /* Adjust based on your navbar height */
z-index: 10;
background: white;
}
.room-container {
display: flex;
align-items: flex-start;
min-height: 500px; /* Prevent collapsing */
}
/* ✅ Increase image height */
#roomImageCarousel img {
height: 400px !important; /* Increased image height */
object-fit: cover; /* Keep aspect ratio */
border-radius: 10px;
}
.search-banner {
display: flex;
gap: 10px;
padding: 12px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-banner i {
color: #555;
}

.nights-selector,
.form-select-sm {
width: auto;
min-width: 80px;
}

.guest-picker-modal {
position: absolute;
top: 50px;
left: 0;
background: white;
width: 300px;
padding: 10px;
z-index: 1000;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.dropdown-menu {
max-height: 300px;
overflow-y: auto;
font-size: 12px;
}

.dropdown-item {
white-space: normal;
font-size: 10px;
}
footer {
    background-color: #f8f9fa;
    font-size: 13px;
  }
  
#booking-summary {
  position: sticky;
  top: 100px;  
  z-index: 10;
}

/* Header background: swatch color */
.site-header {
  background: #FCEDEB;      /* ← exact color */
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* Ensure text/buttons read well on light background */
.site-header h2,
.site-header p { color: #111; }

.site-header .btn-light {
  background: #ffffff;
  border-color: transparent;
}

/* Optional: white pad behind logo for contrast */
.site-header .logo-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
}

.room-meta-row .room-meta-item{
  white-space: nowrap;
  font-size: 12px;
  line-height: 1.2;
}

/* Modal polish */
#roomDetailModal .modal-content {
  border-radius: 18px;
  overflow: hidden;
}

#roomDetailModal .modal-body {
  background: #fff;
}

#roomDetailModal .modal-title {
  font-size: 22px;
}

/* Info chips */
.rnix-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.rnix-info-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #e9ecef;
  background: #f8f9fa;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.rnix-info-chip i {
  opacity: 0.85;
}

/* Facilities badges spacing */
#roomAmenities .badge {
  padding: 7px 10px;
  border-radius: 999px;
}

/* Make modal image area cleaner */
#roomDetailModal .carousel img {
  border-radius: 14px;
}

.rnix-facilities-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}

.rnix-facility-chip{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border:1px solid #e5e7eb;
  border-radius:999px;
  background:#fff;
  font-size:10px;
  line-height:1;
  white-space:nowrap;
}

.rnix-facility-more{
  font-weight:400;
  background:#f8fafc;
}


/* Mobile stacking */
@media (max-width: 992px) {
  #roomDetailModal .modal-dialog {
    max-width: 95vw;
  }
}


  
@media (max-width: 768px) {
.room-container {
gap: 1.5rem;
}

.sticky-room,
.rate-plan {
width: 100% !important;
}
}
/* Large screens: sticky enabled */
@media (min-width: 768px) {
.sticky-room {
position: sticky;
top: 80px;
z-index: 10;
background: white;
}
}

/* Small screens: sticky disabled */
@media (max-width: 767px) {
.sticky-room {
position: static !important;
}
}