﻿@font-face {
  font-family: 'Elms Sans';
  src: url('/fonts/ElmsSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Logged-in mobile customer dock */
.mobile-customer-dock {
  display: none;
}

.mobile-customer-dock[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  body.has-mobile-customer-dock {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  body.has-mobile-customer-dock .ai-floating-launcher {
    display: none !important;
  }

  body.has-mobile-customer-dock .hotel-booking-bottom-bar,
  body.has-mobile-customer-dock .bus-step-bottom {
    bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .mobile-customer-dock.is-visible {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 980;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding: 8px max(8px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-right));
    border-top: 1px solid rgba(173, 211, 237, 0.78);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -16px 36px rgba(17, 45, 92, 0.16);
    backdrop-filter: blur(18px);
  }

  .mobile-customer-dock a,
  .mobile-customer-dock button {
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    min-width: 0;
    min-height: 52px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: #5f6b82;
    font: inherit;
    font-size: 0.67rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  }

  .mobile-customer-dock a:focus-visible,
  .mobile-customer-dock button:focus-visible {
    outline: 2px solid rgba(74, 166, 224, 0.65);
    outline-offset: 2px;
  }

  .mobile-customer-dock a.is-active,
  .mobile-customer-dock button.is-active,
  .mobile-customer-dock a:hover,
  .mobile-customer-dock button:hover {
    background: linear-gradient(135deg, rgba(74, 166, 224, 0.14), rgba(23, 28, 73, 0.08));
    color: var(--brand-navy);
  }

  .mobile-customer-dock__icon {
    display: inline-flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary-deep);
  }

  .mobile-customer-dock__icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-customer-dock__icon--brand {
    width: 25px;
    height: 25px;
    padding: 3px;
    border-radius: 50%;
    background: #eff8ff;
    box-shadow: inset 0 0 0 1px rgba(74, 166, 224, 0.26);
  }

  .mobile-customer-dock__icon--brand img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (min-width: 721px) {
  .mobile-customer-dock {
    display: none !important;
  }
}

/* Simple blog index used by the logged-in mobile dock */
.blog-index-page {
  background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 48%);
}

.blog-index-hero {
  padding: clamp(34px, 6vw, 78px) 0 26px;
}

.blog-index-hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--brand-navy);
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.blog-index-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: #526078;
  font-size: 0.98rem;
  line-height: 1.7;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(52px, 8vw, 86px);
}

.blog-index-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(173, 211, 237, 0.68);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(17, 45, 92, 0.08);
}

.blog-index-card span {
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eaf6fd;
  color: var(--brand-primary-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-index-card h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1.08rem;
  line-height: 1.35;
}

.blog-index-card p {
  margin: 0;
  color: #5d6880;
  font-size: 0.91rem;
  line-height: 1.62;
}

.blog-index-card a {
  margin-top: auto;
  color: var(--brand-primary-deep);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 980px) {
  .blog-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-index-hero {
    padding: 28px 0 18px;
  }

  .blog-index-hero h1 {
    font-size: 1.72rem;
  }

  .blog-index-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-index-card {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
  }
}

@font-face {
  font-family: 'Elms Sans';
  src: url('/fonts/ElmsSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Elms Sans';
  src: url('/fonts/ElmsSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Elms Sans';
  src: url('/fonts/ElmsSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Elms Sans';
  src: url('/fonts/ElmsSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Elms Sans';
  src: url('/fonts/ElmsSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Elms Sans';
  src: url('/fonts/ElmsSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Elms Sans';
  src: url('/fonts/ElmsSans-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-primary: #55b7ea;
  --brand-primary-deep: #2f93cb;
  --brand-navy: #171c49;
  --brand-ink: #202543;
  --brand-surface: #f4f8fc;
  --brand-gold: #d8b36b;
  --brand-white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(23, 28, 73, 0.08);
  --shadow-card: 0 12px 32px rgba(23, 28, 73, 0.09);
  --border-soft: 1px solid rgba(23, 28, 73, 0.08);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --font-primary: 'Open Sans', Arial, 'Khmer OS Battambang', 'Noto Sans Khmer', sans-serif;
  --font-search: var(--font-primary);
  --font-khmer: 'Elms Sans', 'Khmer UI', 'Khmer OS Battambang', 'Noto Sans Khmer', 'DaunPenh', 'MoolBoran', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--brand-ink);
  background:
    radial-gradient(circle at top left, rgba(85, 183, 234, 0.14), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

body *,
body *::before,
body *::after {
  font-family: var(--font-primary) !important;
}

.ai-booking-card,
.ai-booking-card *,
.ai-booking-card *::before,
.ai-booking-card *::after,
.airport-suggestions,
.airport-suggestions *,
.hotel-city-suggestions,
.hotel-city-suggestions *,
.ai-calendar,
.ai-calendar *,
.booking-tabs,
.booking-tabs *,
.booking-form,
.booking-form *,
.passenger-menu,
.passenger-menu * {
  font-family: var(--font-search) !important;
}

html:lang(km) body,
html:lang(km) body *,
html:lang(km) body *::before,
html:lang(km) body *::after,
[lang='km'],
[lang='km'] * {
  font-family: var(--font-khmer) !important;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.tc-brand-name {
  --tc-brand-travel: var(--brand-navy);
  --tc-brand-connecter: #1267f1;
  --tc-brand-shadow: none;
  color: inherit;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.tc-brand-word {
  letter-spacing: 0;
}

.tc-brand-word--travel {
  color: var(--tc-brand-travel);
  text-shadow: var(--tc-brand-shadow);
}

.tc-brand-word--connecter {
  color: var(--tc-brand-connecter);
  text-shadow: var(--tc-brand-shadow);
}

.ai-chat-card__header .tc-brand-name,
.customer-auth-card__intro .tc-brand-name,
.advisory-strip .tc-brand-name,
.result-hero .tc-brand-name {
  --tc-brand-travel: #ffffff;
  --tc-brand-connecter: var(--brand-primary);
  --tc-brand-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.site-footer--global .tc-brand-name,
.customer-auth-card__body .tc-brand-name,
.ai-chat-message p .tc-brand-name,
.footer-editorial .tc-brand-name,
.footer-account-card .tc-brand-name {
  --tc-brand-travel: var(--brand-navy);
  --tc-brand-connecter: #1267f1;
  --tc-brand-shadow: none;
}

input,
select,
textarea,
button {
  font: inherit;
}

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-primary-deep);
}

.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: var(--brand-white);
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.button--ghost {
  background: transparent;
  color: var(--brand-navy);
  border: 1px solid rgba(23, 28, 73, 0.16);
  box-shadow: none;
}

.button--full {
  width: 100%;
}

.main-nav__inner,
.support-band__inner,
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: var(--border-soft);
}

.main-nav__inner {
  min-height: 58px;
}

.main-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  position: relative;
}

.nav-customer {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-signin {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(173, 211, 237, 0.86);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
  color: var(--brand-navy);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(47, 147, 203, 0.12);
  cursor: pointer;
}

.nav-signin.is-visible {
  display: inline-flex;
}

.nav-signin:hover,
.nav-signin:focus-visible {
  border-color: rgba(85, 183, 234, 0.9);
  outline: none;
  box-shadow: 0 16px 32px rgba(47, 147, 203, 0.2);
}

.nav-customer[hidden] {
  display: none !important;
}

.nav-customer__trigger {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(85, 183, 234, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
  box-shadow: 0 12px 28px rgba(47, 147, 203, 0.15);
  cursor: pointer;
}

.nav-customer__trigger:focus-visible {
  outline: 3px solid rgba(85, 183, 234, 0.28);
  outline-offset: 3px;
}

.nav-customer__avatar {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-primary-deep));
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  overflow: hidden;
}

.nav-customer__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-customer__avatar--large {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  font-size: 1rem;
  box-shadow: 0 14px 28px rgba(47, 147, 203, 0.22);
}

.nav-customer__pulse {
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #35c789;
}

.nav-customer__panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 80;
  width: min(320px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid rgba(173, 211, 237, 0.78);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
  box-shadow: 0 24px 70px rgba(19, 23, 56, 0.2);
}

.nav-customer__panel::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 16px;
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(173, 211, 237, 0.78);
  border-top: 1px solid rgba(173, 211, 237, 0.78);
  background: #ffffff;
  transform: rotate(45deg);
}

.nav-customer__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 4px 14px;
  border-bottom: 1px solid rgba(23, 28, 73, 0.08);
}

.nav-customer__head strong,
.nav-customer__head small {
  display: block;
  min-width: 0;
}

.nav-customer__head strong {
  color: var(--brand-navy);
  font-size: 1rem;
  line-height: 1.25;
}

.nav-customer__head small {
  max-width: 210px;
  overflow: hidden;
  color: #64718a;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-customer__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 0;
}

.nav-customer__meta span {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(173, 211, 237, 0.7);
  border-radius: 14px;
  background: #ffffff;
}

.nav-customer__meta b {
  color: #6a7590;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-customer__meta em {
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-customer__actions {
  display: grid;
  gap: 8px;
}

.nav-customer__actions .button {
  min-height: 40px;
  border-color: rgba(85, 183, 234, 0.34);
  color: var(--brand-navy);
  font-size: 0.86rem;
}

@media (max-width: 720px) {
  .main-nav {
    z-index: 120;
  }

  .main-nav__inner {
    gap: 8px;
  }

  .main-nav__actions {
    gap: 6px;
  }

  .brand img {
    width: clamp(96px, 27vw, 132px);
    height: 48px;
  }

  .booking-mode-tabs--nav {
    padding: 3px;
  }

  .booking-mode-tabs--nav button {
    min-height: 30px;
    padding: 0 9px;
    font-size: 0.68rem;
  }

  .nav-customer__trigger {
    width: 36px;
    height: 36px;
  }

  .nav-customer__avatar {
    width: 29px;
    height: 29px;
    font-size: 0.68rem;
  }

  .nav-customer__avatar--large {
    width: 48px;
    height: 48px;
    font-size: 0.94rem;
  }

  .nav-customer__pulse {
    right: 0;
    bottom: 1px;
    width: 9px;
    height: 9px;
  }

  .nav-customer__panel {
    position: fixed;
    top: 64px;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
    border-radius: 20px;
  }

  .nav-customer__panel::before {
    right: 22px;
  }

  .nav-signin {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.72rem;
  }
}

/* Final calm-weight pass after all service-specific styles. */
h1,
.hero__content h1,
.detail-hero h1,
.visa-result-hero h1,
.transport-results-hero h1,
.contact-hero-panel h1,
.customer-profile-hero h1,
.static-page-hero h1,
.service-detail-hero h1,
.flight-results-headline h1 {
  max-width: 920px;
  font-size: clamp(1.28rem, 1.72vw, 1.72rem) !important;
  font-weight: 600 !important;
  line-height: 1.24 !important;
}

.contact-hero-panel h1,
.customer-auth-card__intro h2,
.footer-modern__brand h2,
.footer-editorial__start h2 {
  font-size: clamp(1.22rem, 1.48vw, 1.56rem) !important;
  font-weight: 600 !important;
}

h2,
h3,
h4,
.section-heading h2,
.section-header h2,
.home-section h2,
.contact-form-panel__header h2,
.customer-profile-card__head h2,
.activity-card h3,
.holiday-card h3,
.bus-option-card h2,
.transport-result-card h2,
.hotel-result-card h2,
.visa-result-card h2,
.flight-offer-card__airline h2 {
  font-size: clamp(0.96rem, 1.22vw, 1.28rem) !important;
  font-weight: 600 !important;
}

.flight-offer-card__point strong,
.flight-offer-card__point span,
.flight-offer-card__price strong,
.bus-option-card strong,
.transport-result-card strong,
.hotel-result-card strong,
.visa-result-card strong {
  font-weight: 600 !important;
}

.flight-offer-card__airline p,
.flight-offer-card__point small,
.flight-offer-card__mobile-kpis span,
.flight-offer-card__mobile-kpis strong,
.bus-option-card p,
.transport-result-card p,
.hotel-result-card p,
.visa-result-card p {
  font-weight: 400 !important;
}

.button,
button,
.nav-signin,
.booking-mode-tabs button,
.ai-booking-tabs button,
.ai-booking-tabs a,
.ai-search-btn,
.ai-chat-send,
.flight-offer-card__cta,
.results-request-strip [data-results-edit-toggle],
.transport-request-bar [data-results-edit-toggle],
.bus-modify-button,
.bus-view-seats,
.bus-primary-action {
  font-weight: 600 !important;
}

.flash,
.customer-profile-flash,
.customer-auth-notice,
.flight-route-error,
.transport-form-error,
.passport-scan-panel__status {
  font-weight: 400 !important;
}

.flash strong,
.customer-profile-flash strong,
.customer-auth-notice strong,
.flight-route-error strong,
.transport-form-error strong,
.passport-scan-panel__status strong {
  font-weight: 600 !important;
}

@media (max-width: 720px) {
  h1,
  .hero__content h1,
  .detail-hero h1,
  .visa-result-hero h1,
  .transport-results-hero h1,
  .contact-hero-panel h1,
  .customer-profile-hero h1,
  .static-page-hero h1,
  .service-detail-hero h1,
  .flight-results-headline h1 {
    font-size: 1.12rem !important;
    font-weight: 600 !important;
    line-height: 1.28 !important;
  }

  h2,
  h3,
  h4,
  .section-heading h2,
  .section-header h2,
  .home-section h2,
  .contact-form-panel__header h2,
  .customer-profile-card__head h2,
  .activity-card h3,
  .holiday-card h3,
  .bus-option-card h2,
  .transport-result-card h2,
  .hotel-result-card h2,
  .visa-result-card h2 {
    font-size: 0.96rem !important;
    font-weight: 600 !important;
  }

  .contact-hero-panel h1 {
    font-size: 1.06rem !important;
  }

  .button,
  button,
  .nav-signin,
  .booking-mode-tabs button,
  .ai-booking-tabs button,
  .ai-booking-tabs a,
  .ai-search-btn,
  .ai-chat-send,
  .flight-offer-card__cta,
  .results-request-strip [data-results-edit-toggle],
  .transport-request-bar [data-results-edit-toggle] {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
  }

  .ai-chat-message p,
  .ai-chat-message__body,
  .global-ai-chat .ai-chat-message p,
  .global-ai-chat .ai-chat-message__body {
    font-size: 0.8rem !important;
  }

  .booking-mode-tabs--nav button {
    font-size: 0.56rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
  }

  .nav-signin {
    font-size: 0.66rem !important;
    font-weight: 600 !important;
  }
}

.customer-profile-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(85, 183, 234, 0.16), transparent 24%),
    linear-gradient(180deg, #f6fbff 0%, #eef7fe 46%, #ffffff 100%);
  overflow-x: hidden;
  padding-bottom: 54px;
}

.customer-profile-hero {
  border-bottom: 1px solid rgba(173, 211, 237, 0.56);
  background:
    linear-gradient(135deg, rgba(23, 28, 73, 0.96), rgba(48, 74, 155, 0.92)),
    var(--brand-navy);
  color: #ffffff;
}

.customer-profile-hero__inner {
  min-height: 178px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0 36px;
}

.customer-profile-hero .eyebrow {
  color: var(--brand-primary);
}

.customer-profile-hero h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.58rem, 2.55vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.customer-profile-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.62;
}

.customer-profile-hero__support {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 13px 20px;
  color: #ffffff;
  font-weight: 800;
}

.customer-profile-shell {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: -42px;
}

.customer-profile-main {
  display: grid;
  gap: 22px;
}

.customer-profile-shell > .flash {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

.customer-profile-flash {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

.customer-profile-card {
  position: relative;
  border: 1px solid rgba(173, 211, 237, 0.76);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96));
  box-shadow: 0 22px 60px rgba(23, 28, 73, 0.09);
  padding: 22px;
}

.customer-profile-card--identity {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 16px;
}

.customer-profile-avatar {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85, 183, 234, 0.34);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-primary-deep));
  box-shadow: 0 18px 34px rgba(47, 147, 203, 0.2);
  overflow: hidden;
}

.customer-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-profile-avatar span {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
}

.customer-profile-card--identity h2,
.customer-profile-card__head h2 {
  margin: 0;
  color: var(--brand-navy);
  line-height: 1.18;
  letter-spacing: 0;
}

.customer-profile-card--identity h2 {
  font-size: 1.34rem;
}

.customer-profile-card--identity p {
  margin: 4px 0 0;
  color: #61708c;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.customer-profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.customer-profile-facts div {
  display: grid;
  gap: 3px;
  min-height: 62px;
  border: 1px solid rgba(173, 211, 237, 0.68);
  border-radius: 16px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.82);
}

.customer-profile-facts dt {
  color: #6d7891;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-profile-facts dd {
  margin: 0;
  color: var(--brand-navy);
  font-size: 0.9rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.customer-profile-photo,
.customer-profile-form {
  display: grid;
  gap: 14px;
}

.customer-profile-photo label,
.customer-profile-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.customer-profile-photo label span,
.customer-profile-form label span {
  color: #5f6984;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-profile-photo input,
.customer-profile-form input,
.customer-profile-form textarea,
.customer-profile-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(205, 223, 239, 0.98);
  border-radius: 15px;
  background: #ffffff;
  color: var(--brand-navy);
  padding: 12px 14px;
  font-size: 0.94rem;
  outline: 0;
}

.customer-profile-photo input[type='file'] {
  padding: 8px;
  color: #61708c;
}

.customer-profile-photo input[type='file']::file-selector-button {
  min-height: 34px;
  margin-right: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.14);
  color: var(--brand-navy);
  padding: 0 13px;
  font-weight: 900;
  cursor: pointer;
}

.customer-profile-form textarea {
  min-height: 112px;
  resize: vertical;
}

.customer-profile-form input:focus,
.customer-profile-form textarea:focus,
.customer-profile-form select:focus {
  border-color: rgba(85, 183, 234, 0.8);
  box-shadow: 0 0 0 4px rgba(85, 183, 234, 0.14);
}

.customer-profile-form input[readonly] {
  background: #f6f9fd;
  color: #5f6984;
}

.customer-profile-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-profile-form--compact {
  padding: 16px;
  border: 1px solid rgba(173, 211, 237, 0.58);
  border-radius: 20px;
  background: rgba(248, 252, 255, 0.82);
}

.profile-form-field--wide,
.customer-profile-form .button,
.customer-profile-form .customer-profile-record__actions,
.customer-profile-document {
  grid-column: 1 / -1;
}

.customer-profile-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.customer-profile-card__head .eyebrow {
  margin-bottom: 7px;
}

.customer-profile-card__head h2 {
  font-size: clamp(1.1rem, 1.32vw, 1.38rem);
  line-height: 1.22;
}

.customer-profile-save-indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px 0 10px;
  border: 1px solid rgba(85, 183, 234, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(85, 183, 234, 0.14), rgba(255, 255, 255, 0.96));
  color: var(--brand-primary-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(47, 147, 203, 0.14);
}

.customer-profile-save-indicator i {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
}

.customer-profile-save-indicator i::before {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.customer-profile-save-indicator--floating {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.customer-profile-count {
  flex: 0 0 auto;
  border: 1px solid rgba(85, 183, 234, 0.3);
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.12);
  color: var(--brand-primary-deep);
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 900;
}

.passport-scan-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(85, 183, 234, 0.28);
  border-radius: 20px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(85, 183, 234, 0.14), rgba(255, 255, 255, 0.92));
}

.passport-scan-panel strong {
  color: var(--brand-navy);
  font-size: 1.02rem;
  font-weight: 900;
}

.passport-scan-panel p {
  margin: 4px 0 0;
  color: #63708c;
  line-height: 1.55;
}

.passport-scan-panel__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.passport-scan-panel__actions button,
.customer-profile-record summary b,
.customer-profile-delete-form button {
  border: 1px solid rgba(85, 183, 234, 0.36);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-navy);
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.passport-scan-panel__actions button:first-child {
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff;
}

.profile-date-field {
  position: relative;
}

.profile-date-native.is-enhanced {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.profile-date-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(205, 223, 239, 0.98);
  border-radius: 15px;
  background: #ffffff;
  color: var(--brand-navy);
  padding: 0 14px;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.profile-date-trigger::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand-primary-deep);
  border-bottom: 2px solid var(--brand-primary-deep);
  transform: rotate(45deg) translateY(-2px);
}

.profile-date-field.is-open .profile-date-trigger,
.profile-date-trigger:focus-visible {
  border-color: rgba(85, 183, 234, 0.8);
  outline: none;
  box-shadow: 0 0 0 4px rgba(85, 183, 234, 0.14);
}

.profile-date-picker {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 90;
  width: min(340px, calc(100vw - 32px));
  border: 1px solid rgba(173, 211, 237, 0.9);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(23, 28, 73, 0.22);
  padding: 12px;
}

.profile-date-picker[hidden] {
  display: none;
}

.profile-date-picker__head,
.profile-date-picker__controls,
.profile-date-picker__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.profile-date-picker__head {
  padding: 4px 2px 10px;
}

.profile-date-picker__head strong {
  color: var(--brand-navy);
  font-size: 0.95rem;
}

.profile-date-picker__close,
.profile-date-picker__nav,
.profile-date-picker__clear,
.profile-date-picker__done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(173, 211, 237, 0.78);
  background: #ffffff;
  color: var(--brand-navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.profile-date-picker__close,
.profile-date-picker__nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.profile-date-picker__controls {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) minmax(92px, 0.8fr) 34px;
}

.profile-date-picker select {
  min-height: 38px;
  border: 1px solid rgba(173, 211, 237, 0.78);
  border-radius: 12px;
  background: #f8fcff;
  color: var(--brand-navy);
  padding: 0 10px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
}

.profile-date-picker__week,
.profile-date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.profile-date-picker__week {
  margin: 12px 0 5px;
  color: #7a849e;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.profile-date-picker__grid button,
.profile-date-picker__grid span {
  min-height: 34px;
  border-radius: 11px;
}

.profile-date-picker__grid button {
  border: 0;
  background: #f1f8fd;
  color: var(--brand-navy);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.profile-date-picker__grid button:hover,
.profile-date-picker__grid button:focus-visible {
  outline: none;
  background: rgba(85, 183, 234, 0.2);
}

.profile-date-picker__grid button.is-selected {
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(47, 147, 203, 0.22);
}

.profile-date-picker__footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(173, 211, 237, 0.5);
}

.profile-date-picker__clear,
.profile-date-picker__done {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.profile-date-picker__done {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff;
}

.passport-scan-panel__status {
  grid-column: 1 / -1;
  margin: 0;
  border-radius: 14px;
  padding: 11px 12px;
  background: rgba(85, 183, 234, 0.13);
  color: var(--brand-navy);
  font-weight: 800;
}

.passport-scan-panel__status[data-type='success'] {
  background: rgba(53, 199, 137, 0.12);
  color: #16784f;
}

.passport-scan-panel__status[data-type='warning'] {
  background: rgba(216, 179, 107, 0.18);
  color: #7a5516;
}

.passport-scan-panel.is-loading {
  opacity: 0.78;
}

.customer-profile-records {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.customer-profile-record {
  border: 1px solid rgba(173, 211, 237, 0.72);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.customer-profile-record summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px;
  cursor: pointer;
  list-style: none;
}

.customer-profile-record summary::-webkit-details-marker {
  display: none;
}

.customer-profile-record summary span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.customer-profile-record summary strong {
  color: var(--brand-navy);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.customer-profile-record summary em {
  color: #65718c;
  font-size: 0.88rem;
  font-style: normal;
}

.customer-profile-record[open] summary {
  border-bottom: 1px solid rgba(173, 211, 237, 0.5);
}

.customer-profile-record[open] .customer-profile-form {
  margin: 14px;
}

.customer-profile-document {
  display: inline-flex;
  width: fit-content;
  color: var(--brand-primary-deep);
  font-weight: 900;
}

.customer-profile-record__actions {
  display: flex;
  justify-content: flex-start;
}

.customer-profile-delete-form {
  display: flex;
  justify-content: flex-end;
  padding: 0 14px 14px;
}

.customer-profile-delete-form button {
  border-color: rgba(214, 111, 88, 0.34);
  color: #a84631;
}

@media (max-width: 920px) {
  .customer-profile-hero__inner {
    min-height: 190px;
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-profile-shell {
    grid-template-columns: 1fr;
  }

  .customer-profile-card--identity {
    position: static;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .customer-profile-facts,
  .customer-profile-photo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .customer-profile-page {
    padding-bottom: 32px;
  }

  .customer-profile-hero__inner {
    padding: 24px 0 58px;
  }

  .customer-profile-hero h1 {
    max-width: calc(100vw - 20px);
    font-size: 1.34rem;
  }

  .customer-profile-hero p:not(.eyebrow) {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .customer-profile-shell {
    width: min(100% - 20px, 1280px);
    max-width: 100%;
    margin-top: -48px;
    gap: 14px;
  }

  .customer-profile-card {
    max-width: 100%;
    border-radius: 20px;
    padding: 16px;
  }

  .customer-profile-card--identity {
    grid-template-columns: 1fr;
  }

  .customer-profile-avatar {
    width: 86px;
    height: 86px;
    border-radius: 24px;
  }

  .customer-profile-facts,
  .customer-profile-form {
    grid-template-columns: 1fr;
  }

  .customer-profile-card__head,
  .passport-scan-panel {
    grid-template-columns: 1fr;
  }

  .customer-profile-card__head {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
  }

  .customer-profile-card__head > div {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 54px;
  }

  .customer-profile-card__head h2 {
    font-size: 1rem;
  }

  .customer-profile-save-indicator {
    width: 36px;
    height: 36px;
    min-height: 34px;
    justify-content: center;
    gap: 0;
    padding: 0;
    font-size: 0.7rem;
  }

  .customer-profile-save-indicator > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .customer-profile-card__head > .customer-profile-save-indicator {
    position: absolute;
    top: 0;
    right: 30px;
  }

  .customer-profile-save-indicator--floating {
    top: 14px;
    right: 14px;
  }

  .profile-date-picker {
    position: fixed;
    right: 10px;
    bottom: 12px;
    left: 10px;
    top: auto;
    z-index: 1010;
    width: auto;
    max-height: min(76vh, 560px);
    overflow-y: auto;
    border-radius: 22px;
    padding: 14px;
  }

  .profile-date-picker__controls {
    grid-template-columns: 34px minmax(0, 1fr) minmax(86px, 0.8fr) 34px;
    gap: 7px;
  }

  .passport-scan-panel__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-profile-record summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-profile-record summary b {
    width: 100%;
    text-align: center;
  }
}

.brand img,
.footer-logo {
  width: 170px;
  object-fit: contain;
}

.brand img {
  height: 58px;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu a.active {
  color: var(--brand-primary-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brand-navy);
}

.hero {
  padding: 28px 0 10px;
  background:
    linear-gradient(180deg, rgba(244, 248, 252, 0.98) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.split-grid,
.contact-grid,
.detail-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.hero-advisory {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, var(--brand-navy), #29408e);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.hero-advisory-shell {
  margin-top: 18px;
}

.hero-advisory--dynamic {
  min-height: 72px;
  perspective: 1200px;
}

.hero-advisory__content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
  transform-origin: center center;
  transform-style: preserve-3d;
  transition:
    transform 0.42s cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 0.42s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-advisory__content.is-flipping {
  transform: rotateX(-90deg);
  opacity: 0.05;
}

.hero-advisory p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  min-width: 0;
}

.hero-advisory__badge {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-advisory__link {
  margin-left: auto;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  text-decoration: underline;
}

.hero-advisory__link.is-hidden {
  display: none;
}

.hero-advisory__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.hero-advisory__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-advisory__dots button.active {
  background: #ffffff;
}

.hero__content h1,
.section-heading h1,
.section-heading h2,
.detail-hero h1,
.centered-panel h1 {
  margin: 0 0 18px;
  font-family: var(--font-primary);
  color: var(--brand-navy);
  line-height: 1.05;
}

.hero__lead,
.article-shell__lead,
.detail-lead {
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(32, 37, 67, 0.84);
}

.hero__actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.booking-shell {
  margin-top: 0;
}

.booking-mode-panel {
  display: none;
}

.booking-mode-panel.active {
  display: block;
}

.booking-shell .booking-tabs {
  display: none;
}

.booking-mode-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(23, 28, 73, 0.08);
  box-shadow: 0 14px 30px rgba(12, 16, 36, 0.08);
}

.booking-mode-tabs--nav {
  border-radius: 999px;
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
  border-color: rgba(23, 28, 73, 0.1);
  box-shadow: none;
}

.booking-mode-tabs button {
  min-height: 30px;
  padding: 0 14px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: rgba(32, 37, 67, 0.76);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-mode-tabs--nav button {
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
}

.booking-mode-tabs button.active {
  background: var(--brand-navy);
  color: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ai-chat-shell {
  margin-top: 0;
}

.ai-chat-card {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto auto;
  min-height: 520px;
  border-radius: 18px;
  background: linear-gradient(180deg, #32303d 0%, #272530 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(12, 16, 36, 0.22);
  overflow: hidden;
}

.ai-chat-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-card__header span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ai-chat-card__header h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.15;
}

.ai-chat-card__header strong {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(113, 219, 166, 0.15);
  color: #8ff0be;
  font-size: 0.78rem;
}

.ai-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px;
  overflow-y: auto;
}

.ai-chat-message {
  display: grid;
  grid-template-columns: 38px minmax(0, max-content);
  gap: 10px;
  align-items: start;
  max-width: min(720px, 92%);
}

.ai-chat-message--user {
  grid-template-columns: minmax(0, max-content) 38px;
  align-self: flex-end;
}

.ai-chat-message span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
}

.ai-chat-message--user span {
  order: 2;
  background: rgba(212, 71, 91, 0.22);
}

.ai-chat-message p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  background: #ffffff;
  color: rgba(32, 37, 67, 0.88);
  line-height: 1.55;
}

.ai-chat-message--user p {
  background: var(--brand-primary);
  color: #ffffff;
}

.ai-chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 16px;
}

.ai-chat-prompts button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  cursor: pointer;
}

.ai-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 16px 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-form input {
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: #ffffff;
  color: var(--brand-navy);
  font: inherit;
  outline: none;
}

.ai-chat-form button {
  min-width: 96px;
  height: 48px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.global-ai-chat {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: min(430px, 100vw);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.ai-floating-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(74, 166, 224, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #eef8ff);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(17, 45, 92, 0.22);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ai-floating-launcher:hover,
.ai-floating-launcher:focus-visible,
.ai-floating-launcher.is-active {
  border-color: rgba(74, 166, 224, 0.72);
  box-shadow: 0 22px 48px rgba(17, 45, 92, 0.28);
  transform: translateY(-2px);
}

.ai-floating-launcher__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  padding: 7px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 10px 24px rgba(74, 166, 224, 0.28);
}

.ai-floating-launcher__icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  transform: none;
}

.ai-floating-launcher__icon::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 8px;
  height: 8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #82f1bd;
}

.flight-results-page .results-edit-card.flight-results-searchbar {
  padding: 0 0 16px;
  border-radius: 18px;
  background: #33313e !important;
  box-shadow: 0 24px 58px rgba(19, 23, 56, 0.2);
  overflow: visible;
}

.flight-results-page .results-edit-card.flight-results-searchbar .ai-flight-form--results {
  padding: 14px 16px 16px !important;
}

.flight-results-page .results-edit-card.flight-results-searchbar .ai-booking-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.flight-results-page .results-edit-card.flight-results-searchbar .ai-booking-tabs button:disabled {
  opacity: 0.82;
}

.flight-results-page .results-edit-card.flight-results-searchbar .ai-booking-tabs button.active:disabled {
  opacity: 1;
}

.flight-results-page .results-edit-card.flight-results-searchbar .ai-trip-options label,
.flight-results-page .results-edit-card.flight-results-searchbar .ai-booking-tools__brand em {
  color: rgba(255, 255, 255, 0.82) !important;
}

.flight-results-page .results-edit-card.flight-results-searchbar .ai-booking-tools__brand {
  color: var(--brand-primary) !important;
}

.flight-results-page .results-edit-card.flight-results-searchbar .ai-route-pair,
.flight-results-page .results-edit-card.flight-results-searchbar .ai-route-box,
.flight-results-page .results-edit-card.flight-results-searchbar .ai-field {
  background: transparent !important;
}

.flight-results-page .results-edit-card.flight-results-searchbar .ai-route-pair {
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.flight-results-page .results-edit-card.flight-results-searchbar .ai-route-box,
.flight-results-page .results-edit-card.flight-results-searchbar .ai-field {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.flight-results-page .results-edit-card.flight-results-searchbar .ai-route-box span,
.flight-results-page .results-edit-card.flight-results-searchbar .ai-field span {
  color: rgba(255, 255, 255, 0.58) !important;
}

.flight-results-page .results-edit-card.flight-results-searchbar .ai-route-box input,
.flight-results-page .results-edit-card.flight-results-searchbar .ai-date-trigger strong,
.flight-results-page .results-edit-card.flight-results-searchbar .ai-passenger__toggle strong,
.flight-results-page .results-edit-card.flight-results-searchbar .ai-select-field select {
  color: #ffffff !important;
}

.flight-results-page .results-edit-card.flight-results-searchbar .ai-route-box small,
.flight-results-page .results-edit-card.flight-results-searchbar .airport-field small,
.flight-results-page .results-edit-card.flight-results-searchbar .airport-field.is-selected small {
  color: rgba(255, 255, 255, 0.74) !important;
}

.global-ai-chat.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.global-ai-chat__panel {
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  max-height: none;
  border-radius: 0;
  box-shadow: -24px 0 52px rgba(6, 12, 32, 0.26);
}

.global-ai-chat.is-open .global-ai-chat__panel {
  transform: none;
}

.global-ai-chat__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.global-ai-chat__actions button {
  position: relative;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.global-ai-chat__actions button::before,
.global-ai-chat__actions button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.global-ai-chat__actions button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.global-ai-chat__actions button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.global-ai-chat__actions button:hover,
.global-ai-chat__actions button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.ai-booking-shell {
  margin-top: 0;
}

.ai-booking-card {
  position: relative;
  z-index: 5;
  border-radius: 18px;
  background: linear-gradient(180deg, #32303d 0%, #2b2935 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(12, 16, 36, 0.22);
  overflow: visible;
}

.ai-mobile-heading {
  display: none;
}

.ai-booking-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 150px));
  align-items: center;
  justify-content: start;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-booking-tabs button,
.ai-booking-tabs a {
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-primary);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.ai-booking-tabs button.active {
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-primary-deep);
  box-shadow: 0 4px 14px rgba(12, 16, 36, 0.18);
}

.ai-booking-tabs button:disabled {
  cursor: default;
  opacity: 0.72;
}

.ai-booking-tabs button.active:disabled {
  opacity: 1;
}

.ai-booking-panel {
  display: none;
}

.ai-booking-panel.active {
  display: block;
}

.ai-flight-form {
  position: relative;
  padding: 18px 16px 16px;
}

.flight-route-error {
  margin: 12px 0 0;
  border: 1px solid rgba(85, 183, 234, 0.35);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(85, 183, 234, 0.12);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
}

.flight-route-error[hidden] {
  display: none;
}

.airport-field.has-route-error {
  border-radius: 8px;
  box-shadow: inset 0 0 0 2px rgba(85, 183, 234, 0.82);
}

.ai-booking-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.ai-trip-options,
.ai-booking-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ai-trip-options label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-primary);
  font-size: 0.86rem;
  font-weight: 500;
}

.ai-trip-options input {
  width: 15px;
  height: 15px;
  accent-color: var(--brand-primary-deep);
}

.ai-booking-tools {
  gap: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-primary);
  font-size: 0.84rem;
}

.ai-booking-tools__brand,
.ai-booking-tools button {
  position: relative;
  min-height: 24px;
  padding: 0 18px;
}

.ai-booking-tools__brand:not(:last-child)::after,
.ai-booking-tools button:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%);
}

.ai-booking-tools__brand {
  color: var(--brand-primary-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.classic-search-card .ai-booking-tools__brand {
  padding-right: 0;
}

.classic-search-card .ai-booking-tools__brand::after {
  display: none;
}

.ai-booking-tools__brand em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.ai-booking-tools button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.ai-booking-tools button::before {
  content: '';
  position: absolute;
  right: 5px;
  top: 45%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--brand-primary-deep);
  border-bottom: 2px solid var(--brand-primary-deep);
  transform: translateY(-55%) rotate(45deg);
}

.ai-flight-row {
  display: grid;
  grid-template-columns: minmax(270px, 1.95fr) minmax(96px, 0.7fr) minmax(96px, 0.7fr) minmax(132px, 0.92fr) minmax(132px, 0.92fr) minmax(140px, 0.95fr) 118px;
  align-items: stretch;
  min-height: 78px;
}

.ai-flight-row[hidden],
.multicity-builder[hidden],
.multicity-leg[hidden] {
  display: none !important;
}

.ai-route-pair {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) 34px minmax(110px, 1fr);
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.ai-route-box,
.ai-field {
  min-width: 0;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #ffffff;
}

.airport-field,
.ai-route-box {
  position: relative;
  border-right: 0;
}

.ai-route-box span,
.ai-field span,
.ai-utility-form span {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 600;
}

.ai-route-box span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ai-route-box input {
  width: 100%;
  max-width: 168px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(1.78rem, 2.2vw, 2.28rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.ai-route-box input:focus,
.ai-field:focus,
.ai-field select:focus,
.ai-utility-form input:focus {
  outline: 0;
  box-shadow: none;
}

.ai-route-box small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 500;
}

.airport-field small {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.airport-field.is-selected small {
  color: rgba(255, 255, 255, 0.84);
}

.airport-suggestions {
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 8px);
  z-index: 70;
  display: none;
  width: min(360px, calc(100vw - 32px));
  min-width: min(100%, 360px);
  max-height: 310px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(23, 28, 73, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(19, 23, 56, 0.16);
}

.airport-suggestions.is-open {
  display: grid;
  gap: 6px;
}

.airport-suggestion {
  width: 100%;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 74px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 28, 73, 0.06);
  border-radius: 12px;
  background: #ffffff;
  color: var(--brand-navy);
  text-align: left;
  cursor: pointer;
}

.airport-suggestion:nth-child(odd) {
  background: rgba(85, 183, 234, 0.08);
}

.airport-suggestion:nth-child(even) {
  background: rgba(23, 28, 73, 0.03);
}

.airport-suggestion:hover,
.airport-suggestion.is-active {
  border-color: rgba(85, 183, 234, 0.18);
  background: rgba(85, 183, 234, 0.16);
}

.airport-suggestion .airport-suggestion__code {
  display: inline-grid;
  place-items: center;
  width: 48px;
  min-width: 48px;
  min-height: 34px;
  border: 1px solid rgba(85, 183, 234, 0.22);
  border-radius: 8px;
  background: #eef9ff;
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0 !important;
  white-space: nowrap;
}

.airport-suggestion__meta,
.airport-suggestion__meta strong,
.airport-suggestion__location,
.airport-suggestion__country {
  display: block;
  white-space: normal;
  word-break: break-word;
}

.airport-suggestion__meta {
  padding-left: 4px;
}

.airport-suggestion__meta strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

.airport-suggestion__location {
  margin-top: 2px;
  color: rgba(32, 37, 67, 0.7);
  font-size: 0.82rem;
  line-height: 1.45;
}

.airport-suggestion__country {
  margin-top: 4px;
  color: rgba(32, 37, 67, 0.52);
  font-size: 0.76rem;
  line-height: 1.45;
}

.ai-swap {
  position: relative;
  justify-self: center;
  width: 26px;
  height: 26px;
  margin-left: -36px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: transparent;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(47, 147, 203, 0.22);
}

.ai-swap::before {
  content: '\21C4';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.18s ease;
}

.ai-swap:hover::before {
  transform: scale(1.12);
}

.ai-date-trigger,
.ai-passenger__toggle {
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  text-align: left;
  cursor: pointer;
}

.ai-date-trigger strong,
.ai-passenger__toggle strong,
.ai-select-field select {
  display: block;
  max-width: 100%;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.94rem;
  font-weight: 500;
  white-space: nowrap;
}

.ai-date-trigger strong[data-oneway-label] {
  max-width: 78px;
  font-size: 0.86rem;
  white-space: normal;
  line-height: 1.18;
  text-wrap: pretty;
}

.ai-date-trigger strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ai-passenger {
  position: relative;
}

.ai-passenger__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: transparent;
}

.ai-passenger__toggle strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-passenger__toggle i {
  flex: 0 0 auto;
}

.ai-passenger__toggle i,
.ai-select-field::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--brand-primary-deep);
  border-bottom: 2px solid var(--brand-primary-deep);
  transform: rotate(45deg);
}

.ai-passenger__toggle i {
  display: inline-block;
}

.ai-passenger-menu,
.ai-passenger-menu.passenger-menu {
  top: calc(100% + 12px);
  left: 50%;
  width: 304px;
  max-width: calc(100vw - 32px);
  padding: 12px;
  border: 1px solid rgba(85, 183, 234, 0.22);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(23, 28, 73, 0.18);
  transform: translateX(-50%);
}

.ai-passenger.passenger-selector.is-open {
  z-index: 150;
}

.ai-passenger-menu .passenger-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid rgba(23, 28, 73, 0.07);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.ai-passenger-menu .passenger-row strong {
  color: var(--brand-navy);
  font-size: 0.92rem;
  line-height: 1.1;
}

.ai-passenger-menu .passenger-row small {
  margin-top: 3px;
  color: rgba(32, 37, 67, 0.58);
  font-size: 0.7rem;
}

.ai-passenger-menu .passenger-controls {
  display: grid;
  grid-template-columns: 30px 42px 30px;
  align-items: center;
  gap: 7px;
}

.ai-passenger-menu .passenger-controls button {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border-color: rgba(85, 183, 234, 0.28);
  background: rgba(85, 183, 234, 0.1);
  color: var(--brand-primary-deep);
  font-size: 1rem;
  line-height: 1;
}

.ai-passenger-menu .passenger-controls button:last-child {
  background: var(--brand-primary-deep);
  border-color: var(--brand-primary-deep);
  color: #ffffff;
}

.ai-passenger-menu .passenger-controls button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.ai-passenger-menu .passenger-controls input {
  width: 42px;
  height: 42px;
  border-color: rgba(85, 183, 234, 0.22);
  border-radius: 999px;
  color: var(--brand-navy);
  font-size: 0.96rem;
}

.ai-passenger-menu .passenger-done-btn {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(47, 147, 203, 0.24);
}

.ai-passenger-menu .passenger-done-btn:hover,
.ai-passenger-menu .passenger-done-btn:focus-visible {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-deep));
  outline: 0;
}

