.detail-booking-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 48px rgba(4,14,38,0.14);
}
.detail-booking-card__header {
  border-radius: 18px 18px 0 0;
}
.detail-booking-card__header {
  background: linear-gradient(135deg, #040e26 0%, #1a2e6e 100%);
  padding: 26px 24px 22px;
  color: #fff;
}
.detail-booking-card__price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
}
.detail-booking-card__per-night {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-left: 6px;
  font-weight: 400;
}
.detail-booking-card__stars {
  margin-top: 8px;
  color: var(--brand-light);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.detail-booking-card__body { padding: 22px 24px 20px; }
.detail-booking-card .dc-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #999;
  margin-bottom: 6px;
  display: block;
}
.detail-booking-card .dc-field {
  display: flex;
  align-items: center;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 11px 14px;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 14px;
  cursor: pointer;
}
.detail-booking-card .dc-field:focus-within {
  border-color: var(--brand-light);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(160,119,231,0.12);
}
.detail-booking-card .dc-field .dc-icon {
  color: var(--brand-light);
  margin-right: 10px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.detail-booking-card .dc-field input {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 0.92rem;
  color: #2d2d2d;
  padding: 0;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  min-width: 0;
}
.detail-booking-card .dc-field input::placeholder { color: #bbb; }
.detail-booking-card .dc-field button.dc-trigger {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 0.92rem;
  color: #2d2d2d;
  padding: 0;
  text-align: left;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dc-guests-wrap { position: relative; }
.dc-guests-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.16);
  padding: 18px;
  z-index: 300;
  min-width: 260px;
}
.dc-stepper-label { font-size: 0.9rem; font-weight: 600; color: #333; }
.dc-stepper-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #040e26;
  transition: border-color 0.2s, color 0.2s;
  padding: 0; line-height: 1;
}
.dc-stepper-btn:hover { border-color: var(--brand-light); color: var(--brand-light); }
.dc-stepper-count { font-weight: 700; font-size: 0.95rem; min-width: 24px; text-align: center; display: inline-block; }
.dc-room-block { background: #f8f9fc; border-radius: 10px; padding: 14px; margin-bottom: 10px; }
.dc-room-block strong { font-size: 0.85rem; color: #040e26; }
.dc-room-block .remove-room-btn { font-size: 0.78rem; color: var(--brand-light) !important; text-decoration: none; font-weight: 600; }
.dc-room-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; }
.dc-room-row span { font-size: 0.88rem; color: #555; }
.detail-booking-card .btn-book {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--brand-light) 0%, #7c4fd4 100%);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 6px;
  box-shadow: 0 4px 16px rgba(160,119,231,0.38);
}
.detail-booking-card .btn-book:hover {
  opacity: 0.93;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(160,119,231,0.45);
}
.detail-booking-card .price-breakdown {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  font-size: 0.88rem;
  color: #666;
}
.detail-booking-card .pb-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}
.detail-booking-card .pb-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.95rem;
  color: #040e26;
  border-top: 1.5px solid #eee;
  padding-top: 10px;
  margin-top: 6px;
}
.detail-booking-card .wishlist-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
  color: #aaa;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}
.detail-booking-card .wishlist-link:hover { color: var(--brand-light); }
.dc-add-room-btn {
  width: 100%;
  background: none;
  border: 1.5px dashed #d0d0d0;
  border-radius: 8px;
  padding: 8px;
  font-size: 0.85rem;
  color: #888;
  cursor: pointer;
  margin-top: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.dc-add-room-btn:hover { border-color: var(--brand-light); color: var(--brand-light); }
/* ── Info card body elements ── */
.dci-location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 2px 0 4px;
}
.dci-loc-icon {
  color: var(--brand-light);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.dci-loc-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.45;
}
.dci-divider {
  height: 1px;
  background: #f0edf8;
  margin: 14px 0;
}
.dci-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.dci-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 3px;
}
.dci-stat-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #040e26;
  line-height: 1;
}
.dci-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #aaa;
}
.dci-stat-sep {
  width: 1px;
  height: 32px;
  background: #ede9f7;
  flex-shrink: 0;
}
.dci-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--brand-light);
  margin-bottom: 10px;
}
.dci-rooms {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d8cff5 transparent;
}
.dci-rooms::-webkit-scrollbar { width: 4px; }
.dci-rooms::-webkit-scrollbar-track { background: transparent; }
.dci-rooms::-webkit-scrollbar-thumb { background: #d8cff5; border-radius: 4px; }
.dci-room-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #f7f4fe;
  border: 1px solid rgba(160,119,231,0.12);
  border-radius: 10px;
  padding: 9px 12px;
  transition: background 0.2s, border-color 0.2s;
}
.dci-room-item:hover {
  background: #ede8fc;
  border-color: rgba(160,119,231,0.3);
}
.dci-room-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.dci-room-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #040e26;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
  display: block;
}
.dci-room-boarding {
  font-size: 0.7rem;
  color: #888;
  display: block;
}
.dci-room-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  flex-shrink: 0;
}
.dci-room-occ {
  display: flex;
  gap: 2px;
  color: var(--brand-light);
  font-size: 0.72rem;
}
.dci-room-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: #040e26;
  white-space: nowrap;
}
.dci-room-cur {
  font-size: 0.72rem;
  font-weight: 400;
  color: #888;
}
.dci-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.dci-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}
.dci-badge-warn {
  background: rgba(255,159,28,0.12);
  color: #c77700;
  border: 1px solid rgba(255,159,28,0.25);
}
.dci-badge-ok {
  background: rgba(0,200,150,0.1);
  color: #00996a;
  border: 1px solid rgba(0,200,150,0.2);
}

