/* ─────────────────────────────────────────────
   Lice Clinics of Texas — Booking Drawer
   ───────────────────────────────────────────── */

/* Prevent body scroll when drawer is open */
body.drawer-open {
  overflow: hidden;
}

/* Overlay */
#booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 42, 42, 0.55);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

#booking-drawer.open #booking-overlay {
  opacity: 1;
  pointer-events: all;
}

/* Slide-out panel */
#booking-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(6, 42, 42, 0.15);
}

#booking-drawer.open #booking-panel {
  transform: translateX(0);
}

/* Panel header */
#booking-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--navy, #0B236B);
  flex-shrink: 0;
}

#booking-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

#booking-panel-location {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

#booking-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 8px;
  padding: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
  flex-shrink: 0;
}

#booking-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* iframe wrapper */
#booking-iframe-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Loading state */
#booking-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #f7fafc;
  z-index: 1;
}

#booking-loading p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #718096;
}

/* Spinner */
.booking-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e2e8f0;
  border-top-color: var(--teal, #1a5fb4);
  border-radius: 50%;
  animation: booking-spin 0.8s linear infinite;
}

@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

/* iframe itself */
#booking-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  transition: opacity 0.3s ease;
}

/* Mobile */
@media (max-width: 520px) {
  #booking-panel {
    width: 100vw;
    border-radius: 0;
  }
}
