:root {
  --brand: #0a8cff;
  --ink: #111;
  --muted: #6b7280;
  --card: #ffffff;
  --soft: #f3f8ff;
  --stroke: #e6eef8;
  --shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
} /* ========================= SECTION TITLE ========================= */
.booking-section {
  padding: 70px 0;
}
.section-h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: 0.2px;
  color: var(--ink);
  font-weight: 800;
}
.section-underline {
  width: 140px;
  height: 4px;
  background: var(--brand);
  border-radius: 999px;
  margin: 14px auto 30px;
} /* ========================= CARD WRAPPERS (for Row layout) ========================= */
.booking-card {
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 26px;
} /* Use this on the slideshow card so it has no padding */
.booking-card--media {
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
} /* Optional helper if you use .booking-center */
.booking-center {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
} /* ========================= FORM BASE ========================= */
.booking-form .field label {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  display: block;
}
.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  background: #fff;
  transition: 0.2s;
  font-size: 15px;
}
.booking-form input:focus,
.booking-form textarea:focus {
  border-color: rgba(10, 140, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(10, 140, 255, 0.14);
}
.confirm-text {
  font-weight: 500;
  color: var(--primary-grey);
  letter-spacing: 0.2px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.field--full {
  margin-top: 16px;
} /* ========================= ROOM PICKER (keeps your style) ========================= */
.room-picker {
  margin-top: 18px;
  background: var(--soft);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 16px;
}
.room-picker__head {
  font-weight: 800;
  text-align: center;
  padding: 10px 12px;
  border-radius: 14px; /* background:#7fbdf4; */
  margin-bottom: 14px; /* color: #fff; */
}
.room-group {
  margin-top: 12px;
}
.room-group__title {
  font-weight: 800;
  margin: 10px 0 8px;
}
.room-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--stroke);
  margin-bottom: 10px;
}
.room-row__name {
  font-weight: 700;
}
.muted {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  margin-left: 6px;
}
.room-row__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7fbff;
  border: 1px solid var(--stroke);
  padding: 6px 10px;
  border-radius: 999px;
}
.stepper-btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
  font-weight: 900;
  cursor: pointer;
}
.stepper-val {
  min-width: 18px;
  text-align: center;
  font-weight: 800;
}
.room-price {
  font-weight: 900;
  min-width: 52px;
  text-align: right;
}
.room-price-each {
  margin-top: 2px;
  font-size: 11px;
} /* Total row (your naming + style) */
.booking-total-row {
  display: flex;
  justify-content: flex-end; /* push everything to right */
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}
.pay-note {
  font-size: 14px;
  color: #6c757d;
}
.total-box {
  background: linear-gradient(135deg, #eef6ff, #e6f2ff);
  padding: 18px 24px;
  border-radius: 16px;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(10, 140, 255, 0.08);
  background: #ffffff;
  padding: 20px 28px;
  border-radius: 18px;
  border: 2px solid #0a8cff;
}
.total-label {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  font-weight: 800;
  color: #64748b;
}
.total-amount {
  font-size: 42px;
  font-weight: 900; /* color: #111827; */
  display: block;
  font-weight: 700;
  font-size: 46px;
  font-weight: 900;
  color: #0a8cff;
  text-shadow: 0 4px 20px rgba(10, 140, 255, 0.25);
}
.required-star {
  color: #ef4444; /* modern red */
  margin-left: 4px;
  font-weight: 900;
} /* ========================= SUBMIT BUTTON ========================= */
.booking-submit {
  margin-top: 16px;
  border: 0;
  color: #fff;
  border-radius: 50px;
  padding: 14px 18px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(
    180deg,
    rgba(10, 140, 255, 0.95),
    rgba(10, 140, 255, 0.78)
  );
  box-shadow: 0 12px 22px rgba(10, 140, 255, 0.18);
}
.booking-submit:hover {
  filter: brightness(0.96);
} /* Hover (enabled only) */
.booking-submit:not(:disabled):hover {
  background: #0874d9;
  transform: translateY(-1px);
} /* Disabled state */
.booking-submit:disabled {
  background: #cbd5e1; /* light gray */
  color: #64748b; /* muted text */
  cursor: not-allowed;
  opacity: 0.8;
  box-shadow: none;
  transform: none;
}
.booking-submit-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.submit-tooltip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: white;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
} /* Tooltip arrow */
.submit-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #111827 transparent transparent transparent;
} /* Show tooltip ONLY when button is disabled and wrapper is hovered */
.booking-submit-wrapper:hover .booking-submit:disabled + .submit-tooltip {
  opacity: 1;
} /* ========================= SLIDESHOW / MEDIA (fixed height issue) ========================= */
.booking-media {
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(10, 140, 255, 0.45);
  background: #fff;
  height: 100%;
  min-height: 520px;
  display: flex;
} /* Make carousel fill the available space */
.booking-media .carousel,
.booking-media .carousel-inner,
.booking-media .carousel-item {
  height: 100%;
}
.booking-media img,
.booking-media .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} /* ========================= RESPONSIVE ========================= */
@media (max-width: 992px) {
  .booking-media {
    min-height: 320px;
  }
}
@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .booking-total-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
} /* Fancy booking modal */
.bk-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.bk-modal.is-open {
  display: block;
}
.bk-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(6px);
}
.bk-dialog {
  position: relative;
  width: min(720px, calc(100vw - 28px));
  margin: 8vh auto;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.22);
  border: 1px solid rgba(15, 23, 42, 0.1);
  overflow: hidden;
  transform: translateY(10px);
  animation: bkPop 0.18s ease-out forwards;
}
@keyframes bkPop {
  to {
    transform: translateY(0);
  }
}
.bk-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 20px;
}
.bk-head {
  padding: 22px 22px 14px;
  background: radial-gradient(
      900px 260px at 10% 0%,
      rgba(10, 140, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      700px 240px at 100% 10%,
      rgba(99, 102, 241, 0.16),
      transparent 55%
    ),
    #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.bk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2px;
  background: rgba(16, 185, 129, 0.12);
  color: rgb(16, 185, 129);
  border: 1px solid rgba(16, 185, 129, 0.22);
}
.bk-badge--error {
  background: rgba(239, 68, 68, 0.12);
  color: rgb(239, 68, 68);
  border: 1px solid rgba(239, 68, 68, 0.22);
}
.bk-title {
  margin: 10px 0 6px;
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
}
.bk-sub {
  margin: 0;
  color: #64748b;
}
.bk-body {
  padding: 18px 22px 6px;
}
.bk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bk-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(246, 249, 255, 0.7);
  border-radius: 18px;
  padding: 14px;
}
.bk-card h4 {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #64748b;
}
.bk-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
}
.bk-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.bk-row b {
  color: #0f172a;
}
.bk-list {
  margin: 0;
  padding-left: 18px;
  color: #0f172a;
}
.bk-list li {
  margin: 6px 0;
}
.bk-total {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(10, 140, 255, 0.22);
  background: rgba(10, 140, 255, 0.08);
  font-weight: 900;
  color: #0f172a;
}
.bk-actions {
  padding: 14px 22px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}