.ai-select-field {
  position: relative;
}

.ai-select-field::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 48%;
  pointer-events: none;
}

.ai-select-field select {
  width: 100%;
  border: 0;
  padding: 0 24px 0 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
}

.ai-custom-select-field::after {
  display: none;
}

.ai-custom-select-field select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
}

.ai-custom-select__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-primary);
  cursor: pointer;
  text-align: left;
}

.ai-custom-select__toggle strong {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-custom-select__toggle i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-right: 2px solid var(--brand-primary-deep);
  border-bottom: 2px solid var(--brand-primary-deep);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.ai-custom-select-field.is-open .ai-custom-select__toggle i {
  transform: translateY(2px) rotate(225deg);
}

.ai-custom-select__menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  z-index: 140;
  display: none;
  width: 258px;
  max-width: calc(100vw - 32px);
  padding: 8px;
  border: 1px solid rgba(85, 183, 234, 0.22);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(23, 28, 73, 0.18);
  transform: translateX(-50%);
}

.ai-custom-select-field.is-open .ai-custom-select__menu {
  display: grid;
  gap: 6px;
}

.ai-custom-select__option {
  position: relative;
  width: 100%;
  display: grid;
  gap: 2px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 36px 10px 12px;
  background: #ffffff;
  color: var(--brand-navy);
  font-family: var(--font-primary);
  text-align: left;
  cursor: pointer;
}

.ai-custom-select__option:hover,
.ai-custom-select__option.is-selected {
  border-color: rgba(85, 183, 234, 0.22);
  background: rgba(85, 183, 234, 0.1);
}

.ai-custom-select__option.is-disabled,
.ai-custom-select__option:disabled {
  cursor: default;
  opacity: 0.62;
}

.ai-custom-select__option.is-disabled:hover,
.ai-custom-select__option:disabled:hover {
  border-color: transparent;
  background: transparent;
}

.ai-custom-select__option span {
  color: var(--brand-navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.ai-custom-select__option small {
  color: rgba(32, 37, 67, 0.58);
  font-size: 0.68rem;
  font-weight: 600;
}

.ai-custom-select__option.is-selected::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 13px;
  border-right: 2px solid var(--brand-primary-deep);
  border-bottom: 2px solid var(--brand-primary-deep);
  transform: translateY(-62%) rotate(45deg);
}

.ai-select-field select option,
.ai-select-field select optgroup,
.search-field--select select option,
.search-field--select select optgroup {
  color: var(--brand-navy);
  background: #ffffff;
}

.ai-date-pair,
.ai-meta-row {
  display: contents;
}

.ai-native-date-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.ai-pay-field,
.ai-promo-link {
  display: none;
}

.ai-search-btn {
  align-self: center;
  justify-self: end;
  width: 112px;
  height: 40px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.multicity-builder {
  padding: 0 0 6px;
}

.multicity-routes {
  display: grid;
  gap: 12px;
}

.multicity-leg {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 1.95fr) minmax(132px, 0.75fr);
  align-items: stretch;
  gap: 0;
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.multicity-leg:focus-within {
  z-index: 8;
}

.multicity-route-pair {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) 34px minmax(110px, 1fr);
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.multicity-leg .ai-date-trigger {
  min-height: 78px;
  border-right: 0;
}

.multicity-leg .ai-swap {
  margin-left: -36px;
}

.multicity-add-city {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-primary-deep);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.multicity-remove-city {
  grid-column: 1 / -1;
  align-self: center;
  justify-self: end;
  min-height: 32px;
  margin: 8px 0 2px;
  padding: 0 12px;
  border: 1px solid rgba(85, 183, 234, 0.35);
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.1);
  color: #8dc8ff;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
}

.multicity-options {
  display: grid;
  grid-template-columns: minmax(132px, 0.92fr) minmax(140px, 0.95fr) 118px;
  align-items: center;
  margin-top: 12px;
}

.multicity-search-btn {
  margin-top: 0;
}

.ai-upi-strip {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.ai-upi-strip span {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #8dc8ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.ai-upi-strip p {
  margin: 0;
  max-width: 420px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ai-utility-form {
  display: grid;
  grid-template-columns: 1fr 1fr 130px;
  gap: 0;
  padding: 28px 18px 32px;
}

.ai-activity-form {
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) 130px;
  align-items: stretch;
}

.activity-multi-search {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-height: 82px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.activity-multi-search > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
}

.activity-multi-search__box {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  min-height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.activity-multi-search:focus-within .activity-multi-search__box {
  border-color: rgba(85, 183, 234, 0.5);
  background: rgba(85, 183, 234, 0.08);
  box-shadow: 0 0 0 3px rgba(85, 183, 234, 0.1);
}

.activity-multi-search__tokens {
  display: contents;
}

.activity-multi-search__token {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(85, 183, 234, 0.34);
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(85, 183, 234, 0.14);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.activity-multi-search__token i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
}

.ai-activity-form .activity-multi-search input {
  min-width: 170px;
  flex: 1;
  border: 0;
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  caret-color: var(--brand-primary);
}

.ai-activity-form .activity-multi-search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.activity-multi-search__suggestions {
  position: absolute;
  left: 12px;
  top: calc(100% + 8px);
  z-index: 75;
  display: none;
  width: min(320px, calc(100vw - 42px));
  max-height: 260px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(23, 28, 73, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(19, 23, 56, 0.16);
}

.activity-multi-search__suggestions.is-open {
  display: grid;
  gap: 6px;
}

.activity-multi-search__suggestions button {
  min-height: 40px;
  border: 1px solid rgba(23, 28, 73, 0.06);
  border-radius: 9px;
  padding: 0 12px;
  background: #f9fbfe;
  color: var(--brand-navy);
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.activity-multi-search__suggestions button:hover {
  border-color: rgba(85, 183, 234, 0.34);
  background: rgba(85, 183, 234, 0.1);
}

.ai-transport-form {
  position: relative;
  padding: 18px 16px 16px;
}

.ai-transport-row {
  grid-template-columns: minmax(420px, 2.1fr) minmax(150px, 0.72fr) minmax(150px, 0.72fr) 118px;
  column-gap: 0;
}

.ai-transport-row .ai-date-pair {
  display: contents;
}

.ai-transport-row .ai-date-trigger {
  min-width: 0;
}

.ai-transport-row .ai-search-btn {
  grid-column: auto;
  align-self: center;
  justify-self: end;
}

.transport-city-field input {
  max-width: 220px;
  font-size: clamp(1.2rem, 1.55vw, 1.68rem);
  letter-spacing: 0;
  text-transform: none;
}

.transport-city-field.is-selected small {
  color: rgba(255, 255, 255, 0.84);
}

.transport-city-suggestions {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 145;
  display: none;
  width: min(380px, calc(100vw - 32px));
  max-height: 320px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(23, 28, 73, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(19, 23, 56, 0.16);
}

.transport-city-suggestions.is-open {
  display: grid;
  gap: 6px;
}

.transport-city-suggestion {
  width: 100%;
  display: grid;
  gap: 3px;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 28, 73, 0.06);
  border-radius: 12px;
  background: #ffffff;
  color: var(--brand-navy);
  text-align: left;
  cursor: pointer;
}

.transport-city-suggestion:nth-child(odd) {
  background: rgba(85, 183, 234, 0.08);
}

.transport-city-suggestion:hover,
.transport-city-suggestion.is-active {
  border-color: rgba(85, 183, 234, 0.22);
  background: rgba(85, 183, 234, 0.16);
}

.transport-city-suggestion strong {
  color: var(--brand-navy);
  font-size: 0.92rem;
  line-height: 1.3;
}

.transport-city-suggestion span,
.transport-city-suggestion small {
  color: rgba(32, 37, 67, 0.62);
  font-size: 0.75rem;
}

.transport-form-error {
  margin: 12px 0 0;
  border: 1px solid rgba(85, 183, 234, 0.35);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(85, 183, 234, 0.12);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
}

.transport-form-error[hidden] {
  display: none;
}

.ai-utility-form label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-height: 78px;
  padding: 0 18px;
  border-right: 1px solid rgba(23, 28, 73, 0.14);
}

.ai-utility-form input {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-navy);
  font-size: 1rem;
}

.ai-utility-form.ai-activity-form .activity-multi-search input {
  color: #ffffff;
}

.ai-utility-form.ai-activity-form .activity-multi-search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.ai-visa-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(180px, 1fr) 142px;
  align-items: stretch;
  min-height: 92px;
  padding: 18px;
}

.ai-visa-field {
  position: relative;
  min-width: 0;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.ai-visa-field span {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
}

.ai-visa-field .is-required::before {
  content: '* ';
  color: var(--brand-primary-deep);
}

.ai-visa-field::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: 25px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--brand-primary-deep);
  border-bottom: 2px solid var(--brand-primary-deep);
  pointer-events: none;
  transform: rotate(45deg);
}

.ai-visa-field.ai-custom-select-field::after {
  display: none;
}

.ai-visa-field select {
  width: 100%;
  border: 0;
  padding: 0 28px 0 0;
  background: transparent;
  color: #ffffff;
  appearance: none;
  font-family: var(--font-primary);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
}

.ai-visa-field .ai-custom-select__toggle {
  min-height: 28px;
  color: #ffffff;
}

.ai-visa-field .ai-custom-select__toggle strong {
  font-size: 1rem;
  font-weight: 700 !important;
}

.ai-visa-field .ai-custom-select__menu {
  left: 18px;
  right: 18px;
  width: auto;
  min-width: 0;
  max-width: none;
  max-height: 360px;
  overflow-y: auto;
  transform: none;
}

.ai-visa-field .ai-custom-select__option {
  padding-top: 11px;
  padding-bottom: 11px;
}

.ai-visa-field .ai-custom-select__option span {
  color: var(--brand-navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.ai-visa-field .ai-custom-select__option small {
  color: rgba(32, 37, 67, 0.58);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
}

.ai-visa-field select:focus {
  outline: 0;
}

.ai-visa-field select option,
.ai-visa-field select optgroup {
  color: var(--brand-navy);
  background: #ffffff;
}

.ai-visa-apply-btn {
  align-self: center;
}

.visa-search-page {
  background: #eef4f8;
  color: var(--brand-navy);
}

.visa-result-hero {
  position: relative;
  padding: 34px 0 92px;
  overflow: hidden;
  background: linear-gradient(135deg, #33323e 0%, #282735 58%, #232230 100%);
  color: #ffffff;
}

.visa-result-hero::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary-deep), var(--brand-primary));
  opacity: 0.95;
}

.visa-result-hero--compact {
  padding-bottom: 74px;
}

.visa-result-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 3.4vw, 3.1rem);
  line-height: 1.15;
}

.visa-result-search {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 116px;
  gap: 14px;
  margin-top: 30px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 46px rgba(20, 27, 76, 0.18);
}

.visa-result-search label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid rgba(32, 37, 67, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.visa-result-search span {
  color: rgba(32, 37, 67, 0.56);
  font-size: 0.75rem;
  font-weight: 700;
}

.visa-result-search select {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--brand-navy);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
}

.visa-result-search select:focus {
  outline: 0;
}

.visa-result-search button {
  border: 0;
  border-radius: 8px;
  background: var(--brand-primary-deep);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
}

.visa-result-criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.visa-result-criteria span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(85, 183, 234, 0.26);
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
}

.visa-result-criteria strong {
  margin-left: 5px;
  color: #ffffff;
  font-weight: 900 !important;
}

.visa-result-body {
  margin-top: -46px;
  padding: 0 0 70px;
}

.visa-result-request-section {
  padding: 30px 0 0;
}

.visa-result-body--flat {
  margin-top: 0;
  padding-top: 18px;
}

.visa-results-list-section {
  padding-top: 30px;
}

.visa-result-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 425px);
  gap: 20px;
  align-items: start;
}

.visa-result-main {
  display: grid;
  gap: 20px;
}

.visa-doc-card,
.visa-apply-panel,
.visa-option-card,
.visa-empty-state {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(32, 37, 67, 0.08);
}

.visa-doc-card {
  padding: 26px 30px;
  border: 1px solid rgba(32, 37, 67, 0.08);
}

.visa-result-kicker {
  margin: 0 0 10px;
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.visa-doc-card h2 {
  margin: 0 0 12px;
  color: #080d2d;
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
}

.visa-doc-card h2 span {
  color: var(--brand-primary-deep);
}

.visa-doc-card p {
  margin: 0;
  color: rgba(32, 37, 67, 0.72);
  line-height: 1.75;
}

.visa-requirement-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visa-requirement-list li {
  position: relative;
  padding: 12px 14px 12px 38px;
  border: 1px solid rgba(85, 183, 234, 0.18);
  border-radius: 8px;
  background: #f6fbfe;
  color: rgba(32, 37, 67, 0.82);
  font-weight: 600;
}

.visa-requirement-list li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--brand-primary);
}

.visa-doc-card--details h3 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}

.visa-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.visa-detail-grid div {
  padding: 14px;
  border-radius: 8px;
  background: #f4f8fc;
}

.visa-detail-grid span,
.visa-fee-box span,
.visa-total-row span,
.visa-processing-row span {
  display: block;
  color: rgba(32, 37, 67, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
}

.visa-detail-grid strong,
.visa-fee-box strong,
.visa-total-row strong,
.visa-processing-row strong {
  color: var(--brand-navy);
  font-size: 0.96rem;
}

.visa-note {
  margin-top: 18px !important;
  padding-top: 16px;
  border-top: 1px solid rgba(32, 37, 67, 0.1);
}

.visa-apply-panel {
  position: sticky;
  top: 18px;
  overflow: hidden;
  border: 1px solid rgba(32, 37, 67, 0.12);
}

.visa-price-band {
  padding: 20px 24px;
  background: linear-gradient(135deg, #33323e, #282735);
  color: #ffffff;
  text-align: center;
  border-bottom: 4px solid var(--brand-primary);
}

.visa-price-band span {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 800;
}

.visa-price-band strong {
  display: block;
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.visa-price-band em {
  display: inline-flex;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(85, 183, 234, 0.18);
  color: #ffffff;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.visa-travel-date {
  display: grid;
  gap: 7px;
  margin: 24px 20px 14px;
}

.visa-travel-date span {
  color: var(--brand-primary-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.visa-travel-date small {
  color: rgba(32, 37, 67, 0.58);
  font-size: 0.72rem;
  line-height: 1.45;
}

.visa-date-trigger {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(85, 183, 234, 0.4);
  border-radius: 8px;
  padding: 0 13px;
  background: #ffffff;
  color: var(--brand-navy);
  text-align: left;
}

.visa-date-trigger strong {
  color: var(--brand-navy);
  font-size: 0.96rem;
}

.visa-result-calendar {
  z-index: 180;
}

.visa-travel-date .visa-result-calendar {
  position: static;
  width: 100%;
  margin-top: 8px;
  transform: none;
}

.visa-result-body .visa-apply-panel {
  overflow: visible;
}

.visa-fee-box {
  margin: 0 20px;
  padding: 14px;
  border: 1px solid rgba(32, 37, 67, 0.1);
  border-radius: 8px;
  background: #f7fbfe;
}

.visa-fee-box div,
.visa-total-row,
.visa-processing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.visa-fee-box div + div {
  margin-top: 12px;
}

.visa-fee-box small {
  display: block;
  margin-top: 10px;
  color: rgba(32, 37, 67, 0.55);
  font-size: 0.7rem;
}

.visa-total-row,
.visa-processing-row {
  margin: 0 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(32, 37, 67, 0.1);
}

.visa-total-row span,
.visa-total-row strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.visa-processing-row strong {
  text-align: right;
}

.visa-apply-now,
.visa-telegram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin: 18px 20px 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.visa-telegram-link {
  margin-top: 10px;
  margin-bottom: 22px;
  border: 1px solid rgba(85, 183, 234, 0.3);
  background: #ffffff;
  color: var(--brand-primary-deep);
}

.visa-results-list-section {
  padding: 54px 0 72px;
}

.visa-search-page .visa-results-list-section {
  padding-top: 30px;
}

.visa-results-heading {
  margin-bottom: 22px;
}

.visa-results-heading h2 {
  margin: 0;
  color: var(--brand-navy);
}

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

.visa-option-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.visa-option-card span {
  color: var(--brand-primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.visa-option-card h3 {
  margin: 8px 0;
  color: var(--brand-navy);
}

.visa-option-card p {
  margin: 0;
}

.visa-option-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.visa-option-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.visa-option-card dt {
  color: rgba(32, 37, 67, 0.56);
  font-size: 0.76rem;
  font-weight: 700;
}

.visa-option-card dd {
  margin: 0;
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.visa-option-card a,
.visa-empty-state a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  background: var(--brand-primary-deep);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.visa-empty-state {
  padding: 30px;
}

.ai-hotel-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(260px, 1.25fr) minmax(210px, 0.95fr) 118px;
  align-items: stretch;
  padding: 18px 16px 16px;
}

.ai-hotel-destination {
  position: relative;
  min-width: 0;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 13px 16px;
  border: 1px solid rgba(205, 223, 239, 0.9);
  border-radius: 12px;
  background: #ffffff;
  color: var(--brand-navy);
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.08);
}

.ai-hotel-destination span,
.ai-hotel-rooms > span {
  color: rgba(13, 20, 63, 0.62);
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-hotel-destination input {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-navy);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
}

.ai-hotel-destination input:focus {
  outline: 0;
  box-shadow: none;
}

.ai-hotel-destination input::selection,
.transport-city-field input::selection,
.airport-field input::selection {
  background: rgba(78, 162, 213, 0.26);
  color: var(--brand-navy);
}

.ai-hotel-destination input::placeholder {
  color: rgba(13, 20, 63, 0.42);
}

.hotel-city-suggestions {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 145;
  display: none;
  width: min(420px, calc(100vw - 32px));
  max-height: 320px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(23, 28, 73, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(19, 23, 56, 0.16);
}

.hotel-city-suggestions.is-open {
  display: grid;
  gap: 6px;
}

.hotel-city-suggestion {
  width: 100%;
  display: grid;
  gap: 3px;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 28, 73, 0.06);
  border-radius: 12px;
  background: #ffffff;
  color: var(--brand-navy);
  text-align: left;
  cursor: pointer;
}

.hotel-city-suggestion:nth-child(odd) {
  background: rgba(85, 183, 234, 0.08);
}

.hotel-city-suggestion:hover,
.hotel-city-suggestion.is-active {
  border-color: rgba(85, 183, 234, 0.22);
  background: rgba(85, 183, 234, 0.16);
}

.hotel-city-suggestion strong {
  color: var(--brand-navy);
  font-size: 0.92rem;
  line-height: 1.3;
}

.hotel-city-suggestion span {
  color: rgba(32, 37, 67, 0.66);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.hotel-city-suggestion small {
  color: rgba(32, 37, 67, 0.48);
  font-size: 0.7rem;
}

.ai-hotel-date-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.ai-hotel-date-pair .ai-date-trigger {
  min-height: 78px;
}

.ai-hotel-date-pair .ai-date-trigger:last-child {
  border-right: 0;
}

.ai-hotel-rooms {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.ai-hotel-room-menu,
.ai-hotel-room-menu.passenger-menu {
  width: min(420px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 140px));
  overflow-y: auto;
}

.hotel-room-list {
  display: grid;
  gap: 10px;
}

.hotel-room-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(23, 28, 73, 0.08);
  border-radius: 14px;
  background: #f7fbff;
}

.hotel-room-card[hidden] {
  display: none !important;
}

.hotel-room-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hotel-room-card__head strong {
  color: var(--brand-navy);
  font-size: 0.92rem;
}

.hotel-room-card__head button,
.hotel-add-room {
  border: 1px solid rgba(85, 183, 234, 0.28);
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.1);
  color: var(--brand-primary-deep);
  font-family: var(--font-primary);
  font-weight: 800;
  cursor: pointer;
}

.hotel-room-card__head button {
  padding: 5px 10px;
  font-size: 0.72rem;
}

.hotel-child-ages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hotel-child-age {
  display: grid;
  gap: 4px;
}

.hotel-child-age span {
  color: rgba(32, 37, 67, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
}

.hotel-child-age select {
  min-height: 38px;
  border: 1px solid rgba(85, 183, 234, 0.24);
  border-radius: 10px;
  padding: 0 10px;
  background: #ffffff;
  color: var(--brand-navy);
  font-family: var(--font-primary);
  font-weight: 700;
}

.hotel-add-room {
  min-height: 38px;
}

.hotel-add-room[hidden] {
  display: none !important;
}

.ai-hotel-search-btn {
  align-self: center;
}

.ai-calendar {
  position: absolute;
  left: 50%;
  right: auto;
  top: calc(100% + 12px);
  z-index: 50;
  width: min(430px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid rgba(85, 183, 234, 0.18);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(23, 28, 73, 0.18);
  transform: translateX(-50%);
}

.ai-calendar[hidden] {
  display: none;
}

.ai-calendar__top,
.ai-calendar__controls,
.ai-calendar__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ai-calendar__top {
  padding: 8px 10px;
  border: 1px solid rgba(85, 183, 234, 0.14);
  background: linear-gradient(135deg, rgba(85, 183, 234, 0.12), rgba(244, 248, 252, 0.96));
  border-radius: 12px;
}

.ai-calendar__top strong {
  color: var(--brand-navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.ai-calendar__top > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-calendar__top label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(32, 37, 67, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.ai-calendar__top input {
  accent-color: var(--brand-primary-deep);
}

.ai-calendar[data-calendar-target^='multi-'] .ai-calendar__oneway,
.ai-calendar[data-calendar-target^='hotel-'] .ai-calendar__oneway,
.ai-calendar[data-calendar-target='visa-travel'] .ai-calendar__oneway {
  display: none;
}

.ai-calendar button {
  border: 1px solid rgba(85, 183, 234, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-navy);
  padding: 6px 10px;
  font-family: var(--font-primary);
  font-weight: 700;
  cursor: pointer;
}

.ai-calendar__controls {
  margin: 8px 0;
}

.ai-calendar__controls select {
  min-width: 180px;
  border: 1px solid rgba(85, 183, 234, 0.24);
  border-radius: 999px;
  padding: 9px 16px;
  background: #ffffff;
  color: var(--brand-navy);
  font-family: var(--font-primary);
  font-weight: 800;
}

.ai-calendar__controls > button {
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--brand-primary-deep);
  font-size: 1.2rem;
  line-height: 1;
}

.ai-calendar__months {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ai-calendar-month h4 {
  margin: 0 0 6px;
  text-align: center;
  color: var(--brand-navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.ai-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.ai-calendar-grid span,
.ai-calendar-grid button {
  min-height: 26px;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(32, 37, 67, 0.78);
}

.ai-calendar-grid span {
  color: rgba(32, 37, 67, 0.42);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ai-calendar-grid button {
  position: relative;
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.16);
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.ai-calendar-grid button:hover:not(:disabled) {
  background: rgba(85, 183, 234, 0.28);
  color: var(--brand-primary-deep);
}

.ai-calendar-grid button.is-today:not(.is-selected) {
  background: rgba(85, 183, 234, 0.26);
  box-shadow: inset 0 0 0 1px rgba(47, 147, 203, 0.46);
  color: var(--brand-primary-deep);
}

.ai-calendar-grid button.is-in-range {
  border-radius: 0;
  background: rgba(85, 183, 234, 0.24);
  color: var(--brand-navy);
}

.ai-calendar-grid button.is-selected,
.ai-calendar-grid button.is-range-start,
.ai-calendar-grid button.is-range-end {
  min-width: 32px;
  justify-self: center;
  background: var(--brand-primary-deep);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 8px 18px rgba(47, 147, 203, 0.26);
}

.ai-calendar-grid button.is-disabled,
.ai-calendar-grid button.is-muted {
  color: rgba(32, 37, 67, 0.34);
  cursor: not-allowed;
}

.ai-calendar__footer {
  justify-content: flex-end;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(23, 28, 73, 0.08);
}

.ai-calendar__footer p {
  margin: 0;
  max-width: 320px;
  color: rgba(32, 37, 67, 0.62);
  font-size: 0.7rem;
  line-height: 1.35;
}

.ai-calendar__footer button:last-child {
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff;
}

.ai-calendar__footer button:disabled,
.ai-calendar__footer button[aria-disabled='true'] {
  border-color: rgba(137, 152, 181, 0.28);
  background: rgba(137, 152, 181, 0.2);
  color: rgba(13, 20, 63, 0.42);
  cursor: not-allowed;
  box-shadow: none;
}

.booking-tabs {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  border: 1px solid rgba(23, 28, 73, 0.07);
  padding: 0 16px 20px;
  box-shadow: var(--shadow-soft);
  overflow: visible;
}

.booking-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.booking-tablist--hero {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  margin: 0 -16px 20px;
  padding: 0;
  border-radius: 30px 30px 0 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(23, 28, 73, 0.08);
  overflow: hidden;
}

.booking-tablist button {
  border: 0;
  border-right: 1px solid rgba(23, 28, 73, 0.08);
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 86px;
  padding: 13px 12px 14px;
  background: transparent;
  font-weight: 700;
  color: var(--brand-navy);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
}

.booking-tablist button:last-child {
  border-right: 0;
}

.booking-tab-label {
  font-family: var(--font-primary);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.15;
  text-transform: uppercase;
}

.booking-tablist button.active {
  background: linear-gradient(180deg, rgba(244, 248, 252, 0.82), rgba(255, 255, 255, 1));
  color: var(--brand-primary-deep);
  box-shadow: none;
}

.booking-tablist button.active::after {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-primary);
}

.booking-tab-icon {
  width: 30px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111735;
  font-size: 1.32rem;
  line-height: 1;
}

.booking-tablist button.active .booking-tab-icon {
  color: var(--brand-primary-deep);
}

.booking-tablist__offer {
  margin-left: auto;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(85, 183, 234, 0.16);
  color: var(--brand-primary-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-panel {
  display: none;
}

.booking-panel.active {
  display: block;
}

.booking-panel__simple {
  padding: 18px 4px;
}

.booking-panel__simple--hero {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(244, 248, 252, 0.9), #ffffff);
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form--airline {
  gap: 14px;
  padding: 8px 10px 0;
  overflow: visible;
}

.booking-form--grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.booking-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 8px 10px;
}

.booking-trip-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.booking-trip-options label {
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.booking-trip-options input {
  width: 15px;
  height: 15px;
  accent-color: var(--brand-primary-deep);
}

.booking-trip-options--hotel {
  gap: 10px;
}

.booking-trip-options__label {
  color: var(--brand-primary-deep);
  font-weight: 700;
}

.booking-toolbar__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  color: rgba(32, 37, 67, 0.72);
  font-family: var(--font-primary);
  font-size: 0.86rem;
}

.booking-toolbar__meta span {
  position: relative;
  padding: 0 17px;
  white-space: nowrap;
}

.booking-toolbar__meta span:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 20px;
  background: rgba(23, 28, 73, 0.1);
  transform: translateY(-50%);
}

.booking-toolbar__meta span:not(:first-child)::before {
  content: '';
  position: absolute;
  right: 3px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--brand-primary-deep);
  border-bottom: 2px solid var(--brand-primary-deep);
  transform: translateY(-75%) rotate(45deg);
}

.booking-toolbar__brand {
  color: var(--brand-primary-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-toolbar__brand em {
  color: rgba(32, 37, 67, 0.68);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.booking-field-row {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(330px, 2.25fr) 0.82fr 0.82fr 0.95fr 0.88fr 0.88fr 116px;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  overflow: visible;
  transition: margin-bottom 0.2s ease;
}

.booking-field-row--airindia {
  align-items: stretch;
  padding: 8px 0 18px;
}

.booking-form--airline.has-open-passenger-menu .booking-field-row {
  margin-bottom: 138px;
}

.booking-field-row--hotel {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr) auto;
}

.route-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  align-items: stretch;
  min-width: 0;
}

.route-field__block,
.search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 82px;
  padding: 6px 13px;
  border-right: 1px solid rgba(23, 28, 73, 0.18);
}

.route-field__block--single {
  min-height: 118px;
}

.route-field__caption {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(95, 103, 126, 0.74);
}

.route-field__block input,
.search-field input,
.search-field select {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.route-field__block input {
  font-family: var(--font-primary);
  width: min(154px, 100%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: clamp(1.82rem, 2.45vw, 2.45rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.07em;
  color: #6d737d;
  text-transform: uppercase;
  box-shadow: none;
}

.route-field__block small,
.search-field small {
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(32, 37, 67, 0.56);
}

.search-field span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(32, 37, 67, 0.48);
}

.search-field input,
.search-field select {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--brand-navy);
}

.search-field input[type='date'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.search-field em {
  color: var(--brand-navy);
  font-style: normal;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.search-field select {
  width: 100%;
  min-height: auto;
  padding: 0 22px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  appearance: auto;
  color: var(--brand-navy);
  cursor: pointer;
}

.search-field--concession span {
  max-width: 82px;
  line-height: 1.15;
}

.search-field:last-of-type {
  border-right: 1px solid rgba(23, 28, 73, 0.08);
}

.search-field--passengers {
  position: relative;
  gap: 12px;
}

.passenger-selector__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-navy);
  cursor: pointer;
  text-align: left;
}

.passenger-selector__toggle strong {
  font-size: 1.08rem;
  font-weight: 700;
}

.passenger-selector__toggle span {
  color: var(--brand-primary-deep);
  font-weight: 700;
}

.passenger-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 28px;
  z-index: 120;
  width: 194px;
  padding: 26px 16px 20px;
  border-radius: 3px;
  background: #ffffff;
  border: 1px solid rgba(23, 28, 73, 0.1);
  box-shadow: 0 16px 36px rgba(23, 28, 73, 0.12);
  display: none;
}

.passenger-selector.is-open .passenger-menu {
  display: grid;
  gap: 12px;
}

.passenger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.passenger-row strong {
  display: block;
  color: var(--brand-ink);
  font-size: 0.92rem;
}

.passenger-row small {
  display: block;
  color: rgba(32, 37, 67, 0.58);
  font-size: 0.72rem;
  line-height: 1.25;
}

.passenger-controls {
  display: grid;
  grid-template-columns: 24px 32px 24px;
  align-items: center;
  gap: 7px;
}

.passenger-controls button {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(23, 28, 73, 0.2);
  border-radius: 3px;
  background: #eef0f2;
  color: rgba(32, 37, 67, 0.72);
  font-weight: 700;
  cursor: pointer;
}

.passenger-controls button:last-child {
  background: #4b1756;
  color: #ffffff;
  border-color: #4b1756;
}

.passenger-controls input {
  width: 32px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(23, 28, 73, 0.12);
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
  color: #4b1756;
  font-weight: 700;
  appearance: textfield;
}

.passenger-controls input::-webkit-outer-spin-button,
.passenger-controls input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.route-field__swap {
  align-self: center;
  justify-self: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #f0f8ff;
  color: var(--brand-primary-deep);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 1;
}

.booking-form__submit--hero {
  align-self: center;
  justify-self: end;
  min-width: 102px;
  height: 42px;
  margin: 0;
  border-radius: 8px;
  box-shadow: none;
}

.booking-offer-strip {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 128px 0 2px;
}

.booking-offer-strip p {
  margin: 0;
  max-width: 900px;
  padding: 12px 16px;
  border: 1px solid rgba(85, 183, 234, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 255, 0.96));
  color: rgba(32, 37, 67, 0.76);
  font-size: 0.92rem;
  line-height: 1.25;
  white-space: nowrap;
  word-spacing: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-offer-strip__tag {
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--brand-surface);
  color: var(--brand-primary-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-form--panel {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  border: var(--border-soft);
  padding: 24px;
}

.booking-form label,
.mini-form label,
.filter-form label,
.admin-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  color: var(--brand-navy);
}

.booking-form label span,
.mini-form label span,
.filter-form label span,
.admin-form-grid label span {
  font-size: 0.94rem;
}

.booking-form label small,
.filter-form label small,
.flight-results-searchbar__form label small {
  color: rgba(32, 37, 67, 0.62);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.booking-form input,
.booking-form select,
.mini-form input,
.mini-form select,
.mini-form textarea,
.filter-form input,
.filter-form select,
.admin-form-grid input,
.admin-form-grid textarea,
.admin-form-grid select {
  width: 100%;
  border: 1px solid rgba(23, 28, 73, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
}

.booking-form--airline .booking-field-row {
  grid-template-columns: minmax(432px, 2.78fr) minmax(116px, 0.72fr) minmax(116px, 0.72fr) minmax(136px, 0.86fr) minmax(132px, 0.82fr) minmax(136px, 0.86fr) 122px;
  align-items: stretch;
}

.booking-form--airline .booking-field-row--airindia {
  padding: 4px 0 14px;
}

.booking-form--airline .route-field {
  grid-template-columns: minmax(184px, 1fr) 42px minmax(184px, 1fr);
}

.booking-form--airline .route-field__block,
.booking-form--airline .search-field {
  min-height: 86px;
  padding: 6px 14px 8px;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-form--airline .route-field__block:first-child {
  border-right: 0;
}

.booking-form--airline .route-field__block input,
.booking-form--airline .search-field input,
.booking-form--airline .search-field select {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  outline: 0;
}

.booking-form--airline .route-field__block input:focus,
.booking-form--airline .search-field input:focus,
.booking-form--airline .search-field select:focus,
.booking-form--airline .passenger-selector__toggle:focus {
  border: 0;
  box-shadow: none;
  outline: 0;
}

.booking-form--airline .route-field__block input {
  max-width: 196px;
  overflow: visible;
  font-family: var(--font-primary);
  font-size: clamp(1.72rem, 2.12vw, 2.22rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  color: #6a7079;
  text-transform: uppercase;
}

.booking-form--airline .route-field__caption {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: rgba(95, 103, 126, 0.7);
}

.booking-form--airline .route-field__block small,
.booking-form--airline .search-field small {
  font-size: 0.78rem;
}

.booking-form--airline .search-field span {
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(32, 37, 67, 0.52);
}

.booking-form--airline .search-field em,
.booking-form--airline .search-field select,
.booking-form--airline .passenger-selector__toggle strong {
  font-family: var(--font-primary);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--brand-navy);
}

.booking-form--airline .search-field input[type='date'] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.booking-form--airline .search-field em {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-form--airline .search-field select {
  appearance: none;
  cursor: pointer;
  padding-right: 22px;
}

.booking-form--airline .search-field--select {
  position: relative;
}

.booking-form--airline .search-field--select::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--brand-primary-deep);
  border-bottom: 2px solid var(--brand-primary-deep);
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.booking-form--airline .search-field--concession span {
  max-width: 88px;
}

.booking-form--airline .passenger-selector__toggle {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.booking-form--airline .route-field__swap {
  align-self: center;
  justify-self: center;
  position: relative;
  width: 28px;
  height: 28px;
  margin-top: 6px;
  margin-left: -42px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: transparent;
  font-size: 0;
  box-shadow: 0 8px 18px rgba(47, 147, 203, 0.22);
}

.booking-form--airline .route-field__swap::before,
.booking-form--airline .route-field__swap::after {
  position: absolute;
  left: 50%;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
}

.booking-form--airline .route-field__swap::before {
  content: '\21C4';
  top: 6px;
}

.booking-form--airline .route-field__swap::after {
  content: '';
  display: none;
}

.booking-form--airline .route-field__swap:hover::before {
  transform: translateX(-50%) scale(1.12);
}

.booking-form--airline .booking-form__submit--hero {
  align-self: center;
  justify-self: end;
  width: 112px;
  min-width: 112px;
  height: 39px;
  margin: 0 0 0 10px;
  border-radius: 7px;
  padding: 0 18px;
  box-shadow: none;
}

.booking-form__submit {
  align-self: end;
}

.section,
.page-shell {
  padding: 80px 0;
}

.section--muted {
  background: linear-gradient(180deg, rgba(84, 183, 234, 0.07), rgba(255, 255, 255, 0));
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.section-heading--left {
  text-align: left;
  margin-left: 0;
}

.section-heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.section-heading--split > div {
  max-width: 780px;
}

.section-heading--split p:last-child {
  margin: 0;
  color: rgba(32, 37, 67, 0.72);
}

.deals-showcase {
  padding-top: 18px;
}

.deals-showcase__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.deals-showcase__header h2 {
  margin: 0 0 12px;
  max-width: 1040px;
  font-family: var(--font-primary);
  color: var(--brand-navy);
  font-size: clamp(1.5rem, 2.18vw, 2.26rem);
  line-height: 1.22;
  letter-spacing: -0.012em;
  font-weight: 700;
}

.deals-showcase__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.deals-showcase__intro p {
  margin: 0;
  max-width: 760px;
  color: rgba(32, 37, 67, 0.74);
  line-height: 1.8;
}

.deals-rail,
.service-action-row {
  display: grid;
  gap: 20px;
}

.deals-rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.deal-feature-card,
.service-action-card {
  background: rgba(255, 255, 255, 0.96);
  border: var(--border-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.deal-feature-card {
  overflow: hidden;
}

.deal-feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.deal-feature-card__content {
  padding: 18px 18px 20px;
}

.deal-feature-card__content h3 {
  margin: 12px 0 10px;
  font-family: var(--font-primary);
  color: var(--brand-navy);
  font-size: 1.05rem;
  line-height: 1.32;
  letter-spacing: 0.002em;
  font-weight: 600;
}

.deal-feature-card__content p {
  margin: 0;
  color: rgba(32, 37, 67, 0.8);
  font-size: 0.94rem;
  line-height: 1.72;
  letter-spacing: 0;
}

.deal-feature-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.deal-feature-card--info {
  background:
    radial-gradient(circle at top right, rgba(85, 183, 234, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(244, 248, 252, 0.96), rgba(255, 255, 255, 0.98));
}

.holidays-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(85, 183, 234, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, rgba(244, 248, 252, 0.82) 100%);
}

.holiday-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.holiday-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: 26px;
  background: var(--brand-navy);
  box-shadow: var(--shadow-card);
}

.holiday-card a,
.holiday-card img {
  width: 100%;
  height: 100%;
}

.holiday-card a {
  display: block;
  color: #ffffff;
}

.holiday-card img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.holiday-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 21, 53, 0.04) 0%, rgba(16, 21, 53, 0.28) 46%, rgba(16, 21, 53, 0.86) 100%);
}

.holiday-card:hover img {
  transform: scale(1.06);
}

.holiday-card__country,
.holiday-card__body {
  position: absolute;
  z-index: 1;
}

.holiday-card__country {
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 600;
}

.holiday-card__body {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.holiday-card__body p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em !important;
}

.holiday-card__body h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1.24;
}

.holiday-card__body span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.service-action-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.service-action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
}

.service-action-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(85, 183, 234, 0.14);
  color: var(--brand-primary-deep);
  font-weight: 700;
}

.service-action-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-navy);
}

.service-action-card em {
  font-style: normal;
  color: rgba(32, 37, 67, 0.66);
  line-height: 1.5;
}

.promo-grid,
.card-grid,
.shortcut-grid,
.testimonial-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}

.promo-grid,
.card-grid--three,
.shortcut-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo-card,
.service-card,
.shortcut-card,
.testimonial-card,
.detail-card,
.admin-card,
.admin-stat-card,
.centered-panel,
.faq-item,
.result-card,
.filter-card {
  background: rgba(255, 255, 255, 0.95);
  border: var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.promo-card img,
.service-card img,
.gallery-grid img,
.result-card--hotel img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.promo-card__content,
.service-card__body,
.admin-card,
.filter-card,
.centered-panel,
.faq-item,
.result-card,
.detail-card {
  padding: 24px;
}

.promo-card__footer,
.table-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.pill {
  background: rgba(216, 179, 107, 0.18);
  color: #8c651d;
}

.shortcut-card {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.shortcut-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(85, 183, 234, 0.16);
  color: var(--brand-primary-deep);
  font-weight: 700;
}

.trust-panel,
.help-panel {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.stat-grid div,
.help-card-list article,
.room-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--brand-surface);
}

.support-band {
  padding: 8px 0 0;
  position: relative;
  z-index: 2;
}

.support-band__inner {
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 20%, rgba(85, 183, 234, 0.28), transparent 28%),
    linear-gradient(135deg, #101535, #222b72 62%, #376fa4);
  color: var(--brand-white);
  box-shadow: 0 24px 70px rgba(16, 21, 53, 0.24);
  transform: translateY(38px);
}

.support-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.support-band__copy {
  max-width: 760px;
}

.support-band__copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.support-band__copy h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.4rem, 2.1vw, 2.2rem);
}

.support-band__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 660px;
}

.support-band .button--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
}

.site-footer {
  margin-top: -8px;
  padding: 92px 0 32px;
  background:
    radial-gradient(circle at top left, rgba(85, 183, 234, 0.16), transparent 26%),
    linear-gradient(180deg, #101535 0%, #0b102b 100%);
  color: rgba(255, 255, 255, 0.84);
}

.site-footer--global {
  margin-top: 0;
  padding: 36px 0 26px;
  background:
    radial-gradient(circle at 8% 0%, rgba(37, 142, 210, 0.14), transparent 30%),
    linear-gradient(180deg, #f4fbff 0%, #ffffff 45%, #eef8ff 100%);
  border-top: 1px solid #d6ebfb;
  color: #0b1738;
}

.footer-modern {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 22px;
}

.footer-modern__brand {
  min-height: 0;
  padding: 22px 24px;
  border: 1px solid #cce6f8;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 246, 255, 0.92));
  box-shadow: 0 22px 58px rgba(7, 53, 74, 0.1);
}

.footer-modern__brand h2 {
  max-width: 640px;
  margin: 14px 0 8px;
  color: #071345;
  font-size: clamp(1.28rem, 1.65vw, 1.72rem);
  line-height: 1.24;
}

.footer-modern__brand p {
  max-width: 660px;
  color: #4d5872;
  font-size: 0.96rem;
  line-height: 1.62;
}

.footer-modern__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 24px;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.footer-modern__summary strong {
  display: block;
  margin-bottom: 10px;
  color: #071345;
  font-size: 1.18rem;
}

.footer-modern__summary p {
  margin: 0 0 18px;
  color: #4d5872;
}

.footer-modern__summary a {
  width: fit-content;
  color: #258ed2;
  font-weight: 800;
}

.footer-link-dock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.footer-link-dock > div {
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 53, 74, 0.055);
}

.footer-link-dock h3 {
  margin: 0 0 13px;
  color: #071345;
  font-size: 0.92rem;
}

.footer-link-dock a {
  display: block;
  margin: 0 0 9px;
  color: #44506b;
  font-size: 0.92rem;
}

.footer-link-dock a:hover {
  color: #258ed2;
}

.footer-platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px;
  margin-bottom: 32px;
  border: 1px solid #cce6f8;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 246, 255, 0.94));
  box-shadow: 0 18px 52px rgba(7, 53, 74, 0.09);
}

.footer-platform h2 {
  max-width: 760px;
  margin: 0 0 8px;
  color: #071345;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.18;
}

.footer-platform p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #56617d;
}

.footer-platform .eyebrow {
  color: #2d8dcc;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(170px, 0.75fr));
  gap: 34px;
  padding-bottom: 30px;
}

.footer-grid--global {
  grid-template-columns: minmax(285px, 1.4fr) repeat(4, minmax(145px, 0.75fr));
  align-items: start;
  gap: 30px;
  padding-bottom: 28px;
}

.footer-grid h3 {
  color: #071345;
  margin: 0 0 18px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 11px;
}

.footer-logo {
  width: 215px;
  max-width: 100%;
  max-height: 96px;
  margin-bottom: 0;
  object-fit: contain;
  filter: none;
}

.footer-brand__lead {
  max-width: 420px;
  color: #4d5872;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #cce6f8;
  border-radius: 999px;
  background: #eef8ff;
  color: #0c4970;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: auto;
  padding: 9px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0;
}

.footer-column a {
  width: fit-content;
  color: #3f4b66;
  transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.footer-column a:hover,
.footer-socials a:hover,
.footer-bottom a:hover {
  color: #258ed2;
  transform: translateX(2px);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-contact span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contact p a {
  display: inline;
  color: #ffffff;
}

.footer-compliance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-compliance div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-compliance span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer-compliance strong {
  color: #ffffff;
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  margin-top: 20px;
  border-top: 1px solid #dbeaf4;
  color: #60708b;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: #33405c;
}

.article-shell,
.booking-page,
.centered-panel,
.faq-shell {
  max-width: 900px;
}

.article-shell,
.centered-panel {
  margin: 0 auto;
}

.prose {
  line-height: 1.9;
}

.results-layout,
.detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
}

.detail-grid--single {
  grid-template-columns: 2fr 1fr;
}

.result-list,
.faq-list,
.help-card-list,
.detail-card--main,
.mini-form,
.filter-form,
.admin-form-grid {
  display: grid;
  gap: 18px;
}

.contact-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(37, 142, 210, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 58%, #f3faff 100%);
}

.contact-modern {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.contact-hero-panel,
.contact-form-panel {
  border: 1px solid #d3e8f7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 58px rgba(7, 53, 74, 0.08);
}

.contact-hero-panel {
  padding: 32px;
}

.contact-hero-panel h1 {
  max-width: 680px;
  margin: 0 0 16px;
  color: #071345;
  font-size: clamp(1.75rem, 2.45vw, 2.65rem);
  line-height: 1.16;
}

.contact-hero-panel > p {
  max-width: 680px;
  color: #4d5872;
  font-size: 1rem;
  line-height: 1.68;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 22px;
}

.contact-method-card {
  min-height: 170px;
  padding: 18px;
  border: 1px solid #d5e9f7;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f3fbff);
}

.contact-method-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #258ed2;
  font-weight: 800;
}

.contact-method-card strong {
  display: block;
  margin-bottom: 8px;
  color: #071345;
  font-size: 1rem;
}

.contact-method-card p {
  margin: 0;
  color: #5a6680;
  font-size: 0.92rem;
}

.contact-email-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #eef8ff;
  border: 1px solid #c8e4f8;
}

.contact-email-strip span {
  color: #258ed2;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-email-strip a {
  color: #071345;
  font-weight: 800;
}

.contact-form-panel {
  padding: 26px;
}

.contact-form-panel__header {
  margin-bottom: 20px;
}

.contact-form-panel__header h2 {
  margin: 0;
  color: #071345;
}

.mini-form--contact {
  gap: 16px;
}

.mini-form--contact input,
.mini-form--contact textarea {
  border-color: #d2e2ee;
  border-radius: 8px;
  background: #fbfdff;
}

.mini-form--contact textarea {
  min-height: 140px;
  resize: vertical;
}

.activity-listing-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.activity-filter-sidebar {
  position: sticky;
  top: 86px;
}

.activity-filter-panel {
  display: grid;
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(32, 37, 67, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(32, 37, 67, 0.08);
}

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

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

.activity-filter-group--city .activity-filter-options {
  max-height: 280px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
}

.activity-filter-group--city .activity-filter-options::-webkit-scrollbar {
  width: 8px;
}

.activity-filter-group--city .activity-filter-options::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(32, 37, 67, 0.06);
}

.activity-filter-group--city .activity-filter-options::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.68);
}

.activity-filter-group + .activity-filter-group {
  padding-top: 2px;
  border-top: 1px solid rgba(32, 37, 67, 0.08);
}

.activity-filter-group h2 {
  margin: 0 0 2px;
  color: rgba(32, 37, 67, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.activity-filter-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(23, 28, 73, 0.08);
  border-radius: 8px;
  background: #fafbfd;
  color: var(--brand-navy);
  cursor: pointer;
}

.activity-filter-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brand-primary);
}

.activity-filter-check span {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}

.activity-filter-panel__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.activity-filter-panel__actions .button {
  min-height: 46px;
  justify-content: center;
  white-space: nowrap;
}

.activity-filter-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.12);
  color: rgba(32, 37, 67, 0.7);
}

