/**
 * Tour vs Airport Fast Track chooser popover (T105). Mobile-first, on-brand
 * (pink accent var(--primary, #e4367e) / white card), matching the accent
 * used across the booking widgets (ft-booking-form.css, faqs-booking-toggle.css,
 * ft-product-9824.css). Built by assets/js/book-service-chooser.js on a
 * native <dialog> element.
 */

.kt-booksvc-dialog {
  border: none;
  padding: 0;
  border-radius: 16px;
  width: calc(100% - 32px);
  max-width: 360px;
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.kt-booksvc-dialog::backdrop {
  background: rgba(20, 20, 20, 0.55);
}

.kt-booksvc-card {
  position: relative;
  padding: 30px 20px 22px;
  text-align: center;
}

.kt-booksvc-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #666;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.kt-booksvc-close:hover {
  background: #f3f3f3;
  color: #1a1a1a;
}

.kt-booksvc-title {
  margin: 0 0 6px;
  font-size: 19px;
  line-height: 1.3;
  color: #1a1a1a;
}

.kt-booksvc-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: #666;
}

.kt-booksvc-choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kt-booksvc-choice {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
}

.kt-booksvc-choice:active {
  transform: scale(0.98);
}

.kt-booksvc-choice-tour {
  background: var(--primary, #e4367e);
  color: #fff;
}

.kt-booksvc-choice-tour:hover {
  background: #c92c6c;
  color: #fff;
}

.kt-booksvc-choice-ft {
  background: #fff;
  color: var(--primary, #e4367e);
  border: 2px solid var(--primary, #e4367e);
}

.kt-booksvc-choice-ft:hover {
  background: #fdf1f6;
  color: var(--primary, #e4367e);
}

.kt-booksvc-close:focus-visible,
.kt-booksvc-choice:focus-visible {
  outline: 3px solid #1a73e8;
  outline-offset: 2px;
}

@media (min-width: 480px) {
  .kt-booksvc-card {
    padding: 34px 28px 26px;
  }

  .kt-booksvc-title {
    font-size: 21px;
  }
}