.bk-btn {
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  border: 1px solid rgba(15, 23, 42, 0.12);
  cursor: pointer;
}
.bk-btn--ghost {
  background: #fff;
}
.bk-btn--primary {
  background: #0a8cff;
  border-color: #0a8cff;
  color: #fff;
}
@media (max-width: 720px) {
  .bk-grid {
    grid-template-columns: 1fr;
  }
  .bk-dialog {
    margin: 4vh auto;
  }
} /* Make modal fit screen (scroll inside) */
.bk-dialog {
  position: relative;
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 28px); /* ✅ fit viewport */
  margin: 14px auto; /* ✅ small top/bottom */
  display: flex; /* ✅ allow body to scroll */
  flex-direction: column;
  overflow: hidden; /* keep rounded corners */
} /* Header + actions stay visible */
.bk-head {
  flex: 0 0 auto;
}
.bk-actions {
  flex: 0 0 auto;
} /* Only the content scrolls */
.bk-body {
  flex: 1 1 auto;
  overflow: auto; /* ✅ scroll inside */
  padding: 18px 22px 6px;
  -webkit-overflow-scrolling: touch;
} /* Optional: reduce top margin on short screens */
@media (max-height: 740px) {
  .bk-dialog {
    margin: 10px auto;
  }
  .bk-body {
    padding: 14px 18px 6px;
  }
}
.bk-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.bk-modal.is-open {
  display: block;
}
.bk-backdrop {
  position: absolute;
  inset: 0;
}
.bk-dialog {
  margin: 24px auto; /* top spacing */
} /* Pop + shake for confirm button */
@keyframes bkPopBtn {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bkShakeBtn {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
}
.bk-btn.is-pop {
  animation: bkPopBtn 0.28s ease-out;
}
.bk-btn.is-shake {
  animation: bkShakeBtn 0.38s ease-in-out;
} /* ========================= CONTACT FOCUS BLOCK ========================= */
.bk-contact-focus {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef6ff, #f8fbff);
  border: 1.5px solid rgba(10, 140, 255, 0.35);
  box-shadow: 0 8px 25px rgba(10, 140, 255, 0.08);
  animation: contactPulse 2.5s ease-in-out infinite;
}
.bk-contact-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 12px;
}
.bk-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
}
.bk-contact-row:first-of-type {
  border-top: none;
}
.bk-contact-value {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
} /* subtle breathing animation */
@keyframes contactPulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(10, 140, 255, 0.08);
  }
  50% {
    box-shadow: 0 12px 35px rgba(10, 140, 255, 0.18);
  }
}
.bk-success-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.bk-success-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}
.bk-success-sub {
  margin-top: 4px;
  color: #64748b;
  line-height: 1.5;
}
.bk-success-id {
  text-align: right;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #fff;
  min-width: 140px;
}
.bk-success-id-label {
  font-size: 12px;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bk-success-id-value {
  margin-top: 2px;
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}
.bk-success-pillbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}
@media (max-width: 640px) {
  .bk-success-pillbox {
    grid-template-columns: 1fr;
  }
}
.bk-pill {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(246, 249, 255, 0.8);
}
.bk-pill-label {
  font-size: 12px;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.bk-pill-value {
  font-weight: 800;
  color: #0f172a;
  word-break: break-word;
}
.bk-success-note {
  margin-top: 14px;
  color: #64748b;
  line-height: 1.6;
}
.bk-link {
  margin-top: 10px;
  background: transparent;
  border: none;
  padding: 0;
  font-weight: 700;
  color: #0a8cff;
  cursor: pointer;
}
.bk-link:hover {
  text-decoration: underline;
}
.booking-form {
  max-width: 1100px;
  margin: 40px auto 60px;
} /* ===== Price breakdown (on-page) ===== */
.price-breakdown {
  margin: 12px 0 6px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.price-breakdown__meta {
  display: none; /* hide the plain “Nights:” line if you want */
}
.pb-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.pb-title {
  font-weight: 900;
  color: #0f172a;
}
.pb-nights {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.65);
  font-size: 13px;
}
.pb-list {
  display: grid;
  gap: 10px;
}
.pb-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.pb-left {
  min-width: 0;
}
.pb-name {
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
}
.pb-meta {
  margin-top: 3px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.6);
}
.pb-amt {
  font-weight: 950;
  color: #0f172a;
  white-space: nowrap;
}
.pb-empty {
  color: rgba(15, 23, 42, 0.6);
  font-size: 14px;
  padding: 6px 2px;
} /* ===== On-page Price Breakdown (match modal clean style) ===== */
.pb-card {
  margin-top: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.06);
  overflow: hidden;
}
.pb-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.pb-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #0f172a;
}
.pb-nights {
  font-weight: 800;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.6);
}
.pb-list {
  display: grid;
}
.pb-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-top: 1px dashed rgba(15, 23, 42, 0.12);
}
.pb-row:first-child {
  border-top: 0;
}
.pb-left {
  min-width: 0;
}
.pb-name {
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 4px;
}
.pb-meta {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.58);
  line-height: 1.35;
}
.pb-amt {
  font-weight: 950;
  color: #0f172a;
  white-space: nowrap;
}
.pb-empty {
  margin-top: 10px;
  padding: 10px 2px;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.58);
} /* ========================================= PREMIUM TOTAL AREA + PRICE BREAKDOWN (Drop-in overrides) ========================================= */ /* Turn the total area into a premium "stack" when we add the modifier class */
.booking-total-row.booking-total-row--stack {
  display: grid;
  justify-content: stretch;
  align-items: stretch;
  gap: 14px;
  margin-top: 18px;
} /* The bottom line keeps Pay note + Total box like before */
.booking-total-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
} /* Small premium meta row: Nights + formula */
.booking-total-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.65);
}
.meta-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(246, 249, 255, 0.9);
}
.meta-pill b {
  font-size: 16px;
  font-weight: 950;
  color: #0f172a;
}
.meta-hint {
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.55);
  text-align: right;
} /* Container for injected breakdown card */
.pb-wrap {
  padding: 0;
} /* ===== Breakdown card: match your modal clean style ===== */
.pb-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.06);
  overflow: hidden;
}
.pb-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.pb-title {
  font-weight: 950;
  letter-spacing: 0.02em;
  color: #0f172a;
}
.pb-nights {
  font-weight: 800;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.6);
} /* Rows */
.pb-list {
  display: grid;
}
.pb-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-top: 1px dashed rgba(15, 23, 42, 0.12);
}
.pb-row:first-child {
  border-top: 0;
}
.pb-left {
  min-width: 0;
}
.pb-name {
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 3px;
}
.pb-meta {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.58);
  line-height: 1.35;
}
.pb-amt {
  font-weight: 950;
  color: #0f172a;
  white-space: nowrap;
} /* Empty state */
.pb-empty {
  padding: 12px 14px;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.58);
} /* Mobile: keep the total layout clean */
@media (max-width: 576px) {
  .booking-total-bottom {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  .booking-total-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .meta-hint {
    text-align: left;
  }
}
.total-box {
  background: #ffffff;
  padding: 20px 28px;
  border-radius: 18px;
  border: 2px solid #0a8cff;
  box-shadow: 0 10px 25px rgba(10, 140, 255, 0.08);
} /* ========================= PREMIUM ROOM SELECTION + SUMMARY ========================= */
:root {
  --brand: #0a8cff;
  --ink: #0f172a;
  --muted: #64748b;
  --stroke: rgba(15, 23, 42, 0.1);
  --stroke2: rgba(15, 23, 42, 0.06);
  --bg-soft: #f5f9ff;
  --card: #ffffff;
  --shadow-soft: 0 12px 30px rgba(2, 6, 23, 0.08);
  --shadow-hover: 0 18px 44px rgba(2, 6, 23, 0.12);
  --radius: 18px;
} /* ---------- Section wrapper ---------- */
.booking-card,
.select-rooms-card {
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fbff 0%, #f1f7ff 100%);
  border: 1px solid var(--stroke2);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.08);
  overflow: hidden;
} /* ---------- "SELECT ROOMS" header pill ---------- */
.select-rooms-title,
.rooms-title-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 16px 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(10, 140, 255, 0.35),
    rgba(10, 140, 255, 0.18)
  );
  border: 1px solid rgba(10, 140, 255, 0.25);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
} /* ---------- ROOM ROW CARDS ---------- */
#booking .room-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--stroke2);
  border-radius: 16px;
  padding: 16px 16px;
  margin: 10px 16px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
  position: relative;
} /* subtle left accent line so it's easier to scan */
#booking .room-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 99px;
  background: rgba(10, 140, 255, 0.35);
  opacity: 0.55;
}
#booking .room-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(10, 140, 255, 0.25);
} /* room name */
#booking .room-row__name {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.15;
}
.room-sub {
  font-weight: 400;
  font-size: 12px;
  display: block;
  margin-top: 6px;
  color: gray;
}
#booking .room-row__name small,
#booking .room-row__meta {
  display: block;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.55);
  margin-top: 4px;
} /* price on right */
#booking .room-row__price,
#booking .room-row .price {
  font-weight: 950;
  color: var(--ink);
  white-space: nowrap;
}
#booking .room-row__price span,
#booking .room-row .price span {
  font-weight: 700;
  color: rgba(15, 23, 42, 0.55);
} /* ---------- Premium Stepper ---------- */
#booking .stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  border: 1px solid rgba(10, 140, 255, 0.18);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
}
#booking .stepper-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  display: grid;
  place-items: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    border-color 0.12s ease;
}
#booking .stepper-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 140, 255, 0.35);
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.1);
}
#booking .stepper-btn:active {
  transform: translateY(0px) scale(0.98);
}
#booking .stepper-val {
  min-width: 24px;
  text-align: center;
  font-weight: 950;
  color: var(--ink);
} /* ---------- SUMMARY / CALCULATION AREA (make it clearly different) ---------- */
#booking .calc-wrap,
#booking .summary-wrap,
#booking .price-breakdown,
#booking .pb-card {
  margin: 14px 16px 16px;
} /* Nights + formula row becomes a separate "info bar" */
#booking .nights-row,
#booking .calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
} /* nights pill */
#booking .nights-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 140, 255, 0.1);
  border: 1px solid rgba(10, 140, 255, 0.2);
  font-weight: 900;
  color: rgba(10, 140, 255, 1);
}
#booking .nights-pill b,
#booking #nightsCount {
  color: rgba(10, 140, 255, 1);
  font-weight: 950;
} /* formula text */
#booking .calc-hint {
  color: rgba(15, 23, 42, 0.55);
  font-weight: 700;
} /* ---------- Price Breakdown Card ---------- */
#booking .pb-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.1);
  position: relative;
} /* top accent line to scream "Summary" */
#booking .pb-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(10, 140, 255, 0.95),
    rgba(10, 140, 255, 0.25)
  );
}
#booking .pb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(10, 140, 255, 0.06);
}
#booking .pb-title {
  font-weight: 950;
  color: var(--ink);
}
#booking .pb-nights {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.6);
}
#booking .pb-list {
  padding: 12px 12px 14px;
  display: grid;
  gap: 10px;
}
#booking .pb-row {
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  padding: 12px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
#booking .pb-name {
  font-weight: 950;
  color: var(--ink);
}
#booking .pb-meta {
  color: rgba(15, 23, 42, 0.55);
  font-weight: 650;
  margin-top: 2px;
}
#booking .pb-amt {
  font-weight: 950;
  color: var(--ink);
  white-space: nowrap;
} /* empty state */
#booking .pb-empty {
  color: rgba(15, 23, 42, 0.6);
  font-weight: 700;
  padding: 16px;
} /* ---------- TOTAL box becomes premium ---------- */
#booking .total-card,
#booking .total-box {
  margin: 14px 16px 20px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(10, 140, 255, 0.12),
    rgba(10, 140, 255, 0.04)
  );
  border: 2px solid rgba(10, 140, 255, 0.35);
  box-shadow: 0 22px 55px rgba(2, 6, 23, 0.14);
  padding: 16px 16px;
}
#booking .total-label {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.7);
}
#booking .total-amount {
  font-weight: 1000;
  letter-spacing: 0.02em;
  font-size: 46px;
  color: rgba(10, 140, 255, 1);
  line-height: 1;
} /* mobile tightening */
@media (max-width: 520px) {
  #booking .room-row {
    margin: 10px 12px;
    padding: 14px 12px;
  }
  #booking .pb-card,
  #booking .nights-row {
    margin: 12px 12px;
  }
  #booking .total-amount {
    font-size: 40px;
  }
} /* ===== TIGHTEN SPACING (Premium but not tall) ===== */ /* Select rooms header pill: smaller + cleaner */
.select-rooms-title,
.rooms-title-pill {
  margin: 14px 16px 8px;
  padding: 10px 12px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  font-size: 13px;
} /* Room rows: reduce height + reduce gaps */
#booking .room-row {
  margin: 8px 16px;
  padding: 12px 14px;
  border-radius: 14px;
} /* Left accent line: slightly subtler */
#booking .room-row::before {
  top: 10px;
  bottom: 10px;
  opacity: 0.4;
} /* Stepper: smaller so rows look slimmer */
#booking .stepper {
  padding: 6px 8px;
  gap: 8px;
}
#booking .stepper-btn {
  width: 30px;
  height: 30px;
}
#booking .stepper-val {
  min-width: 20px;
} /* Nights/formula bar: reduce padding */
#booking .nights-row,
#booking .calc-row {
  padding: 12px 12px;
  border-radius: 14px;
} /* Price breakdown: less padding + less spacing between items */
#booking .pb-list {
  padding: 10px 10px 12px;
  gap: 8px;
}
#booking .pb-row {
  padding: 10px 10px;
  border-radius: 12px;
} /* Total: bring it closer + slightly smaller */
#booking .total-card,
#booking .total-box {
  margin: 12px 16px 16px;
  padding: 14px 14px;
}
#booking .total-amount {
  font-size: 42px;
} /* ✅ Force email blue in confirm modal (overrides other rules) */
#bookingModal .bk-row .bk-email {
  color: #0a8cff !important;
}
#bookingCarousel {
  height: clamp(560px, 28vw, 380px); /* premium: not too tall */
} /* Make booking-total-meta align with room rows */
#booking .booking-total-meta {
  margin: 0 16px; /* same as .room-row */
  width: auto; /* ensures margin works naturally */
  box-sizing: border-box;
}
@media (max-width: 520px) {
  #booking .booking-total-meta {
    margin: 0 12px; /* match your mobile tightening */
  }
}
.room-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* ✅ align both $70 and Per Night to the right */
  line-height: 1.1;
}
.room-price {
  font-weight: 900;
  text-align: right;
  min-width: 0; /* ✅ let it size naturally */
}
.room-price-each {
  margin-left: 0; /* ✅ remove the hack */
  font-size: 12px;
  color: rgb(101, 99, 99);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .room-price-block {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
  .room-price-each {
    margin-top: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
  }
}
.room-price-each {
  font-size: 11px;
  opacity: 0.75;
  letter-spacing: 0.1em;
}
.room-price-block {
  line-height: 1.05;
}
.room-price-each {
  margin-top: 2px;
}
.room-price-each {
  text-transform: none;
  letter-spacing: 0.02em;
} /* Make rows align from the top instead of center */
#booking .room-row {
  align-items: flex-start; /* 🔥 key change */
} /* Make right side align cleanly */
#booking .room-row__right {
  display: flex;
  align-items: center; /* keep stepper + price aligned */
  gap: 16px;
  margin-top: 4px; /* small visual correction */
}
#booking .room-row {
  display: flex;
  justify-content: space-between;
  align-items: center; /* keep row centered */
}
#booking .room-row__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 56px; /* 🔥 ensures consistent height */
}
#booking .room-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
}
#booking .room-row__right {
  display: contents; /* stepper + price become grid columns */
}