.activity-filter-summary strong,
.activity-card-meta span {
  color: var(--brand-primary-deep);
}

.activity-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.activity-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.12);
  font-size: 0.74rem;
  font-weight: 800;
}

.card-grid > .empty-state {
  grid-column: 1 / -1;
}

.result-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.result-card--hotel {
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}

.result-card__content {
  padding: 24px 0;
}

.result-card__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 180px;
}

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

.flight-summary div,
.map-placeholder,
.code-block,
.empty-state {
  padding: 18px;
  border-radius: 18px;
  background: var(--brand-surface);
}

.amenity-list,
.detail-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flash {
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(85, 183, 234, 0.28);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(237, 248, 255, 0.96), #ffffff);
  color: var(--brand-navy);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(20, 33, 61, 0.08);
}

.flash--error {
  border-color: rgba(85, 183, 234, 0.38);
  background:
    linear-gradient(135deg, rgba(85, 183, 234, 0.16), rgba(255, 255, 255, 0.98) 74%),
    #ffffff;
  color: var(--brand-navy);
}

.flight-results-page {
  background:
    radial-gradient(circle at top left, rgba(85, 183, 234, 0.14), transparent 32%),
    linear-gradient(180deg, #f5f7fb 0%, #eef2f8 100%);
}

.flight-results-searchbar {
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 18px;
  background: #2f2d3a;
  box-shadow: 0 18px 40px rgba(19, 23, 56, 0.16);
}

.results-request-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(32, 37, 67, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(32, 37, 67, 0.08);
}

.results-request-strip__summary {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  overflow: hidden;
  color: rgba(32, 37, 67, 0.72);
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.results-request-strip__compact {
  display: none;
  min-width: 0;
  margin: 0;
  color: rgba(32, 37, 67, 0.72);
  font-size: 0.94rem;
  font-weight: 700;
}

.results-request-strip__compact strong {
  color: var(--brand-navy);
  font-weight: 900 !important;
}

.results-request-strip__summary strong {
  color: var(--brand-navy);
  font-weight: 900 !important;
}

.results-request-strip__summary span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.results-request-strip__summary span:not(:last-child)::after {
  content: '|';
  margin-left: 9px;
  color: rgba(32, 37, 67, 0.26);
}

.results-request-strip .button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 18px;
}

.results-request-strip [data-results-edit-toggle],
.results-request-strip [data-transport-edit-toggle] {
  min-width: 118px;
  border: 1px solid rgba(74, 166, 224, 0.55) !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary)) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(74, 166, 224, 0.24);
  font-weight: 800;
  letter-spacing: 0;
}

.results-request-strip [data-results-edit-toggle]:hover,
.results-request-strip [data-results-edit-toggle]:focus-visible,
.results-request-strip [data-transport-edit-toggle]:hover,
.results-request-strip [data-transport-edit-toggle]:focus-visible {
  border-color: rgba(74, 166, 224, 0.78) !important;
  background: linear-gradient(135deg, #2689ce, #58b8ee) !important;
  box-shadow: 0 18px 34px rgba(74, 166, 224, 0.32);
  transform: translateY(-1px);
  outline: none;
}

.results-request-strip [data-results-edit-toggle][aria-expanded='true'],
.results-request-strip [data-transport-edit-toggle][aria-expanded='true'] {
  background: linear-gradient(135deg, var(--brand-navy), #293783) !important;
  border-color: rgba(23, 28, 73, 0.5) !important;
  box-shadow: 0 16px 30px rgba(23, 28, 73, 0.24);
}

.results-edit-card {
  margin-bottom: 18px;
}

.results-edit-card[hidden] {
  display: none !important;
}

.results-edit-card .ai-booking-tabs button:disabled {
  cursor: default;
  opacity: 0.68;
}

.flight-results-page .flight-results-searchbar {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.flight-results-page .flight-results-searchbar .ai-search-btn,
.flight-results-page .flight-results-searchbar__form button {
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
}

.flight-results-searchbar .ai-flight-form--results {
  padding: 10px 8px 8px;
}

.flight-results-searchbar .ai-booking-toolbar {
  margin-bottom: 18px;
}

.flight-results-searchbar .ai-trip-options label,
.flight-results-searchbar .ai-booking-tools button,
.flight-results-searchbar .ai-booking-tools__brand em {
  color: rgba(255, 255, 255, 0.82);
}

.flight-results-searchbar .ai-booking-tools__brand {
  color: #8dc8ff;
}

.flight-results-searchbar .ai-booking-tools__brand:not(:last-child)::after,
.flight-results-searchbar .ai-booking-tools button:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.16);
}

.flight-results-searchbar .ai-booking-tools button::before,
.flight-results-searchbar .ai-passenger__toggle i,
.flight-results-searchbar .ai-select-field::after {
  border-color: #f19e7b;
}

.flight-results-searchbar .ai-flight-row--results {
  grid-template-columns: minmax(310px, 2.15fr) minmax(118px, 0.82fr) minmax(118px, 0.82fr) minmax(152px, 0.98fr) minmax(150px, 0.96fr) 118px;
}

.flight-results-searchbar .ai-route-pair {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.flight-results-searchbar .ai-route-box,
.flight-results-searchbar .ai-field {
  min-height: 82px;
  padding: 0 12px;
  background: transparent;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.flight-results-searchbar .ai-route-box span,
.flight-results-searchbar .ai-field span {
  color: rgba(255, 255, 255, 0.56);
}

.flight-results-searchbar .ai-route-box input {
  max-width: 168px;
  color: #ffffff;
  font-size: clamp(1.45rem, 1.65vw, 1.85rem);
  letter-spacing: 0.04em !important;
}

.flight-results-searchbar .ai-route-box small,
.flight-results-searchbar .airport-field small,
.flight-results-searchbar .airport-field.is-selected small {
  color: rgba(255, 255, 255, 0.74);
}

.flight-results-searchbar .ai-date-trigger strong,
.flight-results-searchbar .ai-passenger__toggle strong,
.flight-results-searchbar .ai-select-field select {
  color: #ffffff;
}

.flight-results-searchbar .ai-date-trigger strong {
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.flight-results-searchbar .ai-select-field select {
  background: transparent;
}

.flight-results-searchbar .ai-search-btn {
  justify-self: stretch;
  width: 100%;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c46c4f, #cc764c);
}

.flight-results-page .flight-results-searchbar .ai-search-btn {
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
}

.flight-results-searchbar .ai-calendar {
  top: calc(100% + 14px);
}

.flight-results-searchbar__form {
  display: grid;
  grid-template-columns: 138px 1.15fr 1.15fr 150px 210px 120px 118px;
  gap: 6px;
  align-items: stretch;
}

.flight-results-searchbar__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.flight-results-searchbar__form label span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flight-results-searchbar__form label small {
  color: rgba(255, 255, 255, 0.62);
}

.flight-results-searchbar__form input,
.flight-results-searchbar__form select {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.98rem;
}

.flight-results-searchbar__form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.flight-results-searchbar__form button {
  align-self: center;
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #c46c4f, #cc764c);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
}

.flight-results-searchbar .airport-field {
  position: relative;
}

.flight-results-searchbar .airport-suggestions {
  top: calc(100% + 10px);
  width: min(520px, calc(100vw - 40px));
  min-width: max(100%, 460px);
  padding: 10px;
  border: 1px solid rgba(23, 28, 73, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(247, 249, 253, 0.975));
  box-shadow: 0 24px 54px rgba(15, 20, 45, 0.18);
  backdrop-filter: blur(8px);
}

.flight-results-searchbar .airport-suggestions.is-open {
  gap: 8px;
}

.flight-results-searchbar .airport-suggestion {
  grid-template-columns: 68px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 28, 73, 0.05);
  border-radius: 16px;
  background: rgba(250, 251, 255, 0.96);
  color: #16214c;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.flight-results-searchbar .airport-suggestion:nth-child(odd) {
  background: rgba(236, 244, 252, 0.98);
}

.flight-results-searchbar .airport-suggestion:nth-child(even) {
  background: rgba(247, 248, 251, 0.98);
}

.flight-results-searchbar .airport-suggestion:hover,
.flight-results-searchbar .airport-suggestion.is-active {
  border-color: rgba(85, 183, 234, 0.2);
  background: rgba(222, 239, 252, 0.98);
  transform: translateY(-1px);
}

.flight-results-searchbar .airport-suggestion__code {
  align-self: center;
  min-height: 40px;
  border-radius: 12px;
  background: rgba(85, 183, 234, 0.16);
  color: #121826;
  font-size: 0.9rem;
  font-weight: 800;
}

.flight-results-searchbar .airport-suggestion__meta {
  display: grid;
  gap: 2px;
  min-width: 0;
  align-content: center;
}

.flight-results-searchbar .airport-suggestion__meta strong {
  color: #1f2a56;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.01em !important;
  text-transform: none;
}

.flight-results-searchbar .airport-suggestion__location {
  color: rgba(31, 42, 86, 0.74);
  font-size: 0.8rem;
  line-height: 1.24;
  margin-top: 0;
}

.flight-results-searchbar .airport-suggestion__country {
  color: rgba(31, 42, 86, 0.56);
  font-size: 0.74rem;
  line-height: 1.2;
  margin-top: 0;
  letter-spacing: 0.02em !important;
  text-transform: none;
}

.flight-results-airlines {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.flight-results-airlines__chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(19, 23, 56, 0.08);
}

.flight-results-airlines__badge,
.flight-offer-card__badge {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ee594f, #eb3e51);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
}

.flight-results-airlines__chip strong {
  display: block;
  font-size: 0.88rem;
}

.flight-results-airlines__chip p {
  margin: 2px 0 0;
  color: rgba(32, 37, 67, 0.6);
  font-size: 0.8rem;
}

.flight-results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.flight-results-toolbar__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  flex: 1;
}

.flight-results-toolbar__card {
  padding: 12px 16px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(19, 23, 56, 0.06);
}

.flight-results-toolbar__card.is-active {
  outline: 2px solid rgba(196, 108, 79, 0.28);
}

.flight-results-toolbar__card span {
  display: block;
  color: rgba(32, 37, 67, 0.58);
  font-size: 0.78rem;
}

.flight-results-toolbar__card strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.flight-results-toolbar__card p {
  margin: 4px 0 0;
  color: rgba(32, 37, 67, 0.68);
  font-size: 0.84rem;
}

.flight-results-toolbar__sort {
  min-width: 186px;
}

.flight-results-toolbar__sort label {
  display: grid;
  gap: 6px;
}

.flight-results-toolbar__sort span {
  color: rgba(32, 37, 67, 0.58);
  font-size: 0.8rem;
}

.flight-results-toolbar__sort select {
  width: 100%;
  border: 1px solid rgba(23, 28, 73, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  background: #ffffff;
}

.flight-results-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
}

.flight-filters-panel {
  align-self: start;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(19, 23, 56, 0.08);
}

.flight-filters-panel__form,
.flight-filters-group {
  display: grid;
  gap: 16px;
}

.flight-filters-group + .flight-filters-group {
  padding-top: 4px;
  border-top: 1px solid rgba(23, 28, 73, 0.08);
}

.flight-filters-group h2,
.flight-filters-group h3 {
  margin: 0;
  font-size: 1.04rem;
}

.flight-filters-group label {
  display: grid;
  gap: 8px;
}

.flight-filters-group label span {
  color: rgba(32, 37, 67, 0.68);
  font-size: 0.88rem;
}

.flight-filters-group input,
.flight-filters-group select {
  width: 100%;
  border: 1px solid rgba(23, 28, 73, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fafbfd;
}

.flight-filters-check {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
}

.flight-filters-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brand-primary-deep);
}

.flight-results-headline {
  margin-bottom: 16px;
}

.flight-results-headline h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.flight-results-headline p:last-child {
  margin: 0;
  color: rgba(32, 37, 67, 0.74);
  font-size: 1rem;
}

.flight-results-headline p:last-child span {
  margin: 0 10px;
  color: rgba(32, 37, 67, 0.36);
}

.flight-offer-stack {
  display: grid;
  gap: 18px;
}

.flight-offer-card {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(19, 23, 56, 0.08);
  overflow: hidden;
}

.flight-offer-card summary {
  list-style: none;
}

.flight-offer-card summary::-webkit-details-marker {
  display: none;
}

.flight-offer-card__summary {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(360px, 1.55fr) 172px;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
}

.flight-offer-card__summary > * + * {
  border-left: 1px dashed rgba(23, 28, 73, 0.14);
  padding-left: 18px;
}

.flight-offer-card__airline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flight-offer-card__airline h2 {
  margin: 0 0 4px;
  font-size: 1.34rem;
}

.flight-offer-card__airline p {
  margin: 0;
  color: rgba(32, 37, 67, 0.62);
  font-size: 0.86rem;
}

.flight-offer-card__route {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) minmax(170px, 1.15fr) minmax(90px, 1fr);
  align-items: center;
  gap: 12px;
}

.flight-offer-card__point strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.flight-offer-card__point span {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 700;
}

.flight-offer-card__point small {
  display: block;
  margin-top: 6px;
  color: rgba(32, 37, 67, 0.6);
  font-size: 0.8rem;
}

.flight-offer-card__point--arrive {
  text-align: right;
}

.flight-offer-card__track {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.flight-offer-card__line {
  position: absolute;
  top: 18px;
  left: 10px;
  right: 10px;
  border-top: 2px solid rgba(23, 28, 73, 0.18);
  border-radius: 999px;
}

.flight-offer-card__track i {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #2f2d3a;
  font-style: normal;
}

.flight-offer-card__track strong {
  font-size: 0.94rem;
}

.flight-offer-card__track small {
  color: rgba(32, 37, 67, 0.62);
  font-size: 0.8rem;
}

.flight-offer-card__track-time--connection,
.flight-offer-card__track-caption--connection {
  display: none;
}

.flight-offer-card__price {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.flight-offer-card__price strong {
  font-size: 1.9rem;
  line-height: 1;
}

.flight-offer-card__price span,
.flight-offer-card__price em {
  color: rgba(32, 37, 67, 0.64);
  font-size: 0.84rem;
  font-style: normal;
}

.flight-offer-card__cta {
  margin-top: 6px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(47, 147, 203, 0.22);
}

.flight-offer-card__body {
  border-top: 1px solid rgba(23, 28, 73, 0.08);
  background: #fffefd;
}

.flight-offer-card__body-head,
.flight-offer-card__extras {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 22px;
}

.flight-offer-card__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.flight-offer-card__tabs span {
  color: rgba(32, 37, 67, 0.64);
  font-size: 0.9rem;
}

.flight-offer-card__tabs .is-active {
  color: var(--brand-primary-deep);
  font-weight: 700;
}

.flight-offer-card__detail-link {
  color: var(--brand-primary-deep);
  font-weight: 700;
}

.flight-offer-card__detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(23, 28, 73, 0.08);
  border-bottom: 1px solid rgba(23, 28, 73, 0.08);
}

.flight-offer-card__detail-grid article {
  padding: 18px 22px;
}

.flight-offer-card__detail-grid article + article {
  border-left: 1px solid rgba(23, 28, 73, 0.08);
}

.flight-offer-card__detail-grid span {
  display: block;
  color: rgba(32, 37, 67, 0.54);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.flight-offer-card__detail-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.flight-offer-card__detail-grid p {
  margin: 6px 0 0;
  color: rgba(32, 37, 67, 0.64);
  font-size: 0.86rem;
}

.flight-offer-card__extras {
  color: rgba(32, 37, 67, 0.72);
  font-size: 0.88rem;
}

.flight-offer-card__extras .button {
  margin-left: auto;
}

.flight-filters-panel__intro {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(85, 183, 234, 0.22);
  border-radius: 14px;
  background: rgba(238, 248, 255, 0.82);
  color: #52617d;
  font-size: 0.84rem;
  line-height: 1.45;
}

.flight-offer-card__badge {
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  box-shadow: 0 12px 24px rgba(47, 147, 203, 0.2);
}

.flight-offer-card__mobile-kpis {
  display: none;
}

.flight-schedule-card {
  margin: 0 22px 16px;
  padding: 18px;
  border: 1px solid rgba(85, 183, 234, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(238, 248, 255, 0.9), rgba(255, 255, 255, 0.98));
}

.flight-schedule-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(23, 28, 73, 0.08);
}

.flight-schedule-card__head strong {
  display: block;
  color: var(--brand-navy);
  font-size: 1.08rem;
}

.flight-schedule-card__head span {
  display: block;
  margin-top: 4px;
  color: #5d6881;
  font-size: 0.86rem;
}

.flight-schedule-card__head em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-primary-deep);
  font-style: normal;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(85, 183, 234, 0.28);
}

.flight-schedule-card__notice {
  margin: 14px 0;
  color: #5d6881;
  font-size: 0.86rem;
  line-height: 1.5;
}

.flight-schedule-timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.flight-schedule-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 75px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-primary-deep), rgba(85, 183, 234, 0.32));
}

.flight-schedule-event {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  padding: 11px 0;
}

.flight-schedule-event__dot {
  position: absolute;
  top: 19px;
  left: 70px;
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--brand-primary-deep);
  box-shadow: 0 0 0 1px rgba(85, 183, 234, 0.34);
}

.flight-schedule-event time {
  color: var(--brand-navy);
  font-size: 1rem;
  font-weight: 900;
}

.flight-schedule-event strong {
  display: block;
  color: var(--brand-navy);
  font-size: 1rem;
  line-height: 1.35;
}

.flight-schedule-event p {
  margin: 4px 0 0;
  color: #5d6881;
  font-size: 0.86rem;
  line-height: 1.42;
}

.flight-schedule-transfer__times {
  display: grid;
  gap: 18px;
}

.flight-schedule-transfer__box {
  padding: 12px 14px;
  border: 1px solid rgba(85, 183, 234, 0.28);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(19, 23, 56, 0.06);
}

.flight-schedule-transfer__box small {
  display: block;
  margin-top: 6px;
  color: var(--brand-primary-deep);
  font-size: 0.76rem;
  font-weight: 800;
}

.flight-filters-group--sort {
  display: none;
}

@media (min-width: 721px) {
  .flight-offer-card__summary {
    padding: 15px 20px;
  }

  .flight-offer-card__airline h2 {
    font-size: 1.18rem;
  }

  .flight-offer-card__point strong {
    font-size: 1.78rem;
  }

  .flight-offer-card__price strong {
    font-size: 1.68rem;
  }
}

.transport-results-page {
  background: #eef4f8;
}

