/* =============================================================
   BOOK.CSS — dark design language
   Palette: #1A1A1A bg · #000 card · #F5E003 accent · #FFFFFF text
   Font: StageGrotesk / Inter
============================================================= */

/* ─── PAGE-LEVEL OVERRIDES (dark theme for book page only) ── */

body {
  font-family: 'StageGrotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #1A1A1A;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
  border-radius: 0 !important;
}

.nav {
  background: #1A1A1A;
  border-bottom: 1px solid #262626;
  z-index: 200;
}

.nav-inner {
  padding: 14px 28px;
}

.nav-logo { width: 30px; }

.nav-title {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}

.nav-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
  opacity: 1;
}

.nav-link:hover { color: rgba(255,255,255,0.8); opacity: 1; }

/* ─── STEP SYSTEM ─────────────────────────────────────────── */

.book-step {
  display: none;
  min-height: calc(100vh - 60px);
}

.book-step-active {
  display: block;
}

/* ─── STEP 1: PASTE SCREEN ────────────────────────────────── */

.book-paste-shell {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.book-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.book-headline {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.book-headline em {
  font-style: normal;
  color: #FFFFFF;
}

.book-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

/* Input card */

.book-input-card {
  background: var(--card, #000000);
  border: 1px solid var(--border2, #2A2A2A);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.book-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.book-field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.book-field-note {
  opacity: 0.5;
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
}

.book-field-hint {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  min-height: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* URL input row */

.book-url-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  background: #111111;
  padding: 14px 16px;
  transition: outline 0.2s;
}

.book-url-row:focus-within {
  outline: 1px solid rgba(255,255,255,0.25);
}

.book-bcom-logo {
  height: 18px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.6;
  filter: brightness(0) invert(1);
}

.book-url-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  outline: none;
  min-width: 0;
}

.book-url-input::placeholder {
  color: rgba(255,255,255,0.25);
}

/* Price input row */

.book-price-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: #111111;
  overflow: hidden;
  transition: outline 0.2s;
}

.book-price-row:focus-within {
  outline: 1px solid rgba(255,255,255,0.25);
}

.book-currency {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  padding: 14px 14px 14px 16px;
  border-right: 1px solid #1E1E1E;
  user-select: none;
}

.book-price-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  outline: none;
  padding: 12px 16px;
  min-width: 0;
}

.book-price-input::placeholder {
  color: rgba(255,255,255,0.2);
  font-size: 16px;
}

/* Hide number input arrows */
.book-price-input::-webkit-outer-spin-button,
.book-price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.book-price-input[type=number] {
  -moz-appearance: textfield;
}

/* CTA button */

.book-find-btn {
  width: 100%;
  padding: 16px 20px;
  background: #F5E003;
  color: #0A0A0A;
  border: none;
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, opacity 0.2s;
}

.book-find-btn:hover:not(:disabled) {
  background: #ffe600;
}

.book-find-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Demo / ghost link */

.book-demo-link {
  border: none;
  background: none;
  padding: 0;
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  text-align: center;
  transition: color 0.15s;
}

.book-demo-link:hover {
  color: rgba(255,255,255,0.65);
}

/* ─── STEP 2: LOADING ─────────────────────────────────────── */

.book-step-loading {
  align-items: center;
  justify-content: center;
}

.book-step-loading.book-step-active {
  display: flex;
}

.book-loading-content {
  text-align: center;
  padding: 40px;
}

.book-spinner-ring {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: #F5E003;
  border-radius: 50% !important;
  animation: bookSpin 0.8s linear infinite;
  margin: 0 auto 32px;
}

@keyframes bookSpin {
  to { transform: rotate(360deg); }
}

.book-loading-msg {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  transition: opacity 0.3s;
  letter-spacing: -0.01em;
}

.book-loading-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* ─── STEP 3: SAVINGS BANNER ──────────────────────────────── */

.book-savings-banner {
  background: #F5E003;
  color: #0A0A0A;
  padding: 20px 24px;
}

.book-savings-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.book-savings-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

/* ─── STEP 3: RESULTS LAYOUT ──────────────────────────────── */

.book-results-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.book-results-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-results-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}

/* Hotel card */

.book-hotel-card {
  padding: 0;
  overflow: hidden;
}

.book-hotel-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.book-hotel-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.book-hotel-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: #111111;
}

