.booking-shell { padding: 140px 0 80px; min-height: 100svh; }
.booking-head { margin-bottom: 48px; }
.booking-head h1 { font-size: clamp(2.8rem, 6vw, 6rem); margin-bottom: 22px; }
.booking-controls { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 24px; border-block: 1px solid var(--line); }
.event-picker { display: grid; grid-template-columns: 92px minmax(0,420px); gap: 16px; align-items: center; flex: 1; }
.event-picker img { width: 92px; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid var(--line); background: #080808; }
.event-select { display: grid; gap: 8px; min-width: 0; color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.event-select select { width: 100%; min-height: 48px; padding: 10px 42px 10px 14px; border: 1px solid var(--line); border-radius: 0; background: #080808; color: #fff; font: inherit; text-transform: none; letter-spacing: 0; }
.status-legend { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; color: var(--muted); font-size: .78rem; }
.status-legend span { display: inline-flex; align-items: center; gap: 7px; }
.status-legend i { width: 10px; height: 10px; border-radius: 50%; }
.status-legend .available { background: #26b866; }
.status-legend .demand { background: #e7a92d; }
.status-legend .pending { background: #8f6ee8; }
.status-legend .booked { background: #5e5e5e; }
.booking-disabled { margin-top: 28px; padding-block: 58px; border-bottom: 1px solid var(--line); }
.booking-disabled h2 { margin: 8px 0 12px; font-size: clamp(2rem, 4vw, 4rem); }
.booking-disabled p:not(.eyebrow) { color: var(--muted); margin-bottom: 24px; }
.booking-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(340px, .7fr); gap: 18px; padding-block: 28px 80px; align-items: start; }
.map-panel, .booking-panel { border: 1px solid var(--line); background: #070707; }
.interactive-map { position: relative; overflow: hidden; background: #f5f5f5; }
.interactive-map img { width: 100%; height: auto; }
.table-marker { position: absolute; left: var(--x); top: var(--y); width: 34px; height: 34px; transform: translate(-50%,-50%); display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; background: #26b866; color: #fff; box-shadow: 0 3px 12px rgba(0,0,0,.38); font: 700 .72rem/1 Helvetica, Arial, sans-serif; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.table-marker:hover, .table-marker:focus-visible { transform: translate(-50%,-50%) scale(1.15); box-shadow: 0 5px 20px rgba(0,0,0,.55); }
.table-marker.demand { background: #e7a92d; color: #080808; }
.table-marker.pending { background: #8f6ee8; }
.table-marker.booked { background: #5e5e5e; color: #d2d2d2; }
.table-marker.selected { outline: 3px solid #000; outline-offset: 3px; }
.map-help { margin: 0; padding: 14px 18px; color: var(--muted); font-size: .8rem; }
.booking-panel { position: sticky; top: 94px; min-height: 470px; padding: 28px; }
.empty-panel { min-height: 410px; display: grid; place-content: center; text-align: center; color: var(--muted); }
.empty-panel span { font-size: 2rem; color: #fff; }
.empty-panel h2 { margin: 16px 0 10px; font-size: 2rem; color: #fff; }
.table-status { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.table-status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.table-status.available { color: #48d985; }
.table-status.demand { color: #f0bb4f; }
.table-status.pending { color: #a78af2; }
.table-status.booked { color: #8d8d8d; }
.booking-panel h2 { font-size: clamp(2.5rem, 5vw, 4.6rem); margin-bottom: 14px; }
.table-type { color: var(--muted); margin-bottom: 26px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.price-box { padding: 16px; border: 1px solid var(--line); }
.price-box span { display: block; color: var(--muted); font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; }
.price-box strong { display: block; margin-top: 5px; font-size: 1.25rem; }
.demand-note { margin-bottom: 22px; padding: 12px 14px; border-left: 2px solid #e7a92d; background: rgba(231,169,45,.08); color: #e8d7ab; font-size: .82rem; }
.booking-form { display: grid; gap: 12px; }
.booking-form label { display: grid; gap: 6px; color: var(--muted); font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; }
.booking-form input { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 0; background: #000; color: #fff; font: inherit; }
.booking-form .button { margin-top: 8px; width: 100%; }
.unavailable-note { padding: 18px; border: 1px solid var(--line); color: var(--muted); }
.request-success { display: grid; gap: 12px; padding: 18px; border: 1px solid #35764f; background: rgba(38,184,102,.08); }
.request-success strong { color: #74e9a7; }
.form-error { color: #ff9292; font-size: .84rem; }
[hidden] { display: none !important; }
@media (max-width: 920px) {
  .booking-controls { display: grid; }
  .event-picker { grid-template-columns: 76px minmax(0,1fr); width: 100%; }
  .event-picker img { width: 76px; }
  .status-legend { justify-content: flex-start; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-panel { position: static; min-height: 0; }
  .empty-panel { min-height: 260px; }
}
@media (max-width: 560px) {
  .booking-shell { padding-top: 116px; }
  .booking-layout { width: 100%; }
  .map-panel { overflow-x: auto; }
  .interactive-map { min-width: 680px; }
  .booking-panel { margin-inline: 14px; }
  .table-marker { width: 30px; height: 30px; }
}