.transport-results-hero {
  padding: 44px 0 74px;
  background: linear-gradient(135deg, #32303d 0%, #292734 100%);
  color: #ffffff;
}

.transport-results-hero--compact {
  padding: 30px 0 76px;
}

.transport-results-hero h1 {
  max-width: 880px;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.transport-results-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.transport-results-hero span {
  margin: 0 8px;
  color: var(--brand-primary);
}

.transport-results-shell {
  display: grid;
  gap: 18px;
  margin-top: -42px;
  padding-bottom: 70px;
}

.transport-results-page .transport-results-shell {
  margin-top: 0;
}

.transport-request-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid rgba(32, 37, 67, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(32, 37, 67, 0.08);
}

.transport-request-bar p {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  overflow: hidden;
  color: rgba(32, 37, 67, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.transport-request-bar strong {
  color: var(--brand-navy);
  font-weight: 900 !important;
}

.transport-request-bar span {
  min-width: 0;
  position: relative;
}

.transport-request-bar span:not(:last-child)::after {
  content: '|';
  margin-left: 9px;
  color: rgba(32, 37, 67, 0.26);
}

.transport-request-bar .button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 18px;
}

.transport-results-edit-card[hidden] {
  display: none !important;
}

.transport-results-edit-card {
  z-index: 8;
}

.transport-filter-card,
.transport-results-head,
.transport-result-card,
.transport-empty-state,
.transport-popular-routes {
  border: 1px solid rgba(32, 37, 67, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(32, 37, 67, 0.08);
}

.transport-filter-card {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.transport-filter-card h2,
.transport-results-head h2,
.transport-empty-state h2,
.transport-popular-routes h2 {
  margin: 0 0 14px;
  color: var(--brand-navy);
}

.transport-filter-form {
  display: grid;
  gap: 12px;
}

.transport-filter-form label {
  display: grid;
  gap: 6px;
}

.transport-filter-form span {
  color: rgba(32, 37, 67, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
}

.transport-filter-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(32, 37, 67, 0.12);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--brand-navy);
  font: inherit;
}

.transport-filter-trip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.transport-filter-trip label {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(32, 37, 67, 0.12);
  border-radius: 8px;
}

.transport-results-content {
  display: grid;
  gap: 18px;
}

.transport-results-head {
  padding: 24px 28px;
}

.transport-results-head p {
  margin: 0;
  color: rgba(32, 37, 67, 0.68);
}

.transport-result-stack {
  display: grid;
  gap: 14px;
}

.transport-result-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  padding: 18px;
}

.transport-result-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.12);
  color: var(--brand-primary-deep);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.transport-result-card h3 {
  margin: 10px 0 14px;
  color: var(--brand-navy);
}

.transport-result-card__route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.transport-result-card__route strong {
  display: block;
  color: var(--brand-primary-deep);
  font-size: 1.35rem;
}

.transport-result-card__route span {
  display: block;
  color: var(--brand-navy);
  font-weight: 800;
}

.transport-result-card__route small,
.transport-result-card__main p,
.transport-result-card__aside small {
  color: rgba(32, 37, 67, 0.62);
}

.transport-result-card__track {
  display: grid;
  gap: 6px;
  text-align: center;
}

.transport-result-card__track i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
}

.transport-result-card__aside {
  display: grid;
  align-content: center;
  gap: 8px;
  padding-left: 18px;
  border-left: 1px solid rgba(32, 37, 67, 0.1);
  text-align: right;
}

.transport-result-card__aside span {
  color: rgba(32, 37, 67, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.transport-result-card__aside strong {
  color: var(--brand-navy);
  font-size: 1.5rem;
}

.transport-section-title {
  margin: 8px 0 0;
  color: var(--brand-navy);
}

.transport-empty-state,
.transport-popular-routes {
  padding: 28px;
}

.transport-popular-routes > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.transport-popular-routes a {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(85, 183, 234, 0.18);
  border-radius: 8px;
  background: #f6fbfe;
  color: var(--brand-navy);
}

.transport-popular-routes span {
  color: rgba(32, 37, 67, 0.62);
  font-size: 0.82rem;
}

@media (max-width: 1180px) {
  .flight-results-searchbar__form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flight-results-searchbar .ai-flight-row--results {
    grid-template-columns: minmax(260px, 1.8fr) minmax(108px, 0.78fr) minmax(108px, 0.78fr) minmax(138px, 0.92fr) minmax(138px, 0.92fr) 112px;
  }

  .flight-results-airlines {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flight-results-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .flight-results-toolbar,
  .flight-offer-card__summary,
  .flight-offer-card__body-head,
  .flight-offer-card__extras {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .flight-results-toolbar__cards,
  .flight-offer-card__detail-grid {
    grid-template-columns: 1fr;
  }

  .flight-offer-card__summary > * + * {
    border-left: 0;
    border-top: 1px dashed rgba(23, 28, 73, 0.14);
    padding-left: 0;
    padding-top: 16px;
  }

  .flight-offer-card__point--arrive,
  .flight-offer-card__price {
    text-align: left;
    justify-items: start;
  }

  .flight-offer-card__detail-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(23, 28, 73, 0.08);
  }

  .flight-offer-card__extras .button {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .flight-results-searchbar {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .flight-results-searchbar__form {
    grid-template-columns: 1fr;
  }

  .flight-results-searchbar .ai-flight-form--results {
    padding: 14px 0 18px;
  }

  .flight-results-searchbar .ai-booking-toolbar {
    margin-bottom: 16px;
  }

  .flight-results-searchbar .ai-trip-options label {
    color: var(--brand-navy);
  }

  .flight-results-searchbar .ai-flight-row--results {
    grid-template-columns: 1fr 1fr;
  }

  .flight-results-searchbar .ai-route-pair,
  .flight-results-searchbar .ai-route-box,
  .flight-results-searchbar .ai-field {
    background: #ffffff;
  }

  .flight-results-searchbar .ai-route-pair {
    border: 1px solid rgba(23, 28, 73, 0.2);
  }

  .flight-results-searchbar .ai-route-box,
  .flight-results-searchbar .ai-field {
    border-color: rgba(23, 28, 73, 0.2);
    color: var(--brand-navy);
  }

  .flight-results-searchbar .ai-route-box span,
  .flight-results-searchbar .ai-field span {
    color: rgba(32, 37, 67, 0.56);
  }

  .flight-results-searchbar .ai-route-box input {
    color: var(--brand-primary-deep);
    max-width: none;
    letter-spacing: 0.01em !important;
  }

  .flight-results-searchbar .ai-route-box small,
  .flight-results-searchbar .airport-field small,
  .flight-results-searchbar .airport-field.is-selected small,
  .flight-results-searchbar .ai-date-trigger strong,
  .flight-results-searchbar .ai-passenger__toggle strong,
  .flight-results-searchbar .ai-select-field select {
    color: var(--brand-navy);
  }

  .flight-results-searchbar .ai-search-btn {
    background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  }

  .flight-results-airlines {
    grid-template-columns: 1fr 1fr;
  }

  .flight-results-toolbar__cards {
    grid-template-columns: 1fr;
  }

  .flight-results-headline h1 {
    font-size: 1.8rem;
  }

  .flight-offer-card__route {
    grid-template-columns: 1fr;
  }

  .flight-offer-card__point,
  .flight-offer-card__point--arrive {
    text-align: left;
  }

  .flight-offer-card__track {
    justify-items: start;
    text-align: left;
  }

  .flight-offer-card__line {
    left: 0;
    right: auto;
    width: 120px;
  }

  .flight-offer-card__body-head,
  .flight-offer-card__extras {
    padding: 14px 16px;
  }

  .flight-offer-card__summary,
  .flight-offer-card__detail-grid article {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.flash--success {
  border-color: rgba(85, 183, 234, 0.32);
  background:
    linear-gradient(135deg, rgba(85, 183, 234, 0.13), rgba(255, 255, 255, 0.98) 74%),
    #ffffff;
  color: var(--brand-navy);
}

.admin-body {
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.admin-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  padding: 28px 20px;
  background: #101535;
  color: rgba(255, 255, 255, 0.86);
  display: grid;
  gap: 24px;
}

.admin-sidebar__brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.admin-sidebar__brand img {
  width: 82px;
}

.admin-sidebar nav {
  display: grid;
  gap: 10px;
}

.admin-sidebar nav a {
  padding: 12px 14px;
  border-radius: 14px;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.admin-main {
  padding: 30px;
}

.admin-user {
  display: grid;
  gap: 4px;
  text-align: right;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.admin-stat-card {
  padding: 24px;
}

.admin-stat-card strong {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  color: var(--brand-navy);
}

.admin-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-table-wrap {
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(23, 28, 73, 0.08);
  text-align: left;
  vertical-align: top;
}

.visa-admin-filter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.visa-admin-filter label,
.visa-admin-form label {
  display: grid;
  gap: 8px;
}

.visa-admin-filter span,
.visa-admin-form span {
  color: rgba(32, 37, 67, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visa-admin-filter input,
.visa-admin-filter select,
.visa-admin-form input,
.visa-admin-form select,
.visa-admin-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 28, 73, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  background: #ffffff;
  color: var(--brand-navy);
  font: inherit;
}

.visa-admin-form {
  display: grid;
  gap: 22px;
}

.visa-admin-form fieldset {
  border: 1px solid rgba(85, 183, 234, 0.22);
  border-radius: 16px;
  padding: 18px;
}

.visa-admin-form legend {
  padding: 0 10px;
  color: var(--brand-navy);
  font-weight: 900;
}

.visa-admin-form__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.visa-admin-form__wide {
  grid-column: 1 / -1;
}

.visa-admin-form__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(85, 183, 234, 0.12);
  color: var(--brand-primary-deep);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-status-pill--draft {
  background: rgba(244, 166, 61, 0.16);
  color: #a45e05;
}

.status-pill--new {
  background: #e7f0ff;
  color: #2450a5;
}

.status-pill--contacted {
  background: #eaf7ef;
  color: #18603b;
}

.status-pill--pending {
  background: #fff4da;
  color: #92650b;
}

.status-pill--converted {
  background: #e4f9ec;
  color: #16653a;
}

.status-pill--closed {
  background: #ececec;
  color: #4e4e4e;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login__panel {
  width: min(480px, 100%);
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  border: var(--border-soft);
}

.admin-login__panel img {
  width: 220px;
  margin-bottom: 16px;
}

.settings-logo-block {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(244, 248, 252, 0.92), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(23, 28, 73, 0.08);
}

.settings-logo-block__label {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--brand-navy);
}

.settings-logo-preview {
  max-width: 260px;
  max-height: 90px;
  object-fit: contain;
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(23, 28, 73, 0.08);
}

/* Keep weights and tracking calm so the primary font stays readable across the full UI. */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 650 !important;
  line-height: 1.24;
  letter-spacing: -0.008em !important;
}

p,
li,
dd,
td,
th,
label,
input,
select,
textarea {
  letter-spacing: 0 !important;
}

p,
li,
dd {
  line-height: 1.72;
}

strong,
b {
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.eyebrow,
.pill,
.status-pill,
.hero-advisory__badge,
.ai-booking-tabs button,
.ai-booking-tabs a,
.booking-tablist button,
.table-actions a,
.table-actions button {
  font-weight: 600 !important;
  letter-spacing: 0.055em !important;
}

.button,
button,
.ai-search-btn,
.deal-feature-card__footer,
.promo-card__footer,
.service-action-card strong,
.shortcut-card strong,
.footer-grid h3,
.admin-card__header h1,
.admin-card__header h2,
.admin-card__header h3,
.admin-stat-card strong,
.settings-logo-block__label {
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.promo-card h3,
.service-card h3,
.shortcut-card h3,
.testimonial-card h3,
.detail-card h3,
.admin-card h3,
.result-card h3,
.filter-card h3,
.service-action-card strong,
.shortcut-card strong {
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.35;
}

.pill,
.status-pill,
.hero-advisory__badge {
  font-size: 0.76rem;
  line-height: 1.25;
}

.service-action-card em,
.shortcut-card em,
.promo-card p,
.service-card p,
.testimonial-card p,
.detail-card p,
.result-card p,
.filter-card p,
.admin-card p {
  color: rgba(32, 37, 67, 0.78);
  font-size: 0.95rem;
  line-height: 1.72;
}

@media (max-width: 1100px) {
  .ai-booking-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 10px;
  }

  .ai-booking-tabs a {
    justify-self: stretch;
  }

  .ai-booking-toolbar,
  .ai-upi-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .ai-flight-row,
  .ai-hotel-form,
  .ai-transport-row,
  .ai-activity-form,
  .ai-utility-form {
    grid-template-columns: 1fr;
  }

  .ai-route-pair {
    grid-template-columns: 1fr 42px 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 28, 73, 0.08);
  }

  .ai-route-box,
  .ai-hotel-destination,
  .ai-hotel-date-pair,
  .ai-hotel-rooms,
  .ai-field,
  .activity-multi-search,
  .ai-utility-form label {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 28, 73, 0.08);
  }

  .ai-search-btn {
    width: 100%;
    justify-self: stretch;
    margin-top: 12px;
  }

  .ai-calendar__months {
    grid-template-columns: 1fr;
  }

  .deals-rail,
  .service-action-row,
  .booking-form--grid,
  .promo-grid,
  .holiday-grid,
  .card-grid--three,
  .shortcut-grid,
  .testimonial-grid,
  .admin-stat-grid,
  .footer-grid,
  .footer-modern,
  .footer-link-dock,
  .contact-modern,
  .contact-method-grid,
  .hero__grid,
  .split-grid,
  .contact-grid,
  .detail-hero,
  .results-layout,
  .transport-results-layout,
  .detail-grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .transport-filter-card {
    position: static;
  }

  .transport-result-card {
    grid-template-columns: 1fr;
  }

  .transport-result-card__aside {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(32, 37, 67, 0.1);
    padding-top: 16px;
    text-align: left;
  }

  .transport-request-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .results-request-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .results-request-strip [data-results-edit-toggle],
  .results-request-strip [data-transport-edit-toggle] {
    width: 100%;
    min-height: 42px;
  }

  .transport-request-bar p {
    display: block;
    white-space: normal;
    line-height: 1.65;
  }

  .results-request-strip__summary {
    display: block;
    white-space: normal;
    line-height: 1.65;
  }

  .activity-listing-layout,
  .visa-admin-filter,
  .visa-admin-form__grid {
    grid-template-columns: 1fr;
  }

  .activity-filter-sidebar {
    position: static;
  }

  .booking-field-row,
  .booking-form--airline .booking-field-row,
  .booking-field-row--hotel {
    grid-template-columns: 1fr;
  }

  .booking-form--airline .booking-field-row--airindia {
    padding-bottom: 10px;
  }

  .route-field {
    grid-template-columns: 1fr;
  }

  .booking-form--airline .route-field {
    grid-template-columns: 1fr;
  }

  .route-field__block,
  .booking-form--airline .route-field__block,
  .search-field,
  .booking-form--airline .search-field,
  .search-field:last-of-type {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 28, 73, 0.08);
  }

  .route-field__swap {
    justify-self: center;
    margin: 6px 0;
  }

  .booking-form__submit--hero {
    margin: 12px;
  }

  .booking-form--airline .booking-form__submit--hero {
    justify-self: stretch;
    width: auto;
    margin: 12px 0 0;
  }

  .booking-toolbar,
  .booking-offer-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-toolbar__meta {
    width: 100%;
    gap: 10px;
  }

  .booking-toolbar__meta span {
    padding: 0;
  }

  .booking-toolbar__meta span::before,
  .booking-toolbar__meta span::after {
    display: none;
  }

  .booking-offer-strip {
    padding-right: 0;
  }

  .booking-offer-strip p {
    max-width: 100%;
    white-space: normal;
  }

  .main-nav__inner {
    min-height: 58px;
  }

  .booking-tablist--hero {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .booking-tablist button:nth-child(4n) {
    border-right: 0;
  }

  .footer-compliance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ai-chat-card {
    min-height: 470px;
    border-radius: 18px;
  }

  .ai-chat-card__header {
    padding: 16px;
  }

  .ai-chat-card__header h2 {
    font-size: 1.25rem;
  }

  .ai-chat-messages {
    padding: 16px;
  }

  .ai-chat-message {
    max-width: 100%;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .ai-chat-message--user {
    grid-template-columns: minmax(0, 1fr) 34px;
  }

  .ai-chat-message span {
    width: 34px;
    height: 34px;
  }

  .ai-chat-prompts {
    padding: 0 16px 14px;
  }

  .ai-chat-form {
    grid-template-columns: 1fr;
    padding: 14px 16px 16px;
  }

  .ai-chat-form button {
    width: 100%;
  }

  .ai-floating-launcher {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 7px;
  }

  .ai-floating-launcher__text {
    display: none;
  }

  .ai-booking-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(12, 16, 36, 0.18);
    background: linear-gradient(180deg, #32303d 0%, #2b2935 100%);
    overflow: visible;
  }

  .ai-mobile-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ai-mobile-heading strong {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em !important;
    text-transform: uppercase;
  }

  .ai-booking-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ai-booking-tabs button,
  .ai-booking-tabs a {
    width: 100%;
    height: 34px;
    border-radius: 7px;
    border-right: 0;
    background: rgba(255, 255, 255, 0.08);
  }

  .ai-flight-form {
    padding: 14px 16px 18px;
  }

  .ai-transport-form {
    padding: 14px 16px 18px;
  }

  .ai-booking-toolbar {
    margin-bottom: 16px;
  }

  .ai-booking-tools {
    display: none;
  }

  .ai-trip-options {
    gap: 18px;
  }

  .ai-trip-options label {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
  }

  .ai-flight-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-height: 0;
  }

  .multicity-builder {
    padding-top: 0;
  }

  .multicity-routes {
    gap: 14px;
    margin-bottom: 12px;
  }

  .multicity-leg {
    grid-template-columns: 1fr;
    gap: 14px;
    border-bottom: 0;
  }

  .multicity-route-pair {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
    min-height: 90px;
    border: 1px solid rgba(23, 28, 73, 0.2);
    border-radius: 12px;
    background: #ffffff;
    padding: 0 10px;
    overflow: visible;
  }

  .multicity-leg .ai-date-trigger {
    min-height: 72px;
    border: 1px solid rgba(23, 28, 73, 0.2);
    border-radius: 12px;
    background: #ffffff;
  }

  .multicity-leg .ai-swap {
    margin-left: 0;
  }

  .multicity-route-pair .airport-field {
    position: static;
  }

  .multicity-route-pair .airport-suggestions {
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .multicity-add-city {
    margin-top: 12px;
  }

  .multicity-remove-city {
    width: 100%;
    margin: 0;
  }

  .multicity-options {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .multicity-options .ai-passenger {
    position: relative;
  }

  .multicity-options .ai-field {
    min-height: 72px;
  }

  .multicity-search-btn {
    grid-column: 1 / -1;
  }

  .ai-hotel-form {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px 18px;
  }

  .ai-hotel-destination,
  .ai-hotel-date-pair,
  .ai-hotel-rooms {
    border: 1px solid rgba(23, 28, 73, 0.2);
    border-radius: 12px;
    background: #ffffff;
    color: var(--brand-navy);
  }

  .ai-hotel-destination {
    min-height: 72px;
    padding: 12px 14px;
  }

  .ai-hotel-destination span,
  .ai-hotel-rooms > span {
    color: var(--brand-navy);
    font-size: 0.68rem;
  }

  .ai-hotel-destination input {
    color: var(--brand-navy);
  }

  .ai-hotel-destination input::placeholder {
    color: rgba(23, 28, 73, 0.48);
  }

  .hotel-city-suggestions {
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
  }

  .ai-hotel-date-pair {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: visible;
  }

  .ai-hotel-date-pair .ai-date-trigger {
    min-height: 72px;
    border: 0;
    background: transparent;
  }

  .ai-hotel-date-pair .ai-date-trigger + .ai-date-trigger {
    border-left: 1px solid rgba(23, 28, 73, 0.2);
  }

  .ai-hotel-rooms {
    min-height: 72px;
    padding: 12px 14px;
  }

  .ai-hotel-room-menu.passenger-menu {
    left: 0;
    right: auto;
    width: min(100%, calc(100vw - 56px));
    max-height: min(560px, calc(100vh - 130px));
    transform: none;
  }

  .hotel-child-ages {
    grid-template-columns: 1fr;
  }

  .ai-hotel-search-btn {
    width: 100%;
    justify-self: stretch;
  }

  .ai-mobile-span-2 {
    grid-column: 1 / -1;
  }

  .ai-route-pair {
    position: relative;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
    gap: 0;
    min-height: 90px;
    border: 1px solid rgba(23, 28, 73, 0.2);
    border-radius: 12px;
    background: #ffffff;
    padding: 0 10px;
    overflow: visible;
  }

  .ai-route-box,
  .ai-field,
  .ai-utility-form label {
    min-height: 72px;
    padding: 12px 14px;
    border: 1px solid rgba(23, 28, 73, 0.2);
    border-radius: 12px;
    background: #ffffff;
  }

  .activity-multi-search {
    min-height: 72px;
    padding: 12px 14px;
    border: 1px solid rgba(23, 28, 73, 0.2);
    border-radius: 12px;
    background: #ffffff;
  }

  .activity-multi-search > span,
  .activity-multi-search input,
  .activity-multi-search__token {
    color: var(--brand-navy);
  }

  .ai-utility-form.ai-activity-form .activity-multi-search input {
    color: var(--brand-navy);
  }

  .activity-multi-search input::placeholder,
  .ai-utility-form.ai-activity-form .activity-multi-search input::placeholder {
    color: rgba(32, 37, 67, 0.46);
  }

  .activity-multi-search__token {
    background: rgba(85, 183, 234, 0.12);
  }

  .activity-multi-search__suggestions {
    left: 0;
    right: 0;
    width: auto;
  }

  .activity-multi-search__box {
    border-color: rgba(23, 28, 73, 0.1);
    background: rgba(245, 249, 253, 0.96);
  }

  .activity-multi-search:focus-within .activity-multi-search__box {
    border-color: rgba(85, 183, 234, 0.5);
    background: #ffffff;
  }

  .ai-route-box {
    min-height: 90px;
    border: 0;
    border-radius: 0;
    padding: 14px 6px 12px;
    justify-content: space-between;
  }

  .ai-route-box span {
    font-size: 0.5rem;
    letter-spacing: 0.1em !important;
  }

  .ai-route-box:last-of-type {
    align-items: flex-end;
    text-align: right;
  }

  .ai-route-pair .airport-field {
    position: static;
  }

  .ai-route-pair .airport-suggestions {
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .ai-route-pair .transport-city-field {
    position: static;
  }

  .ai-route-pair .transport-city-suggestions {
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .ai-route-box input {
    max-width: none;
    font-size: clamp(1.05rem, 7vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.01em !important;
    line-height: 1.05;
    color: var(--brand-primary-deep);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .transport-city-field input {
    color: var(--brand-primary-deep);
    font-size: clamp(1rem, 5.6vw, 1.55rem);
    text-transform: none;
  }

  .ai-route-box small {
    font-size: 0.8rem;
    color: var(--brand-navy);
  }

  .ai-route-box small,
  .airport-field small,
  .airport-field.is-selected small,
  .ai-field span,
  .ai-utility-form span,
  .ai-date-trigger strong,
  .ai-passenger__toggle strong,
  .ai-select-field select {
    color: var(--brand-navy);
  }

  .ai-custom-select__toggle {
    color: var(--brand-navy);
  }

  .ai-custom-select__menu {
    left: 0;
    width: 100%;
    max-width: none;
    transform: none;
  }

  .multicity-options .ai-custom-select__menu {
    left: auto;
    right: 0;
    width: calc(200% + 12px);
  }

  .ai-swap {
    width: 22px;
    height: 22px;
    margin: 0;
    align-self: center;
    justify-self: center;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .ai-swap::before {
    color: var(--brand-primary-deep);
    font-size: 1rem;
    font-weight: 700;
  }

  .ai-date-pair {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(23, 28, 73, 0.2);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
  }

  .ai-transport-row .ai-date-pair {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(23, 28, 73, 0.2);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
  }

  .ai-transport-row .ai-date-trigger {
    min-height: 72px;
    padding: 12px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .ai-transport-row .ai-search-btn {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .ai-date-pair.has-inline-calendar {
    overflow: visible;
  }

  .ai-date-pair .ai-calendar,
  .multicity-leg .ai-calendar {
    grid-column: 1 / -1;
    width: 100%;
  }

  .ai-date-pair .ai-date-trigger {
    min-height: 72px;
    padding: 12px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .ai-date-pair .ai-date-trigger + .ai-date-trigger {
    border-left: 1px solid rgba(23, 28, 73, 0.2);
  }

  .ai-mobile-half {
    min-height: 72px;
  }

  .ai-date-trigger strong,
  .ai-passenger__toggle strong,
  .ai-select-field select {
    font-size: 0.96rem;
  }

  .ai-date-trigger strong[data-oneway-label] {
    max-width: 88px;
  }

  .ai-date-trigger strong {
    text-decoration: none;
  }

  .ai-field span,
  .ai-utility-form span {
    font-size: 0.68rem;
  }

  .ai-passenger {
    min-height: 72px;
  }

  .ai-passenger-menu {
    left: 0;
    right: auto;
    top: calc(100% + 8px);
    min-width: 0;
    width: 100%;
    max-width: none;
    padding: 10px;
    border-radius: 12px;
    transform: none;
  }

  .ai-passenger-menu.passenger-menu {
    left: 0;
    right: auto;
    top: calc(100% + 8px);
    width: 100%;
    max-width: none;
    padding: 10px;
    border-radius: 12px;
    transform: none;
  }

  .multicity-options .ai-passenger-menu {
    width: min(calc(200% + 12px), calc(100vw - 76px));
  }

  .multicity-options .ai-passenger-menu.passenger-menu {
    left: 0;
    right: auto;
    width: min(calc(200% + 12px), calc(100vw - 76px));
    transform: none;
  }

  .ai-passenger-menu .passenger-row strong {
    font-size: 0.84rem;
  }

  .ai-passenger-menu .passenger-row small {
    font-size: 0.68rem;
  }

  .ai-passenger-menu .passenger-controls {
    grid-template-columns: 28px 38px 28px;
    gap: 6px;
  }

  .ai-passenger-menu .passenger-controls button {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .ai-passenger-menu .passenger-controls input {
    width: 38px;
    height: 38px;
  }

  .airport-suggestions {
    left: 0;
    right: auto;
    width: min(320px, calc(100vw - 40px));
    min-width: 0;
    max-width: calc(100vw - 40px);
    transform: none;
    max-height: 270px;
  }

  .airport-suggestion {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
    padding: 10px 12px;
  }

  .airport-suggestion__code {
    width: 42px;
    min-width: 42px;
    min-height: 32px;
    font-size: 0.76rem;
  }

  .ai-passenger__toggle {
    gap: 10px;
  }

  .ai-meta-row {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ai-pay-field {
    display: flex;
  }

  .ai-pay-field,
  .ai-concession-field {
    min-width: 0;
  }

  .ai-promo-link {
    display: block;
    grid-column: 1 / -1;
    border: 0;
    background: transparent;
    color: var(--brand-navy);
    font-family: var(--font-primary);
    font-size: 0.94rem;
    font-weight: 500;
    text-align: center;
    padding: 8px 0 2px;
    cursor: pointer;
  }

  .ai-promo-link::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-right: 2px solid var(--brand-primary-deep);
    border-bottom: 2px solid var(--brand-primary-deep);
    transform: translateY(-2px) rotate(45deg);
  }

  .ai-search-btn {
    width: 100%;
    height: 50px;
    margin-top: 2px;
    border-radius: 10px;
    justify-self: stretch;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  }

  .ai-upi-strip {
    display: none;
  }

  .ai-calendar {
    position: static;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(23, 28, 73, 0.14);
    transform: none;
  }

  .flight-results-searchbar .ai-mobile-heading strong {
    color: var(--brand-navy);
  }

  .ai-calendar__top,
  .ai-calendar__controls,
  .ai-calendar__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .ai-calendar__top {
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  .ai-calendar__footer {
    align-items: center;
    flex-direction: row;
  }

  .ai-calendar__top > div,
  .ai-calendar__footer > div {
    width: auto;
    justify-content: flex-end;
  }

  .ai-calendar__controls {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .ai-calendar__controls select {
    width: 100%;
    min-width: 0;
    padding: 9px 12px;
  }

  .ai-calendar__months {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ai-calendar-grid {
    gap: 4px;
  }

  .ai-calendar-grid span,
  .ai-calendar-grid button {
    min-height: 26px;
  }

  .ai-calendar__footer p {
    font-size: 0.72rem;
  }

  .container {
    width: min(100% - 20px, 1280px);
  }

  .support-band__inner,
  .admin-topbar,
  .deals-showcase__intro,
  .section-heading--split,
  .result-card,
  .promo-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-band__inner {
    padding: 26px 22px;
    transform: translateY(28px);
  }

  .site-footer {
    padding-top: 78px;
  }

  .footer-grid {
    gap: 26px;
  }

  .footer-modern__brand,
  .contact-hero-panel,
  .contact-form-panel {
    padding: 22px;
  }

  .footer-link-dock {
    padding: 10px;
  }

  .footer-compliance {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 24px;
  }

  .booking-shell {
    margin-top: 0;
  }

  .booking-form--grid,
  .flight-summary,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-advisory {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-advisory__content {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-advisory__link,
  .hero-advisory__dots {
    margin-left: 0;
  }

  .booking-tablist__offer {
    margin-left: 0;
  }

  .booking-tablist--hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-tablist button:nth-child(2n) {
    border-right: 0;
  }

  .route-field__block input {
    width: 100%;
    font-size: 1.9rem;
  }

  .booking-form--airline .route-field__block input {
    max-width: none;
    font-size: 1.9rem;
  }

  .passenger-menu {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .ai-passenger-menu.passenger-menu {
    position: absolute;
    margin-top: 0;
  }

  .brand img,
  .footer-logo {
    width: 150px;
  }

  .brand img {
    height: 52px;
  }

  .main-nav__inner {
    gap: 10px;
  }

  .main-nav__actions {
    width: auto;
    justify-content: flex-end;
  }

  .booking-mode-tabs--nav {
    padding: 3px;
  }

  .booking-mode-tabs--nav button {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .section,
  .page-shell {
    padding: 56px 0;
  }
}

@media (max-width: 1100px) {
  .ai-visa-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px 16px 18px;
  }

  .ai-visa-field {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
  }

  .ai-visa-apply-btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .ai-visa-form {
    grid-template-columns: 1fr;
  }

  .ai-visa-field {
    min-height: 72px;
    padding: 12px 14px;
    border: 1px solid rgba(23, 28, 73, 0.2);
    background: #ffffff;
    color: var(--brand-navy);
  }

  .ai-visa-field span {
    color: var(--brand-navy);
    font-size: 0.68rem;
  }

  .ai-visa-field select {
    color: var(--brand-navy);
    font-size: 0.96rem;
  }

  .ai-visa-field .ai-custom-select__toggle {
    color: var(--brand-navy);
  }

  .ai-visa-field .ai-custom-select__menu {
    left: 0;
    right: 0;
    width: auto;
    max-height: min(320px, calc(100vh - 170px));
    overflow-y: auto;
  }

  .ai-visa-field::after {
    right: 16px;
    bottom: 25px;
  }

  .visa-result-hero {
    padding: 28px 0 84px;
  }

  .visa-result-search,
  .visa-result-layout,
  .visa-result-card-grid,
  .visa-detail-grid {
    grid-template-columns: 1fr;
  }

  .visa-result-search {
    gap: 10px;
    padding: 12px;
  }

  .visa-result-search button {
    min-height: 46px;
  }

  .visa-result-body {
    margin-top: -48px;
  }

  .visa-doc-card {
    padding: 22px 18px;
  }

  .visa-apply-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .flight-results-page .results-edit-card.flight-results-searchbar {
    padding: 0 0 16px !important;
    border-radius: 18px !important;
    background: #33313e !important;
    box-shadow: 0 24px 58px rgba(19, 23, 56, 0.2) !important;
  }

  .flight-results-page .results-edit-card.flight-results-searchbar .ai-flight-form--results {
    padding: 14px 16px 16px !important;
  }

  .flight-results-page .results-edit-card.flight-results-searchbar .ai-date-pair,
  .flight-results-page .results-edit-card.flight-results-searchbar .ai-route-pair,
  .flight-results-page .results-edit-card.flight-results-searchbar .ai-route-box,
  .flight-results-page .results-edit-card.flight-results-searchbar .ai-field {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
  }

  .flight-results-page .results-edit-card.flight-results-searchbar .ai-date-pair {
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 12px !important;
  }

  .flight-results-page .results-edit-card.flight-results-searchbar .ai-date-pair .ai-date-trigger + .ai-date-trigger {
    border-left: 1px solid rgba(255, 255, 255, 0.16) !important;
  }

  .flight-results-page .results-edit-card.flight-results-searchbar .ai-route-box span,
  .flight-results-page .results-edit-card.flight-results-searchbar .ai-field span,
  .flight-results-page .results-edit-card.flight-results-searchbar .ai-utility-form span {
    color: rgba(255, 255, 255, 0.62) !important;
  }

  .flight-results-page .results-edit-card.flight-results-searchbar .ai-route-box input,
  .flight-results-page .results-edit-card.flight-results-searchbar .ai-route-box small,
  .flight-results-page .results-edit-card.flight-results-searchbar .airport-field small,
  .flight-results-page .results-edit-card.flight-results-searchbar .airport-field.is-selected small,
  .flight-results-page .results-edit-card.flight-results-searchbar .ai-date-trigger strong,
  .flight-results-page .results-edit-card.flight-results-searchbar .ai-passenger__toggle strong,
  .flight-results-page .results-edit-card.flight-results-searchbar .ai-select-field select,
  .flight-results-page .results-edit-card.flight-results-searchbar .ai-custom-select__toggle,
  .flight-results-page .results-edit-card.flight-results-searchbar .ai-custom-select__toggle strong,
  .flight-results-page .results-edit-card.flight-results-searchbar .ai-mobile-heading strong {
    color: #ffffff !important;
  }

  .flight-results-page .results-edit-card.flight-results-searchbar .ai-custom-select__toggle i {
    border-color: var(--brand-primary) !important;
  }

  .flight-results-page .results-edit-card.flight-results-searchbar .ai-custom-select__menu {
    color: var(--brand-navy) !important;
  }

  .flight-results-page .results-edit-card.flight-results-searchbar .ai-custom-select__option span {
    color: var(--brand-navy) !important;
  }

.flight-results-page .results-edit-card.flight-results-searchbar .ai-custom-select__option small {
  color: rgba(32, 37, 67, 0.62) !important;
}

}

.customer-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.customer-auth-modal[hidden] {
  display: none;
}

.customer-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 18, 43, 0.56);
  opacity: 0;
  transition: opacity 180ms ease;
}

.customer-auth-modal.is-open .customer-auth-modal__backdrop {
  opacity: 1;
}

.customer-auth-card {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: min(86vh, 820px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(380px, 1fr);
  align-items: start;
  gap: 16px 26px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(205, 223, 239, 0.86);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 34px 90px rgba(17, 27, 56, 0.28);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.customer-auth-modal.is-open .customer-auth-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.customer-auth-card__close {
  position: absolute;
  z-index: 20;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(58, 152, 216, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-navy);
  box-shadow: 0 10px 24px rgba(13, 20, 63, 0.1);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.customer-auth-card__close::before,
.customer-auth-card__close::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-navy);
}

.customer-auth-card__close::before {
  transform: rotate(45deg);
}

.customer-auth-card__close::after {
  transform: rotate(-45deg);
}

.customer-auth-card__close:hover,
.customer-auth-card__close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(58, 152, 216, 0.54);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(58, 152, 216, 0.18);
  outline: none;
}

.customer-auth-card__intro {
  grid-column: 1;
  grid-row: 1 / span 5;
  min-height: 548px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(10, 14, 39, 0.1) 0%, rgba(10, 14, 39, 0.52) 42%, rgba(10, 14, 39, 0.88) 100%),
    url('/images/promo-business-travel-real.jpg') center / cover no-repeat;
  box-shadow: inset 0 -120px 130px rgba(0, 0, 0, 0.46), 0 18px 42px rgba(17, 27, 56, 0.16);
}

.customer-auth-card__brandmark {
  position: absolute;
  top: 96px;
  left: 50%;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.34));
}

.customer-auth-card__brandmark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.customer-auth-card__intro span,
.customer-auth-form label span,
.customer-auth-divider span {
  color: rgba(13, 20, 63, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-auth-card__intro span {
  color: rgba(255, 255, 255, 0.82);
}

.customer-auth-form label span em {
  color: var(--brand-primary-deep);
  font-style: normal;
}

.customer-auth-card__intro h2 {
  margin: 12px 0 14px;
  color: #ffffff;
  font-size: clamp(1.75rem, 2.25vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 15px 38px rgba(0, 0, 0, 0.72);
}

.customer-auth-card__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.62;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
}

.customer-auth-tabs,
.customer-auth-social,
.customer-auth-divider,
.customer-auth-view,
.customer-auth-notice {
  grid-column: 2;
}

.customer-auth-tabs,
.customer-auth-social,
.customer-auth-divider,
.customer-auth-view,
.customer-auth-notice {
  width: 100%;
}

.customer-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: start;
  gap: 6px;
  min-height: 54px;
  padding: 5px;
  border: 1px solid rgba(205, 223, 239, 0.9);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(20, 33, 61, 0.06);
}

.customer-auth-tabs button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: rgba(23, 28, 73, 0.68);
  font-family: var(--font-primary);
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.customer-auth-tabs button.active {
  background: var(--brand-navy);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(23, 28, 73, 0.2);
}

.customer-auth-tabs button:hover,
.customer-auth-tabs button:focus-visible {
  color: var(--brand-navy);
  outline: none;
}

.customer-auth-tabs button.active:hover,
.customer-auth-tabs button.active:focus-visible {
  color: #ffffff;
}

.customer-auth-notice {
  margin-top: 2px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(85, 183, 234, 0.28);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(237, 248, 255, 0.96), #ffffff);
  color: var(--brand-navy);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 14px 30px rgba(20, 33, 61, 0.08);
}

.customer-auth-notice::before {
  content: "i";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(58, 152, 216, 0.22);
}

.customer-auth-notice[data-type='error'] {
  border-color: rgba(85, 183, 234, 0.38);
  background:
    linear-gradient(135deg, rgba(85, 183, 234, 0.16), rgba(255, 255, 255, 0.98) 74%),
    #ffffff;
  color: var(--brand-navy);
}

.customer-auth-notice[data-type='warning'] {
  border-color: rgba(85, 183, 234, 0.38);
  background:
    linear-gradient(135deg, rgba(85, 183, 234, 0.16), rgba(255, 255, 255, 0.98) 74%),
    #ffffff;
  color: var(--brand-navy);
}

.customer-auth-notice[data-type='error']::before,
.customer-auth-notice[data-type='warning']::before {
  content: "!";
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-primary-deep));
}

.customer-auth-notice[data-type='success']::before {
  content: "OK";
  font-size: 0.62rem;
}

.customer-auth-notice[hidden] {
  display: none;
}

.customer-auth-social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  align-self: start;
  margin-top: 2px;
}

.customer-auth-modal[data-active-auth-view='signup-otp'] .customer-auth-tabs,
.customer-auth-modal[data-active-auth-view='signup-password'] .customer-auth-tabs,
.customer-auth-modal[data-active-auth-view='forgot'] .customer-auth-tabs,
.customer-auth-modal[data-active-auth-view='forgot-otp'] .customer-auth-tabs,
.customer-auth-modal[data-active-auth-view='forgot-password'] .customer-auth-tabs,
.customer-auth-modal[data-active-auth-view='signup-otp'] .customer-auth-social,
.customer-auth-modal[data-active-auth-view='signup-password'] .customer-auth-social,
.customer-auth-modal[data-active-auth-view='forgot'] .customer-auth-social,
.customer-auth-modal[data-active-auth-view='forgot-otp'] .customer-auth-social,
.customer-auth-modal[data-active-auth-view='forgot-password'] .customer-auth-social,
.customer-auth-modal[data-active-auth-view='signup-otp'] .customer-auth-divider,
.customer-auth-modal[data-active-auth-view='signup-password'] .customer-auth-divider,
.customer-auth-modal[data-active-auth-view='forgot'] .customer-auth-divider,
.customer-auth-modal[data-active-auth-view='forgot-otp'] .customer-auth-divider,
.customer-auth-modal[data-active-auth-view='forgot-password'] .customer-auth-divider {
  display: none;
}

.customer-auth-social a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(205, 223, 239, 0.9);
  border-radius: 16px;
  background: #ffffff;
  color: var(--brand-navy);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(20, 33, 61, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.customer-auth-social a:hover,
.customer-auth-social a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(85, 183, 234, 0.5);
  box-shadow: 0 16px 34px rgba(20, 33, 61, 0.1);
  outline: none;
}

.customer-auth-social strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.05rem;
}

.social-logo svg {
  width: 22px;
  height: 22px;
  display: block;
}

.social-logo--google {
  background: #ffffff;
  border: 1px solid rgba(205, 223, 239, 0.95);
}

.social-logo--facebook {
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
}

.social-logo--facebook svg {
  fill: #ffffff;
}

.social-logo--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  font-size: 0;
}

.social-logo--instagram::before,
.social-logo--instagram::after {
  content: "";
  position: absolute;
}

.social-logo--instagram::before {
  width: 17px;
  height: 17px;
  border: 2px solid #ffffff;
  border-radius: 7px;
}

.social-logo--instagram::after {
  width: 6px;
  height: 6px;
  border: 2px solid #ffffff;
  border-radius: 999px;
}

.customer-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0 0;
  color: rgba(32, 37, 67, 0.54);
}

.customer-auth-divider::before,
.customer-auth-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: rgba(205, 223, 239, 0.94);
}

.customer-auth-view {
  display: none;
}

.customer-auth-view.active {
  display: block;
}

.customer-auth-form {
  display: grid;
  gap: 12px;
}

.customer-auth-form--grid {
  grid-template-columns: 1fr 1fr;
}

.customer-auth-form__wide {
  grid-column: 1 / -1;
}

.customer-auth-form label {
  display: grid;
  gap: 7px;
}

.customer-auth-step-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(205, 223, 239, 0.92);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(237, 248, 255, 0.94), rgba(255, 255, 255, 0.98) 62%),
    #ffffff;
  box-shadow: 0 18px 44px rgba(20, 33, 61, 0.08);
}

.customer-auth-step-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.customer-auth-step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  box-shadow: 0 16px 32px rgba(58, 152, 216, 0.22);
}

.customer-auth-step-head strong {
  display: block;
  margin: 2px 0 6px;
  color: var(--brand-primary-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-auth-step-head h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.customer-auth-step-head p {
  margin: 8px 0 0;
  color: rgba(32, 37, 67, 0.66);
  font-size: 0.93rem;
  line-height: 1.55;
}

.customer-otp-field {
  gap: 10px !important;
}

.customer-auth-form .customer-otp-input {
  min-height: 64px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--brand-navy);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
}

.customer-auth-form .customer-otp-input::placeholder {
  color: rgba(32, 37, 67, 0.25);
}

.customer-auth-step-action {
  width: fit-content;
  justify-self: center;
  margin-top: -4px;
}

.customer-phone-field__row {
  display: grid;
  grid-template-columns: minmax(210px, 0.85fr) minmax(190px, 1fr);
  gap: 10px;
  align-items: stretch;
}

.customer-phone-code {
  position: relative;
  min-width: 0;
}

.customer-phone-code__button {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(205, 223, 239, 0.95);
  border-radius: 14px;
  padding: 9px 13px;
  background: #ffffff;
  color: var(--brand-navy);
  font-family: var(--font-primary);
  text-align: left;
  cursor: pointer;
  outline: 0;
}

.customer-phone-code__button:focus-visible,
.customer-phone-code.is-open .customer-phone-code__button {
  border-color: rgba(85, 183, 234, 0.72);
  box-shadow: 0 0 0 4px rgba(85, 183, 234, 0.14);
}

.customer-phone-code.has-error .customer-phone-code__button {
  border-color: rgba(85, 183, 234, 0.96);
  background: linear-gradient(135deg, rgba(85, 183, 234, 0.13), #ffffff 72%);
  box-shadow: 0 0 0 4px rgba(85, 183, 234, 0.18), 0 14px 28px rgba(74, 166, 224, 0.18);
}

.customer-phone-code.has-error .customer-phone-code__flag {
  background: var(--brand-primary);
}

.customer-phone-code.has-error:not(.has-value) .customer-phone-code__flag::before {
  color: #ffffff;
}

.customer-phone-code__flag {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.12);
  overflow: hidden;
  font-size: 1.05rem;
  line-height: 1;
}

.customer-phone-code:not(.has-value) .customer-phone-code__flag::before {
  content: "+";
  color: var(--brand-primary-deep);
  font-size: 1rem;
  font-weight: 900;
}

.customer-phone-code__flag img,
.customer-phone-code__flagmark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-phone-code__flag b,
.customer-phone-code__flagmark b {
  display: none;
  color: var(--brand-primary-deep);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.customer-phone-code__flag.is-fallback b,
.customer-phone-code__flagmark.is-fallback b {
  display: block;
}

.customer-phone-code__label {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.customer-phone-code__label strong {
  min-width: 0;
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 0.95rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-phone-code__label em {
  flex: 0 0 auto;
  color: var(--brand-primary-deep);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.customer-phone-code__label em:empty {
  display: none;
}

.customer-phone-code__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--brand-primary-deep);
  border-bottom: 2px solid var(--brand-primary-deep);
  transform: rotate(45deg) translateY(-2px);
}

.customer-phone-code.is-open .customer-phone-code__chevron {
  transform: rotate(225deg) translateY(-1px);
}

.customer-phone-code__menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  left: 0;
  width: min(380px, calc(100vw - 48px));
  border: 1px solid rgba(205, 223, 239, 0.95);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(17, 27, 56, 0.18);
  overflow: hidden;
}

.customer-phone-code__menu[hidden] {
  display: none;
}

.customer-phone-code__search {
  width: calc(100% - 20px) !important;
  margin: 10px;
  border-radius: 12px !important;
  background: rgba(245, 249, 253, 0.96) !important;
}

.customer-phone-code__options {
  display: grid;
  max-height: 248px;
  overflow-y: auto;
  padding: 4px 8px 10px;
}

.customer-phone-code__option {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 10px 9px;
  background: transparent;
  color: var(--brand-navy);
  font-family: var(--font-primary);
  text-align: left;
  cursor: pointer;
}

.customer-phone-code__option:hover,
.customer-phone-code__option:focus-visible,
.customer-phone-code__option[aria-selected='true'] {
  background: rgba(85, 183, 234, 0.12);
  outline: none;
}

.customer-phone-code__flagmark {
  width: 28px;
  height: 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(85, 183, 234, 0.12);
  box-shadow: inset 0 0 0 1px rgba(32, 37, 67, 0.08);
}

.customer-phone-code__option strong {
  min-width: 0;
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 0.92rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-phone-code__option em {
  color: var(--brand-primary-deep);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.customer-phone-code__empty {
  margin: 0;
  padding: 14px 10px;
  color: rgba(32, 37, 67, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
}

.customer-auth-form input,
.customer-auth-form textarea,
.customer-auth-form select {
  width: 100%;
  border: 1px solid rgba(205, 223, 239, 0.95);
  border-radius: 14px;
  padding: 13px 14px;
  background: #ffffff;
  color: var(--brand-navy);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  outline: 0;
}

.customer-auth-form input:focus,
.customer-auth-form textarea:focus,
.customer-auth-form select:focus {
  border-color: rgba(85, 183, 234, 0.72);
  box-shadow: 0 0 0 4px rgba(85, 183, 234, 0.14);
}

.customer-auth-form.has-form-error input[aria-invalid='true'],
.customer-auth-form.has-form-error textarea[aria-invalid='true'],
.customer-auth-form.has-form-error select[aria-invalid='true'] {
  border-color: rgba(85, 183, 234, 0.92);
  background: linear-gradient(135deg, rgba(85, 183, 234, 0.12), #ffffff 72%);
  box-shadow: 0 0 0 4px rgba(85, 183, 234, 0.16), 0 14px 28px rgba(74, 166, 224, 0.14);
}

.customer-password-control {
  position: relative;
  display: block;
}

.customer-password-control input {
  padding-right: 52px;
}

.customer-password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85, 183, 234, 0.24);
  border-radius: 999px;
  background: #f3faff;
  color: var(--brand-primary-deep);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.customer-password-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-password-toggle__eye-off {
  display: none;
}

.customer-password-toggle.is-visible .customer-password-toggle__eye {
  display: none;
}

.customer-password-toggle.is-visible .customer-password-toggle__eye-off {
  display: block;
}

.customer-password-toggle:hover,
.customer-password-toggle:focus-visible {
  border-color: rgba(85, 183, 234, 0.56);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(74, 166, 224, 0.18);
  outline: none;
}

.customer-auth-submit {
  min-height: 48px;
  border-radius: 14px;
}

.customer-auth-link {
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--brand-primary-deep);
  font-weight: 800;
  cursor: pointer;
}

.footer-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-account-actions button,
.footer-account-btn {
  border: 1px solid rgba(85, 183, 234, 0.34);
  border-radius: 999px;
  padding: 11px 18px;
  background: #ffffff;
  color: var(--brand-navy);
  font-weight: 800;
  cursor: pointer;
}

.footer-account-actions button:first-child,
.footer-account-btn {
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff;
  border-color: transparent;
}

.ai-chat-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.ai-chat-auth-actions button {
  border: 1px solid rgba(85, 183, 234, 0.34);
  border-radius: 999px;
  padding: 8px 13px;
  background: #ffffff;
  color: var(--brand-navy);
  font-weight: 800;
  cursor: pointer;
}

.ai-chat-message--typing p {
  color: rgba(32, 37, 67, 0.62);
  font-style: italic;
}

.customer-admin-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 240px) auto auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.customer-admin-filter label,
.customer-admin-form label {
  display: grid;
  gap: 7px;
}

.customer-admin-filter span,
.customer-admin-form span,
.customer-admin-meta span {
  color: rgba(23, 28, 73, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.customer-admin-filter input,
.customer-admin-filter select,
.customer-admin-form input,
.customer-admin-form select,
.customer-admin-form textarea {
  width: 100%;
  border: 1px solid rgba(205, 223, 239, 0.95);
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--brand-navy);
  font-family: var(--font-primary);
}

.customer-admin-table td strong,
.customer-admin-table td small {
  display: block;
}

.customer-admin-table td small {
  margin-top: 4px;
  color: rgba(32, 37, 67, 0.6);
}

.customer-status-pill {
  display: inline-flex;
  align-items: center;
  min-width: 78px;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: #edf8ff;
  color: var(--brand-primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: capitalize;
}

.customer-status-pill--inactive {
  background: #f4f4f7;
  color: #6f7488;
}

.customer-status-pill--freeze {
  background: #fff1f1;
  color: #a32121;
}

.customer-admin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-form-grid__wide {
  grid-column: 1 / -1;
}

  @media (max-width: 820px) {
    .customer-auth-card {
      grid-template-columns: 1fr;
      padding: 20px;
  }

  .customer-auth-card__intro {
    grid-column: 1;
    grid-row: auto;
    min-height: 230px;
    padding: 28px 48px 26px 24px;
    background-position: center;
  }

  .customer-auth-card__brandmark {
    display: none;
  }

  .customer-auth-card__intro h2 {
    font-size: clamp(1.55rem, 5vw, 2.05rem);
  }

  .customer-auth-tabs,
  .customer-auth-social,
  .customer-auth-divider,
  .customer-auth-view,
  .customer-auth-notice {
    grid-column: 1;
  }

  .customer-auth-social,
  .customer-auth-form--grid,
  .customer-phone-field__row,
  .customer-admin-filter {
    grid-template-columns: 1fr;
  }

  .customer-phone-code__menu {
    width: 100%;
    max-height: min(320px, 52vh);
  }

    .customer-auth-card__intro {
      padding-right: 48px;
    }

  }

@media (max-width: 560px) {
  .customer-auth-modal {
    padding: 10px;
    align-items: end;
  }

  .customer-auth-card {
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
  }

  .customer-auth-card__close {
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
  }

  .customer-auth-step-card {
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
  }

  .customer-auth-step-head {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .customer-auth-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 0.72rem !important;
  }

  .customer-auth-form .customer-otp-input {
    min-height: 58px;
    font-size: 1.24rem;
  }

    .customer-auth-social a {
      min-height: 58px;
    }

  }

/* Responsive global footer refresh */
.site-footer--global {
  position: relative;
  overflow: hidden;
  padding: 44px 0 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(85, 183, 234, 0.22), transparent 30%),
    linear-gradient(180deg, #f2faff 0%, #ffffff 50%, #edf8ff 100%);
  border-top: 1px solid rgba(85, 183, 234, 0.2);
}

.footer-modern {
  position: relative;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid rgba(85, 183, 234, 0.24);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 247, 255, 0.74));
  box-shadow: 0 26px 70px rgba(17, 45, 92, 0.08);
}

.footer-modern::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(180deg, var(--brand-primary), var(--brand-primary-deep));
}

.footer-modern__brand,
.footer-modern__summary {
  border: 0;
  box-shadow: none;
}

.footer-modern__brand {
  padding: 0;
  background: transparent;
}

.footer-modern__brand .footer-logo {
  width: 188px;
  max-height: 76px;
  margin-bottom: 4px;
}

.footer-modern__brand h2 {
  max-width: 760px;
  margin: 12px 0 10px;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.18;
}

.footer-modern__brand p {
  max-width: 720px;
  margin: 0;
  color: #4a5874;
}

.footer-modern__summary {
  align-self: stretch;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(205, 223, 239, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.footer-modern__summary strong {
  font-size: 1.1rem;
}

.footer-badges {
  margin-top: 18px;
}

.footer-badges span {
  border-color: rgba(85, 183, 234, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.footer-link-dock {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  padding: 26px 8px 24px;
  border: 0;
  border-top: 1px solid rgba(205, 223, 239, 0.9);
  border-bottom: 1px solid rgba(205, 223, 239, 0.72);
  border-radius: 0;
  background: transparent;
}

.footer-link-dock > div {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-link-dock h3 {
  margin-bottom: 12px;
  color: var(--brand-navy);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-link-dock a {
  width: fit-content;
  margin-bottom: 9px;
  color: #465572;
  font-size: 0.92rem;
  line-height: 1.35;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-link-dock a:hover,
.footer-link-dock a:focus-visible {
  color: var(--brand-primary-deep);
  transform: translateX(2px);
  outline: none;
}

.footer-bottom {
  margin-top: 0;
  padding-top: 18px;
  border-top: 0;
}

.footer-bottom nav {
  gap: 14px;
}

@media (max-width: 820px) {
  .site-footer--global {
    padding: 30px 0 94px;
  }

  .footer-modern {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 18px;
    border-radius: 22px;
    text-align: center;
  }

  .footer-modern::before {
    inset: 0 0 auto;
    width: 100%;
    height: 4px;
    border-radius: 22px 22px 0 0;
  }

  .footer-modern__brand .footer-logo {
    width: 148px;
    max-height: 64px;
  }

  .footer-modern__brand h2 {
    margin-top: 10px;
    font-size: 1.34rem;
    line-height: 1.24;
  }

  .footer-modern__brand p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .footer-badges {
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
  }

  .footer-badges span {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 0.72rem;
  }

  .footer-modern__summary {
    padding: 18px;
    text-align: left;
  }

  .footer-modern__summary p {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .footer-account-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-account-actions button,
  .footer-account-btn {
    width: 100%;
    min-height: 44px;
  }

  .footer-link-dock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding: 22px 2px;
  }

  .footer-link-dock h3 {
    margin-bottom: 10px;
    font-size: 0.76rem;
  }

  .footer-link-dock a {
    margin-bottom: 10px;
    font-size: 0.88rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom nav {
    justify-content: center;
  }
}

  @media (max-width: 420px) {
    .footer-link-dock {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .footer-account-actions {
      grid-template-columns: 1fr;
    }
  }

/* Rich AI chat composer */
.ai-chat-message__body {
  min-width: 0;
}

.ai-chat-message__attachments {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.ai-chat-message__attachments small {
  display: block;
  max-width: 320px;
  padding: 7px 9px;
  border: 1px solid rgba(173, 211, 237, 0.64);
  border-radius: 10px;
  background: rgba(241, 249, 255, 0.95);
  color: #233153;
  font-size: 0.74rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-chat-form {
  position: relative;
  grid-template-columns: 1fr;
  gap: 10px;
  overflow: visible;
}

.ai-chat-composer {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 42px 42px auto;
  gap: 8px;
  align-items: end;
  position: relative;
  z-index: 2;
}

.ai-chat-attach-picker {
  position: relative;
  align-self: end;
}

.ai-chat-form textarea {
  grid-column: 2 / 3;
  grid-row: 1;
  min-width: 0;
  min-height: 52px;
  max-height: 120px;
  padding: 15px 16px;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  color: var(--brand-navy);
  font: inherit;
  line-height: 1.35;
  resize: none;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(173, 211, 237, 0.18);
}

.ai-chat-form textarea::placeholder {
  color: #7a8190;
}

.ai-chat-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px !important;
  height: 44px;
  min-height: 44px !important;
  padding: 0 !important;
  border: 1px solid rgba(173, 211, 237, 0.28) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #dff3ff !important;
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.ai-chat-icon-button:hover,
.ai-chat-icon-button:focus-visible {
  border-color: rgba(85, 183, 234, 0.74) !important;
  background: rgba(85, 183, 234, 0.2) !important;
  color: #ffffff !important;
  outline: none;
  transform: translateY(-1px);
}

.ai-chat-icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-chat-attach-toggle {
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary)) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

.ai-chat-attach-toggle > span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
}

.ai-chat-attach-toggle.is-open {
  background: #ffffff !important;
  color: var(--brand-primary-deep) !important;
}

.ai-chat-camera-button,
.ai-chat-voice-button {
  align-self: end;
}

.ai-chat-voice-button.is-recording {
  border-color: rgba(143, 240, 190, 0.78) !important;
  background: rgba(143, 240, 190, 0.2) !important;
  color: #eafff2 !important;
  animation: aiVoicePulse 1s ease-in-out infinite;
}

@keyframes aiVoicePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(143, 240, 190, 0.28);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(143, 240, 190, 0);
  }
}

.ai-chat-attach-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 30;
  width: min(250px, calc(100vw - 40px));
  padding: 8px;
  border: 1px solid rgba(173, 211, 237, 0.62);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(8, 22, 52, 0.24);
}

.ai-chat-attach-menu[hidden] {
  display: none;
}

.ai-chat-attach-menu button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 58px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--brand-navy);
  text-align: left;
}

.ai-chat-attach-menu button:hover,
.ai-chat-attach-menu button:focus-visible {
  border-color: rgba(85, 183, 234, 0.28);
  background: rgba(234, 247, 255, 0.98);
  outline: none;
}

.ai-chat-attach-menu svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 12px;
  background: #eaf7ff;
  color: var(--brand-primary-deep);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-chat-attach-menu strong,
.ai-chat-attach-menu small {
  display: block;
}

.ai-chat-attach-menu strong {
  color: var(--brand-navy);
  font-size: 0.85rem;
  font-weight: 900;
}

.ai-chat-attach-menu small {
  margin-top: 2px;
  color: #69718b;
  font-size: 0.72rem;
  font-weight: 700;
}

.ai-chat-form .ai-chat-send {
  grid-column: 5 / 6;
  grid-row: 1;
  min-width: 92px;
  height: 52px;
  border-radius: 16px;
}

.global-ai-chat .ai-chat-composer {
  grid-template-columns: 40px minmax(0, 1fr) 40px 40px 58px;
  gap: 6px;
}

.global-ai-chat .ai-chat-icon-button {
  width: 40px;
  min-width: 40px !important;
  height: 40px;
  min-height: 40px !important;
}

.global-ai-chat .ai-chat-form .ai-chat-send {
  min-width: 58px;
  height: 48px;
  padding: 0 8px;
  border-radius: 14px;
  font-size: 0.82rem;
}

.ai-chat-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-chat-attachment-chip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 7px 8px;
  border: 1px solid rgba(173, 211, 237, 0.32);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.ai-chat-attachment-chip span {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.2);
  color: #bdeaff;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-chat-attachment-chip strong {
  min-width: 0;
  color: #ffffff;
  font-size: 0.78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-chat-attachment-chip em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-style: normal;
}

.ai-chat-attachment-chip button {
  width: auto;
  min-width: 0;
  height: 28px;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.68rem;
}

@media (max-width: 620px) {
  .ai-chat-composer {
    grid-template-columns: 40px minmax(96px, 1fr) 40px 40px 54px;
    gap: 6px;
  }

  .ai-chat-form textarea {
    min-height: 46px;
    padding: 12px;
    border-radius: 14px;
  }

  .ai-chat-icon-button {
    width: 40px;
    min-width: 40px !important;
    height: 40px;
    min-height: 40px !important;
  }

  .ai-chat-icon-button svg {
    width: 18px;
    height: 18px;
  }

  .ai-chat-form .ai-chat-send {
    min-width: 54px;
    height: 46px;
    border-radius: 14px;
    font-size: 0.84rem;
    padding: 0 7px;
  }

  .ai-chat-attach-toggle > span {
    font-size: 1.45rem;
  }

  .ai-chat-attach-menu {
    width: min(240px, calc(100vw - 28px));
  }

  .ai-chat-attachment-chip {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .ai-chat-attachment-chip em {
    display: none;
  }
}

/* Editorial footer inspired by modern payment/travel platforms */
.site-footer--global.footer-editorial {
  margin-top: 0;
  padding: 0 0 46px;
  overflow: hidden;
  border-top: 0;
  background: #cfe4fb;
  color: #071345;
}

.footer-editorial__inner {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 150px);
  padding-top: 74px;
}

.footer-editorial__newsletter,
.footer-editorial__main,
.footer-editorial__start,
.footer-editorial__links > div {
  min-width: 0;
}

.footer-editorial__eyebrow {
  margin: 0 0 8px;
  color: #2a7dd8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-editorial h2 {
  margin: 0;
  color: #020b34;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.footer-editorial__newsletter h2 {
  margin-bottom: 20px;
}

.footer-editorial__newsletter p,
.footer-editorial__start p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #06113b;
  font-size: 0.95rem;
  line-height: 1.52;
}

.footer-editorial__newsletter > a {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: #267de2;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-mailing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(5, 36, 80, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.footer-mailing input,
.footer-mailing button {
  min-height: 34px;
  border: 0;
  background: transparent;
  font-family: inherit;
}

.footer-mailing input {
  width: 100%;
  padding: 0 16px;
  color: #06113b;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-mailing input::placeholder {
  color: rgba(6, 17, 59, 0.56);
}

.footer-mailing button {
  padding: 0 20px;
  color: #06113b;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-editorial__main {
  display: grid;
  gap: 54px;
}

.footer-editorial__start {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
}

.footer-editorial__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.footer-editorial__actions a,
.footer-editorial__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(47, 130, 238, 0.9);
  border-radius: 0;
  background: transparent;
  color: #06113b;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-editorial__actions a span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3f8bfa;
}

.footer-editorial__actions button:first-of-type,
.footer-editorial__actions .footer-account-btn {
  background: rgba(255, 255, 255, 0.18);
}

.footer-editorial .footer-link-dock {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: clamp(28px, 5vw, 70px);
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-editorial .footer-link-dock > div {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-editorial .footer-link-dock h3 {
  margin: 0 0 8px;
  color: #020b34;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.footer-editorial .footer-link-dock a {
  display: block;
  width: fit-content;
  margin: 0 0 6px;
  color: #06113b;
  font-size: 0.88rem;
  line-height: 1.32;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-editorial .footer-link-dock a:hover,
.footer-editorial .footer-link-dock a:focus-visible,
.footer-editorial__newsletter > a:hover,
.footer-editorial__newsletter > a:focus-visible {
  color: #1d72d3;
  outline: none;
  transform: translateX(2px);
}

.footer-editorial__bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 70px;
  padding: 0;
  border-top: 0;
}

.footer-editorial__bottom p {
  margin: 0;
  color: #06113b;
  font-size: 0.76rem;
}

.footer-editorial__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-right: 166px;
}

.footer-editorial__bottom a {
  color: #06113b;
  font-size: 0.76rem;
}

.footer-editorial__bottom a:not(:last-child)::after {
  content: "-";
  display: inline-block;
  margin-left: 6px;
  color: rgba(6, 17, 59, 0.68);
}

@media (max-width: 980px) {
  .footer-editorial__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 48px;
  }

  .footer-editorial__start {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-editorial .footer-link-dock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
  }

  .footer-editorial__bottom {
    margin-top: 42px;
  }
}

@media (max-width: 620px) {
  .site-footer--global.footer-editorial {
    padding: 22px 0 118px;
    border-top: 1px solid rgba(173, 211, 237, 0.78);
    background:
      radial-gradient(circle at 14% 8%, rgba(85, 183, 234, 0.28), transparent 28%),
      linear-gradient(180deg, #eef8ff 0%, #d8edff 52%, #cbe4fa 100%);
  }

  .footer-editorial__inner {
    width: min(100% - 22px, 1280px);
    gap: 14px;
    padding-top: 0;
  }

  .footer-editorial h2 {
    font-size: 1.32rem;
    line-height: 1.16;
  }

  .footer-editorial__newsletter {
    padding: 18px;
    border: 1px solid rgba(173, 211, 237, 0.76);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 44px rgba(23, 28, 73, 0.08);
  }

  .footer-editorial__eyebrow {
    margin-bottom: 7px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .footer-editorial__newsletter h2 {
    margin-bottom: 12px;
  }

  .footer-editorial__newsletter p,
  .footer-editorial__start p {
    margin-top: 12px;
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .footer-mailing {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 48px;
    border-color: rgba(173, 211, 237, 0.95);
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
  }

  .footer-mailing input,
  .footer-mailing button {
    min-height: 48px;
  }

  .footer-mailing input {
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .footer-mailing button {
    justify-content: center;
    border-top: 0;
    border-left: 1px solid rgba(173, 211, 237, 0.72);
    padding: 0 13px;
    color: var(--brand-primary-deep);
  }

  .footer-editorial__newsletter > a {
    margin-top: 10px;
    font-size: 0.82rem;
    min-height: 32px;
    align-items: center;
  }

  .footer-editorial__main {
    gap: 14px;
  }

  .footer-editorial__start {
    gap: 16px;
    padding: 22px 18px 18px;
    border: 1px solid rgba(85, 183, 234, 0.34);
    border-radius: 24px;
    background: linear-gradient(135deg, var(--brand-navy), #293783 58%, var(--brand-primary-deep));
    box-shadow: 0 20px 46px rgba(23, 28, 73, 0.18);
  }

  .footer-editorial__start .footer-editorial__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.2;
    text-shadow: none;
  }

  .footer-editorial__start .tc-brand-word--travel {
    color: rgba(255, 255, 255, 0.74);
    text-shadow: none;
  }

  .footer-editorial__start .tc-brand-word--connecter {
    color: #78d8ff;
    text-shadow: none;
  }

  .footer-editorial__start h2,
  .footer-editorial__start p {
    color: #ffffff;
  }

  .footer-editorial__start p {
    color: rgba(255, 255, 255, 0.82);
  }

  .footer-editorial__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .footer-editorial__actions a,
  .footer-editorial__actions button {
    min-height: 44px;
    border-radius: 15px;
    border-color: rgba(255, 255, 255, 0.38);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
  }

  .footer-editorial__actions .footer-contact-btn {
    grid-column: 1 / -1;
    border-color: #ffffff;
    background: #ffffff;
    color: var(--brand-navy);
  }

  .footer-editorial__actions a span {
    background: var(--brand-primary);
  }

  .footer-editorial .footer-link-dock {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-editorial .footer-link-dock > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 15px;
    border: 1px solid rgba(173, 211, 237, 0.74);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 34px rgba(23, 28, 73, 0.06);
  }

  .footer-editorial .footer-link-dock > div:last-child {
    padding-right: 74px;
  }

  .footer-editorial .footer-link-dock h3 {
    width: 100%;
    margin: 0 0 2px;
    color: var(--brand-navy);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .footer-editorial .footer-link-dock a {
    display: inline-flex;
    align-items: center;
    width: auto;
    min-height: 34px;
    margin: 0;
    border: 1px solid rgba(173, 211, 237, 0.82);
    border-radius: 999px;
    background: #ffffff;
    color: #203058;
    padding: 0 11px;
    font-size: 0.76rem;
    font-weight: 700;
  }

  .footer-editorial__bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    padding: 16px 74px 0 6px;
    border-top: 1px solid rgba(23, 28, 73, 0.1);
    text-align: center;
  }

  .footer-editorial__bottom p {
    font-size: 0.78rem;
    font-weight: 800;
  }

  .footer-editorial__bottom nav {
    justify-content: center;
    gap: 8px;
    padding-right: 0;
  }

  .footer-editorial__bottom a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(173, 211, 237, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    padding: 0 10px;
    font-size: 0.72rem;
    font-weight: 800;
  }

  .footer-editorial__bottom a:not(:last-child)::after {
    display: none;
  }
}

.flight-mobile-actions,
.flight-filters-panel__head,
.flight-filter-backdrop {
  display: none;
}

@media (max-width: 720px) {
  body.has-flight-filter-drawer {
    overflow: hidden;
  }

  .page-shell.flight-results-page {
    padding: 10px 0 92px;
    background:
      radial-gradient(circle at 12% 0%, rgba(85, 183, 234, 0.24), transparent 34%),
      linear-gradient(180deg, #eef8ff 0%, #f7fbff 56%, #eef6fc 100%);
  }

  .flight-results-page .container {
    width: 100%;
    padding: 0 12px;
  }

  .flight-results-page .results-request-strip {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center !important;
    gap: 10px;
    margin: 0 -12px 10px;
    padding: 14px 12px 16px;
    border-radius: 0 0 22px 22px;
    background: linear-gradient(135deg, var(--brand-navy), #293783 54%, var(--brand-primary-deep));
    box-shadow: 0 16px 34px rgba(23, 28, 73, 0.22);
    color: #ffffff;
  }

  .flight-results-page .results-request-strip__summary {
    display: grid !important;
    gap: 3px;
    line-height: 1.32;
    white-space: normal;
  }

  .flight-results-page .results-request-strip__summary strong {
    color: #ffffff !important;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .flight-results-page .results-request-strip__summary span {
    display: inline;
    color: rgba(255, 255, 255, 0.82);
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    font-size: 0.82rem;
  }

  .flight-results-page .results-request-strip__summary span:not(:last-child)::after {
    display: none;
  }

  .flight-results-page .results-request-strip [data-results-edit-toggle] {
    width: auto !important;
    min-width: 88px !important;
    min-height: 38px !important;
    padding: 0 14px !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: #ffffff !important;
    color: var(--brand-navy) !important;
    box-shadow: none !important;
  }

  .flight-results-page .results-edit-card {
    margin-bottom: 12px;
  }

  .flight-mobile-actions {
    position: relative;
    z-index: 75;
    display: flex;
    margin: 0 0 10px;
    padding: 6px;
    border: 1px solid rgba(205, 223, 239, 0.92);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 26px rgba(19, 23, 56, 0.1);
    backdrop-filter: blur(14px);
  }

  .flight-mobile-filter-button {
    width: 100%;
    min-height: 42px;
    border-radius: 12px;
  }

  .flight-mobile-filter-button {
    display: grid;
    gap: 2px;
    place-items: center;
    border: 0;
    background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
    color: #ffffff;
    box-shadow: 0 12px 22px rgba(47, 147, 203, 0.26);
  }

  .flight-mobile-filter-button span {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .flight-results-page .flight-results-toolbar {
    display: block !important;
    margin: 0 0 12px;
  }

  .flight-results-page .flight-results-toolbar__sort {
    width: 100%;
    min-width: 0;
  }

  .flight-results-page .flight-results-toolbar__sort label {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(205, 223, 239, 0.92);
    border-radius: 15px;
    background: #ffffff;
  }

  .flight-results-page .flight-results-toolbar__sort select {
    min-height: 42px;
    border-radius: 12px;
  }

  .flight-results-page .flight-results-layout {
    display: block !important;
  }

  .flight-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1190;
    display: block;
    opacity: 0;
    pointer-events: none;
    background: rgba(13, 20, 63, 0.46);
    backdrop-filter: blur(5px);
    transition: opacity 0.22s ease;
  }

  .flight-filter-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .flight-results-page .flight-filters-panel {
    position: fixed !important;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    width: min(86vw, 360px);
    max-width: 360px;
    padding: 0 !important;
    overflow-y: auto;
    border-radius: 0 24px 24px 0 !important;
    background: #ffffff;
    box-shadow: 22px 0 54px rgba(13, 20, 63, 0.24);
    transform: translateX(-106%);
    transition: transform 0.24s ease;
  }

  .flight-results-page .flight-filters-panel.is-open {
    transform: translateX(0);
  }

  .flight-filters-panel__head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 16px;
    background: linear-gradient(135deg, var(--brand-navy), #293783);
    color: #ffffff;
  }

  .flight-filters-panel__head span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .flight-filters-panel__head strong {
    display: block;
    margin-top: 2px;
    font-size: 1.05rem;
  }

  .flight-filters-panel__head button {
    position: relative;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
  }

  .flight-filters-panel__head button::before,
  .flight-filters-panel__head button::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .flight-filters-panel__head button::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .flight-filters-panel__head button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .flight-results-page .flight-filters-panel__form {
    padding: 16px;
  }

  .flight-results-page .flight-filters-group input,
  .flight-results-page .flight-filters-group select {
    min-height: 46px;
    background: #f8fbff;
  }

  .flight-results-page .flight-filters-check input {
    accent-color: var(--brand-primary-deep);
  }

  .flight-results-page .flight-offer-stack {
    gap: 12px;
  }

  .flight-results-page .flight-offer-card {
    border: 1px solid rgba(205, 223, 239, 0.94);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(19, 23, 56, 0.09);
  }

  .flight-results-page .flight-offer-card__summary {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  .flight-results-page .flight-offer-card__summary > * + * {
    border-left: 0 !important;
    border-top: 1px solid rgba(23, 28, 73, 0.1) !important;
    padding-left: 0 !important;
    padding-top: 12px !important;
  }

  .flight-results-page .flight-offer-card__airline {
    align-items: flex-start;
  }

  .flight-results-page .flight-offer-card__airline h2 {
    margin-bottom: 2px;
    font-size: 1rem;
  }

  .flight-results-page .flight-offer-card__airline p {
    font-size: 0.76rem;
  }

  .flight-results-page .flight-offer-card__route {
    grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr) !important;
    gap: 8px;
  }

  .flight-results-page .flight-offer-card__point strong {
    font-size: 1.42rem;
  }

  .flight-results-page .flight-offer-card__point span {
    margin-top: 4px;
    font-size: 0.86rem;
  }

  .flight-results-page .flight-offer-card__point small {
    margin-top: 4px;
    font-size: 0.72rem;
    line-height: 1.22;
  }

  .flight-results-page .flight-offer-card__point--arrive {
    text-align: right !important;
  }

  .flight-results-page .flight-offer-card__track {
    justify-items: center !important;
    text-align: center !important;
  }

  .flight-results-page .flight-offer-card__line {
    left: 5px !important;
    right: 5px !important;
    width: auto !important;
    top: 15px !important;
  }

  .flight-results-page .flight-offer-card__track i {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }

  .flight-results-page .flight-offer-card__track strong,
  .flight-results-page .flight-offer-card__track small {
    font-size: 0.7rem;
  }

  .flight-results-page .flight-offer-card__track-time--total,
  .flight-results-page .flight-offer-card__track-caption--total {
    display: none;
  }

  .flight-results-page .flight-offer-card__track-time--connection {
    display: block;
  }

  .flight-results-page .flight-offer-card__track-caption--connection {
    display: none;
  }

  .flight-results-page .flight-offer-card__price {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: stretch !important;
    gap: 3px 10px;
    text-align: left !important;
  }

  .flight-results-page .flight-offer-card__price strong {
    font-size: 1.35rem;
  }

  .flight-results-page .flight-offer-card__price span,
  .flight-results-page .flight-offer-card__price em {
    font-size: 0.75rem;
  }

  .flight-results-page .flight-offer-card__cta {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    margin: 0;
    padding: 9px 12px;
    font-size: 0.76rem;
  }

  .flight-results-page .flight-offer-card__body-head,
  .flight-results-page .flight-offer-card__extras {
    padding: 14px;
  }

  .flight-results-page .flight-offer-card__body {
    border-top: 1px solid rgba(85, 183, 234, 0.22);
    background:
      linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
  }

  .flight-results-page .flight-offer-card__body-head {
    display: grid;
    gap: 12px;
  }

  .flight-results-page .flight-offer-card__tabs {
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    padding: 4px;
    border: 1px solid rgba(205, 223, 239, 0.94);
    border-radius: 15px;
    background: rgba(238, 248, 255, 0.88);
  }

  .flight-results-page .flight-offer-card__tabs span {
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 11px;
    color: #52617d;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .flight-results-page .flight-offer-card__tabs .is-active {
    background: #ffffff;
    color: var(--brand-primary-deep);
    box-shadow: 0 10px 22px rgba(47, 147, 203, 0.12);
  }

  .flight-results-page .flight-offer-card__detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(85, 183, 234, 0.3);
    border-radius: 14px;
    background: #ffffff;
    color: var(--brand-primary-deep);
    font-size: 0.9rem;
    box-shadow: 0 10px 24px rgba(47, 147, 203, 0.1);
  }

  .flight-results-page .flight-offer-card__detail-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 14px 14px;
    border: 0;
  }

  .flight-results-page .flight-offer-card__detail-grid article {
    padding: 13px 14px;
    border: 1px solid rgba(205, 223, 239, 0.94);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(19, 23, 56, 0.05);
  }

  .flight-results-page .flight-offer-card__detail-grid article + article {
    border-left: 1px solid rgba(205, 223, 239, 0.94);
  }

  .flight-results-page .flight-offer-card__detail-grid span {
    color: var(--brand-primary-deep);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.07em;
  }

  .flight-results-page .flight-offer-card__detail-grid strong {
    margin-top: 6px;
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .flight-results-page .flight-offer-card__detail-grid p {
    margin-top: 5px;
    color: #65708a;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .flight-results-page .flight-offer-card__extras {
    display: grid;
    gap: 8px;
    padding-top: 0;
  }

  .flight-results-page .flight-offer-card__extras span {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid rgba(205, 223, 239, 0.94);
    border-radius: 12px;
    background: #ffffff;
    color: #4f5b75;
    font-size: 0.82rem;
  }

  .flight-results-page .flight-offer-card__extras .button {
    position: relative;
    z-index: 1001;
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
  }
}

@media (max-width: 720px) {
  .flight-results-page .results-request-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 14px 18px;
    border-radius: 0 0 26px 26px;
  }

  .flight-results-page .results-request-strip__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px !important;
  }

  .flight-results-page .results-request-strip__summary strong,
  .flight-results-page .results-request-strip__summary span {
    display: block;
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
  }

  .flight-results-page .results-request-strip [data-results-edit-toggle] {
    width: 100% !important;
    min-height: 44px !important;
    border-radius: 14px !important;
    font-weight: 900;
  }

  .flight-results-page .flight-mobile-actions {
    padding: 10px;
    border-radius: 20px;
  }

  .flight-results-page .flight-results-toolbar__sort label {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .flight-results-page .flight-results-toolbar__sort span {
    color: var(--brand-primary-deep);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .flight-results-page .flight-filters-panel__intro {
    margin-bottom: 2px;
    font-size: 0.82rem;
  }

  .flight-results-page .flight-filters-group {
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(205, 223, 239, 0.9);
    border-radius: 16px;
    background: #ffffff;
  }

  .flight-results-page .flight-filters-group + .flight-filters-group {
    border-top: 1px solid rgba(205, 223, 239, 0.9);
  }

  .flight-results-page .flight-filters-panel__form {
    background: #f4faff;
  }

  .flight-results-page .flight-offer-card {
    border-radius: 20px;
    overflow: hidden;
  }

  .flight-results-page .flight-offer-card__summary {
    gap: 0 !important;
    padding: 0 !important;
  }

  .flight-results-page .flight-offer-card__summary > * {
    padding: 14px !important;
  }

  .flight-results-page .flight-offer-card__summary > * + * {
    border-top: 1px solid rgba(205, 223, 239, 0.9) !important;
  }

  .flight-results-page .flight-offer-card__airline {
    background:
      linear-gradient(135deg, rgba(238, 248, 255, 0.86), rgba(255, 255, 255, 0.98));
  }

  .flight-results-page .flight-offer-card__badge {
    width: 40px;
    height: 40px;
    font-weight: 900;
  }

  .flight-results-page .flight-offer-card__route {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    background: #ffffff;
  }

  .flight-results-page .flight-offer-card__price {
    background: #fbfdff;
  }

  .flight-results-page .flight-offer-card__mobile-kpis {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    background: rgba(238, 248, 255, 0.72);
  }

  .flight-results-page .flight-offer-card__mobile-kpis span {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    padding: 9px 10px;
    border: 1px solid rgba(205, 223, 239, 0.95);
    border-radius: 12px;
    background: #ffffff;
    color: #53617c;
    font-size: 0.78rem;
  }

  .flight-results-page .flight-offer-card__mobile-kpis strong {
    color: var(--brand-navy);
  }

  .flight-results-page .flight-offer-card__body-head {
    padding: 14px 14px 10px;
  }

  .flight-results-page .flight-schedule-card {
    margin: 0 14px 14px;
    padding: 14px;
    border-radius: 17px;
  }

  .flight-results-page .flight-schedule-card__head {
    gap: 10px;
    padding-bottom: 12px;
  }

  .flight-results-page .flight-schedule-card__head strong {
    font-size: 0.98rem;
  }

  .flight-results-page .flight-schedule-card__head span,
  .flight-results-page .flight-schedule-card__notice {
    font-size: 0.78rem;
  }

  .flight-results-page .flight-schedule-card__notice {
    margin: 12px 0;
    padding: 10px 11px;
    border-radius: 12px;
    background: rgba(85, 183, 234, 0.1);
  }

  .flight-results-page .flight-schedule-timeline::before {
    left: 50px;
    top: 17px;
    bottom: 17px;
  }

  .flight-results-page .flight-schedule-event {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    padding: 10px 0;
  }

  .flight-results-page .flight-schedule-event__dot {
    left: 45px;
    top: 18px;
    width: 11px;
    height: 11px;
  }

  .flight-results-page .flight-schedule-event time {
    font-size: 0.88rem;
  }

  .flight-results-page .flight-schedule-event strong {
    font-size: 0.9rem;
  }

  .flight-results-page .flight-schedule-event p {
    font-size: 0.78rem;
  }

  .flight-results-page .flight-schedule-transfer__times {
    gap: 18px;
  }

  .flight-results-page .flight-schedule-transfer__box {
    padding: 11px;
    border-radius: 13px;
  }

  .flight-results-page .flight-schedule-transfer__box small {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .flight-results-page .flight-offer-card__detail-grid {
    padding-top: 0;
  }
}

/* Compact mobile result list: keep options visible before details. */
@media (max-width: 720px) {
  .page-shell.flight-results-page {
    padding-top: 0;
  }

  .flight-results-page .container {
    padding: 0 8px;
  }

  .flight-results-page .results-request-strip {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin: 0 -8px 8px;
    padding: 9px 10px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 22px rgba(23, 28, 73, 0.16);
  }

  .flight-results-page .results-request-strip__summary {
    display: none !important;
  }

  .flight-results-page .results-request-strip__compact {
    display: block;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.32;
  }

  .flight-results-page .results-request-strip__compact strong,
  .flight-results-page .results-request-strip__compact span {
    display: inline;
    color: inherit;
    font-size: 0.78rem;
  }

  .flight-results-page .results-request-strip__compact strong {
    color: #ffffff !important;
  }

  .flight-results-page .results-request-strip [data-results-edit-toggle] {
    width: auto !important;
    min-width: 68px !important;
    min-height: 30px !important;
    padding: 0 10px !important;
    border-radius: 10px !important;
    font-size: 0.78rem;
  }

  .flight-results-page .flight-mobile-actions {
    margin-bottom: 7px;
    padding: 6px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(19, 23, 56, 0.08);
  }

  .flight-results-page .flight-mobile-filter-button {
    min-height: 34px;
    border-radius: 10px;
  }

  .flight-results-page .flight-mobile-filter-button {
    gap: 0;
  }

  .flight-results-page .flight-mobile-filter-button span {
    font-size: 0.64rem;
  }

  .flight-results-page .flight-results-toolbar {
    display: none !important;
  }

  .flight-results-page .flight-filters-group--sort {
    display: grid;
  }

  .flight-results-page .flight-offer-stack {
    gap: 8px;
  }

  .flight-results-page .flight-offer-card {
    border-radius: 13px;
    box-shadow: 0 8px 18px rgba(19, 23, 56, 0.07);
  }

  .flight-results-page .flight-offer-card__summary {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 7px 10px !important;
    padding: 10px 11px !important;
  }

  .flight-results-page .flight-offer-card__summary > * {
    padding: 0 !important;
  }

  .flight-results-page .flight-offer-card__summary > * + * {
    border: 0 !important;
  }

  .flight-results-page .flight-offer-card__airline {
    grid-column: 1 / 3;
    gap: 8px;
    background: transparent;
  }

  .flight-results-page .flight-offer-card__badge {
    width: 31px;
    height: 31px;
    font-size: 0.72rem;
  }

  .flight-results-page .flight-offer-card__airline h2 {
    font-size: 0.94rem;
  }

  .flight-results-page .flight-offer-card__airline p {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .flight-results-page .flight-offer-card__route {
    grid-column: 1;
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) !important;
    gap: 5px;
    background: transparent;
  }

  .flight-results-page .flight-offer-card__point strong {
    font-size: 1.34rem;
  }

  .flight-results-page .flight-offer-card__point span {
    margin-top: 2px;
    font-size: 0.76rem;
  }

  .flight-results-page .flight-offer-card__point small {
    max-width: 90px;
    margin-top: 2px;
    overflow: hidden;
    font-size: 0.64rem;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .flight-results-page .flight-offer-card__track {
    gap: 2px;
  }

  .flight-results-page .flight-offer-card__line {
    top: 12px !important;
  }

  .flight-results-page .flight-offer-card__track i {
    width: 22px;
    height: 22px;
    font-size: 0.66rem;
  }

  .flight-results-page .flight-offer-card__track strong,
  .flight-results-page .flight-offer-card__track small {
    font-size: 0.62rem;
  }

  .flight-results-page .flight-offer-card__track-time--total,
  .flight-results-page .flight-offer-card__track-caption--total {
    display: none;
  }

  .flight-results-page .flight-offer-card__track-time--connection {
    display: block;
  }

  .flight-results-page .flight-offer-card__track-caption--connection {
    display: none;
  }

  .flight-results-page .flight-offer-card__price {
    grid-column: 2;
    grid-row: 2;
    min-width: 92px;
    align-self: center;
    gap: 4px;
    background: transparent;
  }

  .flight-results-page .flight-offer-card__price strong {
    font-size: 1.08rem;
  }

  .flight-results-page .flight-offer-card__price > span:not(.flight-offer-card__cta),
  .flight-results-page .flight-offer-card__price em {
    display: none;
  }

  .flight-results-page .flight-offer-card__cta {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .flight-results-page .flight-offer-card__mobile-kpis {
    grid-column: 1 / 3;
    display: flex;
    gap: 5px;
    overflow: hidden;
    background: transparent;
  }

  .flight-results-page .flight-offer-card__mobile-kpis span {
    flex: 1 1 0;
    min-width: 0;
    min-height: 26px;
    padding: 5px 7px;
    border-radius: 9px;
    font-size: 0.64rem;
    line-height: 1.15;
  }

  .flight-results-page .flight-offer-card__mobile-kpis span:nth-child(2) {
    max-width: 78px;
  }

  .flight-results-page .flight-offer-card__mobile-kpis span:nth-child(3) {
    flex: 1.25 1 0;
  }

  .flight-results-page .flight-offer-card__mobile-kpis strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .flight-results-page .flight-mobile-actions {
    margin-bottom: 8px;
    padding: 5px;
    border-color: rgba(85, 183, 234, 0.24);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(47, 147, 203, 0.08);
  }

  .flight-results-page .flight-mobile-filter-button {
    min-height: 36px;
    border: 1px solid rgba(85, 183, 234, 0.34);
    background: linear-gradient(135deg, #4ba6da, #58b9ee);
    box-shadow: 0 10px 18px rgba(47, 147, 203, 0.18);
  }

  .flight-results-page .flight-offer-card {
    overflow: hidden;
    border: 1px solid rgba(173, 211, 237, 0.92);
    border-radius: 17px;
    background:
      linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
    box-shadow: 0 12px 26px rgba(19, 23, 56, 0.08);
  }

  .flight-results-page .flight-offer-card[open] {
    border-color: rgba(85, 183, 234, 0.45);
    box-shadow: 0 16px 34px rgba(19, 23, 56, 0.12);
  }

  .flight-results-page .flight-offer-card__summary {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 94px !important;
    gap: 8px 10px !important;
    padding: 11px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 255, 0.96) 100%);
  }

  .flight-results-page .flight-offer-card__summary::marker,
  .flight-results-page .flight-offer-card__summary::-webkit-details-marker {
    display: none;
    content: "";
  }

  .flight-results-page .flight-offer-card__summary::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary-deep), var(--brand-primary));
    opacity: 0.88;
  }

  .flight-results-page .flight-offer-card__airline {
    grid-column: 1 / 3;
    gap: 9px;
    padding-top: 2px !important;
  }

  .flight-results-page .flight-offer-card__badge {
    width: 34px;
    height: 34px;
    border: 3px solid #eef8ff;
    font-size: 0.72rem;
    box-shadow: 0 8px 18px rgba(47, 147, 203, 0.22);
  }

  .flight-results-page .flight-offer-card__airline h2 {
    max-width: 210px;
    overflow: hidden;
    color: var(--brand-navy);
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .flight-results-page .flight-offer-card__airline p {
    color: #6a7590;
    font-size: 0.68rem;
  }

  .flight-results-page .flight-offer-card__route {
    grid-column: 1;
    align-self: center;
    padding: 4px 0 1px !important;
  }

  .flight-results-page .flight-offer-card__point strong {
    color: var(--brand-navy);
    font-size: 1.32rem;
    letter-spacing: 0;
  }

  .flight-results-page .flight-offer-card__point span {
    color: var(--brand-navy);
    font-size: 0.76rem;
    font-weight: 900;
  }

  .flight-results-page .flight-offer-card__point small {
    color: #6b7790;
  }

  .flight-results-page .flight-offer-card__track i {
    background: #ffffff;
    color: var(--brand-primary-deep);
    box-shadow: 0 0 0 1px rgba(85, 183, 234, 0.18);
  }

  .flight-results-page .flight-offer-card__line {
    border-color: rgba(47, 147, 203, 0.26);
  }

  .flight-results-page .flight-offer-card__track-time--connection {
    color: var(--brand-navy);
    font-size: 0.62rem;
    font-weight: 900;
  }

  .flight-results-page .flight-offer-card__price {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
    display: flex;
    min-width: 94px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    padding-left: 9px !important;
    border-left: 1px solid rgba(205, 223, 239, 0.82) !important;
  }

  .flight-results-page .flight-offer-card__price strong {
    color: var(--brand-navy);
    font-size: 1.08rem;
    line-height: 1;
    white-space: nowrap;
  }

  .flight-results-page .flight-offer-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    min-height: 32px;
    margin: 0;
    padding: 0 11px;
    border: 1px solid rgba(85, 183, 234, 0.34);
    border-radius: 999px;
    background: #eff9ff;
    color: var(--brand-primary-deep) !important;
    font-size: 0.72rem;
    font-weight: 900;
    box-shadow: none;
  }

  .flight-results-page .flight-offer-card[open] .flight-offer-card__cta {
    border-color: transparent;
    background: var(--brand-navy);
    color: #ffffff !important;
  }

  .flight-results-page .flight-offer-card__mobile-kpis {
    gap: 6px;
    padding-top: 2px !important;
  }

  .flight-results-page .flight-offer-card__mobile-kpis span {
    min-height: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(173, 211, 237, 0.86);
    border-radius: 10px;
    background: #ffffff;
    color: var(--brand-navy);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .flight-results-page .flight-offer-card__mobile-kpis span:nth-child(2) {
    max-width: 78px;
  }

  .flight-results-page .flight-offer-card__mobile-kpis span:nth-child(3) {
    flex: 1.22 1 0;
  }

  .flight-results-page .flight-offer-card__body {
    border-top: 1px solid rgba(85, 183, 234, 0.18);
    background:
      linear-gradient(180deg, #eef8ff 0%, #f8fcff 100%);
  }

  .flight-results-page .flight-offer-card__body-head {
    display: grid;
    gap: 8px;
    padding: 10px 11px 9px;
  }

  .flight-results-page .flight-offer-card__tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
    padding: 4px;
    border-color: rgba(173, 211, 237, 0.86);
    border-radius: 16px;
    background: rgba(238, 248, 255, 0.84);
  }

  .flight-results-page .flight-offer-card__tabs span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 8px 4px;
    font-size: 0.66rem;
    line-height: 1;
    text-align: center;
  }

  .flight-results-page .flight-offer-card__detail-link {
    min-height: 38px;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(47, 147, 203, 0.08);
  }

  .flight-results-page .flight-schedule-card {
    margin: 0 11px 10px;
    padding: 12px;
    border-color: rgba(173, 211, 237, 0.92);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(19, 23, 56, 0.06);
  }

  .flight-results-page .flight-schedule-card__head {
    gap: 8px;
    padding-bottom: 10px;
  }

  .flight-results-page .flight-schedule-card__head strong {
    font-size: 0.98rem;
  }

  .flight-results-page .flight-schedule-card__head span {
    margin-top: 3px;
    font-size: 0.72rem;
  }

  .flight-results-page .flight-schedule-card__head em {
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
  }

  .flight-results-page .flight-schedule-card__notice {
    margin: 10px 0 12px;
    padding: 10px 11px;
    border-radius: 12px;
    background: rgba(85, 183, 234, 0.12);
    color: #51617e;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .flight-results-page .flight-schedule-transfer__box {
    border-color: rgba(85, 183, 234, 0.28);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(47, 147, 203, 0.08);
  }

  .flight-results-page .flight-offer-card__detail-grid {
    display: none;
  }

  .flight-results-page .flight-offer-card__extras {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 0 11px 11px;
  }

  .flight-results-page .flight-offer-card__extras span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    overflow: hidden;
    padding: 0 7px;
    border: 1px solid rgba(173, 211, 237, 0.86);
    border-radius: 999px;
    background: #ffffff;
    color: #53617c;
    font-size: 0.68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .flight-results-page .flight-offer-card__extras .button {
    grid-column: 1 / -1;
    min-height: 42px;
    margin: 4px 0 0;
    border-radius: 999px;
  }
}

@media (max-width: 720px) {
  .flight-results-page .results-request-strip {
    align-items: center;
    background: linear-gradient(135deg, #20265f 0%, #31418f 58%, #3f9bcf 100%);
  }

  .flight-results-page .results-request-strip__compact {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.35;
  }

  .flight-results-page .results-request-strip__compact strong,
  .flight-results-page .results-request-strip__compact span {
    font-size: inherit;
    font-weight: inherit;
  }

  .flight-results-page .results-request-strip__compact strong {
    font-weight: 800;
  }

  .flight-results-page .flight-offer-card__summary {
    grid-template-columns: minmax(0, 1fr) 86px !important;
    gap: 8px 9px !important;
  }

  .flight-results-page .flight-offer-card__airline h2 {
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0;
  }

  .flight-results-page .flight-offer-card__airline p {
    color: #6f7b94;
    font-size: 0.66rem;
    font-weight: 500;
  }

  .flight-results-page .flight-offer-card__route {
    grid-template-columns: minmax(0, 1fr) 60px minmax(0, 1fr) !important;
    gap: 4px;
  }

  .flight-results-page .flight-offer-card__point strong {
    font-size: 1.24rem;
    font-weight: 800;
  }

  .flight-results-page .flight-offer-card__point span {
    margin-top: 1px;
    font-size: 0.71rem;
    font-weight: 800;
  }

  .flight-results-page .flight-offer-card__point small {
    max-width: 82px;
    color: #69768f;
    font-size: 0.6rem;
    font-weight: 500;
  }

  .flight-results-page .flight-offer-card__point--arrive strong,
  .flight-results-page .flight-offer-card__point--arrive span,
  .flight-results-page .flight-offer-card__point--arrive small {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    text-align: right;
  }

  .flight-results-page .flight-offer-card__track {
    align-self: center;
    display: grid;
    width: 60px;
    min-height: 48px;
    grid-template-rows: 27px 17px;
    align-content: center;
    justify-items: center;
    gap: 1px;
    text-align: center;
  }

  .flight-results-page .flight-offer-card__line {
    top: 13px !important;
    left: 4px !important;
    right: 4px !important;
    border-top: 1px solid rgba(47, 147, 203, 0.28);
  }

  .flight-results-page .flight-offer-card__track i {
    width: 24px;
    height: 24px;
    background: #ffffff;
    color: var(--brand-primary-deep);
    font-size: 0.64rem;
    box-shadow:
      0 0 0 1px rgba(85, 183, 234, 0.26),
      0 5px 10px rgba(47, 147, 203, 0.12);
  }

  .flight-results-page .flight-offer-card__track-time--connection {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 58px;
    min-height: 16px;
    padding: 0 4px;
    overflow: hidden;
    border: 1px solid rgba(85, 183, 234, 0.18);
    border-radius: 999px;
    background: rgba(238, 248, 255, 0.92);
    color: #31546f;
    font-size: 0.56rem !important;
    font-weight: 700;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .flight-results-page .flight-offer-card__price {
    min-width: 86px;
    gap: 7px;
    padding-left: 8px !important;
  }

  .flight-results-page .flight-offer-card__price strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0;
  }

  .flight-results-page .flight-offer-card__cta {
    min-width: 70px;
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.68rem;
    font-weight: 800;
  }

  .flight-results-page .flight-offer-card__mobile-kpis span {
    min-height: 27px;
    color: #25345d;
    font-size: 0.6rem;
    font-weight: 700;
  }

  .flight-results-page .flight-offer-card__mobile-kpis strong {
    font-weight: 700;
  }
}

@media (max-width: 720px) {
  .flight-results-page .results-request-strip {
    background: linear-gradient(135deg, #1f2459 0%, #2f3b86 58%, #3f98ca 100%);
  }

  .flight-results-page .flight-mobile-filter-button {
    border-color: rgba(85, 183, 234, 0.28);
    background: linear-gradient(135deg, #4ba4d7, #5bb8e8);
    box-shadow: 0 9px 16px rgba(47, 147, 203, 0.14);
  }

  .flight-results-page .flight-offer-card {
    border-color: rgba(173, 211, 237, 0.78);
    box-shadow: 0 10px 24px rgba(19, 23, 56, 0.07);
  }

  .flight-results-page .flight-offer-card__summary::before {
    height: 2px;
    opacity: 0.68;
  }

  .flight-results-page .flight-offer-card__airline h2,
  .flight-results-page .flight-offer-card__point strong,
  .flight-results-page .flight-offer-card__price strong {
    color: #10194a;
  }

  .flight-results-page .flight-offer-card__airline p,
  .flight-results-page .flight-offer-card__point small {
    color: #6f7c94;
  }

  .flight-results-page .flight-offer-card__point span {
    color: #142052;
  }

  .flight-results-page .flight-offer-card__mobile-kpis span {
    color: #243253;
  }
}

@media (max-width: 720px) {
  .main-nav {
    z-index: 120;
  }

  .main-nav__inner {
    gap: 8px;
  }

  .main-nav__actions {
    gap: 6px;
    min-width: 0;
  }

  .brand img {
    width: clamp(96px, 27vw, 132px);
    height: 48px;
  }

  .booking-mode-tabs--nav button {
    min-height: 30px;
    padding: 0 9px;
    font-size: 0.68rem;
  }

  .nav-customer__trigger {
    width: 36px;
    height: 36px;
  }

  .nav-customer__avatar {
    width: 29px;
    height: 29px;
    font-size: 0.68rem;
  }

  .nav-customer__panel {
    position: fixed;
    top: 64px;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
  }
}

/* Bus booking journey */
.bus-results-page,
.bus-journey-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(85, 183, 234, 0.16), transparent 32%),
    linear-gradient(180deg, #eef7ff 0%, #f8fbff 48%, #ffffff 100%);
}

.bus-results-shell,
.bus-journey-shell {
  padding: 34px 0 76px;
}

.bus-search-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(173, 211, 237, 0.74);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(29, 37, 92, 0.96), rgba(70, 133, 202, 0.92));
  color: #ffffff;
  box-shadow: 0 24px 54px rgba(31, 67, 122, 0.18);
}

.bus-search-summary span,
.bus-list-heading span {
  display: block;
  color: #bdeaff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bus-search-summary h1 {
  margin: 4px 0 8px;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.16;
}

.bus-search-summary p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.bus-search-summary p strong,
.bus-search-summary p em {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
}

.bus-modify-button,
.bus-view-seats,
.bus-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(74, 166, 224, 0.24);
}

.bus-primary-action:disabled,
.bus-seat-summary button:disabled {
  opacity: 0.46;
  cursor: not-allowed;
  box-shadow: none;
}

.bus-edit-search {
  margin-top: 16px;
}

.bus-mobile-tools {
  display: none;
}

.bus-results-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.bus-results-filter,
.bus-option-card,
.bus-trip-panel,
.bus-seat-map-panel,
.bus-points-page section,
.bus-passenger-form,
.bus-order-summary,
.bus-payment-methods {
  border: 1px solid rgba(173, 211, 237, 0.62);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(28, 54, 92, 0.12);
}

.bus-results-filter {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 18px;
}

.bus-filter-close {
  display: none;
}

.bus-results-filter h2,
.bus-results-filter strong,
.bus-list-heading strong {
  margin: 0;
  color: var(--brand-navy);
}

.bus-results-filter label {
  display: grid;
  gap: 8px;
  color: #4d5572;
  font-weight: 700;
}

.bus-results-filter select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(173, 211, 237, 0.8);
  border-radius: 12px;
  background: #f8fbff;
  color: var(--brand-navy);
  font: inherit;
}

.bus-results-filter div {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(173, 211, 237, 0.5);
}

.bus-results-filter div label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bus-results-filter input[type='checkbox'] {
  width: 16px;
  height: 16px;
  accent-color: var(--brand-primary);
}

.bus-result-list {
  display: grid;
  gap: 16px;
}

.bus-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bus-list-heading--return {
  margin-top: 10px;
}

.bus-option-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 180px;
  gap: 18px;
  padding: 18px;
}

.bus-option-card__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(74, 166, 224, 0.22);
}

.bus-option-card__main {
  min-width: 0;
}

.bus-option-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.bus-option-card h2,
.bus-trip-panel h1,
.bus-points-page h1,
.bus-passenger-form h1,
.bus-payment-methods h1 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1.15rem;
  line-height: 1.25;
}

.bus-option-card__head p,
.bus-trip-panel p,
.bus-passenger-form p,
.bus-payment-methods p {
  margin: 4px 0 0;
  color: #67708d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.bus-rating {
  display: inline-grid;
  min-width: 52px;
  padding: 5px 8px;
  border-radius: 10px;
  background: #e9f8ee;
  color: #11823a;
  font-size: 0.82rem;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.bus-rating small {
  color: #4c725c;
  font-size: 0.68rem;
  font-weight: 800;
}

.bus-option-card__schedule {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(120px, 1.2fr) minmax(120px, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.bus-option-card__schedule strong {
  display: block;
  color: #2a7dd8;
  font-size: 1.45rem;
}

.bus-option-card__schedule span {
  display: block;
  color: var(--brand-navy);
  font-weight: 900;
}

.bus-option-card__schedule small {
  color: #79819a;
}

.bus-option-card__line {
  display: grid;
  gap: 5px;
  color: var(--brand-navy);
  font-weight: 900;
  text-align: center;
}

.bus-option-card__line i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 166, 224, 0.82), transparent);
}

.bus-option-card__amenities,
.bus-amenity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.bus-option-card__amenities span,
.bus-amenity-grid span,
.bus-payment-gateway span {
  padding: 7px 10px;
  border: 1px solid rgba(173, 211, 237, 0.68);
  border-radius: 999px;
  background: #f2f9ff;
  color: #23416d;
  font-size: 0.76rem;
  font-weight: 800;
}

.bus-option-card__fare {
  display: grid;
  align-content: center;
  gap: 6px;
  padding-left: 18px;
  border-left: 1px solid rgba(173, 211, 237, 0.58);
  text-align: right;
}

.bus-option-card__fare > span {
  color: #7a8190;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bus-option-card__fare strong {
  color: var(--brand-navy);
  font-size: 1.45rem;
}

.bus-option-card__fare small {
  color: #79819a;
}

.bus-view-seats {
  margin-top: 8px;
}

.bus-journey-page + .ai-floating-launcher {
  bottom: 102px;
  min-height: 54px;
  padding: 7px;
}

.bus-journey-page + .ai-floating-launcher .ai-floating-launcher__text {
  display: none;
}

.bus-journey-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(173, 211, 237, 0.56);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.bus-journey-topbar .container {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
}

.bus-journey-topbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(173, 211, 237, 0.78);
  border-radius: 999px;
  color: transparent;
}

.bus-journey-topbar a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--brand-navy);
  border-bottom: 2px solid var(--brand-navy);
  transform: rotate(45deg);
}

.bus-journey-topbar strong {
  display: block;
  color: var(--brand-navy);
}

.bus-journey-topbar span {
  color: #69718b;
  font-size: 0.88rem;
}

.bus-journey-progress {
  position: sticky;
  top: 72px;
  z-index: 29;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 44px);
  min-height: 50px;
  border-bottom: 1px solid rgba(173, 211, 237, 0.48);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.bus-journey-progress span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5f6680;
  font-weight: 900;
}

.bus-journey-progress span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: transparent;
}

.bus-journey-progress i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eaf7ff;
  color: var(--brand-primary);
  font-size: 0.72rem;
  font-style: normal;
}

.bus-journey-progress .is-active {
  color: var(--brand-navy);
}

.bus-journey-progress .is-active::after,
.bus-journey-progress .is-complete::after {
  background: var(--brand-primary);
}

.bus-seat-page,
.bus-passenger-page,
.bus-payment-page {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 22px;
  align-items: start;
}

.bus-trip-panel,
.bus-seat-map-panel,
.bus-passenger-form,
.bus-order-summary,
.bus-payment-methods {
  padding: 22px;
}

.bus-trip-panel__operator {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.bus-trip-panel__operator span {
  display: inline-flex;
  margin-top: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f2f9ff;
  color: #23416d;
  font-size: 0.78rem;
  font-weight: 900;
}

.bus-operator-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.bus-operator-preview div {
  padding: 12px;
  border: 1px solid rgba(173, 211, 237, 0.58);
  border-radius: 14px;
  background: #f8fbff;
}

.bus-operator-preview span,
.bus-seat-summary span,
.bus-order-summary span {
  display: block;
  color: #6c748f;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bus-operator-preview strong,
.bus-seat-summary strong,
.bus-order-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--brand-navy);
}

.bus-info-tabs {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.bus-info-tabs article {
  padding-top: 16px;
  border-top: 1px solid rgba(173, 211, 237, 0.54);
}

.bus-info-tabs h2,
.bus-passenger-form h2,
.bus-order-summary h2 {
  margin: 0 0 10px;
  color: var(--brand-navy);
  font-size: 1.1rem;
}

.bus-seat-map-panel {
  display: grid;
  gap: 18px;
}

.bus-seat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.bus-seat-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4d5572;
  font-size: 0.78rem;
  font-weight: 800;
}

.bus-seat-legend i {
  width: 18px;
  height: 18px;
  border: 1px solid #2e9b55;
  border-radius: 6px;
  background: #f5fff7;
}

.bus-seat-legend .is-selected {
  background: #2e9b55;
}

.bus-seat-legend .is-booked {
  border-color: #d8dde8;
  background: #eef2f7;
}

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

.bus-deck-card {
  padding: 18px;
  border: 1px solid rgba(173, 211, 237, 0.58);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.bus-deck-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.bus-deck-card header span {
  width: 34px;
  height: 34px;
  border: 2px solid #b7c4d7;
  border-radius: 50%;
}

.bus-deck-card header strong {
  color: var(--brand-navy);
}

.bus-seat-grid {
  display: grid;
  grid-template-columns: repeat(5, 40px);
  justify-content: center;
  gap: 10px 8px;
}

.bus-seat-aisle {
  width: 18px;
}

.bus-seat-button {
  position: relative;
  width: 38px;
  height: 50px;
  border: 1.5px solid #2e9b55;
  border-radius: 8px;
  background: #f7fff9;
  color: #2e874b;
  font-size: 0.66rem;
  font-weight: 900;
  cursor: pointer;
}

.bus-seat-button::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 6px;
  height: 5px;
  border-radius: 999px;
  background: rgba(46, 155, 85, 0.18);
}

.bus-seat-button.is-selected {
  background: #2e9b55;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(46, 155, 85, 0.24);
}

.bus-seat-button.is-selected::after {
  background: rgba(255, 255, 255, 0.38);
}

.bus-seat-button.is-booked,
.bus-seat-button.is-female,
.bus-seat-button.is-male {
  border-color: #d9e0eb;
  background: #f0f3f8;
  color: #a6aec0;
  cursor: not-allowed;
}

.bus-seat-button.is-female {
  border-color: #efd8e9;
  background: #fff5fb;
}

.bus-seat-button.is-male {
  border-color: #d9e7fb;
  background: #f5f9ff;
}

.bus-seat-summary,
.bus-step-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(173, 211, 237, 0.62);
  border-radius: 18px;
  background: #f2f9ff;
}

.bus-points-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bus-points-page section {
  padding: 20px;
}

.bus-point-card,
.bus-payment-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(173, 211, 237, 0.62);
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
}

.bus-point-card input,
.bus-payment-option input {
  order: 3;
  width: 20px;
  height: 20px;
  accent-color: var(--brand-primary);
}

.bus-point-card strong {
  color: var(--brand-navy);
  font-size: 1rem;
}

.bus-point-card b,
.bus-payment-option b {
  display: block;
  color: var(--brand-navy);
}

.bus-point-card small,
.bus-payment-option small {
  display: block;
  margin-top: 3px;
  color: #6c748f;
  line-height: 1.35;
}

.bus-step-bottom {
  grid-column: 1 / -1;
  position: sticky;
  bottom: 16px;
  z-index: 10;
  box-shadow: 0 18px 38px rgba(28, 54, 92, 0.16);
}

.bus-passenger-page {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.bus-passenger-form label,
.bus-payment-methods label {
  color: #5d6680;
  font-size: 0.82rem;
  font-weight: 900;
}

.bus-passenger-form input {
  display: block;
  width: 100%;
  height: 48px;
  margin-top: 7px;
  padding: 0 14px;
  border: 1px solid rgba(173, 211, 237, 0.82);
  border-radius: 14px;
  background: #ffffff;
  color: var(--brand-navy);
  font: inherit;
}

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

.bus-passenger-card {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(173, 211, 237, 0.58);
  border-radius: 16px;
  background: #f8fbff;
}

.bus-passenger-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.bus-passenger-card header span {
  color: var(--brand-navy);
  font-weight: 900;
}

.bus-passenger-card header strong {
  color: var(--brand-primary);
}

.bus-gender-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bus-gender-row label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(173, 211, 237, 0.76);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-navy);
}

.bus-gender-row input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brand-primary);
}

.bus-order-summary {
  position: sticky;
  top: 140px;
  display: grid;
  gap: 12px;
}

.bus-order-summary p {
  margin: -4px 0 6px;
  color: #69718b;
}

.bus-order-summary div {
  padding-top: 12px;
  border-top: 1px solid rgba(173, 211, 237, 0.52);
}

.bus-order-total strong {
  font-size: 1.35rem;
}

.bus-payment-page {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.bus-payment-methods {
  display: grid;
  gap: 12px;
}

.bus-payment-option {
  grid-template-columns: auto minmax(0, 1fr);
}

.bus-payment-option input {
  order: 0;
}

.bus-payment-option:has(input:checked) {
  border-color: rgba(74, 166, 224, 0.72);
  background: #f1f9ff;
}

.bus-payment-option:has(input:disabled) {
  opacity: 0.58;
}

.bus-payment-gateway {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.bus-order-summary--payment .bus-primary-action {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .bus-results-shell,
  .bus-journey-shell {
    padding: 12px 0 96px;
  }

  .bus-search-summary {
    position: sticky;
    top: 0;
    z-index: 20;
    margin: 0 -4px;
    padding: 12px;
    border-radius: 0 0 20px 20px;
  }

  .bus-search-summary h1 {
    font-size: 1rem;
  }

  .bus-search-summary p {
    gap: 5px;
  }

  .bus-search-summary p strong,
  .bus-search-summary p em {
    padding: 5px 8px;
    font-size: 0.68rem;
  }

  .bus-modify-button {
    min-height: 38px;
    padding: 0 16px;
  }

  .bus-mobile-tools {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin-top: 14px;
  }

  .bus-mobile-tools button {
    min-height: 44px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
    color: #ffffff;
    font: inherit;
    font-weight: 900;
  }

  .bus-mobile-tools span {
    padding: 11px 13px;
    border: 1px solid rgba(173, 211, 237, 0.68);
    border-radius: 14px;
    background: #ffffff;
    color: var(--brand-navy);
    font-weight: 900;
  }

  .bus-results-layout,
  .bus-seat-page,
  .bus-points-page,
  .bus-passenger-page,
  .bus-payment-page {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bus-results-filter {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1005;
    width: min(310px, 86vw);
    max-height: 100dvh;
    overflow-y: auto;
    border-radius: 0 24px 24px 0;
    transform: translateX(-105%);
    transition: transform 180ms ease;
  }

  .bus-results-filter.is-open {
    transform: translateX(0);
  }

  .has-bus-filter-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(7, 19, 69, 0.36);
  }

  .bus-filter-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(173, 211, 237, 0.72);
    border-radius: 50%;
    background: #ffffff;
  }

  .bus-filter-close::before,
  .bus-filter-close::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 9px;
    width: 14px;
    height: 2px;
    background: var(--brand-navy);
  }

  .bus-filter-close::before {
    transform: rotate(45deg);
  }

  .bus-filter-close::after {
    transform: rotate(-45deg);
  }

  .bus-option-card {
    position: relative;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96)),
      #ffffff;
    box-shadow: 0 16px 34px rgba(35, 74, 126, 0.13);
  }

  .bus-option-card__logo {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 0.72rem;
    box-shadow: 0 10px 20px rgba(74, 166, 224, 0.2);
  }

  .bus-option-card__head {
    align-items: flex-start;
    gap: 8px;
  }

  .bus-option-card h2 {
    max-width: 185px;
    overflow: hidden;
    font-size: 0.98rem;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bus-option-card__head p {
    max-width: 185px;
    overflow: hidden;
    margin-top: 2px;
    font-size: 0.74rem;
    line-height: 1.28;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bus-rating {
    min-width: 43px;
    padding: 4px 6px 3px;
    border-radius: 11px;
    font-size: 0.74rem;
  }

  .bus-rating small {
    font-size: 0.58rem;
  }

  .bus-option-card__schedule {
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    gap: 7px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid rgba(173, 211, 237, 0.58);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(242, 249, 255, 0.92), rgba(255, 255, 255, 0.96));
  }

  .bus-option-card__schedule strong {
    color: var(--brand-navy);
    font-size: 1.18rem;
    letter-spacing: 0;
  }

  .bus-option-card__schedule span {
    max-width: 100%;
    overflow: hidden;
    font-size: 0.86rem;
    line-height: 1.12;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bus-option-card__schedule small {
    display: block;
    max-width: 98px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bus-option-card__line {
    gap: 3px;
    align-self: center;
    font-size: 0.7rem;
  }

  .bus-option-card__line i {
    position: relative;
  }

  .bus-option-card__line i::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid var(--brand-primary);
    border-right: 1.5px solid var(--brand-primary);
    background: #ffffff;
    transform: translateX(-50%) rotate(45deg);
  }

  .bus-option-card__line span {
    font-size: 0.68rem;
  }

  .bus-option-card__amenities {
    flex-wrap: nowrap;
    gap: 5px;
    margin-top: 9px;
    overflow: hidden;
  }

  .bus-option-card__amenities span {
    flex: 0 0 auto;
    max-width: 112px;
    overflow: hidden;
    padding: 5px 8px;
    font-size: 0.64rem;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bus-option-card__amenities span:nth-child(n+4) {
    display: none;
  }

  .bus-option-card__fare {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0 12px;
    padding: 10px 0 0;
    border-top: 1px solid rgba(173, 211, 237, 0.58);
    border-left: 0;
    text-align: left;
  }

  .bus-option-card__fare > span {
    font-size: 0.65rem;
  }

  .bus-option-card__fare strong {
    font-size: 1.2rem;
    line-height: 1.12;
  }

  .bus-option-card__fare small {
    display: none;
  }

  .bus-view-seats {
    grid-row: 1 / span 2;
    grid-column: 2;
    margin-top: 0;
    min-width: 126px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 14px;
    box-shadow: 0 14px 26px rgba(74, 166, 224, 0.2);
  }

  .bus-journey-topbar .container {
    min-height: 62px;
  }

  .bus-journey-progress {
    top: 62px;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 0 12px;
  }

  .bus-journey-progress span {
    flex: 0 0 auto;
    font-size: 0.78rem;
  }

  .bus-trip-panel,
  .bus-seat-map-panel,
  .bus-passenger-form,
  .bus-order-summary,
  .bus-payment-methods {
    padding: 16px;
    border-radius: 18px;
  }

  .bus-trip-panel__operator {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .bus-trip-panel__operator .bus-rating {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .bus-operator-preview,
  .bus-form-grid,
  .bus-gender-row {
    grid-template-columns: 1fr;
  }

  .bus-deck-grid {
    grid-template-columns: 1fr;
  }

  .bus-seat-grid {
    grid-template-columns: repeat(5, 38px);
    gap: 8px 7px;
  }

  .bus-seat-button {
    width: 36px;
    height: 48px;
  }

  .bus-seat-summary,
  .bus-step-bottom {
    position: sticky;
    bottom: 10px;
    z-index: 25;
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(28, 54, 92, 0.22);
  }

  .bus-seat-summary .bus-primary-action,
  .bus-step-bottom .bus-primary-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .bus-points-page section {
    padding: 16px;
    border-radius: 18px;
  }

  .bus-point-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px;
  }

  .bus-order-summary {
    position: static;
  }

  .bus-journey-page + .ai-floating-launcher {
    bottom: 176px;
  }
}

/* Site-wide typography and mobile polish pass */
body {
  font-size: 0.92rem;
  line-height: 1.56;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

p,
li,
label,
input,
select,
textarea,
button {
  letter-spacing: 0;
}

p,
li {
  font-size: 0.9rem;
}

.eyebrow,
.section-kicker,
.flight-results-page .results-request-strip__compact,
.footer-link-dock h3,
.ai-chat-card__header span,
.ai-booking-tabs button,
.ai-booking-tabs a {
  letter-spacing: 0.055em;
}

.hero__content h1,
.section-heading h1,
.detail-hero h1,
.centered-panel h1,
.visa-result-hero h1,
.transport-results-hero h1,
.contact-hero-panel h1,
.customer-profile-hero h1,
.static-page-hero h1,
.service-detail-hero h1,
.flight-results-headline h1 {
  font-size: clamp(1.42rem, 2.2vw, 2.18rem) !important;
  line-height: 1.16;
}

.section-heading h2,
.section-header h2,
.home-section h2,
.contact-form-panel__header h2,
.customer-profile-card__head h2,
.bus-search-summary h1,
.bus-option-card h2,
.bus-trip-panel h1,
.bus-points-page h1,
.bus-passenger-form h1,
.bus-payment-methods h1 {
  font-size: clamp(1.05rem, 1.45vw, 1.42rem) !important;
  line-height: 1.25;
}

.hero__lead,
.article-shell__lead,
.detail-lead,
.contact-hero-panel > p,
.footer-modern__brand p,
.footer-modern__summary p {
  font-size: 0.92rem;
  line-height: 1.62;
}

.button,
.footer-account-actions button,
.footer-account-btn,
.bus-modify-button,
.bus-view-seats,
.bus-primary-action,
.results-request-strip [data-results-edit-toggle],
.transport-request-bar [data-results-edit-toggle] {
  font-size: 0.86rem;
  font-weight: 800;
}

.site-footer--global .tc-brand-name,
.footer-modern .tc-brand-name,
.footer-bottom .tc-brand-name,
.contact-hero-panel .tc-brand-name,
.contact-form-panel .tc-brand-name,
.flight-offer-card .tc-brand-name,
.bus-option-card .tc-brand-name,
.customer-profile-card .tc-brand-name,
.footer-account-card .tc-brand-name {
  --tc-brand-travel: var(--brand-navy);
  --tc-brand-connecter: #1267f1;
  --tc-brand-shadow: none;
}

.advisory-strip .tc-brand-name,
.hero-advisory .tc-brand-name,
.ai-booking-card .ai-booking-tools__brand .tc-brand-name,
.results-request-strip .tc-brand-name,
.transport-results-hero .tc-brand-name,
.result-hero .tc-brand-name {
  --tc-brand-travel: #ffffff;
  --tc-brand-connecter: var(--brand-primary);
  --tc-brand-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.ai-chat-card {
  min-height: 460px;
  border-radius: 16px;
}

.ai-chat-card__header {
  gap: 12px;
  padding: 14px 16px;
}

.ai-chat-card__header span {
  margin-bottom: 3px;
  font-size: 0.68rem;
}

.ai-chat-card__header h2 {
  font-size: 1.08rem;
  line-height: 1.18;
}

.ai-chat-card__header strong {
  padding: 6px 10px;
  font-size: 0.7rem;
}

.ai-chat-messages {
  gap: 10px;
  padding: 14px 16px;
}

.ai-chat-message {
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 8px;
  max-width: min(680px, 94%);
}

.ai-chat-message--user {
  grid-template-columns: minmax(0, 1fr) 32px;
}

.ai-chat-message span {
  width: 32px;
  height: 32px;
  font-size: 0.66rem;
}

.ai-chat-message p,
.ai-chat-message__body {
  max-width: 100%;
  font-size: 0.86rem;
  line-height: 1.48;
}

.ai-chat-message p {
  padding: 10px 12px;
  border-radius: 10px;
}

.ai-chat-prompts {
  gap: 6px;
  padding: 0 16px 12px;
}

.ai-chat-prompts button {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.78rem;
}

.ai-chat-form {
  gap: 8px;
  padding: 12px 16px 16px;
}

.ai-chat-composer {
  grid-template-columns: 40px minmax(0, 1fr) 38px 38px auto;
  gap: 6px;
}

.ai-chat-form textarea {
  min-height: 46px;
  padding: 12px 13px;
  border-radius: 14px;
  font-size: 0.88rem;
}

.ai-chat-icon-button {
  width: 40px;
  min-width: 40px !important;
  height: 40px;
  min-height: 40px !important;
}

.ai-chat-form .ai-chat-send {
  min-width: 74px;
  height: 46px;
  border-radius: 14px;
  font-size: 0.84rem;
}

.global-ai-chat {
  width: min(408px, 100vw);
}

.global-ai-chat__panel {
  font-size: 0.88rem;
}

.global-ai-chat .ai-chat-card__header {
  min-height: 74px;
}

.global-ai-chat .ai-chat-message p {
  font-size: 0.84rem;
}

.global-ai-chat .ai-chat-prompts button {
  font-size: 0.76rem;
}

.flight-offer-card__airline h2,
.flight-offer-card__point strong,
.flight-offer-card__price strong,
.bus-option-card__schedule strong,
.bus-option-card__fare strong {
  letter-spacing: 0;
}

@media (min-width: 721px) {
  .flight-offer-card__airline h2 {
    font-size: 1.08rem !important;
  }

  .flight-offer-card__point strong {
    font-size: 1.56rem !important;
  }

  .flight-offer-card__price strong {
    font-size: 1.48rem !important;
  }

  .flight-offer-card__summary {
    padding: 14px 18px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 0.88rem;
    background: linear-gradient(180deg, #f3faff 0%, #ffffff 52%, #eef8ff 100%);
  }

  p,
  li {
    font-size: 0.86rem;
  }

  .container {
    width: 100% !important;
    max-width: 100%;
    padding-inline: 10px;
  }

  .main-nav .container,
  .booking-shell.container,
  .ai-chat-shell.container,
  .page-shell > .container,
  .section > .container,
  .site-footer--global > .container,
  .footer-editorial__inner.container,
  .flight-results-page .container,
  .bus-results-page .container,
  .bus-journey-page .container,
  .transport-results-page .container,
  .customer-profile-page .container,
  .contact-page .container {
    width: 100% !important;
    max-width: 100% !important;
  }

  .main-nav {
    position: sticky;
    top: 0;
    border-bottom: 1px solid rgba(173, 211, 237, 0.62);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
  }

  .hero__content h1,
  .section-heading h1,
  .detail-hero h1,
  .centered-panel h1,
  .visa-result-hero h1,
  .transport-results-hero h1,
  .contact-hero-panel h1,
  .customer-profile-hero h1,
  .static-page-hero h1,
  .service-detail-hero h1,
  .flight-results-headline h1 {
    font-size: 1.36rem !important;
    line-height: 1.22;
  }

  .section-heading h2,
  .section-header h2,
  .home-section h2,
  .contact-form-panel__header h2,
  .customer-profile-card__head h2,
  .bus-search-summary h1,
  .bus-option-card h2,
  .bus-trip-panel h1,
  .bus-points-page h1,
  .bus-passenger-form h1,
  .bus-payment-methods h1 {
    font-size: 1.08rem !important;
    line-height: 1.28;
  }

  .hero__lead,
  .article-shell__lead,
  .detail-lead,
  .contact-hero-panel > p,
  .footer-modern__brand p,
  .footer-modern__summary p {
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .page-shell,
  .contact-page,
  .customer-profile-page,
  .transport-results-page,
  .bus-results-page,
  .bus-journey-page {
    background:
      radial-gradient(circle at 12% 0%, rgba(85, 183, 234, 0.12), transparent 30%),
      linear-gradient(180deg, #f2faff 0%, #ffffff 54%, #eef8ff 100%);
  }

  .ai-booking-card,
  .ai-chat-card,
  .contact-hero-panel,
  .contact-form-panel,
  .customer-profile-card,
  .flight-offer-card,
  .bus-option-card,
  .bus-trip-panel,
  .bus-seat-map-panel,
  .bus-passenger-form,
  .bus-order-summary,
  .bus-payment-methods,
  .activity-card,
  .holiday-card,
  .visa-result-card,
  .hotel-result-card,
  .footer-modern,
  .footer-modern__summary {
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(19, 23, 56, 0.08);
  }

  .booking-shell,
  .ai-booking-card,
  .ai-booking-tabs,
  .ai-flight-form,
  .ai-flight-row,
  .ai-transport-row,
  .ai-hotel-form,
  .ai-activity-form,
  .ai-route-pair,
  .ai-route-box,
  .ai-date-pair,
  .ai-field,
  .contact-modern,
  .contact-hero-panel,
  .contact-form-panel,
  .customer-profile-shell,
  .customer-profile-card,
  .flight-offer-card,
  .flight-offer-card__summary,
  .flight-offer-card__route,
  .bus-option-card {
    min-width: 0;
    max-width: 100%;
  }

  .ai-booking-card,
  .contact-hero-panel,
  .contact-form-panel {
    width: 100%;
  }

  .ai-booking-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ai-booking-tabs button,
  .ai-booking-tabs a {
    min-width: 0;
    padding-inline: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ai-chat-card {
    min-height: calc(100dvh - 122px);
    grid-template-rows: auto minmax(220px, 1fr) auto auto;
  }

  .ai-chat-card__header {
    padding: 12px 14px;
  }

  .ai-chat-card__header h2 {
    font-size: 1rem;
  }

  .ai-chat-messages {
    padding: 12px 14px;
  }

  .ai-chat-message {
    max-width: 96%;
  }

  .ai-chat-message p,
  .ai-chat-message__body {
    font-size: 0.82rem;
    line-height: 1.46;
  }

  .ai-chat-prompts {
    padding: 0 14px 10px;
  }

  .ai-chat-form {
    padding: 10px 12px 12px;
  }

  .global-ai-chat {
    width: 100vw;
  }

  .global-ai-chat__panel {
    border-radius: 0;
  }

  .global-ai-chat .ai-chat-composer {
    grid-template-columns: 38px minmax(0, 1fr) 38px 38px 52px;
  }

  .global-ai-chat .ai-chat-icon-button {
    width: 38px;
    min-width: 38px !important;
    height: 38px;
    min-height: 38px !important;
  }

  .global-ai-chat .ai-chat-form .ai-chat-send {
    min-width: 52px;
    height: 44px;
  }

  .ai-floating-launcher {
    right: 14px;
    bottom: 16px;
    min-height: 50px;
    padding: 7px 12px 7px 7px;
    font-size: 0.82rem;
  }

  .ai-floating-launcher__icon {
    width: 36px;
    height: 36px;
    padding: 6px;
  }

  .contact-modern,
  .customer-profile-shell,
  .activity-listing-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero-panel,
  .contact-form-panel,
  .customer-profile-card {
    padding: 18px;
  }

  .contact-hero-panel h1,
  .contact-hero-panel p,
  .contact-method-card p,
  .footer-modern__brand h2,
  .footer-modern__brand p,
  .footer-modern__summary p {
    overflow-wrap: break-word;
  }

  .contact-method-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 18px 0;
  }

  .contact-method-card {
    min-height: auto;
    padding: 14px;
  }

  .contact-email-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
  }

  .activity-filter-sidebar {
    position: static;
  }

  .footer-modern {
    gap: 16px;
    padding: 18px 16px;
    text-align: left;
  }

  .footer-modern__brand .footer-logo {
    margin-inline: 0;
  }

  .footer-badges {
    justify-content: flex-start;
  }

  .footer-link-dock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }

  .flight-results-page .flight-offer-card__summary {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .flight-results-page .flight-offer-card__airline {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .flight-results-page .flight-offer-card__price {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    min-width: 0;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0 0 !important;
    border-top: 1px solid rgba(205, 223, 239, 0.82) !important;
    border-left: 0 !important;
    text-align: left;
  }

  .flight-results-page .flight-offer-card__route {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr) !important;
    gap: 3px;
    justify-content: start;
  }

  .flight-results-page .flight-offer-card__route {
    grid-template-columns: 72px 54px 72px !important;
  }

  .flight-results-page .flight-offer-card__point--arrive,
  .flight-results-page .flight-offer-card__point--arrive strong,
  .flight-results-page .flight-offer-card__point--arrive span,
  .flight-results-page .flight-offer-card__point--arrive small {
    margin-left: 0;
    text-align: left;
  }

  .flight-results-page .flight-offer-card__track {
    width: 54px;
    min-width: 0;
  }

  .flight-results-page .flight-offer-card__track-time--connection {
    max-width: 52px;
  }

  .flight-results-page .flight-offer-card__point strong {
    font-size: 1.14rem !important;
  }

  .flight-results-page .flight-offer-card__point span {
    font-size: 0.68rem;
  }

  .flight-results-page .flight-offer-card__point small {
    max-width: 76px;
    font-size: 0.58rem;
  }

  .flight-results-page .flight-offer-card__price strong {
    font-size: 0.94rem !important;
  }

  .flight-results-page .flight-offer-card__cta {
    min-width: 62px;
    min-height: 28px;
    margin-left: 8px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .flight-results-page .flight-offer-card__mobile-kpis {
    grid-column: 1 / -1;
    grid-row: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .flight-results-page .flight-offer-card__mobile-kpis span {
    min-width: 0;
    overflow: hidden;
    font-size: 0.58rem;
  }

  .flight-results-page .flight-offer-card__mobile-kpis span:nth-child(3) {
    display: none;
  }

  .flight-results-page .flight-offer-card__mobile-kpis strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .contact-hero-panel h1 {
    font-size: 1.22rem !important;
  }
}

@media (max-width: 560px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .main-nav__inner {
    width: 100% !important;
    max-width: 100% !important;
    gap: 5px;
    padding-inline: 6px !important;
  }

  .brand {
    flex: 0 0 auto;
    min-width: 0;
  }

  .brand img {
    width: 90px !important;
    height: 42px !important;
    object-fit: contain;
  }

  .main-nav__actions {
    display: grid;
    width: calc(100vw - 108px) !important;
    max-width: calc(100vw - 108px) !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: end;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
  }

  .booking-mode-tabs--nav {
    flex: 1 1 auto;
    justify-self: end;
    gap: 2px;
    width: 178px !important;
    max-width: 178px !important;
    min-width: 0;
    padding: 2px;
  }

  .booking-mode-tabs--nav button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 30px;
    padding: 0 4px;
    font-size: 0.56rem;
    white-space: nowrap;
  }

  .nav-signin {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .ai-booking-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .booking-shell.container,
  .ai-chat-shell.container,
  .page-shell > .container,
  .section > .container,
  .flight-results-page .container,
  .bus-results-page .container,
  .transport-results-page .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 10px;
  }

  .ai-booking-card,
  .flight-results-page .flight-offer-stack,
  .flight-results-page .flight-offer-card,
  .flight-results-page .flight-offer-card__summary {
    width: 100%;
    max-width: 100%;
  }

  .flight-results-page .flight-offer-card__summary {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
    overflow: hidden;
  }

  .flight-results-page .flight-offer-card__airline {
    grid-column: 1;
  }

  .flight-results-page .flight-offer-card__route {
    width: min(100%, 270px);
    margin: 1px auto 0;
    grid-template-columns: minmax(70px, 1fr) 58px minmax(70px, 1fr) !important;
    justify-content: center;
  }

  .flight-results-page .flight-offer-card__point--arrive,
  .flight-results-page .flight-offer-card__point--arrive strong,
  .flight-results-page .flight-offer-card__point--arrive span,
  .flight-results-page .flight-offer-card__point--arrive small {
    margin-left: auto;
    text-align: right;
  }

  .flight-results-page .flight-offer-card__track {
    width: 58px;
    min-width: 0;
  }

  .flight-results-page .flight-offer-card__price {
    grid-column: 1;
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start !important;
    gap: 8px;
    padding: 8px 0 0 !important;
    border-top: 1px solid rgba(205, 223, 239, 0.82) !important;
    border-left: 0 !important;
    text-align: left;
  }

  .flight-results-page .flight-offer-card__price strong {
    flex: 1 1 auto;
    min-width: 0;
  }

  .flight-results-page .flight-offer-card__cta {
    flex: 0 0 auto;
    margin-left: 8px !important;
    position: static !important;
    transform: none !important;
  }
}

.tc-brand-word--travel {
  color: var(--tc-brand-travel) !important;
}

.tc-brand-word--connecter {
  color: var(--tc-brand-connecter) !important;
}

.footer-editorial__start .tc-brand-name,
.ai-chat-card__header .tc-brand-name,
.customer-auth-card__intro .tc-brand-name,
.advisory-strip .tc-brand-name,
.hero-advisory .tc-brand-name,
.results-request-strip .tc-brand-name,
.transport-results-hero .tc-brand-name,
.result-hero .tc-brand-name {
  --tc-brand-travel: #ffffff;
  --tc-brand-connecter: var(--brand-primary);
  --tc-brand-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.site-footer--global .tc-brand-name,
.footer-modern .tc-brand-name,
.footer-bottom .tc-brand-name,
.footer-account-card .tc-brand-name,
.contact-hero-panel .tc-brand-name,
.contact-form-panel .tc-brand-name,
.flight-offer-card .tc-brand-name,
.bus-option-card .tc-brand-name,
.customer-profile-card .tc-brand-name,
.ai-chat-message .tc-brand-name,
.customer-auth-card__body .tc-brand-name {
  --tc-brand-travel: var(--brand-navy);
  --tc-brand-connecter: #1267f1;
  --tc-brand-shadow: none;
}

@media (max-width: 420px) {
  .main-nav__inner {
    gap: 5px;
  }

  .brand img {
    width: 88px !important;
    height: 42px !important;
  }

  .booking-mode-tabs--nav button {
    padding: 0 4px;
    font-size: 0.6rem;
  }

  .ai-booking-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-signin {
    min-height: 32px;
    padding: 0 9px;
    font-size: 0.68rem;
  }

  .footer-link-dock {
    grid-template-columns: 1fr;
  }

  .ai-chat-composer,
  .global-ai-chat .ai-chat-composer {
    grid-template-columns: 36px minmax(0, 1fr) 36px 36px 48px;
    gap: 5px;
  }

  .ai-chat-icon-button,
  .global-ai-chat .ai-chat-icon-button {
    width: 36px;
    min-width: 36px !important;
    height: 36px;
    min-height: 36px !important;
  }

  .ai-chat-form .ai-chat-send,
  .global-ai-chat .ai-chat-form .ai-chat-send {
    min-width: 48px;
    height: 42px;
    font-size: 0.78rem;
  }
}

/* End-of-file typography authority. Keep UI calm and readable after all component rules. */
h1,
.hero__content h1,
.detail-hero h1,
.visa-result-hero h1,
.transport-results-hero h1,
.contact-hero-panel h1,
.customer-profile-hero h1,
.static-page-hero h1,
.service-detail-hero h1,
.flight-results-headline h1 {
  font-size: clamp(1.28rem, 1.72vw, 1.72rem) !important;
  font-weight: 500 !important;
  line-height: 1.24 !important;
  letter-spacing: 0 !important;
}

.contact-hero-panel h1,
.customer-auth-card__intro h2,
.footer-modern__brand h2,
.footer-editorial__start h2 {
  font-size: clamp(1.22rem, 1.48vw, 1.56rem) !important;
  font-weight: 500 !important;
}

h2,
h3,
h4,
.section-heading h2,
.section-header h2,
.home-section h2,
.contact-form-panel__header h2,
.customer-profile-card__head h2,
.activity-card h3,
.holiday-card h3,
.bus-option-card h2,
.transport-result-card h2,
.hotel-result-card h2,
.visa-result-card h2,
.flight-offer-card__airline h2 {
  font-size: clamp(0.96rem, 1.22vw, 1.28rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

p,
li,
small,
input,
select,
textarea,
label,
dd,
td,
.ai-chat-message p,
.ai-chat-message__body,
.flight-offer-card p,
.bus-option-card p,
.transport-result-card p,
.hotel-result-card p,
.visa-result-card p,
.activity-card p,
.holiday-card p {
  font-weight: 400 !important;
}

strong,
b,
th,
dt {
  font-weight: 600 !important;
}

.button,
button,
.nav-signin,
.booking-mode-tabs button,
.ai-booking-tabs button,
.ai-booking-tabs a,
.ai-search-btn,
.ai-chat-send,
.flight-offer-card__cta,
.results-request-strip [data-results-edit-toggle],
.transport-request-bar [data-results-edit-toggle],
.bus-modify-button,
.bus-view-seats,
.bus-primary-action {
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.flash,
.customer-profile-flash,
.customer-auth-notice,
.flight-route-error,
.transport-form-error,
.passport-scan-panel__status {
  font-weight: 400 !important;
}

.tc-brand-name,
.tc-brand-name * {
  font-weight: 700 !important;
}

@media (max-width: 720px) {
  h1,
  .hero__content h1,
  .detail-hero h1,
  .visa-result-hero h1,
  .transport-results-hero h1,
  .contact-hero-panel h1,
  .customer-profile-hero h1,
  .static-page-hero h1,
  .service-detail-hero h1,
  .flight-results-headline h1 {
    font-size: 1.12rem !important;
    font-weight: 500 !important;
    line-height: 1.28 !important;
  }

  h2,
  h3,
  h4,
  .section-heading h2,
  .section-header h2,
  .home-section h2,
  .contact-form-panel__header h2,
  .customer-profile-card__head h2,
  .activity-card h3,
  .holiday-card h3,
  .bus-option-card h2,
  .transport-result-card h2,
  .hotel-result-card h2,
  .visa-result-card h2 {
    font-size: 0.96rem !important;
    font-weight: 500 !important;
  }

  p,
  li,
  label,
  input,
  select,
  textarea,
  .ai-chat-message p,
  .ai-chat-message__body {
    font-size: 0.84rem !important;
    font-weight: 400 !important;
  }

  .booking-mode-tabs--nav button {
    font-size: 0.56rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
  }

  .nav-signin {
    font-size: 0.66rem !important;
    font-weight: 600 !important;
  }
}

/* Professional typography calibration: calm body copy, lighter messages, stronger weight only where useful. */
body {
  font-weight: 400;
}

p,
li,
small,
input,
select,
textarea,
label,
dd,
td,
.article-shell,
.detail-lead,
.hero__lead,
.section-heading p,
.section-header p,
.contact-hero-panel p,
.contact-method-card p,
.customer-profile-card p,
.visa-result-card p,
.hotel-result-card p,
.bus-option-card p,
.flight-offer-card p,
.activity-card p,
.holiday-card p,
.footer-modern p,
.footer-editorial p,
.ai-chat-message p,
.ai-chat-message__body,
.ai-chat-message__attachments small {
  font-weight: 400 !important;
}

strong,
b,
th,
dt,
.section-heading strong,
.section-header strong,
.footer-modern strong,
.footer-editorial strong,
.ai-chat-message strong {
  font-weight: 600 !important;
}

h1,
.hero__content h1,
.detail-hero h1,
.visa-result-hero h1,
.transport-results-hero h1,
.contact-hero-panel h1,
.customer-profile-hero h1,
.static-page-hero h1,
.service-detail-hero h1,
.flight-results-headline h1 {
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

h2,
h3,
h4,
.section-heading h2,
.section-header h2,
.home-section h2,
.contact-form-panel__header h2,
.customer-profile-card__head h2,
.bus-search-summary h1,
.bus-option-card h2,
.bus-trip-panel h1,
.bus-points-page h1,
.bus-passenger-form h1,
.bus-payment-methods h1,
.flight-offer-card__airline h2,
.flight-schedule-card__head strong,
.activity-card h3,
.holiday-card h3 {
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

.eyebrow,
.section-eyebrow,
.footer-editorial__eyebrow,
.ai-mobile-heading strong,
.ai-booking-tools__brand em,
.ai-route-box span,
.ai-field span,
.ai-date-trigger span,
.ai-passenger__toggle span,
.ai-select-field span,
.ai-custom-select__option small,
.flight-offer-card__detail-grid span,
.flight-schedule-card__head span,
.bus-search-summary span,
.bus-list-heading span,
.customer-profile-card label span,
.contact-form-panel label span,
.customer-auth-form label span {
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
}

.button,
button,
.nav-signin,
.booking-mode-tabs button,
.ai-booking-tabs button,
.ai-booking-tabs a,
.ai-search-btn,
.ai-chat-send,
.ai-chat-prompts button,
.ai-chat-icon-button,
.flight-offer-card__cta,
.flight-offer-card__extras .button,
.results-request-strip [data-results-edit-toggle],
.transport-request-bar [data-results-edit-toggle],
.bus-modify-button,
.bus-view-seats,
.bus-primary-action,
.footer-account-actions button,
.footer-account-btn {
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

.ai-route-box input,
.ai-date-trigger strong,
.ai-passenger__toggle strong,
.ai-select-field select,
.ai-custom-select__toggle,
.flight-offer-card__point strong,
.flight-offer-card__point span,
.flight-offer-card__price strong,
.flight-offer-card__mobile-kpis strong,
.bus-option-card strong,
.transport-result-card strong,
.status-pill,
.admin-status-pill,
.customer-status-pill {
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.flash,
.customer-profile-flash,
.customer-auth-notice,
.flight-route-error,
.transport-form-error,
.passport-scan-panel__status {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 13px !important;
  border: 1px solid rgba(85, 183, 234, 0.28) !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, #f5fbff 0%, #eef8ff 100%) !important;
  color: #233154 !important;
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  box-shadow: 0 10px 24px rgba(47, 147, 203, 0.08) !important;
}

.flash::before,
.customer-profile-flash::before,
.customer-auth-notice::before,
.flight-route-error::before,
.transport-form-error::before,
.passport-scan-panel__status::before {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.16);
  color: var(--brand-primary-deep);
  font-size: 0.72rem;
  font-weight: 600 !important;
  line-height: 1;
}

.flash::before,
.customer-profile-flash::before,
.customer-auth-notice::before,
.passport-scan-panel__status::before {
  content: "i";
}

.flash--success::before,
.passport-scan-panel__status[data-type='success']::before {
  content: "✓";
}

.flash--error,
.customer-auth-notice[data-type='error'],
.flight-route-error,
.transport-form-error {
  border-color: rgba(225, 96, 96, 0.26) !important;
  background: linear-gradient(180deg, #fff8f8 0%, #fff0f0 100%) !important;
  color: #773338 !important;
}

.flash--error::before,
.customer-auth-notice[data-type='error']::before,
.flight-route-error::before,
.transport-form-error::before {
  content: "!";
  background: rgba(225, 96, 96, 0.12);
  color: #b7444b;
}

.customer-auth-notice[data-type='warning'],
.passport-scan-panel__status[data-type='warning'] {
  border-color: rgba(216, 179, 107, 0.36) !important;
  background: linear-gradient(180deg, #fffdf5 0%, #fff8e8 100%) !important;
  color: #6d5521 !important;
}

.customer-auth-notice[data-type='warning']::before,
.passport-scan-panel__status[data-type='warning']::before {
  content: "!";
  background: rgba(216, 179, 107, 0.16);
  color: #a97922;
}

.customer-auth-notice[hidden],
.flash[hidden],
.customer-profile-flash[hidden],
.flight-route-error[hidden],
.transport-form-error[hidden],
.passport-scan-panel__status[hidden] {
  display: none !important;
}

.ai-chat-card__header h2,
.global-ai-chat .ai-chat-card__header h2 {
  font-size: 1.02rem !important;
  font-weight: 650 !important;
}

.ai-chat-card__header p,
.ai-chat-card__header small,
.global-ai-chat .ai-chat-card__header p,
.global-ai-chat .ai-chat-card__header small {
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
}

.ai-chat-message,
.global-ai-chat .ai-chat-message {
  gap: 9px;
}

.ai-chat-message span,
.global-ai-chat .ai-chat-message span {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
}

.ai-chat-message p,
.ai-chat-message__body,
.global-ai-chat .ai-chat-message p,
.global-ai-chat .ai-chat-message__body {
  color: #4b5570;
  font-size: 0.84rem !important;
  font-weight: 400 !important;
  line-height: 1.48 !important;
}

.ai-chat-message--user p,
.ai-chat-message--user .ai-chat-message__body,
.global-ai-chat .ai-chat-message--user p,
.global-ai-chat .ai-chat-message--user .ai-chat-message__body {
  color: #ffffff !important;
}

.ai-chat-prompts button,
.global-ai-chat .ai-chat-prompts button {
  font-size: 0.72rem !important;
  font-weight: 550 !important;
}

.ai-chat-form textarea,
.global-ai-chat .ai-chat-form textarea {
  color: var(--brand-ink);
  font-size: 0.86rem !important;
  font-weight: 400 !important;
}

.tc-brand-name,
.tc-brand-name * {
  font-weight: 700 !important;
}

@media (max-width: 720px) {
  h1,
  .hero__content h1,
  .detail-hero h1,
  .visa-result-hero h1,
  .transport-results-hero h1,
  .contact-hero-panel h1,
  .customer-profile-hero h1,
  .static-page-hero h1,
  .service-detail-hero h1,
  .flight-results-headline h1 {
    font-size: 1.22rem !important;
    line-height: 1.25 !important;
  }

  h2,
  h3,
  .section-heading h2,
  .section-header h2,
  .home-section h2,
  .contact-form-panel__header h2,
  .customer-profile-card__head h2,
  .bus-search-summary h1,
  .bus-option-card h2 {
    font-size: 1rem !important;
    line-height: 1.3 !important;
  }

  p,
  li,
  label,
  input,
  select,
  textarea,
  .ai-chat-message p,
  .ai-chat-message__body {
    font-size: 0.84rem !important;
  }

  .flight-offer-card__airline h2 {
    font-size: 0.92rem !important;
  }

  .flash,
  .customer-profile-flash,
  .customer-auth-notice,
  .flight-route-error,
  .transport-form-error,
  .passport-scan-panel__status {
    font-size: 0.8rem !important;
  }
}

/* Final UI polish layer: quieter typography, readable brand colors, and calmer feedback messages. */
body {
  font-weight: 400 !important;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

p,
li,
dd,
td,
small,
label,
input,
select,
textarea,
.hero__lead,
.detail-lead,
.section-heading p,
.section-header p,
.contact-hero-panel p,
.contact-method-card p,
.contact-form-panel p,
.customer-profile-card p,
.customer-auth-card p,
.visa-result-card p,
.hotel-result-card p,
.transport-result-card p,
.bus-option-card p,
.flight-offer-card p,
.activity-card p,
.holiday-card p,
.footer-modern p,
.footer-editorial p,
.ai-chat-message p,
.ai-chat-message__body,
.ai-chat-message__attachments small {
  font-weight: 400 !important;
}

h1,
.hero__content h1,
.detail-hero h1,
.visa-result-hero h1,
.transport-results-hero h1,
.contact-hero-panel h1,
.customer-profile-hero h1,
.static-page-hero h1,
.service-detail-hero h1,
.flight-results-headline h1,
.bus-trip-panel h1,
.bus-points-page h1,
.bus-passenger-form h1,
.bus-payment-methods h1 {
  font-size: clamp(1.28rem, 1.65vw, 1.68rem) !important;
  font-weight: 500 !important;
  line-height: 1.24 !important;
  letter-spacing: 0 !important;
}

h2,
h3,
h4,
.section-heading h2,
.section-header h2,
.home-section h2,
.contact-form-panel__header h2,
.customer-profile-card__head h2,
.customer-auth-card__intro h2,
.bus-search-summary h1,
.bus-option-card h2,
.flight-offer-card__airline h2,
.flight-schedule-card__head strong,
.activity-card h3,
.holiday-card h3,
.footer-modern__brand h2,
.footer-editorial__start h2 {
  font-size: clamp(0.96rem, 1.14vw, 1.22rem) !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
}

strong,
b,
th,
dt,
.tc-brand-name,
.tc-brand-name *,
.status-pill,
.admin-status-pill,
.customer-status-pill,
.flight-offer-card__point strong,
.flight-offer-card__price strong,
.bus-option-card strong {
  font-weight: 600 !important;
}

.eyebrow,
.section-eyebrow,
.footer-editorial__eyebrow,
.ai-mobile-heading strong,
.ai-booking-tools__brand em,
.ai-route-box span,
.ai-field span,
.ai-date-trigger span,
.ai-passenger__toggle span,
.ai-select-field span,
.ai-custom-select__option small,
.flight-offer-card__detail-grid span,
.flight-schedule-card__head span,
.bus-search-summary span,
.bus-list-heading span,
.customer-profile-card label span,
.contact-form-panel label span,
.customer-auth-form label span {
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
}

.button,
button,
.nav-signin,
.booking-mode-tabs button,
.ai-booking-tabs button,
.ai-booking-tabs a,
.ai-search-btn,
.ai-chat-send,
.ai-chat-prompts button,
.ai-chat-icon-button,
.flight-offer-card__cta,
.flight-offer-card__extras .button,
.results-request-strip [data-results-edit-toggle],
.transport-request-bar [data-results-edit-toggle],
.bus-modify-button,
.bus-view-seats,
.bus-primary-action,
.footer-account-actions button,
.footer-account-btn {
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.flash,
.customer-profile-flash,
.customer-auth-notice,
.flight-route-error,
.transport-form-error,
.passport-scan-panel__status,
.admin-flash {
  min-height: 40px !important;
  padding: 10px 13px !important;
  border: 1px solid rgba(85, 183, 234, 0.28) !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, #f6fbff 0%, #eef8ff 100%) !important;
  color: #263552 !important;
  font-size: 0.84rem !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  box-shadow: 0 10px 24px rgba(47, 147, 203, 0.08) !important;
}

.flash--error,
.customer-auth-notice[data-type='error'],
.flight-route-error,
.transport-form-error,
.admin-flash--error {
  border-color: rgba(225, 96, 96, 0.26) !important;
  background: linear-gradient(180deg, #fffafa 0%, #fff1f1 100%) !important;
  color: #753237 !important;
}

.flash::before,
.customer-profile-flash::before,
.customer-auth-notice::before,
.flight-route-error::before,
.transport-form-error::before,
.passport-scan-panel__status::before {
  font-weight: 600 !important;
}

.tc-brand-name {
  --tc-brand-travel: var(--brand-navy);
  --tc-brand-connecter: #1267f1;
  color: inherit;
  display: inline;
  white-space: nowrap;
}

.tc-brand-word--travel {
  color: var(--tc-brand-travel) !important;
}

.tc-brand-word--connecter {
  color: var(--tc-brand-connecter) !important;
}

.ai-chat-card__header .tc-brand-name,
.global-ai-chat .ai-chat-card__header .tc-brand-name,
.advisory-strip .tc-brand-name,
.result-hero .tc-brand-name,
.transport-results-hero .tc-brand-name,
.ai-booking-card .ai-booking-tools__brand .tc-brand-name {
  --tc-brand-travel: #ffffff;
  --tc-brand-connecter: var(--brand-primary);
  --tc-brand-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

.footer-editorial .tc-brand-name,
.footer-account-card .tc-brand-name,
.site-footer--global .tc-brand-name,
.customer-auth-card__body .tc-brand-name,
.ai-chat-message .tc-brand-name,
.contact-hero-panel .tc-brand-name,
.contact-form-panel .tc-brand-name,
.customer-profile-card .tc-brand-name,
.flight-offer-card .tc-brand-name,
.bus-option-card .tc-brand-name {
  --tc-brand-travel: var(--brand-navy);
  --tc-brand-connecter: #1267f1;
  --tc-brand-shadow: none;
}

.ai-chat-card__header h2,
.global-ai-chat .ai-chat-card__header h2 {
  font-size: 0.98rem !important;
  font-weight: 600 !important;
}

.ai-chat-card__header p,
.ai-chat-card__header small,
.global-ai-chat .ai-chat-card__header p,
.global-ai-chat .ai-chat-card__header small {
  font-size: 0.7rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
}

.ai-chat-message span,
.global-ai-chat .ai-chat-message span {
  font-size: 0.68rem !important;
  font-weight: 600 !important;
}

.ai-chat-message p,
.ai-chat-message__body,
.global-ai-chat .ai-chat-message p,
.global-ai-chat .ai-chat-message__body {
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  line-height: 1.48 !important;
}

.contact-hero-panel,
.contact-form-panel,
.customer-profile-card,
.customer-profile-form-card,
.footer-editorial__panel,
.flight-offer-card,
.bus-option-card {
  color: var(--brand-ink);
}

@media (max-width: 720px) {
  body {
    font-size: 14px !important;
  }

  h1,
  .hero__content h1,
  .detail-hero h1,
  .visa-result-hero h1,
  .transport-results-hero h1,
  .contact-hero-panel h1,
  .customer-profile-hero h1,
  .static-page-hero h1,
  .service-detail-hero h1,
  .flight-results-headline h1,
  .bus-trip-panel h1,
  .bus-points-page h1,
  .bus-passenger-form h1,
  .bus-payment-methods h1 {
    font-size: 1.12rem !important;
    font-weight: 500 !important;
    line-height: 1.26 !important;
  }

  h2,
  h3,
  h4,
  .section-heading h2,
  .section-header h2,
  .home-section h2,
  .contact-form-panel__header h2,
  .customer-profile-card__head h2,
  .customer-auth-card__intro h2,
  .bus-search-summary h1,
  .bus-option-card h2,
  .flight-offer-card__airline h2,
  .footer-editorial__start h2 {
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    line-height: 1.32 !important;
  }

  p,
  li,
  small,
  label,
  input,
  select,
  textarea,
  .ai-chat-message p,
  .ai-chat-message__body {
    font-size: 0.82rem !important;
    font-weight: 400 !important;
  }

  .button,
  button,
  .nav-signin,
  .booking-mode-tabs button,
  .ai-booking-tabs button,
  .ai-booking-tabs a,
  .ai-search-btn,
  .ai-chat-send,
  .ai-chat-prompts button,
  .footer-account-btn {
    font-weight: 600 !important;
  }

  .flash,
  .customer-profile-flash,
  .customer-auth-notice,
  .flight-route-error,
  .transport-form-error,
  .passport-scan-panel__status,
  .admin-flash {
    font-size: 0.78rem !important;
    font-weight: 400 !important;
  }
}

/* Detail-weight cleanup for components that previously forced extra-bold text. */
.results-request-strip__summary,
.results-request-strip__compact,
.results-request-strip__summary strong,
.results-request-strip__compact strong,
.results-request-strip__summary span,
.results-request-strip__compact span {
  font-weight: 500 !important;
}

.results-request-strip [data-results-edit-toggle],
.results-request-strip [data-transport-edit-toggle],
.transport-request-bar [data-results-edit-toggle] {
  font-weight: 600 !important;
}

.ai-booking-tools__brand,
.booking-toolbar__brand {
  font-weight: 600 !important;
}

.contact-method-card > span,
.contact-info-strip span,
.contact-info-strip a {
  font-weight: 600 !important;
}

.footer-contact-btn,
.footer-contact-btn *,
.footer-editorial__actions a,
.footer-editorial__actions button,
.footer-mailing button,
.footer-editorial__newsletter > a,
.footer-editorial .footer-link-dock h3,
.footer-editorial .footer-link-dock a,
.footer-editorial__bottom a {
  font-weight: 500 !important;
}

.flight-offer-card__badge,
.flight-offer-card__tabs span,
.flight-offer-card__mobile-kpis span,
.flight-offer-card__mobile-kpis strong,
.flight-offer-card__segment-duration,
.flight-offer-card__stop-text {
  font-weight: 500 !important;
}

.contact-email-strip span,
.contact-email-strip a {
  font-weight: 500 !important;
}

.flight-mobile-filter-button span,
.flight-filters-panel__head span,
.flight-filters-panel__head strong,
.flight-filters-group h2,
.flight-filters-group h3,
.flight-filters-group label span {
  font-weight: 500 !important;
}

.flight-offer-card__detail-link,
.flight-schedule-card__head em,
.flight-schedule-event time,
.flight-schedule-transfer__times time,
.flight-schedule-event strong,
.flight-schedule-transfer__box strong,
.flight-schedule-transfer__box small {
  font-weight: 600 !important;
}

.classic-search-card .ai-hotel-rooms > span,
.ai-booking-card .ai-hotel-rooms > span {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
}

.classic-search-card .ai-hotel-rooms .ai-passenger__toggle strong,
.ai-booking-card .ai-hotel-rooms .ai-passenger__toggle strong {
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* Profile and activity polish from the final visual pass. */
.customer-profile-hero {
  border-bottom: 1px solid rgba(173, 211, 237, 0.52) !important;
  background:
    linear-gradient(135deg, rgba(23, 28, 73, 0.96), rgba(52, 77, 154, 0.9)),
    var(--brand-navy) !important;
}

.customer-profile-hero__inner {
  min-height: 142px !important;
  align-items: center !important;
  padding: 20px 0 30px !important;
}

.customer-profile-hero .eyebrow {
  margin-bottom: 8px !important;
  color: var(--brand-primary) !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
}

.customer-profile-hero h1 {
  max-width: 680px !important;
  margin: 0 0 9px !important;
  font-size: clamp(1.18rem, 1.55vw, 1.52rem) !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
}

.customer-profile-hero p:not(.eyebrow) {
  max-width: 720px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.84rem !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

.customer-profile-hero__support {
  padding: 10px 18px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
}

.customer-profile-shell {
  margin-top: -26px !important;
}

.customer-profile-card {
  border-radius: 20px !important;
  padding: 20px !important;
}

.customer-profile-card--identity h2,
.customer-profile-card__head h2 {
  font-weight: 500 !important;
}

.customer-profile-card--identity h2 {
  font-size: 1.16rem !important;
}

.customer-profile-facts dt,
.customer-profile-photo label span,
.customer-profile-form label span {
  font-weight: 500 !important;
}

.customer-profile-facts dd,
.customer-profile-photo input[type='file']::file-selector-button,
.customer-profile-count,
.profile-date-trigger,
.profile-date-picker select,
.profile-date-picker__grid button,
.passport-scan-panel strong,
.customer-profile-record summary strong,
.customer-profile-record summary b,
.customer-profile-document {
  font-weight: 600 !important;
}

.holiday-card {
  min-height: 286px !important;
  border-radius: 20px !important;
}

.holiday-card::after {
  background:
    linear-gradient(180deg, rgba(16, 21, 53, 0.02) 0%, rgba(16, 21, 53, 0.2) 42%, rgba(10, 15, 43, 0.88) 100%) !important;
}

.holiday-card__country {
  top: 14px !important;
  left: 14px !important;
  padding: 7px 11px !important;
  font-size: 0.76rem !important;
  font-weight: 500 !important;
}

.holiday-card__body {
  left: 16px !important;
  right: 16px !important;
  bottom: 15px !important;
}

.holiday-card__body p {
  margin-bottom: 6px !important;
  font-size: 0.66rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
}

.holiday-card__body h3 {
  display: -webkit-box;
  margin-bottom: 6px !important;
  overflow: hidden;
  color: #ffffff !important;
  font-size: clamp(0.92rem, 1.02vw, 1.04rem) !important;
  font-weight: 500 !important;
  line-height: 1.22 !important;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.holiday-card__body span {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.78rem !important;
  font-weight: 400 !important;
  line-height: 1.32 !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .customer-profile-hero__inner {
    min-height: 126px !important;
    padding: 18px 0 42px !important;
    gap: 12px !important;
  }

  .customer-profile-hero h1 {
    font-size: 1.08rem !important;
  }

  .customer-profile-hero p:not(.eyebrow) {
    font-size: 0.8rem !important;
    line-height: 1.46 !important;
  }

  .customer-profile-shell {
    margin-top: -34px !important;
  }

  .customer-profile-card {
    padding: 15px !important;
  }

  .holiday-card {
    min-height: 250px !important;
  }

  .holiday-card__body h3 {
    font-size: 0.92rem !important;
  }

  .holiday-card__body span {
    font-size: 0.74rem !important;
  }
}

@media (max-width: 720px) {
  .results-request-strip__summary,
  .results-request-strip__compact,
  .results-request-strip__summary strong,
  .results-request-strip__compact strong,
  .results-request-strip__summary span,
  .results-request-strip__compact span {
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    line-height: 1.42 !important;
  }

  .footer-contact-btn,
  .footer-editorial__actions a,
  .footer-editorial__actions button,
  .footer-editorial .footer-link-dock h3,
  .footer-editorial .footer-link-dock a,
  .footer-editorial__bottom a {
    font-weight: 500 !important;
  }
}

/* Compact result pages and shared mobile filter drawer. */
.page-shell.service-list-page,
.page-shell.hotel-results-page,
.page-shell.transport-results-page,
.page-shell.bus-results-page,
.page-shell.flight-results-page {
  padding-top: 24px !important;
  padding-bottom: 56px;
}

.bus-results-shell {
  padding-top: 0 !important;
  padding-bottom: 56px;
}

.visa-search-page .visa-results-list-section,
.visa-result-request-section {
  padding-top: 24px !important;
}

.results-request-strip {
  margin-bottom: 14px;
}

.result-mobile-actions,
.result-filter-backdrop,
.result-filter-drawer__head {
  display: none;
}

@media (max-width: 860px) {
  body.has-result-filter-drawer {
    overflow: hidden;
  }

  .page-shell.service-list-page,
  .page-shell.hotel-results-page,
  .page-shell.transport-results-page,
  .page-shell.bus-results-page,
  .page-shell.flight-results-page {
    padding-top: 8px !important;
    padding-bottom: 48px;
  }

  .bus-results-shell {
    padding-bottom: 48px;
  }

  .visa-search-page .visa-results-list-section,
  .visa-result-request-section {
    padding-top: 10px !important;
  }

  .results-request-strip {
    margin-bottom: 12px;
    padding: 12px 14px;
  }

  .result-mobile-actions {
    display: flex;
    margin: 0 0 12px;
    padding: 6px;
    border: 1px solid rgba(173, 211, 237, 0.76);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 26px rgba(19, 23, 56, 0.08);
  }

  .result-mobile-filter-button {
    display: grid;
    width: 100%;
    min-height: 44px;
    place-items: center;
    gap: 2px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-primary-deep), var(--brand-primary));
    color: #ffffff;
    font: inherit;
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(47, 147, 203, 0.24);
  }

  .result-mobile-filter-button span {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .result-mobile-filter-button small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.7rem;
    font-weight: 400;
  }

  .activity-results-page .activity-listing-layout {
    display: block;
  }

  .activity-results-page .activity-filter-sidebar.result-filter-drawer {
    position: fixed !important;
    inset: 0 auto 0 0;
    z-index: 1200;
    width: min(88vw, 360px);
    max-width: 360px;
    max-height: 100dvh;
    overflow-y: auto;
    border-radius: 0 24px 24px 0;
    background: #ffffff;
    box-shadow: 22px 0 54px rgba(13, 20, 63, 0.24);
    transform: translateX(-106%);
    transition: transform 0.24s ease;
  }

  .activity-results-page .activity-filter-sidebar.result-filter-drawer.is-open {
    transform: translateX(0);
  }

  .activity-results-page .activity-filter-sidebar.result-filter-drawer .activity-filter-panel {
    min-height: 100%;
    padding: 0 16px 18px;
    border: 0;
    border-radius: 0 24px 24px 0;
    box-shadow: none;
  }

  .result-filter-drawer__head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 -16px 16px;
    padding: 17px 16px;
    background: linear-gradient(135deg, var(--brand-navy), #293783 58%, var(--brand-primary-deep));
    color: #ffffff;
  }

  .result-filter-drawer__head span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .result-filter-drawer__head strong {
    display: block;
    margin-top: 2px;
    font-size: 1rem;
    font-weight: 600;
  }

  .result-filter-drawer__head button {
    position: relative;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
  }

  .result-filter-drawer__head button::before,
  .result-filter-drawer__head button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .result-filter-drawer__head button::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .result-filter-drawer__head button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .result-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1190;
    display: block;
    opacity: 0;
    pointer-events: none;
    background: rgba(13, 20, 63, 0.46);
    backdrop-filter: blur(5px);
    transition: opacity 0.22s ease;
  }

  .result-filter-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .activity-results-page .activity-results-panel {
    margin-top: 0;
  }

  .activity-results-page .card-grid--three {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Hotel result listing */
.hotel-results-layout {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.hotel-filter-sidebar {
  position: sticky;
  top: 88px;
}

.hotel-filter-panel,
.hotel-list-card,
.hotel-empty-state {
  border: 1px solid rgba(173, 211, 237, 0.72);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(32, 37, 67, 0.08);
}

.hotel-filter-panel {
  display: grid;
  gap: 16px;
  padding: 14px;
}

.hotel-map-card {
  position: relative;
  display: grid;
  min-height: 96px;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 28%, #ef4c50 0 10px, transparent 11px),
    linear-gradient(35deg, transparent 0 28%, rgba(255, 218, 82, 0.72) 29% 36%, transparent 37%),
    linear-gradient(-35deg, transparent 0 30%, rgba(255, 218, 82, 0.72) 31% 38%, transparent 39%),
    linear-gradient(135deg, transparent 0 43%, rgba(95, 183, 235, 0.36) 44% 52%, transparent 53%),
    #f4f8fb;
  color: var(--brand-navy);
  font: inherit;
  cursor: pointer;
}

.hotel-map-card::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 22px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: #e74f53;
  transform: translateX(-50%) rotate(-45deg);
}

.hotel-map-card::after {
  content: "";
  position: absolute;
  top: 29px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateX(-50%);
}

.hotel-map-card strong {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hotel-filter-search {
  display: grid;
  gap: 7px;
}

.hotel-filter-search span,
.hotel-price-input span {
  color: #68728c;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hotel-filter-search input,
.hotel-price-input input,
.hotel-sort-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(173, 211, 237, 0.86);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--brand-navy);
  font: inherit;
  padding: 0 14px;
}

.hotel-filter-group {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(173, 211, 237, 0.52);
}

.hotel-filter-group h2 {
  margin: 0;
  color: #2f3859;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
}

.hotel-budget-range {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.22);
}

.hotel-budget-range span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-primary-deep), var(--brand-primary));
}

.hotel-price-input {
  display: grid;
  gap: 7px;
}

.hotel-filter-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 34px;
  color: #2f3859;
  font-size: 0.86rem;
}

.hotel-filter-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brand-primary-deep);
}

.hotel-filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hotel-filter-actions .button {
  min-height: 42px;
  justify-content: center;
  padding-inline: 12px;
}

.hotel-results-main {
  min-width: 0;
}

.hotel-results-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.hotel-results-topline span {
  display: block;
  color: var(--brand-primary-deep);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hotel-results-topline h1 {
  margin: 3px 0 0;
  color: var(--brand-navy);
  font-size: clamp(1.12rem, 1.62vw, 1.48rem) !important;
  font-weight: 600 !important;
  line-height: 1.25;
}

.hotel-sort-form {
  flex: 0 0 min(290px, 38%);
}

.hotel-sort-form label {
  display: grid;
  gap: 6px;
}

.hotel-sort-form label > span {
  color: #68728c;
  font-size: 0.72rem;
}

.hotel-sort-form select {
  border-radius: 8px;
  background: #ffffff;
}

.hotel-result-list {
  display: grid;
  gap: 14px;
}

.hotel-list-card {
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr) 206px;
  overflow: hidden;
}

.hotel-list-card__ribbon {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 0 14px;
  background: linear-gradient(135deg, #366fe5, #5aaee5);
  color: #ffffff;
}

.hotel-list-card__ribbon.is-dark {
  background: linear-gradient(135deg, #232b3a, #303b51);
}

.hotel-list-card__ribbon.is-purple {
  background: linear-gradient(135deg, #4a1658, #7b2b83);
}

.hotel-list-card__ribbon span,
.hotel-list-card__ribbon small {
  font-size: 0.76rem;
  font-weight: 600;
}

.hotel-list-card__ribbon small {
  color: rgba(255, 255, 255, 0.78);
}

.hotel-list-card__image {
  position: relative;
  min-height: 216px;
  overflow: hidden;
}

.hotel-list-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-list-card__image button {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #64718a;
  font-size: 1.25rem;
  box-shadow: 0 12px 28px rgba(19, 23, 56, 0.16);
}

.hotel-list-card__image span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(7, 19, 69, 0.78);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 600;
}

.hotel-list-card__body {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 14px 14px 12px;
}

.hotel-list-card__body h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  line-height: 1.26;
}

.hotel-stars {
  color: #d77d22;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.hotel-location {
  color: var(--brand-primary-deep) !important;
  font-size: 0.82rem !important;
}

.hotel-location strong {
  font-weight: 600 !important;
}

.hotel-list-card__body p {
  margin: 0;
  color: #586580;
  font-size: 0.8rem !important;
  line-height: 1.38;
}

.hotel-demand {
  color: #d45b45 !important;
}

.hotel-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 5px;
}

.hotel-card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.12);
  color: var(--brand-primary-deep);
  font-size: 0.68rem;
  font-weight: 600;
}

.hotel-list-card__price {
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 14px;
  border-left: 1px solid rgba(173, 211, 237, 0.72);
  text-align: right;
}

.hotel-review-score {
  display: grid;
  gap: 2px;
}

.hotel-review-score strong {
  color: #2c65df;
  font-size: 0.88rem;
  font-weight: 600 !important;
}

.hotel-review-score span,
.hotel-review-score em,
.hotel-price-block span {
  color: #68728c;
  font-size: 0.74rem;
  font-style: normal;
}

.hotel-review-score em {
  color: #26304d;
  font-weight: 600;
}

.hotel-left-badge {
  justify-self: end;
  padding: 5px 8px;
  border-radius: 4px;
  background: #cf4237;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hotel-price-block {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.hotel-price-block del {
  color: #69748c;
  font-size: 0.9rem;
}

.hotel-price-block small {
  color: #cf4237;
  font-size: 0.78rem;
}

.hotel-price-block strong {
  color: #cf4237;
  font-size: 1.32rem;
  font-weight: 600 !important;
}

.hotel-price-block em {
  color: #22863a;
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
}

.hotel-list-card__price .button {
  min-height: 40px;
  justify-content: center;
  border-radius: 999px;
}

.hotel-empty-state {
  padding: 24px;
}

.hotel-empty-state h2 {
  margin: 0 0 8px;
}

@media (max-width: 1020px) {
  .hotel-results-layout {
    grid-template-columns: 248px minmax(0, 1fr);
  }

  .hotel-list-card {
    grid-template-columns: 230px minmax(0, 1fr) 178px;
  }
}

@media (max-width: 860px) {
  .hotel-results-layout {
    display: block;
  }

  .hotel-results-page .hotel-filter-sidebar.result-filter-drawer {
    position: fixed !important;
    inset: 0 auto 0 0;
    z-index: 1200;
    width: min(88vw, 360px);
    max-width: 360px;
    max-height: 100dvh;
    overflow-y: auto;
    border-radius: 0 24px 24px 0;
    background: #ffffff;
    box-shadow: 22px 0 54px rgba(13, 20, 63, 0.24);
    transform: translateX(-106%);
    transition: transform 0.24s ease;
  }

  .hotel-results-page .hotel-filter-sidebar.result-filter-drawer.is-open {
    transform: translateX(0);
  }

  .hotel-results-page .hotel-filter-panel {
    min-height: 100%;
    padding: 0 16px 18px;
    border: 0;
    border-radius: 0 24px 24px 0;
    box-shadow: none;
  }

  .hotel-results-topline {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid rgba(173, 211, 237, 0.72);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(19, 23, 56, 0.08);
  }

  .hotel-results-topline h1 {
    font-size: 1.05rem !important;
  }

  .hotel-sort-form {
    width: 100%;
    flex-basis: auto;
  }

  .hotel-list-card {
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
    border-radius: 18px;
    overflow: hidden;
  }

  .hotel-list-card__ribbon {
    min-height: 30px;
    padding: 0 10px;
  }

  .hotel-list-card__ribbon span,
  .hotel-list-card__ribbon small {
    font-size: 0.68rem;
  }

  .hotel-list-card__image {
    min-height: 170px;
  }

  .hotel-list-card__image button {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .hotel-list-card__body {
    gap: 4px;
    padding: 11px 11px 8px;
  }

  .hotel-list-card__body h2 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.96rem !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hotel-list-card__body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.74rem !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hotel-stars,
  .hotel-demand {
    display: none !important;
  }

  .hotel-card-tags {
    gap: 5px;
    margin-top: 4px;
  }

  .hotel-card-tags span {
    max-width: 100%;
    min-height: 21px;
    overflow: hidden;
    padding: 0 7px;
    font-size: 0.62rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hotel-list-card__price {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-left: 0;
    border-top: 1px solid rgba(173, 211, 237, 0.62);
    text-align: left;
  }

  .hotel-review-score {
    display: block;
  }

  .hotel-review-score span,
  .hotel-review-score em,
  .hotel-left-badge,
  .hotel-price-block del,
  .hotel-price-block small,
  .hotel-price-block span,
  .hotel-price-block em {
    display: none;
  }

  .hotel-price-block {
    justify-items: start;
  }

  .hotel-price-block strong {
    color: var(--brand-navy);
    font-size: 1.02rem;
  }

  .hotel-list-card__price .button {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 96px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.76rem;
  }
}

@media (max-width: 430px) {
  .hotel-list-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .hotel-list-card__image {
    min-height: 160px;
  }
}

/* Customer profile booking history */
.customer-profile-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.customer-profile-shortcuts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(85, 183, 234, 0.28);
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.1);
  color: var(--brand-navy);
  font-size: 0.72rem;
  font-weight: 500;
  text-align: center;
}

.customer-booking-history-card {
  overflow: hidden;
}

.customer-booking-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.customer-booking-overview div {
  display: grid;
  gap: 3px;
  min-height: 62px;
  border: 1px solid rgba(173, 211, 237, 0.64);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(244, 250, 255, 0.98), rgba(255, 255, 255, 0.96));
  padding: 11px 12px;
}

.customer-booking-overview span,
.customer-booking-meta dt,
.customer-booking-item__topline span {
  color: #61708c;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.customer-booking-overview strong {
  color: var(--brand-navy);
  font-size: 1rem;
  font-weight: 600;
}

.customer-booking-list {
  display: grid;
  gap: 12px;
}

.customer-booking-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(173, 211, 237, 0.68);
  border-radius: 18px;
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(23, 28, 73, 0.055);
}

.customer-booking-item__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(85, 183, 234, 0.2), rgba(47, 147, 203, 0.9));
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
}

.customer-booking-item__body {
  min-width: 0;
}

.customer-booking-item__topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 4px;
}

.customer-booking-item__topline em {
  color: var(--brand-primary-deep);
  font-size: 0.76rem;
  font-style: normal;
}

.customer-booking-item h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.25;
}

.customer-booking-item p {
  margin: 5px 0 0;
  color: #59677f;
  font-size: 0.84rem !important;
}

.customer-booking-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
}

.customer-booking-meta div {
  min-width: 0;
  border: 1px solid rgba(173, 211, 237, 0.54);
  border-radius: 13px;
  background: rgba(245, 251, 255, 0.72);
  padding: 8px 9px;
}

.customer-booking-meta dd {
  margin: 2px 0 0;
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.customer-booking-note {
  color: #708099 !important;
  font-size: 0.78rem !important;
}

.customer-booking-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid rgba(85, 183, 234, 0.32);
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.12);
  color: var(--brand-primary-deep);
  padding: 0 12px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.customer-booking-status--confirmed,
.customer-booking-status--paid {
  border-color: rgba(48, 177, 126, 0.28);
  background: rgba(48, 177, 126, 0.12);
  color: #1b7b55;
}

.customer-booking-status--processing,
.customer-booking-status--under-review {
  border-color: rgba(85, 183, 234, 0.36);
  background: rgba(85, 183, 234, 0.16);
  color: var(--brand-primary-deep);
}

.customer-booking-status--cancelled,
.customer-booking-status--failed {
  border-color: rgba(225, 96, 96, 0.28);
  background: rgba(225, 96, 96, 0.09);
  color: #9b3b42;
}

.customer-booking-empty {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px dashed rgba(85, 183, 234, 0.48);
  border-radius: 18px;
  background: rgba(245, 251, 255, 0.84);
  padding: 16px;
}

.customer-booking-empty > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-primary-deep));
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
}

.customer-booking-empty h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1rem !important;
  font-weight: 500 !important;
}

.customer-booking-empty p {
  margin: 5px 0 0;
  color: #63708c;
  font-size: 0.84rem !important;
}

.customer-booking-empty .button {
  min-height: 38px;
  padding: 0 16px;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .customer-booking-overview,
  .customer-booking-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-booking-item {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .customer-booking-status {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .customer-profile-shortcuts {
    grid-template-columns: 1fr;
  }

  .customer-booking-overview,
  .customer-booking-meta {
    grid-template-columns: 1fr;
  }

  .customer-booking-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 13px;
  }

  .customer-booking-item__mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .customer-booking-status {
    grid-column: 1;
  }

  .customer-booking-empty {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .customer-booking-empty .button {
    width: 100%;
  }
}

/* Hotel detail room-category experience */
.hotel-detail-page {
  background:
    radial-gradient(circle at 14% 4%, rgba(85, 183, 234, 0.13), transparent 24%),
    linear-gradient(180deg, #f6fbff 0%, #eef7fe 42%, #ffffff 100%);
  overflow-x: hidden;
  padding-bottom: 54px;
}

.hotel-detail-hero {
  border-bottom: 1px solid rgba(173, 211, 237, 0.58);
  background: #ffffff;
}

.hotel-detail-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: 22px;
  align-items: end;
  padding: 24px 0 20px;
}

.hotel-detail-hero__copy h1 {
  max-width: 860px;
  margin: 0 0 9px;
  color: var(--brand-navy);
  font-size: clamp(1.26rem, 1.8vw, 1.72rem) !important;
  font-weight: 500 !important;
  line-height: 1.24;
}

.hotel-detail-hero__copy > p {
  max-width: 860px;
  margin: 9px 0 0;
  color: #59677f;
  font-size: 0.88rem !important;
}

.hotel-detail-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.hotel-detail-rating span {
  color: #d8a142;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.hotel-detail-rating strong {
  color: var(--brand-primary-deep);
  font-size: 0.88rem;
  font-weight: 600;
}

.hotel-detail-rating em {
  color: #6c7891;
  font-size: 0.8rem;
  font-style: normal;
}

.hotel-hero-price {
  display: grid;
  gap: 5px;
  justify-items: end;
  text-align: right;
}

.hotel-hero-price span,
.hotel-hero-price em {
  color: #6d7891;
  font-size: 0.76rem;
  font-style: normal;
}

.hotel-hero-price strong {
  color: var(--brand-navy);
  font-size: 1.28rem;
  font-weight: 600;
}

.hotel-hero-price .button {
  min-height: 38px;
  margin-top: 5px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.hotel-detail-shell {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.hotel-gallery-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.8fr);
  gap: 10px;
  min-height: 260px;
}

.hotel-gallery-panel__main,
.hotel-gallery-panel__side,
.hotel-gallery-panel__placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(173, 211, 237, 0.7);
  border-radius: 18px;
  background: #ffffff;
}

.hotel-gallery-panel__main img,
.hotel-gallery-panel__side img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hotel-gallery-panel__main span {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-primary-deep);
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(23, 28, 73, 0.12);
}

.hotel-gallery-panel__side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border: 0;
  background: transparent;
}

.hotel-gallery-panel__side img,
.hotel-gallery-panel__placeholder {
  min-height: 80px;
  border-radius: 16px;
}

.hotel-gallery-panel__placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: var(--brand-navy);
  background:
    linear-gradient(135deg, rgba(85, 183, 234, 0.16), rgba(255, 255, 255, 0.95));
}

.hotel-gallery-panel__placeholder strong {
  font-weight: 600;
}

.hotel-gallery-panel__placeholder small {
  color: #64728d;
}

.hotel-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
  gap: 18px;
  align-items: start;
}

.hotel-detail-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.hotel-detail-tabs {
  position: sticky;
  top: 68px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(173, 211, 237, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px;
  box-shadow: 0 14px 34px rgba(23, 28, 73, 0.07);
}

.hotel-detail-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 13px;
  color: var(--brand-navy);
  font-size: 0.78rem;
  font-weight: 500;
}

.hotel-detail-tabs a:hover,
.hotel-detail-tabs a:focus-visible {
  background: rgba(85, 183, 234, 0.14);
  color: var(--brand-primary-deep);
  outline: none;
}

.hotel-info-card,
.hotel-room-section,
.hotel-stay-summary__card {
  border: 1px solid rgba(173, 211, 237, 0.74);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 46px rgba(23, 28, 73, 0.075);
}

.hotel-info-card,
.hotel-room-section {
  padding: 18px;
}

.hotel-info-card h2,
.hotel-room-section h2,
.hotel-stay-summary h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(1rem, 1.14vw, 1.18rem) !important;
  font-weight: 500 !important;
  line-height: 1.3;
}

.hotel-info-card p,
.hotel-room-section p {
  margin: 7px 0 0;
  color: #5c6982;
  font-size: 0.86rem !important;
  line-height: 1.62;
}

.hotel-highlight-grid,
.hotel-policy-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.hotel-highlight-grid div,
.hotel-policy-list div {
  display: grid;
  gap: 4px;
  min-height: 62px;
  border: 1px solid rgba(173, 211, 237, 0.58);
  border-radius: 15px;
  background: #f6fbff;
  padding: 11px;
}

.hotel-highlight-grid span,
.hotel-policy-list span {
  color: #6d7891;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hotel-highlight-grid strong,
.hotel-policy-list strong {
  color: var(--brand-navy);
  font-size: 0.84rem;
  font-weight: 500;
}

.hotel-room-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 15px;
}

.hotel-room-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.hotel-room-legend span,
.hotel-room-features span,
.hotel-rate-plan__perks span,
.hotel-amenity-grid li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(85, 183, 234, 0.24);
  border-radius: 999px;
  background: rgba(85, 183, 234, 0.1);
  color: var(--brand-primary-deep);
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 500;
}