.book-hotel-kicker {
  margin-bottom: 4px;
}

.book-stars {
  font-size: 13px;
  color: #F5E003;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.book-hotel-name {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

.book-hotel-location {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.book-hotel-address {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.25);
  margin: 0;
}

/* Stay card */

.book-stay-card {
  padding: 24px 28px;
}

.book-section-label {
  margin-bottom: 16px;
}

/* Comparison table */

.book-comparison-card {
  padding: 28px;
}

.book-comparison-heading {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 8px 0 24px;
  color: #FFFFFF;
}

.book-comp-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.book-comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}

.book-comp-row span {
  color: rgba(255,255,255,0.5);
}

.book-comp-row strong {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #FFFFFF;
}

.book-comp-bcom strong {
  text-decoration: line-through;
  opacity: 0.35;
}

.book-comp-ta {
  background: rgba(245,224,3,0.06);
  margin: 0 -28px;
  padding: 14px 28px;
}

.book-comp-saving {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.book-comp-total {
  border-bottom: none;
  padding-top: 18px;
}

.book-comp-total span {
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

.book-comp-total strong {
  font-size: 24px;
  color: #F5E003;
}

.book-comp-strike-val {
  text-decoration: line-through;
  opacity: 0.35;
}

.book-orange {
  color: #F5E003;
}

.book-muted {
  opacity: 0.5;
}

.book-net-saving-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(245,224,3,0.08);
  border: 1px solid rgba(245,224,3,0.2);
}

.book-net-saving-callout span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.book-net-saving-callout strong {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #F5E003;
}

/* Room name */

.book-room-name {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 0;
}

.book-room-note {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
}

/* Info card */

.book-info-card {
  padding: 24px 28px;
}

.book-info-card h2 {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #FFFFFF;
}

/* Sidebar savings line */

.book-savings-line span,
.book-savings-line strong {
  color: #F5E003 !important;
}

/* Edit search button */

.book-edit-btn {
  border: none;
  background: none;
  padding: 0;
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  text-align: center;
  transition: color 0.15s;
  align-self: center;
}

.book-edit-btn:hover {
  color: rgba(255,255,255,0.7);
}

/* Quote card base — used on book page */

.quote-card {
  background: #000000;
  border: 1px solid #2A2A2A;
  padding: 28px;
  margin-bottom: 0;
}

.quote-card h2 {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 20px;
}

/* Quote card padding override for book page */

.book-stay-card.quote-card,
.book-comparison-card.quote-card,
.book-info-card.quote-card {
  padding: 28px;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 900px) {
  .book-results-layout {
    grid-template-columns: 1fr;
    padding: 24px 16px 60px;
  }

  .book-results-sidebar {
    position: static;
  }

  .book-hotel-grid {
    grid-template-columns: 1fr;
  }

  .book-hotel-image {
    height: 200px;
  }

  .book-savings-banner-inner {
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .book-paste-shell {
    padding: 48px 16px 64px;
    gap: 32px;
  }

  .book-input-card {
    padding: 24px 18px;
  }

  .book-headline {
    font-size: 30px;
  }

  .book-comp-ta {
    margin: 0 -18px;
    padding: 14px 18px;
  }
}

/* ─── STEP 3: ROOMS LAYOUT ───────────────────────────────── */

.book-rooms-shell {
  max-width: 1260px;
  margin: 0 auto;
  padding: 36px 24px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  grid-auto-rows: auto;
  column-gap: 32px;
  row-gap: 20px;
  align-items: start;
}

/* Left column */
.book-rooms-hotel-card,
.book-rooms-stay-strip,
.book-rooms-list,
.book-edit-btn {
  grid-column: 1;
}

/* Right column — info boxes */
.book-info-boxes {
  grid-column: 2;
  grid-row: 1 / span 10;
  position: sticky;
  top: 80px;
  align-self: start;
}

.book-rooms-hotel-card {
  padding: 0;
  overflow: hidden;
}

/* Stay strip */
.book-rooms-stay-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #000000;
  border: 1px solid #2A2A2A;
}

.book-rooms-stay-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-right: 1px solid #1E1E1E;
}

.book-rooms-stay-cell:last-child {
  border-right: none;
}