.note{
  font-size: 16px;
  font-weight: 600;
}

/* Total label next to amount */
.booking-total-bottom .total-box{
  display: flex;
  align-items: baseline;   /* keeps text + number aligned nicely */
  justify-content: flex-end;
  gap: 12px;
  text-align: right;
}

/* Remove stacking */
.booking-total-bottom .total-label,
.booking-total-bottom .total-amount{
  display: inline;
  margin: 0;
}

/* @media (max-width: 576px){
  .booking-total-bottom .total-box{
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
} */


/* Stack Total box and Notes vertically */
.booking-total-bottom{
  display: flex;
  flex-direction: column;   /* 🔥 stack vertically */
  align-items: stretch;     /* 🔥 same width */
  gap: 14px;
  width: 100%;
}

/* Make both full width */
.booking-total-bottom .total-box,
.booking-total-bottom .pay-note{
  width: 100%;
}

/* Optional: align text nicely */
.booking-total-bottom .total-box{
  justify-content: space-between;  /* keeps Total + $ aligned */
}

/* Keep vertical stack */
.booking-total-bottom{
  display: flex;
  flex-direction: column;
  align-items: stretch; /* keep notes full width */
  gap: 14px;
}

/* Total box: shrink to content + align right */
.booking-total-bottom .total-box{

  display: flex;
  gap: 14px;
  padding: 16px 24px;      /* optional refinement */
}

/* Notes stays normal full width */
.booking-total-bottom .pay-note{
  width: 100%;
}

/* Make total area match room row spacing */
.booking-total-bottom{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Match same horizontal spacing as .room-row */
.booking-total-bottom .total-box{
  margin: 8px 16px;   /* 🔥 SAME as .room-row */
  width: auto;        /* remove fit-content */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border: 2px solid #7bb8ff;
  border-radius: 18px;
  background: #eaf4ff;
}