html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
.booking-planner {
  min-height: 100vh;
  min-width: 0;
  padding: 24px clamp(16px, 5vw, 72px) 112px;
  background: #eef4fb;
  color: var(--color-ocean-900);
}
.booking-progress {
  max-width: min(1320px, 100%);
  min-width: 0;
  margin: 16px auto 28px;
}
.booking-progress ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}
.booking-progress li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #8194ab;
  font-size: 0.8rem;
  font-weight: 600;
}
.booking-progress li::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #cbd7e5;
}
.booking-progress li:last-child::after {
  display: none;
}
.booking-progress span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #cbd7e5;
  color: #47617d;
}
.booking-progress .is-active {
  color: var(--color-ocean-900);
}
.booking-progress .is-active span {
  background: var(--color-ocean-700);
  color: #fff;
}
.booking-progress .is-complete span {
  background: var(--color-ocean-700);
  color: #fff;
}
.booking-progress .is-disabled {
  opacity: 0.5;
}
.booking-planner__layout {
  max-width: min(1320px, 100%);
  width: 100%;
  min-width: 0;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: 22px;
  align-items: start;
}
.booking-sidebar {
  display: grid;
  gap: 14px;
  min-width: 0;
  position: sticky;
  top: 94px;
}
.booking-help {
  padding: 18px;
  border: 1px solid rgba(11, 31, 58, 0.09);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.booking-help h2 {
  margin: 0;
  font-size: 1rem;
}
.booking-help p {
  margin: 5px 0 12px;
  color: var(--color-text-soft);
  font-size: 0.78rem;
}
.booking-help div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.booking-help .button {
  min-height: 38px;
  padding: 0 8px;
  font-size: 0.72rem;
}
.booking-planner__form {
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.booking-trip-recap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  margin-bottom: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 8px;
  background: #f1f5f9;
  color: #64748b;
}
.booking-trip-recap__text {
  min-width: 0;
  flex: 1 1 auto;
}
.booking-trip-recap h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: -0.01em;
}
.booking-trip-recap p {
  margin: 3px 0 0;
  font-size: 0.8rem;
  color: #64748b;
  overflow-wrap: anywhere;
}
.booking-trip-recap__edit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 6px;
  background: #ffffff;
  color: var(--color-ocean-700);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(11, 31, 58, 0.04);
  transition: all var(--duration-fast) var(--easing-standard);
  flex-shrink: 0;
}
.booking-trip-recap__edit:hover,
.booking-trip-recap__edit:focus-visible {
  background: #f8fafd;
  border-color: var(--color-ocean-700);
  color: var(--color-ocean-900);
}
.booking-trip-recap__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.booking-planner__step-title {
  margin: 0;
  font-size: 2rem;
}
.booking-planner__intro {
  margin: 4px 0 22px;
  color: var(--color-text-soft);
}
.booking-planner__loading {
  padding: 32px 0;
  color: var(--color-text-soft);
}
.booking-section {
  border-top: 1px solid rgba(11, 31, 58, 0.09);
  padding: 20px 0;
}
.booking-section__heading {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.booking-section__heading > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eaf1fb;
  color: var(--color-ocean-700);
  font-weight: 700;
}
.booking-section h2 {
  margin: 0;
  font-size: 1rem;
}
.booking-section p {
  margin: 2px 0 0;
  color: var(--color-text-soft);
  font-size: 0.78rem;
}
.booking-details-card {
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(11, 31, 58, 0.09);
  border-radius: 8px;
  background: #fbfdff;
}
.booking-details-card .booking-section__heading {
  margin-bottom: 12px;
}
.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 12px;
  align-items: start;
}
.booking-form-grid label:last-child {
  grid-column: 1 / -1;
}
.booking-details-card label {
  display: grid;
  grid-template-rows: auto 44px 1.4em;
  gap: 6px;
  align-items: start;
  color: var(--color-ocean-900);
  font-size: 0.78rem;
  font-weight: 600;
}
.booking-details-card label > span {
  min-height: 1.15em;
  line-height: 1.15;
}
.booking-details-card label > input:not([type="radio"]):not([type="checkbox"]),
.booking-details-card label > select {
  grid-row: 2;
}
.booking-details-card em {
  color: #a33131;
  font-style: normal;
  margin-left: 2px;
}
.booking-details-card
  input:not([type="file"]):not([type="radio"]):not([type="checkbox"]):not(
    .sr-only
  ),