.book-rooms-stay-cell span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.book-rooms-stay-cell strong {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

/* Price note */
.book-rooms-price-note {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  padding: 0 2px;
}

/* Room list */
.book-rooms-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Individual room card */
.book-room-card {
  background: #000000;
  border: 1px solid #2A2A2A;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  transition: border-color 0.2s;
  position: relative;
}

.book-room-card:hover {
  border-color: rgba(245,224,3,0.3);
}

.book-room-card--unavailable {
  opacity: 0.35;
  pointer-events: none;
}

.book-room-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.book-room-name {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
}

.book-room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.book-room-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,224,3,0.7);
  background: rgba(245,224,3,0.06);
  border: 1px solid rgba(245,224,3,0.15);
  padding: 3px 8px;
}

.book-room-pricing {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
}

.book-room-pricing-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2px;
}

.book-room-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.book-room-pricing-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

.book-room-bcom-price {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.45);
  text-align: right;
}

.book-room-bcom-price--strike {
  text-decoration: line-through;
  color: rgba(255,255,255,0.3);
}

.book-room-ta-price {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #FFFFFF;
  text-align: right;
  line-height: 1;
}

.book-room-saving-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F5E003;
  text-align: right;
  padding: 2px 0;
}

.book-room-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.book-room-select-btn {
  padding: 11px 20px;
  background: #F5E003;
  color: #0A0A0A;
  border: none;
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.book-room-select-btn:hover {
  background: #ffe600;
}

/* ─── STEP 4: GUEST FORM ──────────────────────────────────── */

.book-form-shell {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Recap strip above form */
.book-form-recap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 20px;
  background: #111111;
  border: 1px solid #2A2A2A;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}

.book-form-recap-hotel {
  font-weight: 700;
  color: #FFFFFF;
}

.book-form-recap-sep {
  color: rgba(255,255,255,0.2);
}

.book-form-card {
  gap: 20px;
}

.book-form-heading {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

.book-form-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
}

/* Text inputs */
.book-text-input {
  width: 100%;
  border: none;
  background: #111111;
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  outline: none;
  padding: 14px 16px;
  transition: outline 0.15s;
  box-sizing: border-box;
}

.book-text-input:focus {
  outline: 1px solid rgba(255,255,255,0.2);
}

.book-text-input::placeholder {
  color: rgba(255,255,255,0.25);
}

.book-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

/* ─── STEP 5: CONFIRMATION ────────────────────────────────── */

.book-success-shell {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.book-success-card {
  background: #000000;
  border: 1px solid #2A2A2A;
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.book-success-icon {
  font-size: 32px;
  color: #F5E003;
  line-height: 1;
  margin-bottom: 4px;
}

.book-success-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.book-success-heading {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  line-height: 1.0;
  margin: 4px 0 0;
}

.book-success-body {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
}

.book-success-recap {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  background: #111111;
  border: 1px solid #2A2A2A;
  padding: 14px 20px;
  width: 100%;
  text-align: left;
  line-height: 1.8;
  margin-top: 8px;
}

.book-success-home {
  margin-top: 8px;
  align-self: center;
}

/* ─── WHATSAPP FALLBACK ───────────────────────────────────── */

.book-wa-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 4px 0 2px;
}

.book-wa-or {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  margin: 0;
}

.book-wa-btn {
  display: block;
  width: 100%;
  padding: 14px 18px;
  background: #25d366;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.book-wa-btn:hover {
  opacity: 0.88;
}

.book-wa-hint {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin: 0;
}

/* ─── ROOMS UNLOCK BAR (sticky bottom CTA) ───────────────── */

.book-unlock-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  border-top: 1px solid #2A2A2A;
  padding: 16px 24px;
  z-index: 200;
}

.book-unlock-bar-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.book-unlock-bar-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.book-unlock-bar-btn {
  padding: 12px 28px;
  background: #F5E003;
  color: #0A0A0A;
  border: none;
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}

.book-unlock-bar-btn:hover {
  background: #ffe600;
}

.book-unlock-bar-inner--unlocked {
  align-items: center;
  gap: 20px;
}

.book-unlock-bar-text-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.book-unlock-bar-headline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.book-unlock-bar-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ─── OTP MODAL ──────────────────────────────────────────── */

.otp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.otp-modal-card {
  background: #111111;
  border: 1px solid #2A2A2A;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  padding: 44px 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
}

.otp-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: none;
  font-size: 15px;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.15s;
  line-height: 1;
}

.otp-modal-close:hover {
  color: rgba(255,255,255,0.8);
}

.otp-modal-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.otp-modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.otp-modal-heading {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0;
}

.otp-modal-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

.otp-code-input {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-align: center;
  padding: 14px 20px;
  color: #FFFFFF;
  background: #111111;
}

@media (max-width: 480px) {
  .otp-modal-card {
    padding: 32px 24px;
  }
}

/* ─── INFO BOXES ─────────────────────────────────────────── */

.book-info-boxes {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.book-info-box {
  background: #111111;
  border: 1px solid #2A2A2A;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.book-info-box-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 10px;
}

.book-info-box-title {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.book-info-box-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  counter-reset: info-step;
}

.book-info-box-steps li {
  position: relative;
  padding-left: 26px;
  counter-increment: info-step;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

.book-info-box-steps li::before {
  content: counter(info-step);
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #F5E003;
  line-height: 1;
}

.book-info-box-steps li strong {
  color: #FFFFFF;
  font-weight: 700;
  display: inline;
}

.book-info-box-cta {
  margin-top: 20px;
  display: block;
  width: 100%;
  background: #F5E003;
  color: #0A0A0A;
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 20px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s;
}

.book-info-box-cta:hover {
  background: #ffe600;
}

@media (max-width: 1080px) {
  .book-rooms-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .book-info-boxes {
    grid-column: 1;
    grid-row: auto;
    position: static;
  }
}

@media (max-width: 680px) {
  .book-info-boxes {
    gap: 2px;
  }

  .book-info-box {
    padding: 20px 18px;
  }

  .book-info-box-steps li {
    padding-left: 22px;
    font-size: 11.5px;
  }
}

/* ─── LOCKED RATE STYLES ─────────────────────────────────── */

.book-room-ta-price--locked {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: rgba(255,255,255,0.2);
}

.book-room-lock-svg {
  width: 14px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

@keyframes rateReveal {
  from { opacity: 0; transform: translateY(3px); }
  to   { opacity: 1; transform: translateY(0); }
}

.book-room-ta-price--revealed {
  animation: rateReveal 0.35s ease forwards;
}

/* ─── PRICE INFO ICON + TOOLTIP ──────────────────────────── */

.book-room-pricing-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.price-info-spacer {
  display: inline-block;
  width: 15px;
  height: 1px;
  flex-shrink: 0;
}

.price-info-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.price-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  opacity: 0.65;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.price-info-svg {
  display: block;
  width: 15px;
  height: 15px;
  pointer-events: none;
}

.price-info-icon:hover,
.price-info-icon:focus {
  opacity: 1;
  outline: none;
}

.price-info-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  width: 272px;
  background: #000000;
  color: rgba(255,255,255,0.85);
  padding: 14px 16px;
  z-index: 9999;
  pointer-events: none;
  border: 1px solid #2A2A2A;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.price-info-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: #000000;
  transform: rotate(45deg);
  border: 1px solid #2A2A2A;
  border-top: none;
  border-left: none;
}

.price-info-wrap:hover .price-info-tooltip,
.price-info-wrap:focus-within .price-info-tooltip {
  display: block;
}

.price-info-tooltip.is-active {
  display: block;
  pointer-events: auto;
}

.book-room-card:hover,
.book-room-card:focus-within {
  z-index: 10;
}

/* ─── TOOLTIP INTERNALS ──────────────────────────────────── */

.pit-header {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.pit-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 8px 0;
}

.pit-list {
  list-style: disc;
  padding-left: 14px;
  margin: 6px 0;
}

.pit-list li {
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}

.pit-list li:last-child {
  margin-bottom: 0;
}

.pit-cta {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #F5E003;
  margin: 0;
  text-transform: lowercase;
}

.pit-disclaimer {
  font-size: 9px;
  line-height: 1.6;
  color: rgba(255,255,255,0.3);
  margin: 0;
  font-style: italic;
}

/* ─── OTP PHONE WRAP ─────────────────────────────────────── */

.book-phone-wrap {
  display: flex;
  align-items: center;
  border: none;
  background: #111111;
  overflow: hidden;
}

.book-phone-prefix {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  background: #0A0A0A;
  padding: 14px 12px;
  border-right: 1px solid #2A2A2A;
  letter-spacing: 0.04em;
  white-space: nowrap;
  user-select: none;
}

.book-phone-number-input {
  border: none !important;
  flex: 1;
  min-width: 0;
}

/* ─── OTP ERROR WHATSAPP LINK ─────────────────────────────── */

.otp-wa-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #25d366;
  text-decoration: none;
}

.otp-wa-link:hover {
  text-decoration: underline;
}

/* ─── INLINE STYLE REPLACEMENTS ──────────────────────────── */

.book-spec-grid-top {
  margin-top: 18px;
}

.book-price-hero {
  margin: 20px 0 16px;
}

.book-price-hero-amount {
  font-size: 32px;
  font-weight: 900;
  color: #FFFFFF;
}

.book-pm-label-top {
  margin-top: 24px;
}

.book-support-card {
  padding: 20px;
}

.book-support-heading {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
}

/* ─── STEP CONVERSATION ─────────────────────────────────── */

#stepConversation {
  display: none;
  min-height: calc(100vh - 60px);
  align-items: center;
  justify-content: center;
}

#stepConversation.book-step-active {
  display: flex;
}

