* {
  box-sizing: border-box;
}

:root {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: #181818;
  background: #f5f5f5;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: #f5f5f5;
}

button,
input,
select {
  font: inherit;
}

.hidden {
  display: none !important;
}

.booking-shell {
  width: min(760px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.booking-card {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 18px;
  padding: 28px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.08);
}

.booking-state-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.booking-loader {
  width: 38px;
  height: 38px;
  border: 4px solid #dddddd;
  border-top-color: #111111;
  border-radius: 50%;
  animation: booking-spin 0.8s linear infinite;
}

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

.booking-header {
  text-align: center;
  margin-bottom: 28px;
}

.booking-logo {
  display: block;
  width: min(180px, 55%);
  max-height: 76px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.booking-header h1 {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 2.45rem);
  line-height: 1.15;
}

.booking-location {
  margin: 10px 0 0;
  color: #666666;
  font-size: 0.98rem;
}

.booking-section {
  padding: 24px 0;
  border-top: 1px solid #e4e4e4;
}

.booking-section h2 {
  margin: 0 0 16px;
  font-size: 1.18rem;
}

.booking-options {
  display: grid;
  gap: 10px;
}

.booking-option {
  display: block;
  position: relative;
}

.booking-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-option-body {
  display: block;
  padding: 14px 16px;
  border: 2px solid #d8d8d8;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.booking-option input:checked + .booking-option-body {
  border-color: #161616;
  background: #f2f2f2;
}

.booking-option-title {
  display: block;
  font-weight: 700;
}

.booking-option-meta {
  display: block;
  margin-top: 4px;
  color: #666666;
  font-size: 0.92rem;
}

.ticket-groups {
  display: grid;
  gap: 20px;
}

.ticket-group {
  display: grid;
  gap: 10px;
}

.ticket-group-title {
  margin: 0;
  font-size: 1rem;
}

.ticket-row {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;
  align-items: center;
  gap: 16px;

  padding: 14px 0;
  border-bottom: 1px solid #eeeeee;
}

.ticket-row:last-child {
  border-bottom: 0;
}

.ticket-copy {
  min-width: 0;
}

.ticket-label {
  display: block;
  font-weight: 700;
}

.ticket-price {
  display: block;
  margin-top: 3px;
  color: #666666;
  font-size: 0.92rem;
}

.ticket-quantity {
  width: 78px;
  min-height: 44px;
  padding: 8px;
  border: 1px solid #bdbdbd;
  border-radius: 9px;
  text-align: center;
  background: #ffffff;
}

.booking-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-grid label {
  display: grid;
  gap: 7px;
  font-weight: 650;
}

.booking-grid-wide {
  grid-column: 1 / -1;
}

.booking-grid input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #bdbdbd;
  border-radius: 9px;
  background: #f3f3f3;
}

.booking-help {
  margin: 0;
  color: #555555;
  line-height: 1.5;
}

.booking-total-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-top: 24px;
  padding: 18px;

  border-radius: 12px;
  background: #f0f0f0;

  font-size: 1.1rem;
}

.booking-total-panel strong {
  font-size: 1.45rem;
}

.booking-phase-notice {
  display: grid;
  gap: 5px;

  margin-top: 18px;
  padding: 14px 16px;

  border: 1px solid #dedede;
  border-radius: 10px;
  background: #fafafa;

  font-size: 0.93rem;
  line-height: 1.4;
}

.booking-phase-notice span {
  color: #5e5e5e;
}

.booking-submit {
  width: 100%;
  min-height: 52px;

  margin-top: 18px;

  border: 0;
  border-radius: 12px;

  background: #e5e5e5;
  color: #777777;

  font-weight: 750;
  font-size: 1rem;

  cursor: not-allowed;
}

@media (max-width: 620px) {
  .booking-shell {
    width: min(100% - 18px, 760px);
    padding: 10px 0 24px;
  }

  .booking-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-grid-wide {
    grid-column: auto;
  }

  .ticket-row {
    gap: 10px;
  }

  .ticket-quantity {
    width: 68px;
  }
}
/* CALYPSO_ADAPTIVE_SESSION_SELECTOR_V1 */

.booking-fixed-session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 16px;

  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #f7f7f7;
}

.booking-fixed-session strong {
  font-size: 1rem;
}

.booking-fixed-session span {
  font-weight: 700;
  white-space: nowrap;
}

.booking-fixed-date {
  padding: 14px 16px;

  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #f7f7f7;

  font-weight: 700;
}

.booking-time-block {
  margin-top: 18px;
}

.booking-time-block h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

@media (max-width: 620px) {
  .booking-fixed-session {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}
/* CALYPSO_PUBLIC_BOOKING_SUBMIT_V1 */

.booking-form-message {
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 10px;
  line-height: 1.45;
}

.booking-form-message.is-error {
  display: block;
  border: 1px solid #d7a7a7;
  background: #fff4f4;
  color: #7d1818;
}

.booking-form-message.is-success {
  display: block;
  border: 1px solid #aad0b3;
  background: #f4fbf5;
  color: #215b2e;
}

.booking-grid input {
  background: #ffffff;
}

.booking-submit {
  background: #171717;
  color: #ffffff;
  cursor: pointer;
}

.booking-submit:hover {
  background: #303030;
}

.booking-submit:disabled {
  background: #dddddd;
  color: #777777;
  cursor: wait;
}

.attendee-name-fields {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.attendee-name-fields label {
  display: grid;
  gap: 7px;
  font-weight: 650;
}

.attendee-name-fields input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #bdbdbd;
  border-radius: 9px;
  background: #ffffff;
}

.booking-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}