/* ── Narrative & editorial sections ── */
.dci-narrative {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.78;
  margin: 0;
}
.dci-hl-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.dci-hl-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dci-hl-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b89af0, var(--brand-light));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.dci-hl-text {
  font-size: 0.84rem;
  font-weight: 600;
  color: #040e26;
}
.dci-exp-text {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.72;
  margin: 0;
}
.dci-rev-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}
.dci-rev-star {
  color: var(--brand-light);
  font-size: 0.88rem;
}
.dci-rev-rating {
  font-size: 0.78rem;
  font-weight: 700;
  color: #040e26;
  margin-left: 7px;
}

.detail-hero {
  position: relative;
  min-height: 40vh;
  background-size: cover;
  background-position: center;
}
.detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4,14,38,0.18) 0%,
    rgba(4,14,38,0.55) 55%,
    rgba(4,14,38,0.88) 100%
  );
}
.detail-hero .overlay-content { position: relative; z-index: 1; }
.pt-7 { padding-top: 5rem; }
.pb-5 { padding-bottom: 3rem; }
.detail-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.detail-hero__breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.detail-hero__breadcrumb a:hover { color: #fff; }
.detail-hero__breadcrumb .fa { font-size: 0.65rem; }
.detail-hero__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(160,119,231,0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.detail-hero__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(4,14,38,0.3);
}
.detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.detail-hero__meta-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.detail-hero__stars { color: var(--brand-light); }
.detail-hero__stars .fa { font-size: 0.85rem; }
.detail-hero__meta strong { color: #fff; }
.detail-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.detail-hero__pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}
.about-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-light);
  margin-bottom: 8px;
}
.about-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #040e26;
  margin: 0;
  line-height: 1.2;
}
.about-header { border-left: 4px solid var(--brand-light); padding-left: 14px; }
.about-lead {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-body {
  font-size: 0.93rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7f4fe;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #040e26;
}
.about-highlight-item .fa {
  color: var(--brand-light);
  font-size: 0.88rem;
}
.section-header { border-left: 4px solid var(--brand-light); padding-left: 14px; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-light);
  margin-bottom: 4px;
}
.section-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #040e26;
  margin: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 160px;
  gap: 6px;
  border-radius: 14px;
  overflow: hidden;
}
.gallery-featured {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-featured img, .gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-featured, .gallery-thumb {
  position: relative;
  overflow: hidden;
  display: block;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(160,119,231,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.gallery-overlay .fa {
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
}
.gallery-featured:hover .gallery-overlay,
.gallery-thumb:hover .gallery-overlay {
  background: rgba(160,119,231,0.45);
}
.gallery-featured:hover .gallery-overlay .fa,
.gallery-thumb:hover .gallery-overlay .fa {
  opacity: 1;
  transform: scale(1);
}
.gallery-featured img, .gallery-thumb img {
  transition: transform 0.4s ease;
}
.gallery-featured:hover img, .gallery-thumb:hover img {
  transform: scale(1.05);
}
.btn-gallery-toggle {
  background: none;
  border: 1.5px solid var(--brand-light);
  color: var(--brand-light);
  border-radius: 50px;
  padding: 9px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-gallery-toggle:hover {
  background: var(--brand-light);
  color: #fff;
}

/* Amenities */
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.amenity-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #f7f4fe;
  border: 1px solid rgba(160,119,231,0.15);
  border-radius: 50px;
  padding: 8px 14px 8px 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #3a2d5c;
  text-align: center;
  cursor: default;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.amenity-card:hover {
  background: #ede8fc;
  border-color: rgba(160,119,231,0.4);
  box-shadow: 0 2px 10px rgba(160,119,231,0.12);
  transform: translateY(-1px);
}
.amenity-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b89af0, var(--brand-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.location-map-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(4,14,38,0.12);
  border: 1.5px solid #ede9fb;
}
.location-map-card #detailMap {
  width: 100%;
  height: 360px;
  display: block;
}


/* ── Card wrapper ── */
.hotel-card {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(94,23,235,0.07), 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow .3s;
}
.hotel-card:hover {
  box-shadow: 0 16px 56px rgba(94,23,235,0.12), 0 4px 16px rgba(0,0,0,0.06);
}

.hotel-card-header {
  background: linear-gradient(110deg, var(--brand) 0%, var(--brand-mid) 100%);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hotel-card-header .hotel-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
}
.hotel-card-header h2 {
  font-weight: 700; font-size: 1.15rem;
  color: #fff; margin: 0;
}
.hotel-card-header p {
  color: rgba(255,255,255,0.72); font-size: .82rem; margin: 0;
}

/* ── Room group label ── */
.room-group-label {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 28px 6px;
  font-weight: 700; font-size: .92rem;
  color: var(--brand);
  border-top: 1px solid var(--border);
}
.room-group-label:first-child { border-top: none; }
.room-group-label .room-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* ── Table ── */
.rooms-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.rooms-table th:nth-child(1),
.rooms-table td:nth-child(1) { width: 35%; }
.rooms-table th:nth-child(2),
.rooms-table td:nth-child(2) { width: 12%; }
.rooms-table th:nth-child(3),
.rooms-table td:nth-child(3) { width: 28%; }
.rooms-table th:nth-child(4),
.rooms-table td:nth-child(4) { width: 12%; }
.rooms-table th:nth-child(5),
.rooms-table td:nth-child(5) { width: 13%; }

.rooms-table thead tr th {
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.rooms-table thead tr th:first-child { padding-left: 16px; }
.rooms-table thead tr th:last-child  { padding-right: 16px; }

/* ── Rows ── */
.rooms-table tbody tr.room-row { transition: background .2s; }
.rooms-table tbody tr.room-row:hover { background: var(--surface-2); }
.rooms-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid #f0edf8;
  vertical-align: middle;
}
.rooms-table tbody td:first-child { padding-left: 16px; }
.rooms-table tbody td:last-child  { padding-right: 16px; }

/* ── Room title ── */
.room-title-link {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-main);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: color .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.room-title-link:hover { color: var(--brand); }

/* ── Badges ── */
.badge-pill-custom {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3px;
  margin-right: 4px;
}
.badge-available    { background: rgba(0,200,150,.12); color: var(--avail-green); }
.badge-unavailable  { background: rgba(255,77,109,.12); color: var(--unavail-red); }
.badge-refundable     { background: rgba(0,180,216,.12); color: var(--refund); }
.badge-not-refundable { background: rgba(255,159,28,.12); color: var(--no-refund); }

/* ── Occupancy icons ── */
.occ-icons { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; justify-content: center; }
.occ-icons i { font-size: 17px; color: var(--brand); opacity: .75; }
.occ-icons i.child  { font-size: 15px; color: var(--brand-mid); }
.occ-icons i.infant { font-size: 13px; color: #a78bfa; }

/* ── Select dropdown ── */
.boarding-select {
  width: 100%;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .84rem;
  color: var(--text-main);
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237b6fa0' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.boarding-select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

/* ── Price ── */
.price-value {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
}
.price-currency {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
}

/* ── Radio ── */
.custom-radio-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.custom-radio-wrap input[type="radio"] {
  accent-color: var(--brand);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

/* ── Book button ── */
.btn-book-room {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 9px 18px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform .15s, box-shadow .2s, opacity .2s;
  box-shadow: 0 4px 14px rgba(94,23,235,0.3);
  white-space: nowrap;
}
.btn-book-room:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(94,23,235,0.4);
}
.btn-book-room:active:not(:disabled) { transform: translateY(0); }
.btn-book-room:disabled,
.btn-book-room.disabled-btn {
  background: linear-gradient(135deg, #c4b8e8 0%, #d5c9f5 100%);
  box-shadow: none;
  cursor: not-allowed;
  opacity: .7;
}

/* ── Multi-room footer button ── */
.multi-book-bar {
  padding: 18px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  background: var(--surface-2);
}

/* ── Mobile card view ── */
@media (max-width: 767px) {
  .rooms-table { display: none; }
  .mobile-rooms { display: block; }
}
@media (min-width: 768px) {
  .mobile-rooms { display: none; }
}

.mobile-room-card {
  margin: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  transition: box-shadow .2s;
  overflow: hidden;
}
.mobile-room-card .room-title-link {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
.mobile-room-card:hover { box-shadow: 0 4px 20px var(--brand-glow); }
.mobile-room-card .room-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.mobile-room-card .field-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