.hotel-detail-page .hotel-room-list {
  display: grid;
  gap: 14px;
}

.hotel-room-option {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(173, 211, 237, 0.72);
  border-radius: 18px;
  background: #ffffff;
}

.hotel-room-option__media {
  position: relative;
  min-height: 100%;
  background: #eef7fe;
}

.hotel-room-option__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
}

.hotel-room-option__media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  background: rgba(23, 28, 73, 0.82);
  color: #ffffff;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 500;
}

.hotel-room-option__body {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 15px;
}

.hotel-room-option__intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hotel-room-option__intro h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1.02rem !important;
  font-weight: 500 !important;
}

.hotel-room-option__intro p {
  margin-top: 5px;
  font-size: 0.8rem !important;
}

.hotel-room-option__intro a {
  flex: 0 0 auto;
  color: var(--brand-primary-deep);
  font-size: 0.78rem;
  font-weight: 500;
}

.hotel-room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hotel-rate-table {
  display: grid;
  gap: 9px;
}

.hotel-rate-plan {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.72fr) minmax(150px, 0.55fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(173, 211, 237, 0.58);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fcff);
  padding: 12px;
}

.hotel-rate-plan__details strong {
  color: var(--brand-navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.hotel-rate-plan__details p {
  margin: 5px 0 8px;
  font-size: 0.78rem !important;
}

.hotel-rate-plan__details ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hotel-rate-plan__details li {
  color: #536078;
  font-size: 0.76rem;
}

.hotel-rate-plan__details li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--brand-primary);
  vertical-align: 1px;
}

