/* Side booking drawer: loaded after styles.css so these rules intentionally override it. */
.booking-shell {
  top: 100px;
  right: 0;
  width: min(416px, calc(100vw - 16px));
  max-height: calc(100vh - 116px);
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, .3));
  transition: transform .32s cubic-bezier(.2, .8, .2, 1);
}

.booking-shell::before {
  inset: 0 0 0 64px;
  border-radius: 28px 0 0 28px;
  background: radial-gradient(circle at top left, rgba(255,255,255,.12), transparent 42%), linear-gradient(160deg, #7b1033 0%, #520b26 100%);
}

.booking-shell.collapsed { transform: translateX(calc(100% - 64px)); }
.booking-shell.collapsed .booking-panel-content {
  height: auto;
  margin-left: 64px;
  padding: 26px 24px 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.booking-panel-toggle {
  left: 0;
  top: 30px;
  width: 64px;
  height: auto;
  min-height: 146px;
  padding: 16px 0;
  border-radius: 18px 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: -10px 16px 30px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.6);
  background: linear-gradient(155deg, #f4dda7 0%, #c7a86b 72%, #b58e4d 100%);
  color: #091722;
  animation: bookingGlow 2.4s ease-in-out infinite;
  z-index: 3;
}

.booking-panel-toggle:hover,
.booking-shell.collapsed .booking-panel-toggle {
  transform: none;
}
.booking-panel-toggle:hover {
  background: linear-gradient(155deg, #fff3d1 0%, #e0c892 72%, #c7a86b 100%);
  color: #091722;
  box-shadow: -12px 18px 38px rgba(199,168,107,.48);
}
.toggle-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.booking-panel-content {
  margin-left: 64px;
  padding: 26px 24px 28px;
  max-height: calc(100vh - 116px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.35) transparent;
  transition: opacity .2s ease, visibility .2s ease;
}

.booking-panel-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.booking-panel-title small { display: block; color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.booking-panel-title h2 { margin: 4px 0 0; font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.15; }
.booking-panel-chip { padding: 5px 9px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #dff5dd; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.booking-panel-note { margin: -6px 0 0; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.5; }
.booking-field input, .booking-field select { color-scheme: dark; }
.booking-field:focus-within { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(224,200,146,.16); }
.booking-submit:disabled { cursor: wait; opacity: .72; transform: none; }
.booking-panel-toggle:focus-visible, .booking-submit:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

@keyframes bookingGlow {
  0%, 100% { box-shadow: -8px 14px 28px rgba(199,168,107,.24); }
  50% { box-shadow: -14px 18px 42px rgba(224,200,146,.62); }
}

@media (max-width: 760px) {
  .booking-shell { top: auto; right: 0; bottom: 12px; width: min(380px, calc(100vw - 12px)); max-height: calc(100dvh - 24px); border-radius: 0; }
  .booking-shell::before { border-radius: 26px 0 0 26px; }
  .booking-panel-content { max-height: calc(100dvh - 24px); }
  .booking-shell.collapsed { transform: translateX(calc(100% - 64px)); }
  .booking-panel-toggle { left: 0; top: 22px; }
  .booking-panel-head { grid-template-columns: 1fr 1fr; }
  .booking-open { overflow: hidden; }
}

@media (max-width: 420px) {
  .booking-panel-content { padding: 22px 16px 24px; }
  .booking-panel-title h2 { font-size: 24px; }
  .booking-price-list { padding: 14px; }
  .booking-field { padding: 12px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .booking-shell { animation: none; transition: none; }
  .booking-panel-content { transition: none; }
  .booking-panel-toggle { animation: none; }
}
