.hotel-main {
  font-family: "Segoe UI", "Roboto", Arial, sans-serif;
  background: #f7f9fb;
  padding-bottom: 48px;
}

.hotel-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(56, 148, 107, 0.06);
  padding: 28px 28px 18px 28px;
  margin-bottom: 32px;
}
.hotel-section--intro {
}
.hotel-section--rooms {
  overflow-x: auto;
  width: 100%;
  max-width: 100vw;
  padding-bottom: 1px; /* avoid scrollbar being hidden */
}
.hotel-section--reviews {
}
.hotel-section--rules {
}
.hotel-section h2 {
  color: #38946b;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hotel-map {
  background: #eaf6f0;
  border-radius: 10px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38946b;
  font-size: 1.1rem;
  font-weight: 500;
}
.row-booking-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  margin: 32px 0 24px 0;
}
.row-booking-bar .hotel-booking-bar__col {
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
}
.hotel-booking-bar__btn {
  width: 100%;
  background: linear-gradient(90deg, #38946b 60%, #4fc08d 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1.08rem;
  padding: 12px 0;
  border: none;
  box-shadow: 0 2px 8px rgba(56, 148, 107, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
  display: block;
  text-align: center;
}
.hotel-booking-bar__btn:hover {
  background: #2d7a59;
  color: #fff;
  box-shadow: 0 4px 16px rgba(56, 148, 107, 0.13);
  transform: translateY(-1px);
}

.hotel-booking-bar__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(56, 148, 107, 0.08);
}

.hotel-booking-bar__btn.selected {
  background: #2d7a59;
  box-shadow: 0 4px 16px rgba(56, 148, 107, 0.13);
}

.hotel-booking-bar__btn.selected:hover {
  background: #1f5a3f;
}

.hotel-booking-bar__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.hotel-booking-bar__btn:disabled:hover {
  background: linear-gradient(90deg, #38946b 60%, #4fc08d 100%);
  transform: none;
  box-shadow: 0 2px 8px rgba(56, 148, 107, 0.08);
}

/* Enhanced Booking Picker Styles */
.booking-picker {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.booking-picker__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3a4a;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-picker__label::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #38946b;
  border-radius: 50%;
  display: inline-block;
}

/* Enhanced Input Styles */
.booking-picker__input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #2d3a4a;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.booking-picker__input:focus {
  outline: none;
  border-color: #38946b;
  box-shadow: 0 0 0 4px rgba(56, 148, 107, 0.12),
    0 4px 12px rgba(56, 148, 107, 0.15);
  transform: translateY(-1px);
}

.booking-picker__input:hover {
  border-color: #38946b;
  box-shadow: 0 2px 8px rgba(56, 148, 107, 0.1);
}

.booking-picker__input:active {
  transform: translateY(0);
}

/* Enhanced Dropdown Container */
.booking-picker__dropdown {
  display: block;
  gap: 10px;
  position: relative;
}

/* Enhanced Select Styles */
.booking-picker__select {
  flex: 1;
  padding: 0px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #2d3a4a;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.booking-picker__select:focus {
  outline: none;
  border-color: #38946b;
  box-shadow: 0 0 0 4px rgba(56, 148, 107, 0.12),
    0 4px 12px rgba(56, 148, 107, 0.15);
  transform: translateY(-1px);
}

.booking-picker__select:hover {
  border-color: #38946b;
  box-shadow: 0 2px 8px rgba(56, 148, 107, 0.1);
}

.booking-picker__select:active {
  transform: translateY(0);
}

/* Enhanced Button Styles */
.booking-picker__btn {
  width: 100%;
  background: linear-gradient(135deg, #38946b 0%, #4fc08d 50%, #38946b 100%);
  background-size: 200% 100%;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  font-size: 1.08rem;
  padding: 16px 0;
  border: none;
  box-shadow: 0 4px 12px rgba(56, 148, 107, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.booking-picker__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.booking-picker__btn:hover {
  background-position: 100% 0;
  box-shadow: 0 6px 20px rgba(56, 148, 107, 0.25);
  transform: translateY(-2px);
}

.booking-picker__btn:hover::before {
  left: 100%;
}

.booking-picker__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(56, 148, 107, 0.15);
}

.booking-picker__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  background: linear-gradient(135deg, #ccc 0%, #ddd 50%, #ccc 100%);
}

.booking-picker__btn:disabled:hover {
  background: linear-gradient(135deg, #ccc 0%, #ddd 50%, #ccc 100%);
  transform: none;
  box-shadow: 0 4px 12px rgba(56, 148, 107, 0.15);
}

.booking-picker__btn:disabled::before {
  display: none;
}

/* Enhanced Custom Date Input Styling */
.booking-picker__input::-webkit-calendar-picker-indicator {
  background-color: #38946b;
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  filter: invert(1);
  transition: all 0.2s ease;
}

.booking-picker__input::-webkit-calendar-picker-indicator:hover {
  background-color: #2d7a59;
  transform: scale(1.1);
}

/* Enhanced Custom Select Styling */
.booking-picker__select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338946b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 48px;
}

/* Loading State for Button */
.booking-picker__btn.loading {
  position: relative;
  color: transparent;
}

.booking-picker__btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Focus Ring for Accessibility */
.booking-picker__input:focus-visible,
.booking-picker__select:focus-visible,
.booking-picker__btn:focus-visible {
  outline: 2px solid #38946b;
  outline-offset: 2px;
}

/* Placeholder Styling */
.booking-picker__input::placeholder {
  color: #999;
  font-weight: 400;
}

/* Option Styling for Select */
.booking-picker__select option {
  padding: 8px 12px;
  font-weight: 500;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .booking-picker__input,
  .booking-picker__select {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .booking-picker__btn {
    padding: 14px 0;
    font-size: 1rem;
  }

  .booking-picker__dropdown {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .booking-picker__input,
  .booking-picker__select {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .booking-picker__btn {
    padding: 12px 0;
    font-size: 0.95rem;
  }

  .booking-picker__label {
    font-size: 0.85rem;
  }
}

/* Enhanced Visual Feedback */
.booking-picker__input:invalid,
.booking-picker__select:invalid {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.booking-picker__input:valid,
.booking-picker__select:valid {
  border-color: #28a745;
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}

/* Smooth transitions for all interactive elements */
.booking-picker__input,
.booking-picker__select,
.booking-picker__btn,
.booking-picker {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects for better interactivity */
.booking-picker:hover .booking-picker__label {
  color: #38946b;
}

/* Success state animations */
@keyframes successPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.booking-picker__input.success,
.booking-picker__select.success {
  animation: successPulse 0.6s ease-in-out;
}

/* Error state animations */
@keyframes errorShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.booking-picker__input.error,
.booking-picker__select.error {
  animation: errorShake 0.6s ease-in-out;
  border-color: #ff6b6b;
}

/* Enhanced accessibility */
@media (prefers-reduced-motion: reduce) {
  .booking-picker__input,
  .booking-picker__select,
  .booking-picker__btn,
  .booking-picker {
    transition: none;
  }

  .booking-picker__input.success,
  .booking-picker__select.success,
  .booking-picker__input.error,
  .booking-picker__select.error {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .booking-picker__input,
  .booking-picker__select {
    border-width: 3px;
  }

  .booking-picker__btn {
    border: 2px solid #fff;
  }
}
.hotel-room-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(56, 148, 107, 0.06);
}
.hotel-room-table th,
.hotel-room-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  font-size: 1rem;
  vertical-align: top;
}

.hotel-room-table tr:nth-child(even) {
  background-color: #fafafa;
}

.hotel-room-table tr:hover {
  background-color: #f5f5f5;
}

.hotel-room-table tr[data-room-id] {
  border-left: 3px solid #38946b;
}

.hotel-room-table tr[data-room-id]:hover {
  border-left-color: #2d7a59;
  background-color: #f8fdfa;
}

.package-type-badge {
  display: inline-block;
  margin-top: 4px;
}
.hotel-room-table th {
  background: #eaf6f0;
  color: #38946b;
  font-weight: 700;
}
.hotel-room-table tr:last-child td {
  border-bottom: none;
}
.hotel-room-table .hotel-room-table__btn {
  padding: 6px 18px;
  font-size: 1rem;
  border-radius: 7px;
}
.hotel-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #2d3a4a;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.hotel-amenity {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}
.hotel-amenity__badge {
  background: #fff;
  color: rgb(0, 0, 0);
  padding: 6px 16px;
  border-radius: 18px;
  border: 1px solid #38946b;
  font-size: 1rem;
  margin: 0 8px 8px 0;
  display: inline-block;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(56, 148, 107, 0.08);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hotel-payment__badge {
  display: inline-block;
  background: #eaf6f0;
  color: #38946b;
  padding: 4px 12px;
  border-radius: 12px;
  margin-right: 6px;
  font-size: 0.98em;
}

@media (max-width: 900px) {
  .row-booking-bar {
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 20px 0;
  }
  .row-booking-bar .hotel-booking-bar__col {
    flex-basis: calc(50% - 6px);
    margin-bottom: 0;
  }
  .booking-picker__dropdown {
    flex-direction: column;
    gap: 8px;
  }
  .booking-picker__select {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .row-booking-bar {
    flex-direction: column;
    gap: 16px;
  }
  .row-booking-bar .hotel-booking-bar__col {
    flex-basis: 100%;
  }
  .booking-picker__dropdown {
    flex-direction: row;
    gap: 10px;
  }
  .booking-picker__select {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .hotel-title {
    font-size: 1.3rem;
  }
}
.hotel-nav {
  display: flex;
  gap: 18px;
  margin: 0 0 32px 0;
  padding: 0;
  list-style: none;
  border-bottom: 2px solid #eaf6f0;
}
.hotel-nav__item {
  margin: 0;
}
.hotel-nav__link {
  display: block;
  padding: 12px 28px 10px 0;
  color: #38946b;
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}
.hotel-nav__link.active,
.hotel-nav__link:focus,
.hotel-nav__link:hover {
  color: #2d7a59;
}
.hotel-nav__link.active:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: #38946b;
  border-radius: 2px 2px 0 0;
}
@media (max-width: 600px) {
  .hotel-nav__link {
    font-size: 1rem;
    padding: 10px 16px 8px 0;
  }
}

/* ========================================
   HOTEL INTRO CONTAINER STYLES
   (Merged from hotel-single.css)
======================================== */

/* Hotel Intro Container */
.hotel-intro-container {
  border: 2px solid #e8f4f8;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 8px 32px rgba(56, 148, 107, 0.08);
  overflow: hidden;
  position: relative;
  margin-top: 32px;
}

/* Background Pattern */
.hotel-intro-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(56, 148, 107, 0.03) 0%,
    transparent 70%
  );
  z-index: 0;
}

.hotel-intro-container .row {
  position: relative;
  z-index: 1;
}

/* Column 1: Hotel Information */
.hotel-intro-main {
  padding: 32px 24px 32px 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.hotel-title {
  color: #2d3a4a;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  background: linear-gradient(135deg, #2d3a4a 0%, #38946b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hotel-section__desc {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1.05em;
  text-align: justify;
}

/* Amenities Section */
.hotel-amenities-section {
  background: linear-gradient(135deg, #f8fbfd 0%, #e8f4f8 100%);
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid #38946b;
}

.hotel-amenities-section h4 {
  color: #2d3a4a;
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-amenities-section h4 i {
  color: #38946b;
}

.hotel-amenity {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-amenity__badge {
  background: #ffffff;
  color: #000000;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #38946b;
  font-size: 0.9em;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(56, 148, 107, 0.2);
  transition: all 0.3s ease;
  cursor: default;
}

.hotel-amenity__badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 148, 107, 0.3);
}

/* Column 2: Map and Address */
.hotel-intro-map {
  padding: 32px 24px;
  background: linear-gradient(135deg, #f8fbfd 0%, #e8f4f8 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hotel-intro-map h4 {
  color: #2d3a4a;
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-intro-map h4 i {
  color: #38946b;
}

.hotel-map-wrapper {
  flex: 1;
  margin-bottom: 20px;
}

/* Address Card */
.hotel-address {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8f4f8;
}

.hotel-address h4 {
  color: #2d3a4a;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-address h4 i {
  color: #38946b;
}

.hotel-address__name {
  font-weight: 600;
  margin-bottom: 8px;
  color: #2d3a4a;
  font-size: 1.05em;
}

.hotel-address__street {
  margin-bottom: 6px;
  color: #4a5568;
  line-height: 1.5;
}

.hotel-address__city {
  color: #718096;
  margin-bottom: 16px;
  font-size: 0.95em;
}

.hotel-address__contact {
  border-top: 1px solid #e8f4f8;
  padding-top: 12px;
}

.hotel-address__contact-item {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-address__contact-item:last-child {
  margin-bottom: 0;
}

.hotel-address__contact-item i {
  color: #38946b;
  width: 16px;
}

.hotel-address__contact-item a {
  color: #38946b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.hotel-address__contact-item a:hover {
  color: #28a745;
}

/* Fallback Address */
.hotel-address--fallback {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8f4f8;
}

.hotel-address__fallback-text {
  color: #718096;
  font-style: italic;
  line-height: 1.5;
}

/* ========================================
   RESPONSIVE DESIGN FOR INTRO CONTAINER
======================================== */

@media (max-width: 768px) {
  .hotel-intro-container {
    margin-top: 20px;
    border: 2px solid #e8f4f8;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
    box-shadow: 0 8px 32px rgba(56, 148, 107, 0.08);
  }

  .hotel-intro-main {
    padding: 24px 20px;
  }

  .hotel-intro-map {
    padding: 24px 20px;
  }

  .hotel-title {
    font-size: 1.8em;
  }

  .hotel-amenities-section {
    padding: 16px;
  }

  .hotel-address {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .hotel-intro-main {
    padding: 20px 16px;
  }

  .hotel-intro-map {
    padding: 20px 16px;
  }

  .hotel-title {
    font-size: 1.6em;
  }

  .hotel-amenity__badge {
    padding: 6px 12px;
    font-size: 0.85em;
  }
}

/* ========================================
   HOTEL GALLERY LAYOUT (NEW FLEXBOX VERSION)
======================================== */

.hotel-gallery {
  margin-bottom: 32px;
}

.hotel-gallery-grid {
  display: flex;
  gap: 8px;
  height: 450px;
}

/* Ảnh chính lớn bên trái */
.hotel-gallery-main {
  flex: 1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(56, 148, 107, 0.08);
  background: #fff;
}

.hotel-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.hotel-gallery-main img:hover {
  transform: scale(1.03);
}

.hotel-gallery-main .hotel-gallery__placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1rem;
}

/* Container 4 ảnh nhỏ bên phải */
.hotel-gallery-thumbs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Hàng ảnh nhỏ */
.hotel-gallery-thumbs > div {
  display: flex;
  gap: 8px;
  flex: 1;
}

/* Ảnh nhỏ */
.hotel-gallery-thumb {
  flex: 1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(56, 148, 107, 0.07);
  background: #fff;
}

.hotel-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.hotel-gallery-thumb img:hover {
  transform: scale(1.04);
}

.hotel-gallery-thumb .hotel-gallery__placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 12px;
}

/* Responsive cho hotel gallery */
@media (max-width: 900px) {
  .hotel-gallery-grid {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  .hotel-gallery-main,
  .hotel-gallery-thumbs {
    min-height: 180px;
  }

  .hotel-gallery-thumbs {
    flex-direction: row;
    gap: 8px;
  }

  .hotel-gallery-thumbs > div {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hotel-gallery-main {
    min-height: 120px;
  }

  .hotel-gallery-thumb .hotel-gallery__placeholder {
    font-size: 0.9rem;
  }
}

/* Responsive for hotel-room-table */
@media (max-width: 900px) {
  .hotel-room-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }
  .hotel-room-table thead,
  .hotel-room-table th {
    display: none;
  }
  .hotel-room-table tbody,
  .hotel-room-table tr {
    display: block;
    width: 100%;
  }
  .hotel-room-table tr {
    margin-bottom: 18px;
    border-bottom: 2px solid #eaf6f0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(56, 148, 107, 0.06);
    padding: 10px 0;
  }
  .hotel-room-table td {
    display: block;
    width: 100%;
    min-width: 120px;
    box-sizing: border-box;
    padding: 10px 12px;
    border: none;
    position: relative;
    text-align: left;
    font-size: 0.98em;
  }
  .hotel-room-table td:before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #38946b;
    margin-bottom: 4px;
    font-size: 0.95em;
  }
}
