:root {
  --flight-blue: #146dcc;
  --flight-blue-dark: #084d9b;
  --flight-ink: #101828;
  --flight-muted: #667085;
  --flight-line: #e4e7ec;
  --flight-danger: #c62828;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--flight-ink);
  background: #f7f9fc;
  font-family: "Poppins", sans-serif;
}

button, input, select { font: inherit; }

.flight-food-page { min-height: 70vh; }

.flight-search-hero {
  --flight-section-side-gap: 20px;
  --flight-content-max-width: 1400px;
  position: relative;
  isolation: isolate;
  width: calc(100% - (var(--flight-section-side-gap) * 2));
  min-height: 470px;
  margin: 82px auto 34px;
  overflow: hidden;
  padding: 78px 30px 76px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 76% 22%, rgba(43, 144, 255, .48), transparent 31%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, .12), transparent 34%),
    linear-gradient(120deg, #071d39 0%, #0c3769 47%, #126cc6 100%);
}

.flight-search-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 16, 34, .76), rgba(4, 26, 54, .5) 52%, rgba(5, 20, 42, .64));
}

.flight-search-hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) contrast(.94) brightness(.78);
  transform: scale(1.015);
  transition: opacity .55s ease;
}
.flight-search-hero__video.is-ready { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .flight-search-hero__video { display: none; }
}

.flight-search-copy {
  width: min(var(--flight-content-max-width), 100%);
  margin: 0 auto 70px;
  color: white;
}

.flight-search-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: #cce4ff;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.flight-search-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
}

.flight-search-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
}

.flight-search-shell {
  width: min(var(--flight-content-max-width), 100%);
  margin: 0 auto;
}

.flight-search-form {
  display: grid;
  grid-template-columns: .9fr 1.15fr 1.08fr 1.4fr 1.08fr 1.12fr;
  align-items: stretch;
  min-height: 104px;
  padding: 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 36px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 54px rgba(1, 18, 40, .26);
}

.flight-search-form[data-step="airline"] { grid-template-columns: .9fr 1.65fr 1.1fr 1.12fr; }
.flight-search-form[data-step="flight"] { grid-template-columns: .9fr 1.15fr 1.2fr 1.08fr 1.12fr; }
.flight-search-form[data-step="airport"] { grid-template-columns: .9fr 1.15fr 1.08fr 1.4fr 1.08fr 1.12fr; }

.flight-fixed-field,
.flight-control-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  margin: 0;
  padding: 9px 20px;
  border-right: 1px solid var(--flight-line);
}

.flight-control-field[hidden] { display: none !important; }
.flight-progressive-field:not([hidden]) { animation: flight-step-reveal .28s ease both; }
@keyframes flight-step-reveal {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.flight-control-field.is-skeleton-loading {
  position: relative;
  min-height: 82px;
  overflow: hidden;
  isolation: isolate;
}
.flight-control-field.is-skeleton-loading > * { visibility: hidden; }
.flight-control-field.is-skeleton-loading::before,
.flight-control-field.is-skeleton-loading::after {
  content: "";
  position: absolute;
  left: 18px;
  z-index: 2;
  border-radius: 999px;
  background: linear-gradient(90deg, #edf1f6 20%, #f8fafc 45%, #e8eef5 70%);
  background-size: 220% 100%;
  animation: flight-skeleton 1.05s ease-in-out infinite;
}
.flight-control-field.is-skeleton-loading::before { top: 24px; width: 42%; height: 9px; }
.flight-control-field.is-skeleton-loading::after { top: 45px; width: calc(100% - 38px); height: 18px; }
@keyframes flight-skeleton { to { background-position: -220% 0; } }

.flight-fixed-field strong {
  overflow: hidden;
  font-size: 1rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flight-field-label {
  color: var(--flight-muted);
  font-size: .78rem;
  font-weight: 500;
}

.flight-select-wrap { position: relative; display: block; min-width: 0; }

.flight-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0 !important;
}

.flight-combobox { position: relative; display: block; min-width: 0; }

.flight-combobox__field-loader {
  position: absolute;
  right: 2px;
  top: 50%;
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid #d0d5dd;
  border-top-color: var(--flight-blue);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
  animation: flight-spin .72s linear infinite;
}

.flight-combobox.is-loading .flight-combobox__field-loader { display: block; }
.flight-combobox.is-loading .flight-combobox__input { padding-right: 30px; cursor: wait; }

.flight-combobox__selected-logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: 27px;
  height: 27px;
  padding: 2px;
  border-radius: 7px;
  background: #fff;
  object-fit: contain;
  transform: translateY(-50%);
}

.flight-combobox.has-logo .flight-combobox__input { padding-left: 35px; }

.flight-combobox__input {
  width: 100%;
  min-width: 0;
  padding: 3px 25px 3px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--flight-ink);
  font-size: .97rem;
  font-weight: 600;
  text-overflow: ellipsis;
}

