/* ===== ROOM DETAIL PAGE ===== */
.page-room-detail {
  background: var(--color-white);
}

.room-detail-hero {
  position: relative;
  min-height: 720px;
  height: 82vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.room-detail-hero-media,
.room-detail-hero-overlay {
  position: absolute;
  inset: 0;
}

.room-detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroZoom 18s ease infinite alternate;
}

.room-detail-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 40, 75, 0.82) 0%, rgba(0, 40, 75, 0.48) 42%, rgba(10, 10, 10, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.62) 100%);
  z-index: 1;
}

.room-detail-hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 90%);
  margin-left: 5%;
  color: var(--color-white);
}

.room-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.room-breadcrumb a:hover {
  color: var(--color-primary);
}

.room-detail-hero .section-subtitle::after,
.room-experience-content .section-subtitle::after {
  margin: 10px 0 0;
}

.room-detail-hero h1 {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  line-height: 1.05;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.room-detail-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 34px;
}

.room-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.room-quick-stats {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 28px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-heavy);
  backdrop-filter: blur(18px);
}

.room-quick-stats div {
  padding: 24px 28px;
  border-right: 1px solid rgba(0, 40, 75, 0.1);
}

.room-quick-stats div:last-child {
  border-right: none;
}

/* Only DIRECT span children — not asp:Label spans inside strong/p */
.room-quick-stats > div > span,
.room-reserve-head > span,
.room-policy-card > span:first-child {
  display: block;
  color: var(--color-primary);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* Reset asp:Label (span) inside strong, h1, h2, p */
.room-reserve-head strong span,
.room-quick-stats strong span,
.room-detail-hero h1 span,
.room-detail-hero h2 span,
.section-title span,
.room-breadcrumb > span:not(:nth-child(2)):not(:nth-child(4)) {
  display: inline !important;
  color: inherit !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
  margin-bottom: 0 !important;
}

.room-quick-stats strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
}

.room-quick-stats strong small {
  display: block;
  margin-top: 4px;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.room-price-stat strong {
  color: var(--color-primary-dark);
}

.room-price-note {
  display: block;
  margin-top: 7px;
  color: var(--color-text-light);
  font-size: 0.82rem;
  font-weight: 600;
}

.room-availability-stat strong {
  font-size: 1.18rem;
}

.room-availability {
  display: inline-flex !important;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
}

.room-quick-stats strong .room-availability {
  display: inline-flex !important;
  align-items: center;
  color: inherit;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  margin-bottom: 0 !important;
}

.room-availability.is-available {
  color: #16774a !important;
  background: rgba(22, 119, 74, 0.1);
}

.room-availability.is-unavailable {
  color: #b42318 !important;
  background: rgba(180, 35, 24, 0.1);
}

.room-quick-stats strong .room-availability.is-available {
  color: #16774a !important;
}

.room-quick-stats strong .room-availability.is-unavailable {
  color: #b42318 !important;
}

.room-detail-section,
.room-gallery-section,
.room-policies-section,
.room-related-section {
  padding: 90px 0;
}

.room-detail-section {
  background: var(--color-cream);
}

.room-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 60px;
  align-items: start;
}

.room-detail-main p {
  color: var(--color-text-light);
  font-size: 0.98rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

.room-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.room-highlight-item {
  background: var(--color-white);
  border: 1px solid rgba(0, 40, 75, 0.08);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-medium);
}

.room-highlight-item:hover {
  transform: translateY(-6px);
  border-color: rgba(211, 165, 40, 0.35);
  box-shadow: var(--shadow-medium);
}

.room-highlight-item span {
  display: inline-block;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 18px;
}

.room-highlight-item h3 {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.room-highlight-item p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.75;
}

.room-reserve-panel {
  position: sticky;
  top: 110px;
  background: var(--color-white);
  border: 1px solid rgba(0, 40, 75, 0.08);
  box-shadow: var(--shadow-heavy);
}

.room-reserve-head {
  padding: 32px;
  background: var(--color-secondary);
}

.room-reserve-head strong {
  display: block;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 8px;
}

.room-reserve-head small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.room-booking-form {
  padding: 28px 32px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.room-booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--color-secondary);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.room-booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--color-secondary);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.room-guests-field {
  position: relative;
  grid-column: 1 / -1;
}

.room-booking-field .guest-room-toggle {
  border: 1px solid rgba(0, 40, 75, 0.12);
  background: var(--color-off-white);
  color: var(--color-text);
  min-height: 50px;
  padding: 0 16px;
}

.room-booking-field .guest-room-panel {
  left: 0;
  top: calc(100% + 8px);
  text-transform: none;
  letter-spacing: 0;
}

.room-booking-form .guest-room-toggle,
.room-booking-form .guest-room-stepper,
.room-booking-form .guest-room-done {
  grid-column: auto;
}

/* Action + benefit = full width */
.room-booking-form button,
.room-booking-form .btn,
.room-booking-form p {
  grid-column: 1 / -1;
}