.booking-details-card select {
  min-height: 44px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid #d5e0ee;
  border-radius: 7px;
  background: #fff;
  color: var(--color-ocean-900);
  font: inherit;
  font-size: 0.82rem;
}
.booking-details-card input.sr-only,
.booking-details-card input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.booking-details-card .is-invalid {
  border-color: #b83b3b;
  box-shadow: 0 0 0 2px rgba(184, 59, 59, 0.12);
}
.booking-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}
.booking-choice-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  grid-template-rows: none;
  font-weight: 600;
  line-height: 1.35;
}
.booking-choice-group--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.booking-choice-group--stack label {
  align-items: flex-start;
}
.booking-details-card .booking-choice-group label {
  display: flex;
  grid-template-rows: none;
}
.booking-details-card .booking-choice-group label > input {
  grid-row: auto;
}
.booking-choice-group input[type="radio"] {
  appearance: auto;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  flex: 0 0 16px;
  accent-color: var(--color-ocean-700);
}
.booking-choice-group--stack input[type="radio"] {
  margin-top: 0.2em;
}
.booking-details-card > div:not(.booking-section__heading),
.booking-details-card [data-leg-ferry] {
  max-width: 100%;
}
.booking-review-note {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 7px;
  background: #eaf3ff;
  color: var(--color-text-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}
.booking-hotel-info {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 31, 58, 0.09);
  border-radius: 8px;
  background: #fff;
}
.booking-hotel-info[hidden],
#planner-hotel-link-wrap[hidden],
#review-hotel-link-wrap[hidden] {
  display: none !important;
}
.booking-hotel-info__line {
  margin: 0;
  color: var(--color-ocean-900);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
}
.booking-hotel-info__line + .booking-hotel-info__line {
  margin-top: 8px;
}
.booking-hotel-info a {
  color: var(--color-ocean-700);
  font-weight: 600;
  text-decoration: underline;
}
.booking-hotel-info__note {
  margin: 12px 0 0;
  color: var(--color-text-soft);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.45;
}
.booking-details-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  margin-top: 18px;
}
.booking-tours-actions {
  justify-content: flex-end;
}
#planner-back-to-review[hidden] {
  display: none !important;
}
.booking-details-actions .button {
  min-width: 0;
  max-width: 100%;
  height: auto;
  min-height: 44px;
  padding-top: 10px;
  padding-bottom: 10px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}
.booking-tours-actions .button {
  min-width: min(100%, 320px);
}
.booking-date-fields,
.booking-travelers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-left: 38px;
}
.booking-date-fields label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text-soft);
}
.booking-date-fields input {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #d5e0ee;
  border-radius: 7px;
  color: var(--color-ocean-900);
  font: inherit;
}
.booking-entrances-option {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px 38px;
  color: var(--color-ocean-900);
  font-size: 0.84rem;
  font-weight: 600;
}
.booking-entrances-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-ocean-700);
}
.booking-tour-search {
  position: relative;
  display: block;
  margin: 0 0 12px;
  padding-left: 38px;
  max-width: 100%;
}
.booking-tour-search__icon {
  position: absolute;
  top: 50%;
  left: 50px;
  width: 15px;
  height: 15px;
  max-width: 15px;
  max-height: 15px;
  transform: translateY(-50%);
  fill: none;
  stroke: var(--color-text-soft);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  overflow: visible;
}
.booking-tour-search input {
  width: 100%;
  min-height: 40px;
  padding: 0 12px 0 36px;
  border: 1px solid #d5e0ee;
  border-radius: 7px;
  color: var(--color-ocean-900);
  background: #fff;
  font: inherit;
  font-size: 0.84rem;
}
.booking-tour-search input:focus-visible {
  outline: 2px solid var(--color-gold-500);
  outline-offset: 2px;
  border-color: var(--color-ocean-700);
}
.booking-tour-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 8px 2px 4px;
  color: var(--color-text-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}