.flight-combobox__input::placeholder { color: #667085; opacity: 1; }
.flight-combobox.is-disabled .flight-combobox__input { color: #98a2b3; cursor: not-allowed; }
.flight-combobox.is-disabled .flight-combobox__input::placeholder { color: #98a2b3; }

.flight-combobox__menu {
  position: fixed;
  z-index: 2147483000;
  width: min(360px, calc(100vw - 28px));
  max-height: 310px;
  margin-top: 14px;
  padding: 7px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .2);
}

.flight-combobox__option {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #25324b;
  cursor: pointer;
  text-align: left;
}

.flight-combobox__option-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.flight-combobox__option-copy strong {
  overflow: hidden;
  font-size: .88rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flight-combobox__option-copy small {
  margin-top: 1px;
  color: #8490a3;
  font-size: .7rem;
  font-weight: 600;
}

.flight-combobox__logo,
.flight-combobox__logo-fallback {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid #edf0f4;
  border-radius: 9px;
  background: #fff;
  object-fit: contain;
}

.flight-combobox__logo { padding: 3px; }
.flight-combobox__logo-fallback { background: #edf6ff; color: var(--flight-blue-dark); font-size: .7rem; font-weight: 700; }
.flight-combobox__flight-icon,
.flight-combobox__airport-code {
  display: grid;
  min-width: 40px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: #edf6ff;
  color: var(--flight-blue-dark);
  font-size: .72rem;
  font-weight: 700;
}
.flight-combobox__airport-code { padding-inline: 7px; background: #667085; color: #fff; font-size: .78rem; }
.flight-combobox__airport-meta { display: flex; margin-left: auto; flex-direction: column; align-items: flex-end; gap: 3px; white-space: nowrap; }
.flight-combobox__role { color: #667085; font-size: .7rem; font-weight: 600; }
.flight-combobox__time { color: var(--flight-blue-dark); font-size: .72rem; font-weight: 700; }
.flight-combobox__time i { margin-right: 4px; font-size: .66rem; }
.flight-combobox__check { margin-left: auto; color: var(--flight-blue); font-size: .78rem; }

.flight-combobox__option:hover,
.flight-combobox__option.is-active { background: #edf6ff; color: var(--flight-blue-dark); }
.flight-combobox__option.is-selected { background: #e1f0ff; color: var(--flight-blue-dark); font-weight: 700; }
.flight-combobox__empty { display: block; padding: 18px 12px; color: var(--flight-muted); font-size: .84rem; text-align: center; }
.flight-combobox__loading {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
}
.flight-combobox__loading::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 3px solid #dbe7f4;
  border-top-color: var(--flight-blue);
  border-radius: 50%;
  animation: flight-spin .72s linear infinite;
}

.flight-combobox__skeleton { display: grid; min-height: 164px; gap: 9px; padding: 9px 7px; }
.flight-combobox__skeleton-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 42px;
}
.flight-combobox__skeleton-row::before,
.flight-combobox__skeleton-row::after {
  content: "";
  display: block;
  border-radius: 9px;
  background: linear-gradient(90deg, #edf1f6 20%, #f8fafc 45%, #e8eef5 70%);
  background-size: 220% 100%;
  animation: flight-skeleton 1.05s ease-in-out infinite;
}
.flight-combobox__skeleton-row::before { width: 38px; height: 38px; }
.flight-combobox__skeleton-row::after { width: min(82%, 210px); height: 14px; }

.flight-mobile-picker { display: none; }
body.flight-mobile-picker-open { overflow: hidden; }

.flight-select-wrap select,
.flight-date-field input {
  width: 100%;
  min-width: 0;
  padding: 3px 24px 3px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--flight-ink);
  font-size: .97rem;
  font-weight: 600;
}

.flight-select-wrap select {
  appearance: none;
  cursor: pointer;
  text-overflow: ellipsis;
}

.flight-select-wrap i {
  position: absolute;
  right: 2px;
  top: 50%;
  color: #98a2b3;
  font-size: .7rem;
  pointer-events: none;
  transform: translateY(-50%);
}

.flight-select-wrap select:disabled { color: #98a2b3; cursor: not-allowed; }

.flight-date-field { position: relative; cursor: pointer; }
.flight-date-field input { cursor: pointer; padding-right: 27px; }
.flight-date-field__icon {
  position: absolute;
  right: 20px;
  bottom: 19px;
  color: #475467;
  font-size: .92rem;
  pointer-events: none;
}

/* Same calendar treatment used by the homepage order form. */
.flight-food-calendar.flatpickr-calendar {
  z-index: 2147483500;
  overflow: hidden;
  border: 1px solid #ffd4d7;
  border-radius: 16px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 18px 45px rgba(32, 38, 55, .18);
}

.flight-food-calendar .flatpickr-months { padding: 7px 5px 3px; background: #fff5f5; }
.flight-food-calendar .flatpickr-current-month { color: #242938; font-weight: 700; }
.flight-food-calendar .flatpickr-weekdays { background: #fff5f5; }
.flight-food-calendar span.flatpickr-weekday { color: #e51d28; font-weight: 600; }
.flight-food-calendar .flatpickr-day { border-radius: 9px; }
.flight-food-calendar .flatpickr-day:hover { border-color: #ffe0e2; background: #fff0f1; }
.flight-food-calendar .flatpickr-day.selected,
.flight-food-calendar .flatpickr-day.selected:hover { border-color: #ff202b; background: #ff202b; color: #fff; }
.flight-food-calendar .flatpickr-day.today { border-color: #ff7c83; color: #e51d28; font-weight: 700; }
.flight-food-calendar .flatpickr-day.today.selected,
.flight-food-calendar .flatpickr-day.today.selected:hover { border-color: #ff202b; background: #ff202b; color: #fff; }
.flight-food-calendar.arrowTop::before { border-bottom-color: #ffd4d7; }
.flight-food-calendar.arrowTop::after { border-bottom-color: #fff; }
.flight-food-calendar .flatpickr-prev-month,
.flight-food-calendar .flatpickr-next-month { top: 57px; }

.flight-date-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 10px 10px 8px;
  border-bottom: 1px solid #f2e7e8;
  background: #fff;
}

.flight-date-shortcut {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 6px 4px 5px;
  border: 1px solid #f4a900;
  border-radius: 7px;
  background: #fff;
  color: #343434;
  cursor: pointer;
  line-height: 1.05;
}

.flight-date-shortcut strong { font-size: 12px; font-weight: 500; }
.flight-date-shortcut span { margin-top: 2px; font-size: 12px; font-weight: 600; }
.flight-date-shortcut:hover,
.flight-date-shortcut:focus { outline: 0; border-color: #e69d00; background: #fff8e4; }

.flight-search-button {
  position: relative;
  align-self: stretch;
  min-height: 68px;
  padding: 0 22px;
  border: 0;
  border-radius: 27px;
  background: linear-gradient(135deg, var(--flight-blue), var(--flight-blue-dark));
  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(20, 109, 204, .24);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.flight-search-button:hover { transform: translateY(-1px); box-shadow: 0 13px 26px rgba(20, 109, 204, .3); }
.flight-search-button:focus-visible { outline: 3px solid rgba(20, 109, 204, .28); outline-offset: 3px; }
.flight-search-button:disabled { cursor: wait; opacity: .72; transform: none; }
.flight-search-button__label { display: inline-flex; align-items: center; justify-content: center; gap: 9px; }
.flight-search-button__loader { display: none; width: 22px; height: 22px; margin: auto; border: 3px solid rgba(255,255,255,.38); border-top-color: white; border-radius: 50%; animation: flight-spin .72s linear infinite; }
.flight-search-button.is-loading .flight-search-button__label { display: none; }
.flight-search-button.is-loading .flight-search-button__loader { display: block; }

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

.flight-form-message {
  min-height: 22px;
  margin: 10px 20px 0;
  color: #fff;
  font-size: .88rem;
  font-weight: 500;
}

.flight-form-message.is-error {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(116, 11, 11, .76);
}

.flight-how-it-works {
  width: 100%;
  margin: 12px auto 54px;
  padding: 34px;
  border: 1px solid #edf0f4;
  border-radius: 0;
  background: linear-gradient(145deg, #fff 0%, #fff7f7 100%);
  box-shadow: 0 14px 40px rgba(16, 24, 40, .07);
}
.flight-how-it-works__inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.flight-how-it-works h2 { margin: 5px 0 4px; font-size: clamp(1.55rem, 3vw, 2rem); }
.flight-how-it-works__intro { margin: 0 0 25px; color: var(--flight-muted); font-size: .9rem; }
.flight-how-it-works__steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.flight-how-card {
  position: relative;
  display: flex;
  min-height: 225px;
  align-items: center;
  flex-direction: column;
  padding: 26px 22px 22px;
  overflow: hidden;
  border: 2px solid #ffd3d3;
  border-radius: 18px;
  background: linear-gradient(220deg, #ffdede, #fff 65%);
  text-align: center;
  transition: opacity .55s ease, transform .55s ease, box-shadow .25s ease;
}
.flight-how-card--purple { border-color: #efd5f7; background: linear-gradient(220deg, #f5e1fb, #fff 65%); }
.flight-how-card:not(.is-in-view) { opacity: 0; transform: translateY(24px); }
.flight-how-card.is-in-view { opacity: 1; transform: translateY(0); }
.flight-how-card.is-in-view:hover { transform: translateY(-6px); box-shadow: 0 14px 28px rgba(16, 24, 40, .1); }
.flight-how-card__icon { display: grid; width: 76px; height: 76px; margin-bottom: 14px; place-items: center; }
.flight-how-card__icon img { width: 66px; height: 66px; object-fit: contain; }
.flight-how-card h3 { margin: 0 0 8px; color: #172033; font-size: 1rem; }
.flight-how-card p { margin: 0; color: #667085; font-size: .79rem; line-height: 1.55; }

.flight-top-routes {
  position: relative;
  width: 100%;
  margin: 0 auto 60px;
  overflow: hidden;
  border-radius: 0;
  background: #f1f7ff;
}
.flight-top-routes::before {
  content: "";
  position: absolute;
  inset: 22px 8%;
  background: #dce9fa;
  -webkit-mask: url("https://upload.wikimedia.org/wikipedia/commons/8/8e/BlankMap_World_simple.svg") center / contain no-repeat;
  mask: url("https://upload.wikimedia.org/wikipedia/commons/8/8e/BlankMap_World_simple.svg") center / contain no-repeat;
  opacity: .72;
  pointer-events: none;
}
.flight-top-routes__inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 44px 36px 48px; }
.flight-top-routes h2 { margin: 0 0 34px; color: #172033; font-size: clamp(1.55rem, 3vw, 2rem); }
.flight-top-routes__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 58px; row-gap: 48px; }
.flight-route-card { display: flex; min-width: 0; align-items: center; gap: 17px; }
.flight-route-card img {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 15px;
  background: #dcecff;
  object-fit: cover;
  box-shadow: 0 7px 18px rgba(13, 71, 135, .12);
}
.flight-route-card div { min-width: 0; }
.flight-route-card h3 { margin: 0 0 6px; color: #0751ad; font-size: 1rem; font-weight: 600; }
.flight-route-card p { margin: 0; color: #0b54b0; font-size: .86rem; line-height: 1.55; }

.flight-service-airports {
  width: 100%;
  margin: 0 auto 60px;
  padding: 46px 28px 42px;
  background: linear-gradient(180deg, #fff 0%, #fff5f5 100%);
  text-align: center;
}
.flight-service-airports__inner { max-width: 1180px; margin: 0 auto; }
.flight-service-airports h2 { margin: 0; color: #d71f2b; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.flight-service-airports__inner > p { margin: 7px 0 28px; color: #a32932; font-size: .92rem; }
.flight-service-airports__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.flight-service-airport {
  display: flex;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid #f2d7da;
  border-radius: 13px;
  background: #fff;
  color: #9f222b;
  font-size: .88rem;
  font-weight: 600;
  text-align: left;
  box-shadow: 0 5px 15px rgba(159, 34, 43, .06);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.flight-service-airport i { display: grid; width: 27px; height: 27px; flex: 0 0 27px; place-items: center; border-radius: 8px; background: #fff0f1; color: #e22632; font-size: .72rem; }
.flight-service-airport:hover { border-color: #ee9ca2; transform: translateY(-2px); box-shadow: 0 9px 19px rgba(159, 34, 43, .12); }
.flight-service-airport:nth-child(n + 17) { display: none; }
.flight-service-airports.is-expanded .flight-service-airport { display: flex; }
.flight-service-airports__toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 19px 10px 22px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24), 0 3px 7px rgba(0, 0, 0, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.flight-service-airports__toggle:hover { background: #d71f2b; border-color: #d71f2b; transform: translateY(-2px); box-shadow: 0 13px 28px rgba(170, 25, 35, .28), 0 4px 9px rgba(0, 0, 0, .15); }
.flight-service-airports__toggle:active { transform: translateY(0); }
.flight-service-airports__arrows { display: grid; width: 12px; line-height: 0; }
.flight-service-airports__arrows i { height: 5px; color: #ff4b55; font-size: .58rem; animation: flight-airport-arrow 1.25s ease-in-out infinite; }
.flight-service-airports__arrows i:nth-child(2) { animation-delay: .14s; }
.flight-service-airports__arrows i:nth-child(3) { animation-delay: .28s; }
.flight-service-airports.is-expanded .flight-service-airports__arrows { transform: rotate(180deg); }
@keyframes flight-airport-arrow {
  0%, 70%, 100% { opacity: .3; transform: translateY(-1px); }
  35% { opacity: 1; transform: translateY(1px); }
}
@media (prefers-reduced-motion: reduce) {
  .flight-service-airports__arrows i { animation: none; opacity: 1; }
}

.flight-results {
  width: min(1180px, calc(100% - 40px));
  margin: 46px auto 70px;
}

.flight-results__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.flight-results__eyebrow { color: var(--flight-blue); font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.flight-results h2 { margin: 5px 0 0; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.flight-results__heading p { margin: 0; color: var(--flight-muted); text-align: right; }

.flight-restaurant-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

.flight-restaurant-card {
  padding: 22px;
  border: 1px solid #eaecf0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, .06);
}

.flight-restaurant-card__icon { display: grid; width: 44px; height: 44px; margin-bottom: 17px; place-items: center; border-radius: 13px; background: #eaf4ff; color: var(--flight-blue); font-size: 1.1rem; }
.flight-restaurant-card h3 { margin: 0; font-size: 1.05rem; }
.flight-restaurant-card__type { margin: 5px 0 18px; color: var(--flight-muted); font-size: .85rem; }
.flight-restaurant-card__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.flight-restaurant-card__meta span { padding: 6px 9px; border-radius: 8px; background: #f2f4f7; color: #344054; font-size: .76rem; font-weight: 500; }
.flight-restaurant-card__order {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 17px;
  border: 0;
  border-radius: 10px;
  background: var(--flight-blue);
  color: #fff;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 700;
}
.flight-restaurant-card__order:hover { background: var(--flight-blue-dark); }
.flight-restaurant-card__order:disabled { cursor: wait; opacity: .7; }

.flight-empty-state {
  grid-column: 1 / -1;
  padding: 48px 24px;
  border: 1px dashed #cfd6df;
  border-radius: 18px;
  background: #fff;
  text-align: center;
}

.flight-empty-state i { margin-bottom: 13px; color: var(--flight-blue); font-size: 1.8rem; }
.flight-empty-state h3 { margin: 0 0 7px; font-size: 1.08rem; }
.flight-empty-state p { max-width: 520px; margin: 0 auto; color: var(--flight-muted); font-size: .9rem; }

@media (max-width: 1100px) {
  .flight-search-hero { --flight-section-side-gap: 14px; }
  .flight-search-hero { padding-inline: 20px; }
  .flight-search-copy { margin-bottom: 42px; }
  .flight-search-form,
  .flight-search-form[data-step="airline"],
  .flight-search-form[data-step="flight"],
  .flight-search-form[data-step="airport"] { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 16px; border-radius: 24px; }
  .flight-fixed-field, .flight-control-field { min-height: 76px; padding: 10px 14px; border: 1px solid var(--flight-line); border-radius: 13px; }
  .flight-search-button { min-height: 76px; border-radius: 13px; }
}

@media (max-width: 760px) {
  .flight-search-hero { --flight-section-side-gap: 6px; min-height: auto; margin-top: 72px; border-radius: 20px; padding: 34px 10px 30px; }
  .flight-search-copy { margin-bottom: 24px; padding-inline: 2px; }
  .flight-search-copy h1 { font-size: 1.72rem; line-height: 1.16; }
  .flight-search-copy p { margin-top: 8px; font-size: .78rem; line-height: 1.5; }
  .flight-search-form,
  .flight-search-form[data-step="airline"],
  .flight-search-form[data-step="flight"],
  .flight-search-form[data-step="airport"] {
    gap: 8px;
    padding: 10px;
    overflow: visible;
    border: 1px solid rgba(212, 225, 241, .85);
    border-radius: 17px;
    background: #eff6fd;
    box-shadow: 0 14px 30px rgba(1, 18, 40, .2);
  }
  .flight-search-form,
  .flight-search-form[data-step="airline"] { grid-template-columns: 1fr; }
  .flight-search-form[data-step="flight"],
  .flight-search-form[data-step="airport"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #flight-airline-field,
  .flight-search-button { grid-column: 1 / -1; }
  .flight-search-form[data-step="airport"] .flight-date-field { grid-column: 1 / -1; }
  .flight-fixed-field, .flight-control-field { min-height: 62px; padding: 8px 10px; border: 1px solid #e1e9f3; border-radius: 11px; background: #fff; }
  .flight-search-button { min-height: 54px; border-radius: 15px; box-shadow: none; }
  .flight-field-label { font-size: .64rem; }
  .flight-combobox__input,
  .flight-date-field input { font-size: .82rem; }
  .flight-control-field.is-skeleton-loading { min-height: 62px; }
  .flight-control-field.is-skeleton-loading::before { top: 16px; height: 7px; }
  .flight-control-field.is-skeleton-loading::after { top: 35px; height: 14px; }
  .flight-fixed-field { display: none; }
  .flight-search-button { margin-top: 3px; }
  .flight-form-message { width: calc(100% - 8px); margin: 10px 4px 0; font-size: .72rem; line-height: 1.45; }
  .flight-form-message.is-error { display: block; padding: 9px 11px; border: 1px solid rgba(254, 205, 211, .82); border-radius: 11px; background: rgba(255, 241, 242, .94); color: #9f1239; box-shadow: none; }
  .flight-results { width: min(100% - 28px, 1180px); margin-top: 34px; }
  .flight-results__heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .flight-results__heading p { text-align: left; }
  .flight-restaurant-grid { grid-template-columns: 1fr; }
  .flight-how-it-works { width: 100%; margin: 4px auto 36px; padding: 24px 12px; border-radius: 0; }
  .flight-how-it-works__intro { margin-bottom: 18px; }
  .flight-how-it-works__steps { grid-template-columns: 1fr; gap: 13px; }
  .flight-how-card { min-height: 0; align-items: center; flex-direction: row; gap: 14px; padding: 17px 15px; text-align: left; }
  .flight-how-card__icon { width: 58px; height: 58px; flex: 0 0 58px; margin: 0; }
  .flight-how-card__icon img { width: 50px; height: 50px; }
  .flight-how-card h3 { font-size: .96rem; }
  .flight-how-card p { font-size: .75rem; }
  .flight-top-routes { width: 100%; margin-bottom: 38px; border-radius: 0; }
  .flight-top-routes::before {
    inset: 6% -35%;
    -webkit-mask-size: cover;
    mask-size: cover;
    opacity: .45;
  }
  .flight-top-routes__inner { padding: 26px 16px 30px; }
  .flight-top-routes h2 { margin-bottom: 22px; text-align: center; }
  .flight-top-routes__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .flight-route-card { align-items: flex-start; gap: 8px; padding: 9px; border: 1px solid rgba(170, 199, 232, .55); border-radius: 13px; background: rgba(255,255,255,.72); }
  .flight-route-card:nth-child(n + 7) { display: none; }
  .flight-route-card img { width: 50px; height: 50px; flex-basis: 50px; border-radius: 10px; }
  .flight-route-card h3 { margin-bottom: 2px; font-size: .82rem; line-height: 1.25; }
  .flight-route-card p { display: -webkit-box; overflow: hidden; font-size: .65rem; line-height: 1.38; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .flight-service-airports { margin-bottom: 38px; padding: 32px 12px 30px; }
  .flight-service-airports__inner > p { margin-bottom: 20px; }
  .flight-service-airports__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .flight-service-airport { min-height: 46px; gap: 7px; padding: 9px 10px; border-radius: 11px; font-size: .73rem; }
  .flight-service-airport i { width: 24px; height: 24px; flex-basis: 24px; font-size: .62rem; }
  .flight-service-airport:nth-child(n + 13) { display: none; }
  .flight-service-airports.is-expanded .flight-service-airport { display: flex; }
  .flight-service-airports__toggle { margin-top: 19px; }

  .flight-mobile-picker:not([hidden]) {
    position: fixed;
    z-index: 2147483640;
    inset: 0;
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
    padding-top: env(safe-area-inset-top);
    background: #fff;
    color: #101828;
  }

  .flight-mobile-picker__header {
    display: flex;
    min-height: 62px;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    border-bottom: 1px solid #eaecf0;
    background: #fff;
    box-shadow: 0 2px 7px rgba(16, 24, 40, .12);
  }

  .flight-mobile-picker__back {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #344054;
    cursor: pointer;
    font-size: 1.15rem;
  }

  .flight-mobile-picker__back:active { background: #f2f4f7; }
  .flight-mobile-picker__title { font-size: 1.08rem; font-weight: 700; }

  .flight-mobile-picker__search-shell {
    flex: 0 0 auto;
    padding: 10px 12px;
    background: #e4e7ec;
  }

  .flight-mobile-picker__search {
    display: flex;
    height: 52px;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #fff;
    color: #98a2b3;
  }

  .flight-mobile-picker__search:focus-within {
    border-color: var(--flight-blue);
    box-shadow: 0 0 0 3px rgba(20, 109, 204, .12);
  }

  .flight-mobile-picker__input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #101828;
    font: inherit;
    font-size: 1rem;
  }

  .flight-mobile-picker__input::-webkit-search-cancel-button { cursor: pointer; }

  .flight-mobile-picker__section-title {
    flex: 0 0 auto;
    padding: 17px 18px 8px;
    color: #d92d20;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
  }

  .flight-mobile-picker__body {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .flight-mobile-picker__body .flight-combobox__menu {
    position: static;
    display: block;
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 0 12px calc(16px + env(safe-area-inset-bottom));
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .flight-mobile-picker__body .flight-combobox__option {
    min-height: 68px;
    gap: 12px;
    padding: 10px 6px;
    border-bottom: 1px solid #f2f4f7;
    border-radius: 0;
  }

  .flight-mobile-picker__body .flight-combobox__option:hover,
  .flight-mobile-picker__body .flight-combobox__option.is-active,
  .flight-mobile-picker__body .flight-combobox__option.is-selected { border-radius: 9px; }

  .flight-mobile-picker__body .flight-combobox__logo,
  .flight-mobile-picker__body .flight-combobox__logo-fallback,
  .flight-mobile-picker__body .flight-combobox__flight-icon { width: 40px; height: 40px; flex-basis: 40px; }

  .flight-mobile-picker__body .flight-combobox__airport-code { min-width: 48px; height: 36px; font-size: .85rem; }
  .flight-mobile-picker__body .flight-combobox__option-copy strong { font-size: .95rem; }
  .flight-mobile-picker__body .flight-combobox__option-copy small { margin-top: 3px; font-size: .76rem; }
  .flight-mobile-picker__body .flight-combobox__empty { padding-block: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .flight-search-button { transition: none; }
  .flight-search-button__loader { animation-duration: 1.4s; }
}