.room-booking-form input[type="date"] {
  width: 100%;
  box-sizing: border-box;
}

.room-booking-form input,
.room-booking-form select {
  width: 100%;
  border: 1px solid rgba(0, 40, 75, 0.12);
  background: var(--color-off-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 15px 16px;
  outline: none;
  transition: var(--transition-fast);
}

.room-booking-form input:focus,
.room-booking-form select:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(211, 165, 40, 0.14);
}

.room-booking-form .btn {
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

.room-booking-benefit {
  margin: -4px 0 0;
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.room-reserve-contact {
  padding: 22px 32px 30px;
  border-top: 1px solid rgba(0, 40, 75, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.room-reserve-contact span {
  color: var(--color-text-light);
  font-size: 0.8rem;
}

.room-reserve-contact a {
  color: var(--color-secondary);
  font-weight: 700;
}

.room-reserve-contact a:hover {
  color: var(--color-primary);
}

.room-section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.room-section-heading.text-center {
  margin-left: auto;
  margin-right: auto;
}

.room-detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.room-gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--color-secondary);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.room-gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.room-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s ease, opacity 0.4s ease;
}

.room-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 40, 75, 0.05), rgba(0, 40, 75, 0.72));
  opacity: 0;
  transition: var(--transition-fast);
}

.room-gallery-item span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition-fast);
}

.room-gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.86;
}

.room-gallery-item:focus-visible {
  box-shadow: 0 0 0 4px rgba(211, 165, 40, 0.36), var(--shadow-soft);
}

.room-gallery-item:hover::after,
.room-gallery-item:focus-visible::after,
.room-gallery-item:hover span {
  opacity: 1;
}

.room-gallery-item:focus-visible span,
.room-gallery-item:hover span {
  transform: translateY(0);
  opacity: 1;
}

.room-amenities-section {
  padding: 95px 0;
  background: var(--color-secondary);
}

.room-amenities-section .section-subtitle::after {
  background: var(--color-primary);
}

.room-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.room-amenity-card {
  min-height: 150px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-medium);
}

.room-amenity-card svg {
  width: 36px;
  height: 36px;
  fill: var(--color-primary);
  transition: var(--transition-fast);
}

.room-amenity-card span {
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 500;
}

.room-amenity-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(211, 165, 40, 0.36);
  transform: translateY(-6px);
}

.room-amenity-card:hover svg {
  transform: translateY(-3px) scale(1.08);
}

.room-experience-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 620px;
  background: var(--color-white);
}

.room-experience-image {
  min-height: 620px;
  overflow: hidden;
}

.room-experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.room-experience-image:hover img {
  transform: scale(1.05);
}

.room-experience-content {
  padding: 90px 8%;
  align-self: center;
}

.room-experience-content p {
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 28px;
}

.room-check-list {
  display: grid;
  gap: 16px;
}

.room-check-list li {
  position: relative;
  color: var(--color-text);
  padding-left: 34px;
  line-height: 1.75;
}

.room-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  box-shadow: 0 6px 16px rgba(211, 165, 40, 0.25);
}

.room-check-list li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 13px;
  width: 5px;
  height: 9px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.room-policies-section {
  background: var(--color-cream);
}

.room-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.room-policy-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 40, 75, 0.08);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-medium);
}

.room-policy-card strong {
  display: block;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.room-policy-card p {
  color: var(--color-text-light);
  font-size: 0.88rem;
  line-height: 1.75;
}

.room-policy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(211, 165, 40, 0.35);
}

.room-related-section {
  background: var(--color-white);
}

.room-related-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}

.room-cta-section {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.room-cta-bg,
.room-cta-overlay {
  position: absolute;
  inset: 0;
}

.room-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.room-cta-section:hover .room-cta-bg img {
  transform: scale(1.05);
}

.room-cta-overlay {
  background: linear-gradient(135deg, rgba(0, 40, 75, 0.86), rgba(10, 10, 10, 0.58));
  z-index: 1;
}

.room-cta-content {
  position: relative;
  z-index: 2;
  width: min(760px, 90%);
  color: var(--color-white);
}

.room-cta-content h2 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 28px;
}

.room-booking-toast {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 10000;
  width: min(340px, calc(100vw - 40px));
  padding: 20px 24px;
  background: var(--color-secondary);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-heavy);
  animation: roomToastIn 0.45s ease;
}

.room-booking-toast strong,
.room-booking-toast span {
  display: block;
}

.room-booking-toast strong {
  color: var(--color-primary);
  font-size: 0.92rem;
  margin-bottom: 5px;
}

.room-booking-toast span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.6;
}

