/* Flying Safari — booking popup modal */
#fs-book-drawer-root {
  position: fixed;
  inset: 0;
  z-index: 100000;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#fs-book-drawer-root.is-open {
  pointer-events: auto;
}
#fs-book-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
#fs-book-drawer-root.is-open #fs-book-drawer-backdrop {
  opacity: 1;
}
#fs-book-drawer-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 860px);
  background: #0b0d10;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#fs-book-drawer-root.is-open #fs-book-drawer-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
#fs-book-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
#fs-book-drawer-head strong {
  color: #fff;
  font-family: "Barlow Condensed", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#fs-book-drawer-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
#fs-book-drawer-close:hover {
  background: rgba(255, 255, 255, 0.16);
}
#fs-book-drawer-frame {
  flex: 1;
  width: 100%;
  min-height: min(72vh, 680px);
  border: 0;
  background: #0b0d10;
}
@media (max-width: 640px) {
  #fs-book-drawer-root {
    padding: 0;
    align-items: stretch;
  }
  #fs-book-drawer-panel {
    width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
  }
  #fs-book-drawer-frame {
    min-height: 0;
  }
}