.hotel-rate-plan__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hotel-rate-plan__price {
  display: grid;
  gap: 3px;
  justify-items: end;
  text-align: right;
}

.hotel-rate-plan__price del {
  color: #8a93a8;
  font-size: 0.75rem;
}

.hotel-rate-plan__price strong {
  color: var(--brand-navy);
  font-size: 1.18rem;
  font-weight: 600;
}

.hotel-rate-plan__price small,
.hotel-rate-plan__price em {
  color: #65718c;
  font-size: 0.72rem;
  font-style: normal;
}

.hotel-rate-plan__select {
  min-height: 36px;
  margin-top: 5px;
  padding: 0 16px;
  font-size: 0.76rem;
}

.hotel-amenity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.hotel-policy-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hotel-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.hotel-contact-actions {
  display: flex;
  justify-content: flex-end;
}

.hotel-detail-mini-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hotel-detail-mini-form label {
  display: grid;
  gap: 6px;
}

.hotel-detail-mini-form label span {
  color: #5f6984;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hotel-detail-mini-form input,
.hotel-detail-mini-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(205, 223, 239, 0.98);
  border-radius: 14px;
  background: #ffffff;
  color: var(--brand-navy);
  padding: 11px 13px;
  font: inherit;
  font-size: 0.86rem;
  outline: 0;
}

