.booking-dialog {
  width: min(760px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: #0d0d13;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.booking-dialog::backdrop {
  background: rgba(2, 2, 5, 0.84);
}

.booking-panel {
  position: relative;
  padding: 38px;
  background:
    radial-gradient(circle at 94% 0, rgba(74, 168, 255, 0.11), transparent 260px),
    radial-gradient(circle at 0 0, rgba(139, 116, 255, 0.15), transparent 310px),
    #0d0d13;
}

.booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: #d9d7e3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.booking-close:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.booking-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.035em;
}

.booking-brand img {
  width: 32px;
  height: 32px;
}

.booking-kicker {
  display: block;
  margin-bottom: 9px;
  color: #a993ff;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.booking-panel h2 {
  max-width: 610px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.booking-panel > p {
  max-width: 590px;
  margin: 16px 0 28px;
  color: #b7b5c2;
  font-size: 1rem;
}

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

.booking-option {
  display: flex;
  min-height: 225px;
  padding: 24px;
  flex-direction: column;
  color: #f8f7fc;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 19px;
  background: #15151d;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-option:hover {
  border-color: rgba(157, 136, 255, 0.66);
  background: #191824;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.booking-option-featured {
  border-color: rgba(139, 116, 255, 0.38);
  background:
    linear-gradient(145deg, rgba(139, 116, 255, 0.16), rgba(74, 168, 255, 0.08)),
    #15151d;
}

.booking-duration {
  align-self: flex-start;
  margin-bottom: 25px;
  padding: 7px 11px;
  color: #e7e0ff;
  border: 1px solid rgba(169, 147, 255, 0.3);
  border-radius: 999px;
  background: rgba(139, 116, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-option strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.16rem;
  line-height: 1.25;
}

.booking-option small {
  color: #aaa8b6;
  font-size: 0.89rem;
  line-height: 1.5;
}

.booking-action {
  display: flex;
  margin-top: auto;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  color: #b9a8ff;
  font-size: 0.84rem;
  font-weight: 800;
}

.booking-action b {
  color: #65b5ff;
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .booking-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 21px;
  }

  .booking-panel {
    padding: 26px 20px 20px;
  }

  .booking-close {
    top: 14px;
    right: 14px;
  }

  .booking-brand {
    max-width: calc(100% - 48px);
    margin-bottom: 29px;
  }

  .booking-panel h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

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

  .booking-option {
    min-height: 190px;
    padding: 21px;
  }
}
