
.room-hero-slider {
  height: 550px;
}

.room-hero-slider .swiper,
.room-hero-slider .swiper-wrapper,
.room-hero-slider .swiper-slide {
  height: 100%;
}

.room-hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}


.room-detail-section {
  background-color: var(--bg-white);
  padding: 60px 0 80px;
  overflow: visible;
}


.room-detail-title-bar {
  padding-bottom: 24px;
  margin-bottom: 36px;
  border-bottom: 1px solid #e2ddd8;
}

.room-detail-main-title {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-title);
  margin-bottom: 0;
}


.room-quick-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.rqf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
}

.rqf-item .material-symbols-outlined {
  font-size: 22px;
  color: var(--primary-color);
}


.room-info-block {
  padding-top: 28px;
  border-top: 1px solid #e9e6e1;
}

.room-info-heading {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-title);
  margin-bottom: 16px;
}

.room-info-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 0;
}


.room-info-table {
  width: 100%;
  border-collapse: collapse;
}

.room-info-table tr {
  border-bottom: 1px solid #f0ede8;
}

.room-info-table tr:last-child {
  border-bottom: none;
}

.rif-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-title);
  padding: 10px 24px 10px 0;
  white-space: nowrap;
  width: 160px;
}

.rif-value {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  padding: 10px 0;
}


.booking-form-col {
  position: sticky;
  top: 110px;
  align-self: start;
}

.booking-form-card {
  background-color: var(--bg-1);
  border: 1px solid #ddd8d0;
  border-radius: 4px;
  padding: 28px 26px 32px;
}

.booking-label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-title);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.booking-label-sub {
  font-weight: 400;
  color: var(--text-body);
  font-size: 12px;
}

.booking-input {
  width: 100%;
  border: 1px solid #cbc5bb;
  border-radius: 2px;
  background-color: var(--bg-white);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s;
}

.booking-input:focus {
  border-color: var(--primary-color);
}

.booking-search-btn {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 14px 0;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.booking-search-btn:hover {
  background-color: #556849;
}

.room-amenities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.room-amenities-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
}

.room-amenities-list li .material-symbols-outlined {
  font-size: 20px;
  color: #aaa;
  flex-shrink: 0;
  font-variation-settings: 'FILL' 0, 'wght' 300;
}

.room-amenities-subheading {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-title);
  margin: 24px 0 12px;
  font-style: italic;
}


.other-rooms-section {
  background-color: var(--bg-white);
}

.other-rooms-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.other-rooms-line {
  flex: 1;
  height: 1px;
  background-color: #d8d2cb;
}

.other-rooms-heading {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 500;
  color: var(--text-title);
  white-space: nowrap;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.other-room-card {
  background-color: var(--bg-white);
  border: 1px solid #e8e3dc;
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.other-room-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.other-room-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.other-room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.other-room-card:hover .other-room-img {
  transform: scale(1.04);
}

.other-room-body {
  padding: 20px 22px 24px;
}

.other-room-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-title);
  margin-bottom: 12px;
}

.other-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 18px;
}

.other-room-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-body);
}

.other-room-meta-item .material-symbols-outlined {
  font-size: 18px;
  color: var(--primary-color);
}

.other-room-btn {
  position: relative;
  display: inline-block;
  border: 1px solid #b0a898;
  background-color: transparent;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}

.other-room-btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  width: 100%;
  background-color: var(--primary-color);
  transition: height 0.3s ease-out;
  z-index: 0;
}

.other-room-btn:hover::before {
  height: 100%;
}

.other-room-btn span {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-body);
  padding: 10px 24px;
  transition: color 0.2s;
}

.other-room-btn:hover span {
  color: var(--bg-white);
  transition: color 0.2s 0.1s;
}

@media (max-width: 991px) {
  .other-rooms-heading {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .booking-form-col {
    position: static;
    margin-bottom: 36px;
  }

  .room-detail-main-title {
    font-size: 30px;
  }

  .room-quick-features {
    gap: 14px 24px;
  }
}

@media (max-width: 576px) {
  .room-detail-section {
    padding: 40px 0 60px;
  }

  .room-detail-main-title {
    font-size: 24px;
  }

  .booking-form-card {
    padding: 22px 18px 26px;
  }

  .room-amenities-list {
    grid-template-columns: 1fr;
  }
}