.booking-travelers {
  padding-right: 38px;
}
.booking-travelers > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px;
  align-items: center;
  border: 1px solid #d5e0ee;
  padding: 5px;
  border-radius: 10px;
}
.booking-travelers b {
  font-size: 0.88rem;
}
.booking-travelers small {
  color: var(--color-text-soft);
  font-size: 0.72rem;
}
.booking-stepper {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  border: 1px solid #d5e0ee;
  border-radius: 7px;
  overflow: hidden;
}
.booking-stepper button,
.booking-stepper output {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  background: #fff;
  color: var(--color-ocean-700);
}
.booking-stepper button {
  cursor: pointer;
  font-size: 1.1rem;
}
.booking-stepper output {
  font-size: 0.85rem;
}
.booking-date-mode {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0 0 14px 38px;
  padding: 0;
  border: 0;
  color: var(--color-ocean-900);
  font-size: 0.82rem;
}
.booking-date-mode label {
  display: flex;
  align-items: center;
  gap: 7px;
}
.booking-date-mode input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-ocean-700);
}
.booking-date-fields {
  grid-template-columns: minmax(0, 1fr);
}
.booking-days-field {
  padding-left: 38px;
}
.booking-days-field label {
  display: grid;
  max-width: 320px;
  gap: 6px;
  color: var(--color-text-soft);
  font-size: 0.78rem;
}
.booking-days-field input {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #d5e0ee;
  border-radius: 7px;
  color: var(--color-ocean-900);
  font: inherit;
}
.booking-date-fields[hidden],
.booking-days-field[hidden] {
  display: none !important;
}
.booking-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
  padding-left: 38px;
}
.booking-tour-card {
  display: grid;
  grid-template-rows: 112px minmax(0, 1fr);
  height: 264px;
  overflow: hidden;
  border: 1px solid #d5e0ee;
  border-radius: 8px;
  background: #fff;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.booking-tour-card.is-selected {
  border-color: var(--color-ocean-700);
  box-shadow: 0 0 0 2px rgba(22, 52, 94, 0.14);
}
.booking-tour-card__image {
  width: 100%;
  height: 112px;
  padding: 0;
  border: 0;
  background: #edf2f7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: zoom-in;
}
.booking-tour-card__body {
  display: grid;
  grid-template-rows: 42px 22px minmax(34px, 1fr);
  gap: 7px;
  padding: 12px;
}
.booking-tour-card h3 {
  margin: 0;
  font-size: 0.9rem;
}
.booking-tour-card__places {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-ocean-700);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.booking-tour-card__places-slot {
  display: block;
  min-height: 22px;
}
.booking-tour-card button {
  min-height: 34px;
  font-size: 0.78rem;
}
.booking-tour-card__body > .button {
  align-self: end;
}
.booking-summary {
  position: static;
  border: 1px solid rgba(11, 31, 58, 0.09);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.booking-summary__content {
  padding: 20px;
}
.booking-summary h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}
.booking-summary dl {
  margin: 0;
}
.booking-summary dl > div {
  padding: 12px 0;
  border-top: 1px solid rgba(11, 31, 58, 0.09);
}
.booking-summary dt {
  font-weight: 700;
  font-size: 0.76rem;
}
.booking-summary dd {
  margin: 4px 0 0;
  color: var(--color-text-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}
.booking-summary__total {
  border-top: 1px solid rgba(11, 31, 58, 0.09);
  padding: 16px 0;
  display: grid;
  gap: 4px;
}
.booking-summary__total span {
  font-size: 0.78rem;
  font-weight: 700;
}
.booking-summary__total strong {
  font-size: 1.45rem;
}
.booking-summary__downpayment {
  padding-top: 0;
  border-top: 0;
}
.booking-summary__downpayment span {
  color: var(--color-ocean-700);
}
.booking-summary__downpayment strong {
  font-size: 1.15rem;
}
.booking-summary__total p,
.booking-summary__error {
  margin: 0;
  font-size: 0.74rem;
  color: var(--color-text-soft);
}
.booking-summary__error {
  color: #a33131;
  margin-bottom: 10px;
}
.booking-summary .button {
  width: 100%;
  margin-top: 8px;
  font-size: 0.82rem;
}
.booking-planner__sticky-action {
  display: none;
}
#planner-continue:disabled,
#planner-continue-tours:disabled,
#planner-continue-review:disabled,
#planner-continue-to-payment:disabled,
#planner-submit-booking:disabled,
#planner-sticky-continue:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.booking-netlify-form[hidden],
.booking-netlify-form,
.booking-netlify-form__honeypot[hidden],
.booking-netlify-form__honeypot {
  display: none !important;
}
.booking-planner.is-booking-submitted .booking-progress,
.booking-planner.is-booking-submitted .booking-trip-recap,
.booking-planner.is-booking-submitted .booking-sidebar,
.booking-planner.is-booking-submitted #booking-payment-fields > .booking-planner__step-title,
.booking-planner.is-booking-submitted #booking-payment-fields > .booking-planner__intro,
.booking-planner.is-booking-submitted .booking-planner__sticky-action,
body.is-booking-submitted .booking-header-summary {
  display: none !important;
}
.booking-planner.is-booking-submitted .booking-planner__layout {
  grid-template-columns: 1fr;
}
.booking-planner.is-booking-submitted .booking-details-actions {
  justify-content: flex-end;
}
.booking-success {
  display: grid;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.booking-success[hidden],
#planner-submit-error[hidden] {
  display: none !important;
}
.booking-success__hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.booking-success__check {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-palm-500);
  color: #fff;
}
.booking-success__hero h2 {
  margin: 0 0 4px;
  color: var(--color-ocean-900);
  font-size: 1.45rem;
  line-height: 1.15;
}
.booking-success__thanks {
  margin: 0 0 8px;
  color: var(--color-ocean-900);
  font-size: 0.92rem;
  font-weight: 600;
}
.booking-success__hero p {
  margin: 0 0 6px;
  color: var(--color-text-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}
.booking-success__hero p strong {
  color: var(--color-ocean-900);
  font-weight: 700;
}
.booking-success__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.booking-success__left,
.booking-success__right {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  background: #ffffff;
}
.booking-success__left {
  border-right: 1px solid rgba(11, 31, 58, 0.1);
}
.booking-success__label {
  margin: 0 0 4px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  font-weight: 700;
}
.booking-success__ref-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.booking-success__id {
  margin: 0;
  color: var(--color-ocean-900);
  font-size: 0.92rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.booking-success__copy {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-ocean-700);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.booking-success__copy:focus-visible {
  outline: 2px solid var(--color-gold-500);
  outline-offset: 2px;
}
.booking-success__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 31, 58, 0.1);
}
.booking-success__badge,
.booking-success__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: var(--color-ocean-900);
  font-size: 0.84rem;
  font-weight: 600;
}
.booking-success__badge {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f4e7c8;
  color: #7a5814;
}
.booking-success__right section {
  display: grid;
  gap: 6px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(11, 31, 58, 0.1);
  background: #ffffff;
}
.booking-success__right section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.booking-success__right h3 {
  margin: 0;
  color: var(--color-ocean-900);
  font-size: 0.95rem;
  line-height: 1.25;
}
.booking-success__right p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}
.booking-success__right a,
.booking-success__help a {
  color: var(--color-ocean-700);
  font-size: 0.82rem;
  font-weight: 700;
}
.booking-success__help {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(37, 80, 132, 0.16);
  border-radius: 8px;
  background: #f3f7fc;
}
.booking-success__help-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(22, 52, 94, 0.1);
  color: var(--color-ocean-700);
  font-size: 0.92rem;
  font-weight: 700;
}
.booking-success__help h3 {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-ocean-900);
}
.booking-success__help p {
  margin: 2px 0 0;
  color: var(--color-text-soft);
  font-size: 0.78rem;
}
.booking-continue-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(248, 250, 251, 0.35);
  border-top-color: var(--color-text-inverse);
  border-radius: 50%;
  animation: booking-continue-spin 0.7s linear infinite;
}
@keyframes booking-continue-spin {
  to {
    transform: rotate(360deg);
  }
}
.booking-summary__hint {
  margin: 6px 0 0;
  color: var(--color-ocean-700);
  font-size: 0.6rem;
  line-height: 1.45;
  font-style: italic;
}
.booking-summary__hint.is-over-limit {
  color: #a33131;
}
.booking-summary__itinerary-day {
  display: block;
  margin-top: 4px;
}
#planner-summary-tours {
  white-space: pre-line;
}
.booking-inclusions {
  padding: 14px 0;
  border-top: 1px solid rgba(11, 31, 58, 0.09);
}
.booking-inclusions__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-ocean-900);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  background-color: #e3e3e3;
  padding: 5px 3px;
  border-radius: 5px;
}
.booking-inclusions__toggle span {
  transition: transform var(--duration-fast) var(--easing-standard);
  position: relative;
  top: -5px;
}
.booking-inclusions__toggle[aria-expanded="true"] span {
  transform: rotate(180deg);
  position: relative;
  top: 5px;
}
.booking-inclusions__content {
  display: grid;
  gap: 14px;
  padding-top: 14px;
}
.booking-inclusions h3 {
  margin: 0 0 7px;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.booking-inclusions ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.booking-inclusions li {
  display: flex;
  gap: 7px;
  color: var(--color-text-soft);
  font-size: 0.76rem;
  line-height: 1.4;
}
.booking-inclusions li::before {
  content: "✓";
  color: var(--color-palm-500);
  font-weight: 700;
}
.booking-inclusions__content[hidden] {
  display: none !important;
}
.booking-header-summary {
  display: none;
}
.planner-places-modal__dialog {
  width: min(92vw, 720px);
  max-height: calc(100vh - 32px);
  grid-template-rows: minmax(0, 1fr) auto;
}
.planner-places-modal__dialog .destination-modal__content {
  max-height: none;
  overflow: auto;
  padding: 20px 24px;
}
.planner-places-modal__list {
  margin-top: 8px;
}
.planner-places-modal__list li {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}
.planner-places-modal__list li:last-child {
  border-bottom: 0;
}
.planner-places-modal__list span {
  color: var(--color-text-soft);
}
.planner-places-modal__footer {
  justify-content: center;
  padding: 12px 22px;
}
.planner-places-modal__footer .button {
  min-width: 150px;
}
.planner-image-modal__dialog {
  width: min(92vw, 960px);
  max-height: calc(100vh - 32px);
  grid-template-rows: minmax(0, 1fr) auto;
}
.planner-image-modal__dialog .destination-modal__content {
  padding: 16px 20px;
  overflow: auto;
}
.planner-image-modal__preview {
  min-height: 60vh;
  margin-top: 12px;
  border-radius: var(--radius-sm);
  background: #edf2f7 center/contain no-repeat;
}
.planner-image-modal__preview--qr {
  min-height: min(72vh, 640px);
  background-color: #fff;
}
@media (max-width: 820px) {
  .site-header__inner {
    min-width: 0;
    gap: 8px;
  }
  .site-nav {
    flex: 0 0 auto;
  }
  .site-nav__toggle {
    flex-shrink: 0;
  }
  .booking-planner {
    padding: 14px 14px 96px;
  }
  .booking-progress {
    position: sticky;
    top: 23px;
    z-index: 30;
    margin: 0 -14px 20px;
    padding: 12px 14px;
    overflow: hidden;
    background: #eef4fb;
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  }
  .booking-progress li {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 6px;
    position: relative;
    font-size: 0.62rem;
  }
  .booking-progress li::after {
    position: absolute;
    top: 12px;
    left: calc(50% + 14px);
    right: calc(-50% + 14px);
    width: auto;
    height: 1px;
  }
  .booking-progress b {
    max-width: 100%;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .booking-planner__layout {
    grid-template-columns: 1fr;
  }
  .booking-sidebar {
    position: static;
  }
  .booking-trip-recap {
    margin-bottom: 18px;
    padding: 14px;
    align-items: flex-start;
  }
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
  .booking-form-grid label:last-child {
    grid-column: auto;
  }
  .booking-choice-group {
    display: grid;
    gap: 10px;
  }
  .booking-details-card {
    padding: 14px;
  }
  .booking-details-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
  .booking-details-actions .button {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .booking-success__card {
    grid-template-columns: 1fr;
  }
  .booking-success__left {
    border-right: 0;
    border-bottom: 1px solid rgba(11, 31, 58, 0.1);
  }
  .booking-success__meta,
  .booking-success__help {
    grid-template-columns: 1fr;
  }
  .booking-help {
    margin-top: 4px;
  }
  .booking-planner__form {
    padding: 18px 14px;
  }
  .booking-planner__step-title {
    font-size: 1.55rem;
  }
  .booking-date-fields,
  .booking-travelers,
  .booking-tour-grid,
  .booking-tour-search {
    padding-left: 0;
    padding-right: 0;
  }
  .booking-tour-search__icon {
    left: 12px;
  }
  .booking-tour-grid {
    grid-template-columns: 1fr;
  }
  .booking-tour-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    grid-template-rows: minmax(0, 1fr);
    height: 172px;
  }
  .booking-tour-card__image {
    height: 100%;
    min-height: 126px;
  }
  .booking-summary {
    display: none;
  }
  .booking-summary.is-expanded {
    position: fixed;
    top: 82px;
    right: 12px;
    left: 12px;
    z-index: 39;
    display: block;
    max-height: calc(100vh - 102px);
    overflow: auto;
  }
  .booking-summary__content {
    display: block;
    padding: 16px;
  }
  .booking-summary #planner-retry,
  .booking-summary #planner-continue {
    display: none;
  }
  .booking-header-summary {
    display: inline-flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
    min-height: 40px;
    margin-left: auto;
    margin-right: 4px;
    padding: 0 10px;
    border: 1px solid rgba(11, 31, 58, 0.14);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-ocean-900);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
  }
  .booking-header-summary[aria-expanded="true"] {
    background: var(--color-ocean-700);
    color: #fff;
  }
  .booking-planner__sticky-action {
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 100%;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid rgba(11, 31, 58, 0.12);
    box-shadow: 0 -6px 20px rgba(11, 31, 58, 0.08);
    font-size: 0.78rem;
  }
  .booking-planner__sticky-action > span {
    min-width: 0;
  }
  .booking-planner__sticky-action strong {
    display: block;
    font-size: 1.05rem;
  }
  .booking-planner__sticky-action .button {
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 0.82rem;
    white-space: normal;
    flex-wrap: wrap;
    text-align: center;
  }
}
.booking-downpayment-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(22, 52, 94, 0.12);
  border-radius: 8px;
  background: #eef4fb;
}
.booking-downpayment-panel h3 {
  margin: 0;
  font-size: 0.86rem;
}
.booking-downpayment-panel p {
  margin: 4px 0 0;
  color: var(--color-text-soft);
  font-size: 0.76rem;
}
.booking-downpayment-panel__amount {
  text-align: right;
}
.booking-downpayment-panel__amount strong {
  display: block;
  font-size: 1.45rem;
  color: var(--color-ocean-900);
}
.booking-downpayment-panel__amount small {
  color: var(--color-text-soft);
  font-size: 0.72rem;
}
.booking-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  margin-bottom: 16px;
}
.booking-payment-method {
  max-width: 100%;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid #d5e0ee;
  border-radius: 8px;
  background: #fff;
  color: var(--color-ocean-900);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: normal;
  overflow-wrap: anywhere;
}
.booking-payment-method[aria-selected="true"] {
  border-color: var(--color-ocean-700);
  background: #eaf1fb;
  box-shadow: 0 0 0 2px rgba(22, 52, 94, 0.12);
}
.booking-payment-method:focus-visible {
  outline: 2px solid var(--color-gold-500);
  outline-offset: 2px;
}
#planner-payment-content,
#planner-payment-account {
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}
.booking-payment-account,
.booking-payment-account__body {
  display: grid;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}