.hotel-detail-mini-form textarea {
  min-height: 104px;
  resize: vertical;
}

.hotel-detail-mini-form input:focus,
.hotel-detail-mini-form textarea:focus {
  border-color: rgba(85, 183, 234, 0.82);
  box-shadow: 0 0 0 4px rgba(85, 183, 234, 0.14);
}

.hotel-detail-mini-form__wide {
  grid-column: 1 / -1;
}

.hotel-stay-summary {
  position: sticky;
  top: 86px;
}

.hotel-stay-summary__card {
  display: grid;
  gap: 13px;
  padding: 18px;
}

.hotel-stay-summary dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.hotel-stay-summary dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(173, 211, 237, 0.52);
  padding-bottom: 8px;
}

.hotel-stay-summary dt {
  color: #65718c;
  font-size: 0.76rem;
  font-weight: 500;
}

.hotel-stay-summary dd {
  margin: 0;
  color: var(--brand-navy);
  font-size: 0.86rem;
  font-weight: 500;
  text-align: right;
}

.hotel-stay-summary .button {
  min-height: 42px;
  justify-content: center;
}

@media (max-width: 1050px) {
  .hotel-detail-layout,
  .hotel-detail-hero__inner {
    grid-template-columns: 1fr;
  }

  .hotel-hero-price {
    justify-items: start;
    text-align: left;
  }

  .hotel-stay-summary {
    position: static;
    order: -1;
  }

  .hotel-stay-summary__card dl {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hotel-stay-summary dl div {
    display: grid;
    border-bottom: 0;
    padding: 9px;
    border-radius: 13px;
    background: #f6fbff;
  }

  .hotel-stay-summary dd {
    text-align: left;
  }
}

@media (max-width: 860px) {
  .hotel-gallery-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hotel-gallery-panel__main {
    min-height: 210px;
  }

  .hotel-gallery-panel__side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hotel-room-option {
    grid-template-columns: 1fr;
  }

  .hotel-room-option__media img {
    min-height: 210px;
  }

  .hotel-rate-plan {
    grid-template-columns: 1fr;
  }

  .hotel-stay-summary {
    order: 2;
  }

  .hotel-rate-plan__price {
    justify-items: start;
    text-align: left;
  }

  .hotel-rate-plan__select {
    width: 100%;
    justify-content: center;
  }

  .hotel-highlight-grid,
  .hotel-stay-summary__card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-detail-mini-form,
  .hotel-contact-card {
    grid-template-columns: 1fr;
  }

  .hotel-contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hotel-detail-page {
    padding-bottom: 34px;
  }

  .hotel-detail-hero__inner {
    gap: 14px;
    padding: 16px 0 14px;
  }

  .hotel-detail-hero__copy h1 {
    font-size: 1.14rem !important;
  }

  .hotel-detail-shell {
    width: min(100% - 18px, 1280px);
    gap: 12px;
    padding-top: 12px;
  }

  .hotel-gallery-panel__main {
    min-height: 180px;
  }

  .hotel-gallery-panel__side {
    display: none;
  }

  .hotel-detail-tabs {
    top: 56px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding: 6px;
    border-radius: 15px;
    overflow-x: auto;
  }

  .hotel-detail-tabs a {
    min-width: 74px;
    min-height: 34px;
    font-size: 0.7rem;
  }

  .hotel-info-card,
  .hotel-room-section,
  .hotel-stay-summary__card {
    border-radius: 18px;
    padding: 14px;
  }

  .hotel-room-section__head,
  .hotel-room-option__intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .hotel-room-legend {
    justify-content: flex-start;
  }

  .hotel-highlight-grid,
  .hotel-policy-list,
  .hotel-stay-summary__card dl {
    grid-template-columns: 1fr;
  }

  .hotel-room-option__media img {
    min-height: 180px;
  }

  .hotel-room-option__body {
    padding: 13px;
  }

  .hotel-rate-plan__perks span,
  .hotel-room-features span,
  .hotel-room-legend span,
  .hotel-amenity-grid li {
    font-size: 0.68rem;
  }
}

/* Hotel booking checkout */
.hotel-booking-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(85, 183, 234, 0.16), transparent 28%),
    linear-gradient(180deg, #f3faff 0%, #ffffff 46%, #eef8ff 100%);
  overflow-x: hidden;
  padding-bottom: 56px;
}

