.booking-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
.booking-card {
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--soft-shadow);
  padding: clamp(28px, 4vw, 54px);
  transition: transform .35s ease, box-shadow .35s ease;
}
.booking-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(31,24,18,.16); }
#booking-success {
  max-width: 980px;
  margin: 0 auto clamp(42px, 6vw, 88px);
  padding: clamp(34px, 5vw, 64px);
}
#booking-success h2 {
  margin-bottom: 22px;
}
#booking-success p {
  max-width: 860px;
  margin: 0 0 24px;
}
.step-dots { display: flex; gap: 10px; margin-bottom: 24px; }
.step-dot { flex: 1; height: 8px; border-radius: 999px; background: var(--cream); }
.step-dot.is-active { background: var(--ink); }
.booking-step { display: none; }
.booking-step.is-active { display: grid; gap: 20px; }
.step-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 12px; }
.booking-aside {
  display: grid;
  gap: 28px;
  align-content: start;
}
.booking-aside img {
  width: 100%;
  height: clamp(380px, 48vw, 560px);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
}
.booking-aside .floating-card {
  margin-top: 0;
}
.native-select-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.custom-select { position: relative; }
.custom-select-trigger {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(199,154,92,.46);
  border-radius: 24px;
  background: white;
  color: var(--ink);
  padding: 0 18px;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(31,24,18,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.custom-select-trigger:hover,
.custom-select.is-open .custom-select-trigger {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 22px 50px rgba(31,24,18,.14);
}
.custom-options {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 10px);
  z-index: 10;
  display: none;
  max-height: 390px;
  overflow: auto;
  padding: 14px;
  border-radius: 26px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.custom-select.is-open .custom-options {
  display: grid;
  gap: 12px;
  animation: searchPop .28s cubic-bezier(.2,.8,.2,1) both;
}
.custom-group { display: grid; gap: 8px; }
.custom-group strong { color: var(--sage); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.custom-option {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: #fffaf5;
  text-align: left;
  padding: 9px;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease;
}
.custom-option:hover { background: var(--ink); color: white; transform: translateX(5px); }
.custom-option img { width: 58px; height: 52px; border-radius: 14px; object-fit: cover; }
.custom-option span { display: grid; gap: 4px; font-weight: 800; }
.custom-option small { color: inherit; opacity: .72; font-weight: 700; }
@media (max-width: 900px) { .booking-layout { grid-template-columns: 1fr; } }