.booking-payment-account h3 {
  margin: 0;
  font-size: 0.92rem;
}
.booking-payment-account > p,
.booking-payment-instructions {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.78rem;
  line-height: 1.45;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.booking-payment-qr {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  padding: 14px;
  border: 1px solid #d5e0ee;
  border-radius: 8px;
  background: #fff;
}
.booking-payment-qr img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}
.booking-payment-qr__open {
  display: block;
  width: 100%;
  max-width: 220px;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.booking-payment-qr__open:focus-visible {
  outline: 2px solid var(--color-ocean-700);
  outline-offset: 3px;
}
.booking-payment-qr__hint {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.72rem;
  font-weight: 600;
}
.booking-payment-qr__fallback {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.76rem;
  text-align: center;
}
.booking-payment-detail {
  display: grid;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #d5e0ee;
  border-radius: 8px;
  background: #fff;
}
.booking-payment-detail__value {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}
.booking-payment-detail dt {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.72rem;
  font-weight: 700;
}
.booking-payment-detail dd {
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}
.booking-payment-copy {
  flex: 0 0 auto;
  margin: 0;
  padding: 8px 0 8px 8px;
  border: 0;
  background: none;
  color: var(--color-ocean-700);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}
.booking-payment-copy:focus-visible {
  outline: 2px solid var(--color-gold-500);
  outline-offset: 2px;
}
.booking-upload {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 28px 16px;
  border: 1px dashed #b7c6d8;
  border-radius: 8px;
  background: #f8fbff;
  color: var(--color-text-soft);
  text-align: center;
  cursor: pointer;
}
.booking-upload strong {
  color: var(--color-ocean-900);
  font-size: 0.88rem;
}
.booking-upload span {
  font-size: 0.74rem;
}
.booking-upload.is-invalid,
.booking-payment-methods.is-invalid .booking-payment-method {
  border-color: #b83b3b;
}
.booking-upload-preview {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.booking-upload-preview p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}
.booking-upload-preview img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border: 1px solid #d5e0ee;
  border-radius: 8px;
  background: #edf2f7;
}
.booking-upload-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.booking-field-error {
  grid-row: 3;
  align-self: start;
  margin: 0;
  color: #a33131;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.35;
  overflow: hidden;
}
.booking-upload[hidden],
.booking-upload-preview[hidden],
.booking-payment-error[hidden],
.booking-field-error[hidden],
.button[hidden] {
  display: none !important;
}
.booking-payment-error {
  padding: 18px;
  border: 1px solid rgba(11, 31, 58, 0.09);
  border-radius: 8px;
  background: #fbfdff;
}
.booking-payment-error p {
  margin: 0 0 8px;
  color: var(--color-text-soft);
}
.booking-info-notice,
.booking-warning-notice {
  display: flex;
  gap: 10px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.5;
}
.booking-info-notice {
  background: #e8f1fb;
  color: var(--color-ocean-900);
}
.booking-warning-notice {
  background: #fff6e5;
  color: #6a4b12;
}
.booking-info-notice span,
.booking-warning-notice span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
}
.booking-info-notice span {
  background: var(--color-ocean-700);
  color: #fff;
}
.booking-warning-notice span {
  background: #c98a1a;
  color: #fff;
}
.booking-review-card {
  margin-top: 14px;
}
#planner-dates-section,
#planner-guest-section,
#planner-accommodation-section,
#planner-own-hotel,
#planner-hotel-select,
#planner-pickup-address,
#planner-arrival-section,
#planner-departure-section {
  scroll-margin-top: 118px;
}
@media (max-width: 820px) {
  #planner-dates-section,
  #planner-guest-section,
  #planner-accommodation-section,
  #planner-own-hotel,
  #planner-hotel-select,
  #planner-pickup-address,
  #planner-arrival-section,
  #planner-departure-section {
    scroll-margin-top: 150px;
  }
}
.booking-review-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.booking-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 0;
}
.booking-review-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.booking-review-grid dt {
  color: var(--color-text-soft);
  font-size: 0.72rem;
  font-weight: 700;
}
.booking-review-grid dd {
  margin: 4px 0 0;
  color: var(--color-ocean-900);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}