.hotel-booking-topbar {
  border-bottom: 1px solid rgba(173, 211, 237, 0.7);
  background: rgba(255, 255, 255, 0.96);
}

.hotel-booking-topbar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
}

.hotel-booking-topbar a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(173, 211, 237, 0.84);
  border-radius: 999px;
  color: var(--brand-navy);
  padding: 0 14px;
  font-size: 0.78rem;
  font-weight: 600;
}

.hotel-booking-topbar__inner strong {
  display: block;
  color: var(--brand-navy);
  font-size: 0.94rem;
  font-weight: 600;
}

.hotel-booking-topbar__inner span {
  display: block;
  margin-top: 3px;
  color: #65718c;
  font-size: 0.78rem;
}

.hotel-booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 18px;
  align-items: start;
  padding-top: 20px;
}

.hotel-booking-main {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hotel-booking-card,
.hotel-booking-date-card,
.hotel-booking-summary-card {
  border: 1px solid rgba(173, 211, 237, 0.78);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(23, 28, 73, 0.07);
}

.hotel-booking-card {
  padding: 18px;
}

.hotel-booking-card__head {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.hotel-booking-card__head h1,
.hotel-booking-card__head h2,
.hotel-booking-summary-card h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  line-height: 1.28;
}

.hotel-booking-card__head span {
  color: #6b7690;
  font-size: 0.78rem;
}

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

.hotel-payment-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(173, 211, 237, 0.66);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fcff);
  padding: 13px;
  cursor: pointer;
}

.hotel-payment-option.is-featured {
  background: linear-gradient(135deg, rgba(85, 183, 234, 0.13), rgba(255, 255, 255, 0.98));
}

.hotel-payment-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-primary);
  margin-top: 2px;
}

.hotel-payment-option strong,
.hotel-payment-option em,
.hotel-payment-option small {
  display: block;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hotel-payment-option > span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hotel-payment-option strong {
  color: var(--brand-navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.hotel-payment-option em {
  margin-top: 4px;
  color: #168145;
  font-size: 0.78rem;
  font-style: normal;
}

.hotel-payment-option small {
  margin-top: 4px;
  color: #65718c;
  font-size: 0.74rem;
  line-height: 1.5;
}

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

.hotel-booking-form-grid label,
.hotel-booking-phone-row,
.hotel-booking-message {
  display: grid;
  gap: 7px;
}

.hotel-booking-form-grid label span,
.hotel-booking-phone-row > span,
.hotel-booking-message span,
.hotel-request-grid legend {
  color: #5f6984;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hotel-booking-form-grid input,
.hotel-booking-form-grid select,
.hotel-booking-message textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(205, 223, 239, 0.98);
  border-radius: 14px;
  background: #ffffff;
  color: var(--brand-navy);
  padding: 12px 14px;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
}

.hotel-booking-form-grid input:focus,
.hotel-booking-form-grid select:focus,
.hotel-booking-message textarea:focus {
  border-color: rgba(85, 183, 234, 0.86);
  box-shadow: 0 0 0 4px rgba(85, 183, 234, 0.14);
}

.hotel-booking-phone-row {
  grid-column: 1 / -1;
}

.hotel-booking-phone-row > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: 10px;
}

.hotel-booking-phone-code.customer-phone-code {
  min-width: 0;
}

.hotel-booking-note {
  margin: 12px 0 0;
  color: #64718a;
  font-size: 0.78rem !important;
  line-height: 1.55;
}

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

.hotel-request-grid fieldset {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(173, 211, 237, 0.58);
  border-radius: 16px;
  background: #f7fcff;
  margin: 0;
  padding: 13px;
}

.hotel-request-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-navy);
  font-size: 0.84rem;
}

.hotel-request-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-primary);
}

.hotel-booking-message {
  margin-top: 12px;
}

.hotel-booking-message textarea {
  min-height: 112px;
  resize: vertical;
}

.hotel-booking-summary {
  position: sticky;
  top: 80px;
  display: grid;
  gap: 12px;
}

.hotel-booking-date-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
}

.hotel-booking-date-card span,
.hotel-booking-date-card small {
  display: block;
  color: #69758f;
  font-size: 0.72rem;
}

.hotel-booking-date-card strong {
  display: block;
  margin: 4px 0;
  color: var(--brand-navy);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.32;
}

.hotel-booking-date-card i {
  width: 18px;
  height: 1px;
  background: #97a7bd;
}

.hotel-booking-date-card b {
  display: grid;
  place-items: center;
  min-width: 48px;
  min-height: 42px;
  border-radius: 14px;
  background: rgba(85, 183, 234, 0.12);
  color: var(--brand-navy);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.hotel-booking-summary-card {
  display: grid;
  gap: 13px;
  padding: 16px;
}

.hotel-booking-summary-card__head p {
  margin: 5px 0;
  color: #64718a;
  font-size: 0.78rem !important;
}

.hotel-booking-summary-card__head strong {
  display: block;
  color: var(--brand-primary-deep);
  font-size: 0.84rem;
  font-weight: 600;
}

.hotel-booking-summary-card__head strong span {
  color: #6f7a91;
  font-weight: 400;
}

.hotel-booking-room-preview {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  background: #f1f7ff;
  padding: 10px;
}

.hotel-booking-room-preview img {
  width: 92px;
  height: 82px;
  border-radius: 12px;
  object-fit: cover;
}

.hotel-booking-room-preview strong,
.hotel-booking-room-preview span {
  display: block;
}

.hotel-booking-room-preview strong {
  color: var(--brand-navy);
  font-size: 0.88rem;
  font-weight: 600;
}

.hotel-booking-room-preview span {
  margin-top: 4px;
  color: #5f6d86;
  font-size: 0.74rem;
}

.hotel-booking-benefits {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hotel-booking-benefits li {
  color: #17733f;
  font-size: 0.78rem !important;
}

.hotel-booking-benefits li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
}

.hotel-booking-price-list {
  display: grid;
  gap: 9px;
  margin: 0;
  border-top: 1px solid rgba(173, 211, 237, 0.7);
  padding-top: 12px;
}

.hotel-booking-price-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.hotel-booking-price-list dt,
.hotel-booking-price-list dd {
  margin: 0;
  color: #5f6d86;
  font-size: 0.8rem;
}

.hotel-booking-price-list dd {
  color: var(--brand-navy);
  font-weight: 600;
  text-align: right;
}

.hotel-booking-price-list div:last-child {
  border-top: 1px solid rgba(173, 211, 237, 0.7);
  padding-top: 10px;
}

.hotel-booking-price-list div:last-child dt,
.hotel-booking-price-list div:last-child dd {
  color: var(--brand-navy);
  font-size: 0.96rem;
  font-weight: 700;
}

.hotel-booking-submit {
  width: 100%;
  justify-content: center;
  min-height: 46px;
}

.hotel-booking-assurance {
  color: #66728c;
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.hotel-booking-bottom-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 18;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(173, 211, 237, 0.72);
  background: rgba(255, 255, 255, 0.96);
  padding: 10px 14px;
  box-shadow: 0 -16px 36px rgba(23, 28, 73, 0.12);
}

.hotel-booking-bottom-bar span {
  min-width: 0;
  overflow: hidden;
  color: #5f6d86;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotel-booking-bottom-bar strong {
  color: var(--brand-navy);
  font-weight: 600;
}

.hotel-booking-bottom-bar .button {
  min-height: 42px;
  padding: 0 18px;
}

@media (max-width: 1050px) {
  .hotel-booking-shell {
    grid-template-columns: 1fr;
  }

  .hotel-booking-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 720px) {
  .hotel-booking-page {
    padding-bottom: 78px;
  }

  .hotel-booking-shell.container {
    width: min(370px, calc(100% - 20px)) !important;
    margin-left: 10px !important;
    margin-right: 0 !important;
    padding-inline: 0;
  }

  .hotel-booking-topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hotel-booking-shell {
    gap: 12px;
    padding-top: 12px;
  }

  .hotel-booking-card,
  .hotel-booking-date-card,
  .hotel-booking-summary-card {
    width: min(370px, calc(100vw - 20px)) !important;
    border-radius: 18px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .hotel-payment-option {
    width: min(342px, calc(100vw - 48px)) !important;
    max-width: 100%;
  }

  .hotel-payment-option > span {
    width: min(274px, calc(100vw - 116px)) !important;
  }

  .hotel-booking-card *,
  .hotel-booking-date-card *,
  .hotel-booking-summary-card * {
    min-width: 0;
    max-width: 100%;
  }

  .hotel-booking-card {
    padding: 14px;
  }

  .hotel-booking-summary {
    order: 2;
  }

  .hotel-booking-form-grid,
  .hotel-request-grid,
  .hotel-booking-phone-row > div {
    grid-template-columns: 1fr;
  }

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

  .hotel-booking-date-card i {
    width: 1px;
    height: 18px;
    margin-left: 8px;
  }

  .hotel-booking-date-card b {
    justify-self: start;
    min-height: 34px;
    padding: 0 12px;
  }

  .hotel-booking-card__head h1,
  .hotel-booking-card__head h2,
  .hotel-booking-summary-card h2 {
    font-size: 1rem !important;
  }

  .hotel-booking-room-preview {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .hotel-booking-room-preview img {
    width: 78px;
    height: 74px;
  }

  .hotel-booking-bottom-bar {
    display: grid;
    left: 0 !important;
    right: auto !important;
    grid-template-columns: minmax(0, 1fr) 104px;
    width: min(390px, 100vw) !important;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .hotel-booking-bottom-bar .button {
    width: 104px !important;
    min-width: 104px;
    padding: 0 12px;
  }
}