.room-booking-toast.is-hiding {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

@keyframes roomToastIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1200px) {
  .room-detail-hero {
    min-height: 720px;
    height: auto;
    align-items: flex-start;
    padding: 138px 0 210px;
  }

  .room-detail-hero-content {
    width: min(720px, 90%);
    padding-top: 0;
  }

  .room-detail-hero h1 {
    font-size: 3.55rem;
  }

  .room-detail-hero p {
    max-width: 600px;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .room-quick-stats {
    bottom: 24px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .room-quick-stats div {
    padding: 20px 22px;
  }

  .room-quick-stats > div > span {
    font-size: 0.62rem;
    letter-spacing: 1.6px;
  }

  .room-quick-stats strong {
    font-size: 1.25rem;
  }

  .room-detail-layout {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 40px;
  }

  .room-policy-grid,
  .room-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .room-detail-hero {
    min-height: 720px;
    height: auto;
    align-items: flex-start;
    padding: 125px 0 255px;
  }

  .room-detail-hero-content {
    width: 90%;
    padding-top: 0;
  }

  .room-quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-quick-stats div:nth-child(2) {
    border-right: none;
  }

  .room-quick-stats div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 40, 75, 0.1);
  }

  .room-quick-stats div {
    border-bottom: 1px solid rgba(0, 40, 75, 0.1);
  }

  .room-quick-stats div:nth-child(2n) {
    border-right: none;
  }

  .room-quick-stats div:last-child {
    border-bottom: none;
  }

  .room-detail-layout {
    grid-template-columns: 1fr;
  }

  .room-reserve-panel {
    position: relative;
    top: 0;
  }

  .room-detail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-experience-section {
    grid-template-columns: 1fr;
  }

  .room-experience-image {
    min-height: 430px;
  }

  .room-experience-content {
    padding: 70px 5%;
  }

  .room-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .room-detail-hero {
    min-height: auto;
    padding: 108px 0 42px;
    display: block;
  }

  .room-detail-hero-content {
    margin: 0 auto;
  }

  .room-detail-hero h1 {
    font-size: 2.55rem;
  }

  .room-detail-hero p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .room-hero-actions {
    width: 100%;
  }

  .room-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .room-quick-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 90%;
    margin: 30px auto 0;
    grid-template-columns: 1fr;
  }

  .room-quick-stats div,
  .room-quick-stats div:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(0, 40, 75, 0.1);
  }

  .room-quick-stats div:last-child {
    border-bottom: none;
  }

  .room-detail-section,
  .room-gallery-section,
  .room-policies-section,
  .room-related-section,
  .room-amenities-section {
    padding: 70px 0;
  }

  .room-highlight-grid,
  .room-policy-grid,
  .room-amenities-grid,
  .room-related-grid {
    grid-template-columns: 1fr;
  }

  .room-detail-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .room-gallery-large {
    grid-column: auto;
    grid-row: auto;
  }

  .room-reserve-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .room-experience-image {
    min-height: 320px;
  }

  .room-cta-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .room-detail-hero {
    padding-top: 96px;
  }

  .room-breadcrumb {
    font-size: 0.68rem;
    letter-spacing: 1px;
  }

  .room-detail-hero h1 {
    font-size: 2.05rem;
    line-height: 1.12;
  }

  .room-quick-stats {
    grid-template-columns: 1fr;
  }

  .room-quick-stats div,
  .room-quick-stats div:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(0, 40, 75, 0.1);
    padding: 20px 22px;
  }

  .room-quick-stats div:last-child {
    border-bottom: none;
  }

  .room-reserve-head,
  .room-booking-form,
  .room-reserve-contact,
  .room-highlight-item,
  .room-policy-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .room-reserve-head strong {
    font-size: 2rem;
  }

  .room-detail-gallery {
    grid-auto-rows: 220px;
  }
}

/* ===== ASP.NET LABEL FIX (span override) ===== */

/* asp:Label trong room-reserve-head strong render thành span — reset */
.room-reserve-head strong span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  margin-bottom: 0;
}

/* asp:Label trong quick-stats strong */
.room-quick-stats strong span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 0;
}

/* asp:Label trong h1, h2 */
.room-detail-hero h1 span,
.room-detail-hero h2 span,
.section-title span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  margin: 0;
}

/* asp:Label breadcrumb */
.room-breadcrumb span {
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  margin-bottom: 0;
}

/* Policy card span asp:Label fix */
.room-policy-card span:not(:first-child) {
  display: inline;
  color: inherit;
  font-size: inherit;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0;
}

/* ===== BOOKING FORM GRID FIX ===== */
.room-booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 28px 32px 32px;
}

/* Date checkin + checkout mỗi cái 1 cột */
.room-booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--color-secondary);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Action + benefit chiếm full width */
.room-booking-form button,
.room-booking-form .btn,
.room-booking-form .room-booking-benefit {
  grid-column: 1 / -1;
}

.room-booking-form .guest-room-toggle,
.room-booking-form .guest-room-stepper,
.room-booking-form .guest-room-done {
  grid-column: auto;
}

.room-booking-form input[type="date"] {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .room-booking-form {
    grid-template-columns: 1fr;
    padding-left: 22px;
    padding-right: 22px;
  }

  .room-booking-form button,
  .room-booking-form .btn,
  .room-booking-form .room-booking-benefit {
    grid-column: auto;
  }
}