.booking-review-tours {
  margin-top: 16px;
}
.booking-review-tours h3,
.booking-review-split h3 {
  margin: 0 0 8px;
  font-size: 0.78rem;
}
.booking-review-tours ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.booking-review-tours li {
  display: grid;
  gap: 2px;
}
.booking-review-tours b {
  font-size: 0.76rem;
}
.booking-review-tours span {
  color: var(--color-text-soft);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}
.booking-review-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.booking-review-included,
.booking-review-excluded {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.booking-review-included li,
.booking-review-excluded li {
  display: flex;
  gap: 7px;
  color: var(--color-text-soft);
  font-size: 0.76rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.booking-review-included li::before {
  content: "✓";
  color: var(--color-palm-500);
  font-weight: 700;
}
.booking-review-excluded li::before {
  content: "✕";
  color: #a33131;
  font-weight: 700;
}
.booking-review-totals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.booking-review-totals span {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
}
.booking-review-totals strong {
  display: block;
  margin-top: 4px;
  font-size: 1.45rem;
}
.booking-review-totals small {
  color: var(--color-text-soft);
  font-size: 0.72rem;
}
.booking-review-confirms {
  display: grid;
  gap: 10px;
  margin: 0 0 10px;
}
.booking-review-confirm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--color-ocean-900);
  font-size: 0.82rem;
  line-height: 1.45;
}
.booking-review-confirm input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-ocean-700);
}
.booking-review-confirm a {
  color: var(--color-ocean-700);
  font-weight: 700;
}
@media (max-width: 820px) {
  .booking-downpayment-panel {
    display: grid;
    text-align: left;
  }
  .booking-downpayment-panel__amount {
    text-align: left;
  }
  .booking-review-grid,
  .booking-review-grid--three,
  .booking-review-split,
  .booking-review-totals {
    grid-template-columns: 1fr;
  }
  .booking-review-card__head {
    align-items: center;
  }
}
@media (max-width: 390px) {
  .booking-date-fields,
  .booking-travelers {
    grid-template-columns: 1fr;
  }
  .booking-date-mode,
  .booking-days-field {
    margin-left: 0;
    padding-left: 0;
  }
  .booking-travelers > div {
    grid-template-columns: 1fr auto;
  }
  .booking-progress b {
    font-size: 0.56rem;
  }
}