.conv-shell {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.conv-thread {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* All messages start invisible, JS adds --in to fade + slide */
.conv-msg {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  margin: 0;
  line-height: 1.4;
}

.conv-msg--in {
  opacity: 1;
  transform: translateY(0);
}

.conv-msg--status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.conv-msg--question {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.15;
}

.conv-msg--confirmed {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6aaa6a;
}

.conv-msg--preparing {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
}

.conv-msg--has-spinner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.conv-spinner {
  flex-shrink: 0;
  color: #F5E003;
  opacity: 0.8;
}

.conv-spinner-text {
  color: rgba(255,255,255,0.5);
}

.conv-spinner-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

.conv-msg--ready {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

/* Yes / No buttons */
.conv-yn-row {
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.conv-yn-row--in {
  opacity: 1;
  transform: translateY(0);
}

.conv-yn-yes {
  padding: 12px 28px;
  background: #F5E003;
  color: #0A0A0A;
  border: none;
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}

.conv-yn-yes:hover {
  background: #ffe600;
}

.conv-yn-no {
  padding: 12px 28px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.conv-yn-no:hover {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
}

/* Correction input */
.conv-correct {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  background: #111111;
  border: 1px solid #2A2A2A;
}

.conv-correct-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── LOADER DEALS STRIP ─────────────────────────────────── */

.loader-deals-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.loader-deals-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.loader-deals-strip {
  overflow: hidden;
  display: flex;
  width: 100%;
}

.loader-deals-track {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
  animation: dealsBelt 24s linear infinite;
  padding-right: 2px;
}

@keyframes dealsBelt {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.loader-deals-card {
  flex-shrink: 0;
  width: 180px;
  background: #111111;
  border: 1px solid #2A2A2A;
  overflow: hidden;
}

.loader-deals-image {
  height: 110px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px;
}

.loader-deals-badge {
  background: #F5E003;
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 7px;
}

.loader-deals-meta {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
  background: rgba(0,0,0,0.55);
  padding: 3px 6px;
}

.loader-deals-content {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.loader-deals-title {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loader-deals-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.loader-deals-was {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}

.loader-deals-now {
  font-size: 14px;
  font-weight: 900;
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .conv-shell {
    padding: 40px 16px 60px;
  }
  .conv-msg--question {
    font-size: 22px;
  }
}

/* ─── ADMIN KICKER ──────────────────────────────────────── */

.admin-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F5E003;
  margin: 0 0 8px;
}

/* ─── ROOMS LOCKED (blur until OTP verified) ────────────── */

.book-rooms-shell.rooms-locked .book-rooms-main,
.book-rooms-shell.rooms-locked .book-rooms-side {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.4s ease;
}

.book-rooms-shell .book-rooms-main,
.book-rooms-shell .book-rooms-side {
  transition: filter 0.4s ease;
}

/* ─── IP RATE LIMIT MESSAGE ─────────────────────────────── */

.book-rate-limit-msg {
  text-align: center;
  padding: 60px 24px;
  max-width: 480px;
  margin: 0 auto;
}
.book-rate-limit-msg h2 {
  font-family: 'StageGrotesk', 'Inter', sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.book-rate-limit-msg p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.book-rate-limit-msg .book-wa-btn {
  display: inline-block;
  background: #F5E003;
  color: #0A0A0A;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
}
