/* ══════════════════════════════════════════════
   DEMO LIFESTYLE — Booking Page
   ══════════════════════════════════════════════ */

/* ── Layout ── */
.booking-layout {
  display: grid; grid-template-columns: 300px 1fr; gap: var(--space-xl);
  margin-top: var(--space-lg);
}

/* ── Summary sidebar ── */
.booking-summary {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--grey-border);
  padding: 20px; align-self: start; min-width: 0;
  box-shadow: var(--shadow-soft);
}
.booking-summary__image { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 16px; }
.booking-summary__image img { width: 100%; height: 160px; object-fit: cover; display: block; }
.booking-summary__title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.booking-summary__detail { font-size: 13px; color: var(--grey); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.booking-summary__price { font-size: 20px; font-weight: 800; color: var(--charcoal); margin-top: 12px; }
.booking-summary__badge { margin-top: 12px; }

/* ── Form container ── */
.booking-form {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--grey-border);
  padding: var(--space-xl); min-width: 0; box-shadow: var(--shadow-soft);
}
.booking-form__title { margin-bottom: var(--space-lg); }
.booking-step {}
.booking-step .steps { justify-content: flex-start; }

/* ── Experience Reminder Strip (mobile only) ── */
.booking-reminder {
  display: none; /* hidden on desktop */
  align-items: center; gap: 14px;
  background: var(--light); border-radius: var(--radius);
  padding: 12px 16px; margin-bottom: var(--space-lg);
  border: 1px solid var(--grey-border);
}
.booking-reminder__img {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0;
}
.booking-reminder__info { flex: 1; min-width: 0; }
.booking-reminder__title {
  font-size: 14px; font-weight: 700; color: var(--charcoal);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.booking-reminder__meta { font-size: 12px; color: var(--grey); margin-top: 2px; }

/* ── Card info ── */
.booking-card-info {
  background: var(--light); border-radius: var(--radius); padding: 16px;
  display: flex; align-items: center; gap: 12px; margin: 20px 0;
}
.booking-card-info__icon { font-size: 28px; }
.booking-card-info .icon { color: var(--accent); }

/* ── Reassurance line ── */
.booking-reassurance {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; color: var(--grey); margin-bottom: 16px;
  padding: 10px 0;
}
.booking-reassurance .icon { color: var(--success); flex-shrink: 0; }

/* ── Request chips ── */
.request-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.request-chip {
  padding: 6px 14px; border-radius: var(--radius-full);
  border: 1px solid var(--grey-border); background: var(--white);
  font-family: var(--font-body); font-size: 13px; color: var(--charcoal);
  cursor: pointer; transition: all var(--ease);
}
.request-chip:hover { border-color: var(--accent); color: var(--accent); }
.request-chip--selected {
  background: var(--accent); border-color: var(--accent); color: var(--white);
}
.request-chip--selected:hover { color: var(--white); }

/* ── Confirmation details ── */
.booking-confirm-details {
  background: var(--light); border-radius: var(--radius); padding: 20px;
  margin-bottom: var(--space-lg);
}
.booking-confirm-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--grey-border);
}
.booking-confirm-row:last-child { border-bottom: none; }

/* ── Success ── */
.booking-success { text-align: center; padding: 40px 20px; }
.booking-success__icon { margin-bottom: 16px; }
.booking-success__icon .icon { color: var(--success); }
.booking-success__title { margin-bottom: 8px; }
.booking-success__text { font-size: 14px; color: var(--grey); margin-bottom: 20px; }

/* ── Sticky Mobile CTA ── */
.booking-sticky-cta { display: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; gap: var(--space-md); }
  .booking-summary { position: static; box-shadow: none; }
  .booking-form { padding: var(--space-md); box-shadow: none; }
  .booking-confirm-details { padding: 16px; }
  .booking-confirm-row { gap: 12px; }
  .booking-confirm-row span:last-child { text-align: right; word-break: break-word; min-width: 0; }

  /* Compact progress indicator on mobile */
  .booking-step .steps { gap: 0; margin-bottom: var(--space-lg); }
  .booking-step .step__circle { width: 28px; height: 28px; min-width: 28px; min-height: 28px; font-size: 12px; }
  .booking-step .step__label { font-size: 10px; letter-spacing: 0.02em; }
  .booking-step .step__line { width: 40px; margin: 0 8px; }

  /* Hide reminder strip on mobile */
  .booking-reminder { display: none; }

  /* Reassurance tighter on mobile */
  .booking-reassurance { font-size: 11px; text-align: center; }

  /* Reduce button padding so flex pair doesn't overflow */
  .booking-form .btn--lg { padding: 16px 20px; font-size: 14px; }

  /* Sticky CTA */
  .booking-sticky-cta {
    display: flex; align-items: center;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
    padding: 12px var(--container-pad);
    background: var(--white); border-top: 1px solid var(--grey-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transform: translateY(100%); transition: transform 0.3s ease;
  }
  .booking-sticky-cta--visible { transform: translateY(0); }
  .booking-sticky-cta__btn { flex: 1; }

  .page__main--booking { padding-bottom: 80px; }
}
