*,
*::before,
*::after {
  box-sizing: border-box;
}

html.ota-mobile-app-html,
html.ota-mobile-app-html body.ota-mobile-app {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
}

body.ota-mobile-app {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #0f172a;
  background: #eef2f7;
  -webkit-font-smoothing: antialiased;
  --ota-z-mobile-header: 40;
  --ota-z-mobile-sheet-backdrop: 90;
  --ota-z-mobile-sheet: 100;
}

body.ota-mobile-app a {
  color: inherit;
  text-decoration: none;
}

body.ota-mobile-app a:hover,
body.ota-mobile-app a:focus {
  text-decoration: none;
}

body.ota-mobile-app .ota-mobile-app__frame {
  min-height: 100dvh;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
}

body.ota-mobile-app .ota-mobile-app__top-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: calc(env(safe-area-inset-top, 0px) + 0.5rem) 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #dbe3ee;
}

body.ota-mobile-app:has([data-testid="ota-mobile-home"]) .ota-mobile-app__top-bar {
  display: none;
}

body.ota-mobile-app .ota-mobile-app__top-bar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

body.ota-mobile-app .ota-mobile-app__top-bar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

body.ota-mobile-app .ota-mobile-app__top-bar-logo {
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: contain;
}

body.ota-mobile-app .ota-mobile-app__top-bar-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 12%, white);
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-app__top-bar-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.ota-mobile-app .ota-mobile-app__main {
  flex: 1 1 auto;
  padding: 1rem 1rem calc(7rem + env(safe-area-inset-bottom, 0px));
}

body.ota-mobile-app:has([data-testid="ota-mobile-home"]) .ota-mobile-app__main {
  padding: 0 0 calc(6.5rem + env(safe-area-inset-bottom, 0px));
  background: #f4f7fb;
}

body.ota-mobile-app .ota-mobile-app__bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 480px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.25rem;
  padding: 0.375rem 0.5rem calc(0.375rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #dbe3ee;
  z-index: 50;
}

body.ota-mobile-app .ota-mobile-app__bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  min-height: 3.25rem;
  padding: 0.25rem;
  border-radius: 12px;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 600;
  text-decoration: none;
  min-width: 0;
}

body.ota-mobile-app .ota-mobile-app__bottom-nav-item.is-active {
  color: var(--ota-mobile-primary, #2563eb);
  background: color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 8%, white);
}

body.ota-mobile-app .ota-mobile-app__bottom-nav-icon {
  display: inline-flex;
}

body.ota-mobile-app .ota-mobile-app__bottom-nav-label {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.ota-mobile-app .ota-mobile-app__desktop-link {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 0.5rem);
  right: max(0.625rem, calc(50% - 228px));
  z-index: 45;
  pointer-events: none;
}

body.ota-mobile-app .ota-mobile-app__desktop-link form {
  margin: 0;
  pointer-events: auto;
}

body.ota-mobile-app .ota-mobile-app__desktop-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  min-height: 1.75rem;
  padding: 0.25rem 0.5625rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #64748b;
  font: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

body.ota-mobile-app .ota-mobile-app__desktop-link-btn svg {
  flex: 0 0 auto;
  opacity: 0.85;
}

/* —— Mobile home (M2) —— */

body.ota-mobile-app .ota-mobile-home {
  min-width: 0;
  overflow-x: clip;
}

body.ota-mobile-app .ota-mobile-home__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;
}

body.ota-mobile-app .ota-mobile-home__header {
  position: relative;
  padding: calc(env(safe-area-inset-top, 0px) + 1rem) 1.125rem 4.5rem;
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 88%, #60a5fa) 0%, color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 72%, #93c5fd) 55%, #dbeafe 100%);
  color: #fff;
  overflow: hidden;
}

body.ota-mobile-app .ota-mobile-home__header::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: 0.5rem;
  width: 9rem;
  height: 5rem;
  opacity: 0.22;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 60'%3E%3Cpath fill='%23fff' d='M8 42 L48 28 L92 34 L112 24 L104 20 L88 26 L46 20 L8 34 Z'/%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}

body.ota-mobile-app .ota-mobile-home__header-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

body.ota-mobile-app .ota-mobile-home__greeting-eyebrow {
  margin: 0 0 0.125rem;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.92;
}

body.ota-mobile-app .ota-mobile-home__greeting-name {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 800;
}

body.ota-mobile-app .ota-mobile-home__notify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

body.ota-mobile-app .ota-mobile-home__search-card {
  position: relative;
  z-index: 2;
  margin: -3.25rem 1rem 1rem;
  padding: 0.875rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e8eef5;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

body.ota-mobile-app .ota-mobile-home__search-form {
  display: grid;
  gap: 0.75rem;
}

body.ota-mobile-app .ota-mobile-home__trip-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 12px;
  background: #f1f5f9;
}

body.ota-mobile-app .ota-mobile-home__trip-btn {
  min-height: 2.75rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #64748b;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-home__trip-btn.is-active {
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 35%, transparent);
}

body.ota-mobile-app .ota-mobile-home__route-block {
  position: relative;
  display: grid;
  gap: 0;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  overflow: hidden;
}

body.ota-mobile-app .ota-mobile-home__route-row + .ota-mobile-home__route-row {
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-home__field {
  display: block;
  padding: 0.75rem 3rem 0.75rem 0.875rem;
  min-height: 44px;
  cursor: text;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
}

body.ota-mobile-app .ota-mobile-home__field--trigger {
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-home__field-label {
  display: block;
  margin-bottom: 0.125rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #94a3b8;
}

body.ota-mobile-app .ota-mobile-home__field-value {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  outline: none;
}

body.ota-mobile-app .ota-mobile-home__swap-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 40%, transparent);
}

body.ota-mobile-app .ota-mobile-home__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

body.ota-mobile-app .ota-mobile-home__date-field {
  display: block;
  padding: 0.625rem 0.75rem;
  min-height: 44px;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  background: #f8fafc;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
}

body.ota-mobile-app .ota-mobile-home__date-field--trigger {
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-home__date-display {
  display: block;
  width: 100%;
  margin-top: 0.125rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  min-height: 1.5rem;
}

body.ota-mobile-app .ota-mobile-home__date-field.is-hidden {
  display: none;
}

body.ota-mobile-app .ota-mobile-home__travellers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

body.ota-mobile-app .ota-mobile-home__travellers-summary {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-home__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 14px;
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 38%, transparent);
}

body.ota-mobile-app .ota-mobile-home__section {
  padding: 0 1rem 1rem;
  min-width: 0;
}

body.ota-mobile-app .ota-mobile-home__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

body.ota-mobile-app .ota-mobile-home__section-title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-home__section-head .ota-mobile-home__section-title {
  margin-bottom: 0;
}

body.ota-mobile-app .ota-mobile-home__section-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-home__section-link--muted {
  color: #94a3b8;
  pointer-events: none;
}

body.ota-mobile-app .ota-mobile-home__recent-scroll {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

body.ota-mobile-app .ota-mobile-home__recent-scroll::-webkit-scrollbar {
  display: none;
}

body.ota-mobile-app .ota-mobile-home__recent-card {
  flex: 0 0 auto;
  min-width: 8.5rem;
  max-width: 70%;
  padding: 0.75rem 0.875rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8eef5;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

body.ota-mobile-app .ota-mobile-home__recent-route {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-home__recent-dates {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-home__quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.625rem;
}

body.ota-mobile-app .ota-mobile-home__quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-height: 5.5rem;
  padding: 0.875rem 0.5rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef5;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-home__quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
}

body.ota-mobile-app .ota-mobile-home__quick-icon--bookings {
  background: color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 12%, white);
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-home__quick-icon--support {
  background: #f3e8ff;
  color: #7c3aed;
}

body.ota-mobile-app .ota-mobile-home__quick-icon--agent {
  background: #e0f2fe;
  color: #0284c7;
}

body.ota-mobile-app .ota-mobile-home__quick-label {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  color: #334155;
}

/* —— Mobile sheets: airport search & calendar (M4A) —— */

body.ota-mobile-app .ota-mobile-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--ota-z-mobile-sheet-backdrop);
  max-width: 480px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.ota-mobile-app .ota-mobile-sheet-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

body.ota-mobile-app .ota-mobile-airport-sheet,
body.ota-mobile-app .ota-mobile-calendar-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  z-index: var(--ota-z-mobile-sheet);
  display: flex;
  flex-direction: column;
  width: calc(100vw - 24px);
  max-width: 480px;
  max-height: calc(100vh - 120px);
  max-height: calc(100dvh - 120px);
  margin: 0 auto;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.16);
  transform: translateY(100%);
  transition: transform 0.28s ease;
  pointer-events: none;
}

body.ota-mobile-app .ota-mobile-airport-sheet.is-open,
body.ota-mobile-app .ota-mobile-calendar-sheet.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

body.ota-mobile-app .ota-mobile-airport-sheet__head,
body.ota-mobile-app .ota-mobile-calendar-sheet__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: calc(env(safe-area-inset-top, 0px) + 0.75rem) 1rem 0.75rem;
  border-bottom: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-airport-sheet__close,
body.ota-mobile-app .ota-mobile-calendar-sheet__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-airport-sheet__title,
body.ota-mobile-app .ota-mobile-calendar-sheet__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

body.ota-mobile-app .ota-mobile-airport-sheet__search-wrap {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-airport-sheet__search {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  color: #0f172a;
  background: #f8fafc;
}

body.ota-mobile-app .ota-mobile-airport-sheet__hint,
body.ota-mobile-app .ota-mobile-airport-sheet__error {
  margin: 0;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-airport-sheet__error {
  color: #b45309;
  background: #fffbeb;
}

body.ota-mobile-app .ota-mobile-airport-sheet__error[hidden],
body.ota-mobile-app .ota-mobile-airport-sheet__hint[hidden],
body.ota-mobile-app .ota-mobile-airport-sheet__fallback[hidden] {
  display: none;
}

body.ota-mobile-app .ota-mobile-airport-sheet__list {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-overflow-scrolling: touch;
}

body.ota-mobile-app .ota-mobile-airport-sheet__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-bottom: 1px solid #eef2f7;
  background: #fff;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-airport-sheet__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2rem;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 10%, white);
  color: var(--ota-mobile-primary, #2563eb);
  font-size: 0.8125rem;
  font-weight: 800;
}

body.ota-mobile-app .ota-mobile-airport-sheet__main {
  min-width: 0;
}

body.ota-mobile-app .ota-mobile-airport-sheet__city {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-airport-sheet__name {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-airport-sheet__country {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  text-align: right;
}

body.ota-mobile-app .ota-mobile-airport-sheet__empty {
  padding: 1.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-airport-sheet__fallback {
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-airport-sheet__use-code {
  width: 100%;
  min-height: 2.75rem;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #fff;
  color: #334155;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-calendar-sheet__subtitle {
  margin: 0;
  padding: 0.5rem 1rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-calendar-sheet__months {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  -webkit-overflow-scrolling: touch;
}

body.ota-mobile-app .ota-mobile-calendar-month + .ota-mobile-calendar-month {
  margin-top: 1.25rem;
}

body.ota-mobile-app .ota-mobile-calendar-month__title {
  margin: 0 0 0.625rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-calendar-month__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

body.ota-mobile-app .ota-mobile-calendar-month__dow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
}

body.ota-mobile-app .ota-mobile-calendar-month__pad {
  min-height: 2.5rem;
}

body.ota-mobile-app .ota-mobile-calendar-month__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  min-width: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #0f172a;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-calendar-month__day.is-disabled,
body.ota-mobile-app .ota-mobile-calendar-month__day:disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

body.ota-mobile-app .ota-mobile-calendar-month__day.is-selected,
body.ota-mobile-app .ota-mobile-calendar-month__day.is-range-start,
body.ota-mobile-app .ota-mobile-calendar-month__day.is-range-end {
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
}

body.ota-mobile-app .ota-mobile-calendar-month__day.is-range {
  background: color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 18%, white);
  color: var(--ota-mobile-primary, #2563eb);
  border-radius: 0;
}

body.ota-mobile-app .ota-mobile-calendar-month__day.is-range-start {
  border-radius: 10px 0 0 10px;
}

body.ota-mobile-app .ota-mobile-calendar-month__day.is-range-end {
  border-radius: 0 10px 10px 0;
}

/* —— Mobile sheet: travellers & cabin (Sprint 1A) —— */

body.ota-mobile-app .ota-mobile-travellers-sheet {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 85;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  max-height: min(88dvh, 640px);
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.28s ease;
  pointer-events: none;
}

body.ota-mobile-app .ota-mobile-travellers-sheet.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__body {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.5rem 1rem 0.75rem;
  -webkit-overflow-scrolling: touch;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__row-label {
  min-width: 0;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__row-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__row-hint {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__step-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__step-btn.is-disabled,
body.ota-mobile-app .ota-mobile-travellers-sheet__step-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__step-value {
  min-width: 1.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__cabin {
  padding: 0.875rem 0 0.25rem;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__cabin-label {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__cabin-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__cabin-btn {
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #fff;
  color: #334155;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__cabin-btn.is-active {
  border-color: var(--ota-mobile-primary, #2563eb);
  background: color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 10%, white);
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-travellers-sheet__foot {
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-travellers-sheet__done {
  width: 100%;
  min-height: 3rem;
  border: 0;
  border-radius: 14px;
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

body.ota-mobile-app.ota-mobile-sheet-open .ota-mobile-app__bottom-nav,
body.ota-mobile-app.ota-mobile-filter-open .ota-mobile-app__bottom-nav,
body.ota-mobile-app.ota-mobile-sort-open .ota-mobile-app__bottom-nav,
body.ota-mobile-app.ota-mobile-filter-open .ota-mobile-app__desktop-link,
body.ota-mobile-app.ota-mobile-sort-open .ota-mobile-app__desktop-link,
body.ota-mobile-app.ota-mobile-filter-open .ota-mobile-results__action-bar,
body.ota-mobile-app.ota-mobile-sort-open .ota-mobile-results__action-bar {
  pointer-events: none;
}

@media (min-width: 481px) {
  body.ota-mobile-app .ota-mobile-app__frame {
    min-height: calc(100dvh - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 24px;
    overflow: hidden;
  }
}

@media (max-width: 360px) {
  body.ota-mobile-app .ota-mobile-home__greeting-name {
    font-size: 1.35rem;
  }

  body.ota-mobile-app .ota-mobile-home__quick-label {
    font-size: 0.72rem;
  }
}

/* —— Mobile flight results (M3) —— */

body.ota-mobile-app:has([data-testid="ota-mobile-results"]) .ota-mobile-app__top-bar {
  display: none;
}

body.ota-mobile-app:has([data-testid="ota-mobile-results"]) .ota-mobile-app__main {
  padding: 0 0 calc(10.5rem + env(safe-area-inset-bottom, 0px));
  background: #f4f7fb;
}

body.ota-mobile-app:has([data-testid="ota-mobile-home"]) .ota-mobile-app__desktop-link {
  top: calc(env(safe-area-inset-top, 0px) + 0.625rem);
  right: max(4rem, calc(50% - 228px + 2.75rem));
}

body.ota-mobile-app:has([data-testid="ota-mobile-results"]) .ota-mobile-app__desktop-link,
body.ota-mobile-app:has([data-testid="ota-mobile-passengers"]) .ota-mobile-app__desktop-link,
body.ota-mobile-app:has([data-testid="ota-mobile-review"]) .ota-mobile-app__desktop-link,
body.ota-mobile-app:has([data-testid="ota-mobile-confirmation"]) .ota-mobile-app__desktop-link,
body.ota-mobile-app:has([data-testid="ota-mobile-flight-details"]) .ota-mobile-app__desktop-link {
  top: calc(env(safe-area-inset-top, 0px) + 0.625rem);
  right: max(0.625rem, calc(50% - 228px));
  left: auto;
  bottom: auto;
}

body.ota-mobile-app .ota-mobile-results {
  min-width: 0;
  overflow-x: clip;
}

body.ota-mobile-app .ota-mobile-results__header {
  position: sticky;
  top: 0;
  z-index: 35;
  padding: calc(env(safe-area-inset-top, 0px) + 0.625rem) 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e8eef5;
}

body.ota-mobile-app .ota-mobile-results__header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.625rem;
}

body.ota-mobile-app .ota-mobile-results__back,
body.ota-mobile-app .ota-mobile-results__header-spacer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  flex: 0 0 auto;
}

body.ota-mobile-app .ota-mobile-results__back {
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-results__summary {
  min-width: 0;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-results__route {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-results__dates,
body.ota-mobile-app .ota-mobile-results__meta {
  margin: 0.125rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-results__chips-wrap {
  padding: 0.75rem 0 0.25rem;
  background: #fff;
  border-bottom: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-results__chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem 0.75rem;
  scrollbar-width: none;
}

body.ota-mobile-app .ota-mobile-results__chips::-webkit-scrollbar {
  display: none;
}

body.ota-mobile-app .ota-mobile-results__chip {
  flex: 0 0 auto;
  min-height: 2.25rem;
  padding: 0.375rem 0.875rem;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

body.ota-mobile-app .ota-mobile-results__chip.is-active {
  border-color: var(--ota-mobile-primary, #2563eb);
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
}

body.ota-mobile-app .ota-mobile-results__notice {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0;
  padding: 0.625rem 1rem;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 600;
}

body.ota-mobile-app .ota-mobile-results__warnings {
  margin: 0.75rem 1rem 0;
  padding: 0.75rem;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.8125rem;
}

body.ota-mobile-app .ota-mobile-results__warnings p {
  margin: 0;
}

body.ota-mobile-app .ota-mobile-results__warnings p + p {
  margin-top: 0.375rem;
}

body.ota-mobile-app .ota-mobile-results__freshness {
  margin: 0.75rem 1rem 0;
  padding: 0.75rem;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
}

body.ota-mobile-app .ota-mobile-results__freshness--due {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

body.ota-mobile-app .ota-mobile-results__freshness--stale,
body.ota-mobile-app .ota-mobile-results__freshness--checkout {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

body.ota-mobile-app .ota-mobile-results__freshness-text {
  margin: 0 0 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.45;
}

body.ota-mobile-app .ota-mobile-results__freshness-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.375rem 0.875rem;
  border: 0;
  border-radius: 999px;
  background: #1d4ed8;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
}

body.ota-mobile-app .ota-mobile-results__freshness--stale .ota-mobile-results__freshness-btn,
body.ota-mobile-app .ota-mobile-results__freshness--checkout .ota-mobile-results__freshness-btn {
  background: #b91c1c;
}

body.ota-mobile-app .ota-mobile-results__count {
  margin: 0.75rem 1rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-results__inline-error {
  margin: 0.5rem 1rem 0;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.78rem;
  font-weight: 600;
}

body.ota-mobile-app .ota-mobile-results__inline-error.is-toast-visible {
  position: fixed;
  left: 50%;
  bottom: calc(8.5rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 125;
  width: min(calc(100% - 2rem), 448px);
  margin: 0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

body.ota-mobile-app .ota-mobile-results__inline-error[hidden] {
  display: none;
}

body.ota-mobile-app .ota-mobile-results__list {
  display: grid;
  gap: 0.75rem;
  padding: 0 1rem;
}

body.ota-mobile-app .ota-mobile-result-card {
  padding: 0.875rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef5;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

body.ota-mobile-app .ota-mobile-result-card__head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

body.ota-mobile-app .ota-mobile-result-card__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  overflow: hidden;
  flex-shrink: 0;
}

body.ota-mobile-app .ota-mobile-result-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.ota-mobile-app .ota-mobile-result-card__airline {
  font-size: 0.875rem;
  font-weight: 800;
  color: #0f172a;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-result-card__route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

body.ota-mobile-app .ota-mobile-result-card__point {
  min-width: 0;
}

body.ota-mobile-app .ota-mobile-result-card__point--arr {
  text-align: right;
}

body.ota-mobile-app .ota-mobile-result-card__time {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

body.ota-mobile-app .ota-mobile-result-card__code {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-result-card__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 4.5rem;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-result-card__duration {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-result-card__stops {
  font-size: 0.72rem;
  font-weight: 700;
  color: #16a34a;
}

body.ota-mobile-app .ota-mobile-result-card__stops--connecting {
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-result-card__mid-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd5e1 20%, #cbd5e1 80%, transparent);
  position: relative;
}

body.ota-mobile-app .ota-mobile-result-card__mid-line::after {
  content: "✈";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.65rem;
  color: var(--ota-mobile-primary, #2563eb);
  background: #fff;
  padding: 0 0.25rem;
}

body.ota-mobile-app .ota-mobile-result-card__baggage {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-result-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.625rem;
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-result-card__source {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.375rem;
}

body.ota-mobile-app .flight-card-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 11px;
  line-height: 1;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: #64748b;
  border: 1px solid rgba(148, 163, 184, 0.25);
  white-space: nowrap;
}

body.ota-mobile-app .ota-mobile-result-card__price {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-result-card__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  min-width: 0;
}

body.ota-mobile-app .ota-mobile-result-card__details {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ota-mobile-primary, #2563eb);
  text-decoration: none;
}

body.ota-mobile-app .ota-mobile-result-card__details:hover,
body.ota-mobile-app .ota-mobile-result-card__details:focus-visible {
  text-decoration: underline;
}

body.ota-mobile-app .ota-mobile-result-card__price-note {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #94a3b8;
}

body.ota-mobile-app .ota-mobile-result-card__select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 12px;
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-result-card__select:disabled,
body.ota-mobile-app .ota-mobile-result-card__select.is-disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  pointer-events: none;
}

/* Round-trip result cards (M4H) */
body.ota-mobile-app .ota-mobile-result-card--roundtrip .ota-mobile-result-card__head-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

body.ota-mobile-app .ota-mobile-result-card__chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 100%;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-result-card--roundtrip .ota-mobile-result-card__legs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

body.ota-mobile-app .ota-mobile-result-leg {
  padding: 0.625rem 0.75rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-result-leg__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-result-leg__route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.5rem;
  align-items: center;
}

body.ota-mobile-app .ota-mobile-result-leg__point {
  min-width: 0;
}

body.ota-mobile-app .ota-mobile-result-leg__point--arr {
  text-align: right;
}

body.ota-mobile-app .ota-mobile-result-leg__code {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

body.ota-mobile-app .ota-mobile-result-leg__time {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

body.ota-mobile-app .ota-mobile-result-leg__offset {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  vertical-align: top;
}

body.ota-mobile-app .ota-mobile-result-leg-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-width: 4.75rem;
  max-width: 5.5rem;
  padding: 0 0.25rem;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-result-leg-meta__duration {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #475569;
  line-height: 1.25;
}

body.ota-mobile-app .ota-mobile-result-leg-meta__stops {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
  line-height: 1.25;
}

body.ota-mobile-app .ota-mobile-result-leg-meta__stops--connecting {
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-result-card--roundtrip .ota-mobile-result-card__baggage {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.375rem;
  margin-bottom: 0.625rem;
}

body.ota-mobile-app .ota-mobile-result-card__baggage-item {
  display: inline;
}

body.ota-mobile-app .ota-mobile-result-card--roundtrip .ota-mobile-result-card__baggage-item + .ota-mobile-result-card__baggage-item::before {
  content: " · ";
}

body.ota-mobile-app .ota-mobile-result-card--skeleton.ota-mobile-result-card--roundtrip .ota-mobile-result-card__legs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

body.ota-mobile-app .ota-mobile-result-card--skeleton.ota-mobile-result-card--roundtrip .ota-mobile-result-leg {
  padding: 0.625rem 0.75rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-card__shimmer {
  display: block;
  border-radius: 6px;
  background: linear-gradient(90deg, #eef2f7 25%, #f8fafc 50%, #eef2f7 75%);
  background-size: 200% 100%;
  animation: ota-mobile-shimmer 1.2s ease-in-out infinite;
}

body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-card__logo {
  width: 2.25rem;
  height: 2.25rem;
}

body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-card__airline {
  width: 6rem;
  height: 0.875rem;
}

body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-card__time {
  width: 3rem;
  height: 1rem;
}

body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-card__code {
  width: 2rem;
  height: 0.75rem;
}

body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-card__duration,
body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-card__stops {
  width: 3.5rem;
  height: 0.75rem;
  margin-inline: auto;
}

body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-leg__code {
  width: 2rem;
  height: 0.75rem;
}

body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-leg__time {
  width: 2.75rem;
  height: 0.875rem;
  margin-top: 0.125rem;
}

body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-leg-meta__duration,
body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-leg-meta__stops {
  width: 3.25rem;
  height: 0.75rem;
  margin-inline: auto;
}

body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-card__price {
  width: 5rem;
  height: 1rem;
}

body.ota-mobile-app .ota-mobile-result-card--skeleton .ota-mobile-result-card__select {
  width: 5.5rem;
  height: 2.75rem;
}

@keyframes ota-mobile-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

body.ota-mobile-app .ota-mobile-results__load-more-wrap {
  padding: 0.75rem 1rem 0;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-results__load-more {
  min-height: 2.75rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #fff;
  color: #334155;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-results__load-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

body.ota-mobile-app .ota-mobile-results__empty {
  margin: 0.75rem 1rem 0;
  padding: 0.875rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e8eef5;
  color: #64748b;
  font-size: 0.875rem;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-results__empty[hidden] {
  display: none;
}

body.ota-mobile-app .ota-mobile-results__action-bar {
  position: fixed;
  left: 50%;
  bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 52;
  width: min(calc(100% - 2rem), 448px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

body.ota-mobile-app .ota-mobile-results__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 3rem;
  border: 0;
  background: transparent;
  color: #334155;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-results__action-divider {
  width: 1px;
  height: 1.75rem;
  background: #e2e8f0;
}

body.ota-mobile-app .ota-mobile-filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.ota-mobile-app .ota-mobile-filter-backdrop:not(.is-open) {
  pointer-events: none;
}

body.ota-mobile-app .ota-mobile-filter-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

body.ota-mobile-app .ota-mobile-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.28s ease;
  pointer-events: none;
}

body.ota-mobile-app .ota-mobile-filter-drawer.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

body.ota-mobile-app .ota-mobile-filter-drawer__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: calc(env(safe-area-inset-top, 0px) + 0.75rem) 1rem 0.75rem;
  border-bottom: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-filter-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-filter-drawer__title {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
}

body.ota-mobile-app .ota-mobile-filter-drawer__reset {
  border: 0;
  background: transparent;
  color: var(--ota-mobile-primary, #2563eb);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
}

body.ota-mobile-app .ota-mobile-filter-drawer__body {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.75rem 1rem 1rem;
}

body.ota-mobile-app .ota-mobile-filter-section + .ota-mobile-filter-section {
  margin-top: 1.25rem;
}

body.ota-mobile-app .ota-mobile-filter-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

body.ota-mobile-app .ota-mobile-filter-section__title {
  margin: 0 0 0.625rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-filter-section__head .ota-mobile-filter-section__title {
  margin-bottom: 0;
}

body.ota-mobile-app .ota-mobile-filter-section__link {
  border: 0;
  background: transparent;
  color: var(--ota-mobile-primary, #2563eb);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
}

body.ota-mobile-app .ota-mobile-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body.ota-mobile-app .ota-mobile-filter-chip {
  min-height: 2.25rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-filter-chip.is-active {
  border-color: var(--ota-mobile-primary, #2563eb);
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
}

body.ota-mobile-app .ota-mobile-filter-drawer__foot {
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #eef2f7;
  background: #fff;
}

body.ota-mobile-app .ota-mobile-filter-drawer__apply {
  width: 100%;
  min-height: 3rem;
  border: 0;
  border-radius: 14px;
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-filter-drawer__count {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-sort-sheet {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  pointer-events: none;
}

body.ota-mobile-app .ota-mobile-sort-sheet.is-open {
  pointer-events: auto;
}

body.ota-mobile-app .ota-mobile-sort-sheet__backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.ota-mobile-app .ota-mobile-sort-sheet.is-open .ota-mobile-sort-sheet__backdrop {
  opacity: 1;
}

body.ota-mobile-app .ota-mobile-sort-sheet__panel {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  border-radius: 20px 20px 0 0;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.28s ease;
  pointer-events: none;
}

body.ota-mobile-app .ota-mobile-sort-sheet.is-open .ota-mobile-sort-sheet__panel {
  transform: translateY(0);
  pointer-events: auto;
}

body.ota-mobile-app .ota-mobile-sort-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.5rem;
  border-bottom: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-sort-sheet__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

body.ota-mobile-app .ota-mobile-sort-sheet__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-sort-sheet__options {
  display: grid;
  gap: 0.25rem;
  padding: 0.5rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
}

body.ota-mobile-app .ota-mobile-sort-option {
  min-height: 3rem;
  padding: 0.625rem 0.75rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-sort-option.is-active {
  background: color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 10%, white);
  color: var(--ota-mobile-primary, #2563eb);
}

@media (max-width: 360px) {
  body.ota-mobile-app .ota-mobile-results__route {
    font-size: 0.9375rem;
  }

  body.ota-mobile-app .ota-mobile-result-card__time {
    font-size: 0.95rem;
  }

  body.ota-mobile-app .ota-mobile-result-leg__time {
    font-size: 0.875rem;
  }

  body.ota-mobile-app .ota-mobile-result-leg-meta {
    min-width: 4.25rem;
  }

  body.ota-mobile-app .ota-mobile-result-leg-meta__duration {
    font-size: 0.75rem;
  }

  body.ota-mobile-app .ota-mobile-result-leg-meta__stops {
    font-size: 0.6875rem;
  }
}

/* —— Mobile booking checkout (M4B) —— */

body.ota-mobile-app:has([data-testid="ota-mobile-passengers"]) .ota-mobile-app__top-bar,
body.ota-mobile-app:has([data-testid="ota-mobile-review"]) .ota-mobile-app__top-bar,
body.ota-mobile-app:has([data-testid="ota-mobile-confirmation"]) .ota-mobile-app__top-bar {
  display: none;
}

body.ota-mobile-app:has([data-testid="ota-mobile-passengers"]) .ota-mobile-app__main,
body.ota-mobile-app:has([data-testid="ota-mobile-review"]) .ota-mobile-app__main,
body.ota-mobile-app:has([data-testid="ota-mobile-confirmation"]) .ota-mobile-app__main,
body.ota-mobile-app:has([data-testid="ota-mobile-flight-details"]) .ota-mobile-app__main {
  padding: 0 0 calc(8.25rem + env(safe-area-inset-bottom, 0px));
  background: #f4f7fb;
}

body.ota-mobile-app .ota-mobile-booking {
  min-width: 0;
  overflow-x: clip;
}

body.ota-mobile-app .ota-fare-session-timer--mobile {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 1rem 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
}
body.ota-mobile-app .ota-fare-session-timer--mobile .ota-fare-session-timer__active,
body.ota-mobile-app .ota-fare-session-timer--mobile .ota-fare-session-timer__expired {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
}
body.ota-mobile-app .ota-fare-session-timer--mobile .ota-fare-session-timer__icon {
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.85rem;
}
body.ota-mobile-app .ota-fare-session-timer--mobile .ota-fare-session-timer__icon--warn {
  background: #fef3c7;
  color: #b45309;
}
body.ota-mobile-app .ota-fare-session-timer--mobile .ota-fare-session-timer__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.5rem;
  min-width: 0;
}
body.ota-mobile-app .ota-fare-session-timer--mobile .ota-fare-session-timer__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1e40af;
}
body.ota-mobile-app .ota-fare-session-timer--mobile .ota-fare-session-timer__time {
  font-size: 1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: #1d4ed8;
}
body.ota-mobile-app .ota-fare-session-timer--mobile .ota-fare-session-timer__expired-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 600;
  color: #92400e;
}
body.ota-mobile-app .ota-fare-session-timer--mobile.ota-fare-session-timer--urgent {
  border-color: #fcd34d;
  background: #fffbeb;
}
body.ota-mobile-app .ota-fare-session-timer--mobile.ota-fare-session-timer--urgent .ota-fare-session-timer__time {
  color: #b45309;
}
body.ota-mobile-app .ota-fare-session-timer--mobile.ota-fare-session-timer--expired {
  border-color: #fcd34d;
  background: #fffbeb;
}

body.ota-mobile-app .ota-mobile-booking__header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: calc(env(safe-area-inset-top, 0px) + 0.75rem) 1rem 0.875rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e2e8f0;
}

body.ota-mobile-app .ota-mobile-booking__header-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

body.ota-mobile-app .ota-mobile-booking__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  flex: 0 0 auto;
}

body.ota-mobile-app .ota-mobile-booking__header-copy {
  min-width: 0;
  flex: 1 1 auto;
}

body.ota-mobile-app .ota-mobile-booking__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-booking__subtitle {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-booking__form {
  display: grid;
  gap: 0.875rem;
  padding: 0.875rem 1rem 6.5rem;
}

body.ota-mobile-app .ota-mobile-booking__card {
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef5;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

body.ota-mobile-app .ota-mobile-booking__card + .ota-mobile-booking__card,
body.ota-mobile-app .ota-mobile-booking__card + .ota-mobile-booking__form,
body.ota-mobile-app .ota-mobile-booking__form > .ota-mobile-booking__card {
  margin-top: 0;
}

body.ota-mobile-app .ota-mobile-booking > .ota-mobile-booking__card,
body.ota-mobile-app .ota-mobile-booking > .ota-mobile-booking__alert,
body.ota-mobile-app .ota-mobile-booking > .ota-mobile-booking__notice,
body.ota-mobile-app .ota-mobile-booking > .ota-mobile-booking__access-card {
  margin: 0.875rem 1rem 0;
}

body.ota-mobile-app .ota-mobile-booking__card-title {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-booking__sub-title {
  margin: 0.75rem 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #475569;
}

body.ota-mobile-app .ota-mobile-booking__field {
  margin-bottom: 0.75rem;
}

body.ota-mobile-app .ota-mobile-booking__field:last-child {
  margin-bottom: 0;
}

body.ota-mobile-app .ota-mobile-booking__dob-gender {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(5.75rem, 0.85fr);
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

body.ota-mobile-app .ota-mobile-booking__dob-gender .ota-mobile-booking__field {
  margin-bottom: 0;
}

body.ota-mobile-app .ota-mobile-booking__label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-booking__input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 0.9375rem;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-booking__input:focus {
  outline: 2px solid color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 35%, white);
  border-color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-booking__input.is-invalid {
  border-color: #dc2626;
}

body.ota-mobile-app .ota-mobile-booking__error {
  margin: 0.375rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #dc2626;
}

body.ota-mobile-app .ota-mobile-booking__phone-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
}

body.ota-mobile-app .ota-mobile-booking__phone-code {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

body.ota-mobile-app .ota-mobile-booking__checkbox,
body.ota-mobile-app .ota-mobile-booking__radio,
body.ota-mobile-app .ota-mobile-booking__method {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-booking__method {
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

body.ota-mobile-app .ota-mobile-booking__method strong {
  display: block;
  font-size: 0.875rem;
}

body.ota-mobile-app .ota-mobile-booking__method small {
  display: block;
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.75rem;
}

body.ota-mobile-app .ota-mobile-booking__account-fields {
  display: none;
  margin-top: 0.75rem;
}

body.ota-mobile-app .ota-mobile-booking__account-fields.is-open {
  display: block;
}

body.ota-mobile-app .is-hidden {
  display: none !important;
}

body.ota-mobile-app .ota-mobile-booking__pax-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}

body.ota-mobile-app .ota-mobile-booking__pax-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
}

body.ota-mobile-app .ota-mobile-booking__pax-badge {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 10%, white);
  color: var(--ota-mobile-primary, #2563eb);
  font-size: 0.6875rem;
  font-weight: 700;
}

body.ota-mobile-app .ota-mobile-booking__pax-lead {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #059669;
}

body.ota-mobile-app .ota-mobile-booking__flight-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

body.ota-mobile-app .ota-mobile-booking__flight-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

body.ota-mobile-app .ota-mobile-booking__flight-logo {
  border-radius: 8px;
  object-fit: contain;
}

body.ota-mobile-app .ota-mobile-booking__flight-airline {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
}

body.ota-mobile-app .ota-mobile-booking__flight-no {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-booking__pill {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #475569;
  white-space: nowrap;
}

body.ota-mobile-app .ota-mobile-booking__route {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-booking__route--large {
  font-size: 1.125rem;
}

body.ota-mobile-app .ota-mobile-booking__leg-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.ota-mobile-app .ota-mobile-booking__leg-time {
  font-size: 1rem;
  font-weight: 800;
}

body.ota-mobile-app .ota-mobile-booking__leg-arrow {
  color: #94a3b8;
}

body.ota-mobile-app .ota-mobile-booking__leg-meta,
body.ota-mobile-app .ota-mobile-booking__leg-date,
body.ota-mobile-app .ota-mobile-booking__muted {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-booking__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

body.ota-mobile-app .ota-mobile-booking__tags li {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: #f8fafc;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #475569;
}

body.ota-mobile-app .ota-mobile-booking__flight-price {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-booking__price-dl {
  margin: 0;
}

body.ota-mobile-app .ota-mobile-booking__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
}

body.ota-mobile-app .ota-mobile-booking__price-row dt {
  margin: 0;
  color: #64748b;
  font-weight: 600;
}

body.ota-mobile-app .ota-mobile-booking__price-row dd {
  margin: 0;
  font-weight: 700;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-booking__price-row--total {
  margin-top: 0.375rem;
  padding-top: 0.625rem;
  border-top: 1px solid #e2e8f0;
  font-size: 1rem;
}

body.ota-mobile-app .ota-mobile-booking__price-row--total dt,
body.ota-mobile-app .ota-mobile-booking__price-row--total dd {
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-booking__baggage-list {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.875rem;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-booking__sticky-cta {
  position: fixed;
  left: 50%;
  bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  width: min(100%, 480px);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
  z-index: 35;
}

body.ota-mobile-app .ota-mobile-booking--confirmation .ota-mobile-booking__sticky-cta {
  position: static;
  transform: none;
  box-shadow: none;
  border-top: 0;
  padding: 0;
}

body.ota-mobile-app .ota-mobile-booking__cta {
  display: block;
  width: 100%;
  min-height: 3rem;
  border: 0;
  border-radius: 14px;
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-booking__cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

body.ota-mobile-app .ota-mobile-booking__cta--secondary {
  background: #fff;
  color: var(--ota-mobile-primary, #2563eb);
  border: 1px solid color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 35%, white);
}

body.ota-mobile-app .ota-mobile-booking__cta--link {
  text-decoration: none;
}

body.ota-mobile-app .ota-mobile-booking__cta-note,
body.ota-mobile-app .ota-mobile-booking__total-label {
  margin: 0.375rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-booking__total-value {
  margin: 0 0 0.5rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-booking__total-value--inline {
  text-align: left;
  margin-top: 0.75rem;
}

body.ota-mobile-app .ota-mobile-booking__alert {
  margin: 0.875rem 1rem 0;
  padding: 0.75rem;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
}

body.ota-mobile-app .ota-mobile-booking__alert--danger {
  background: #fef2f2;
  color: #b91c1c;
}

body.ota-mobile-app .ota-mobile-booking__alert--warning {
  background: #fffbeb;
  color: #b45309;
}

body.ota-mobile-app .ota-mobile-booking__alert--info {
  background: #eff6ff;
  color: #1d4ed8;
}

body.ota-mobile-app .ota-mobile-booking__alert--success {
  background: #ecfdf5;
  color: #047857;
}

body.ota-mobile-app .ota-mobile-booking__notice,
body.ota-mobile-app .ota-mobile-booking__access-card {
  font-size: 0.8125rem;
}

body.ota-mobile-app .ota-mobile-booking__access-title {
  margin: 0;
  font-weight: 800;
}

body.ota-mobile-app .ota-mobile-booking__access-sub {
  margin: 0.25rem 0 0.75rem;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-booking__access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body.ota-mobile-app .ota-mobile-booking__link-btn {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  font-size: 0.75rem;
  font-weight: 700;
}

body.ota-mobile-app .ota-mobile-booking__review-pax {
  padding-top: 0.75rem;
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-booking__review-pax:first-of-type {
  border-top: 0;
  padding-top: 0;
}

body.ota-mobile-app .ota-mobile-booking__review-pax-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

body.ota-mobile-app .ota-mobile-booking__review-dl {
  margin: 0;
}

body.ota-mobile-app .ota-mobile-booking__review-dl > div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.25rem 0;
  font-size: 0.8125rem;
}

body.ota-mobile-app .ota-mobile-booking__review-dl dt {
  margin: 0;
  color: #64748b;
  font-weight: 600;
}

body.ota-mobile-app .ota-mobile-booking__review-dl dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
  color: #0f172a;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-booking__review-contact {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-booking__inline-link {
  display: inline-block;
  margin-top: 0.375rem;
  color: var(--ota-mobile-primary, #2563eb);
  font-weight: 700;
}

body.ota-mobile-app .ota-mobile-booking__confirm-hero {
  padding: calc(env(safe-area-inset-top, 0px) + 1.25rem) 1rem 1rem;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-booking__confirm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 0.875rem;
  border-radius: 999px;
}

body.ota-mobile-app .ota-mobile-booking__confirm-icon--success {
  background: #dcfce7;
  color: #16a34a;
}

body.ota-mobile-app .ota-mobile-booking__confirm-icon--pending,
body.ota-mobile-app .ota-mobile-booking__confirm-icon--review {
  background: #fef3c7;
  color: #d97706;
}

body.ota-mobile-app .ota-mobile-booking__confirm-title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 800;
}

body.ota-mobile-app .ota-mobile-booking__confirm-sub,
body.ota-mobile-app .ota-mobile-booking__confirm-note {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-booking__pnr-card {
  margin: 0 1rem;
}

body.ota-mobile-app .ota-mobile-booking__pnr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

body.ota-mobile-app .ota-mobile-booking__pnr-row + .ota-mobile-booking__pnr-row {
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-booking__pnr-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-booking__pnr-value {
  margin: 0.125rem 0 0;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-booking__copy-btn {
  min-height: 2.25rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-booking__confirm-airline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
}

body.ota-mobile-app .ota-mobile-booking__confirm-actions {
  display: grid;
  gap: 0.625rem;
  padding: 1rem 1rem 1.5rem;
}

body.ota-mobile-app .ota-mobile-booking__text-link {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-booking__modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

body.ota-mobile-app .ota-mobile-booking__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

body.ota-mobile-app .ota-mobile-booking__modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: 85dvh;
  overflow: auto;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  border-radius: 20px 20px 0 0;
  background: #fff;
}

body.ota-mobile-app .ota-mobile-booking__modal-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
}

@media (max-width: 360px) {
  body.ota-mobile-app .ota-mobile-booking__phone-row {
    grid-template-columns: 4.75rem 1fr;
  }
}

/* —— Mobile flight details (M4C) —— */

body.ota-mobile-app:has([data-testid="ota-mobile-flight-details"]) .ota-mobile-app__top-bar {
  display: none;
}

body.ota-mobile-app .ota-mobile-flight-details {
  min-width: 0;
  overflow-x: clip;
}

body.ota-mobile-app .ota-mobile-flight-details__header {
  position: sticky;
  top: 0;
  z-index: var(--ota-z-mobile-header);
  padding: calc(env(safe-area-inset-top, 0px) + 0.625rem) 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e8eef5;
}

body.ota-mobile-app .ota-mobile-flight-details__header-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

body.ota-mobile-app .ota-mobile-flight-details__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  flex: 0 0 auto;
}

body.ota-mobile-app .ota-mobile-flight-details__header-copy {
  min-width: 0;
  padding-right: 4.5rem;
}

body.ota-mobile-app .ota-mobile-flight-details__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-flight-details__route {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-flight-details__body {
  display: grid;
  gap: 0.875rem;
  padding: 0.875rem 1rem calc(10.5rem + env(safe-area-inset-bottom, 0px));
}

body.ota-mobile-app .ota-mobile-flight-details__card {
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef5;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

body.ota-mobile-app .ota-mobile-flight-details__card-title {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-flight-details__subhead {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-flight-details__airline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

body.ota-mobile-app .ota-mobile-flight-details__logo,
body.ota-mobile-app .ota-mobile-flight-details__logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 0.75rem;
  font-weight: 800;
  color: #334155;
  flex: 0 0 auto;
}

body.ota-mobile-app .ota-mobile-flight-details__logo {
  object-fit: contain;
  background: #fff;
  border: 1px solid #e2e8f0;
}

body.ota-mobile-app .ota-mobile-flight-details__airline-name {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-flight-details__flight-no {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-flight-details__route-summary {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-flight-details__meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-flight-details__meta-line--cabin span {
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: #f1f5f9;
}

body.ota-mobile-app .ota-mobile-flight-details__journey-durations {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.375rem;
}

body.ota-mobile-app .ota-mobile-flight-details__journey-duration-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.375rem;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.35;
}

body.ota-mobile-app .ota-mobile-flight-details__journey-duration-label {
  font-weight: 800;
  color: #334155;
  flex: 0 0 auto;
}

body.ota-mobile-app .ota-mobile-flight-details__journey-duration-value {
  font-weight: 700;
  color: #64748b;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-flight-details__city {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

body.ota-mobile-app .ota-mobile-flight-details__journey-summary + .ota-mobile-flight-details__journey-summary,
body.ota-mobile-app .ota-mobile-flight-details__journey-summary + .ota-mobile-flight-details__timeline {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-flight-details__journeys {
  display: grid;
  gap: 0;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-flight-details__journey-section + .ota-mobile-flight-details__journey-section,
body.ota-mobile-app .ota-mobile-flight-details__stay-gap + .ota-mobile-flight-details__journey-section {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-flight-details__journey-heading {
  margin: 0 0 0.625rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-flight-details__stay-gap {
  margin-top: 0.875rem;
  padding: 0.625rem 0.75rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-flight-details__stay-gap-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  line-height: 1.35;
}

body.ota-mobile-app .ota-mobile-flight-details__journey-section .ota-mobile-flight-details__timeline {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

body.ota-mobile-app .ota-mobile-flight-details__times--journey {
  margin-top: 0.25rem;
}

body.ota-mobile-app .ota-mobile-flight-details__timeline {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-flight-details__timeline-segment + .ota-mobile-flight-details__timeline-segment {
  margin-top: 0.75rem;
}

body.ota-mobile-app .ota-mobile-flight-details__timeline-row {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.75rem;
}

body.ota-mobile-app .ota-mobile-flight-details__timeline-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding-top: 0.35rem;
}

body.ota-mobile-app .ota-mobile-flight-details__timeline-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: var(--ota-mobile-primary, #2563eb);
  flex: 0 0 auto;
}

body.ota-mobile-app .ota-mobile-flight-details__timeline-line {
  flex: 1 1 auto;
  width: 2px;
  margin-top: 0.25rem;
  background: #cbd5e1;
  min-height: 2rem;
}

body.ota-mobile-app .ota-mobile-flight-details__timeline-content {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

body.ota-mobile-app .ota-mobile-flight-details__timeline-point {
  display: grid;
  gap: 0.125rem;
}

body.ota-mobile-app .ota-mobile-flight-details__timeline-flight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 0.625rem;
  padding: 0.375rem 0.5rem;
  border-radius: 10px;
  background: #f8fafc;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
}

body.ota-mobile-app .ota-mobile-flight-details__timeline-flight-no {
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-flight-details__layover {
  margin: 0.5rem 0 0 1.95rem;
  padding: 0.5rem 0.625rem;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9a3412;
}

body.ota-mobile-app .ota-mobile-flight-details__baggage-dl {
  margin: 0;
}

body.ota-mobile-app .ota-mobile-flight-details__baggage-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
}

body.ota-mobile-app .ota-mobile-flight-details__baggage-row dt {
  margin: 0;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-flight-details__baggage-row dd {
  margin: 0;
  font-weight: 800;
  color: #0f172a;
  text-align: right;
}

body.ota-mobile-app .ota-mobile-flight-details__leg + .ota-mobile-flight-details__leg {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-flight-details__leg-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

body.ota-mobile-app .ota-mobile-flight-details__times {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
}

body.ota-mobile-app .ota-mobile-flight-details__point {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

body.ota-mobile-app .ota-mobile-flight-details__point--arr {
  align-items: flex-end;
  text-align: right;
}

body.ota-mobile-app .ota-mobile-flight-details__time {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-flight-details__code {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-flight-details__date {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
}

body.ota-mobile-app .ota-mobile-flight-details__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 4.5rem;
}

body.ota-mobile-app .ota-mobile-flight-details__duration {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-flight-details__mid-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #cbd5e1;
}

body.ota-mobile-app .ota-mobile-flight-details__stops {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #16a34a;
}

body.ota-mobile-app .ota-mobile-flight-details__segments,
body.ota-mobile-app .ota-mobile-flight-details__stopovers ul,
body.ota-mobile-app .ota-mobile-flight-details__baggage-list,
body.ota-mobile-app .ota-mobile-flight-details__rules {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.8125rem;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-flight-details__segments {
  margin-top: 0.75rem;
  padding-left: 0;
  list-style: none;
}

body.ota-mobile-app .ota-mobile-flight-details__segments li + li {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed #e2e8f0;
}

body.ota-mobile-app .ota-mobile-flight-details__segment-flight {
  display: block;
  font-weight: 700;
}

body.ota-mobile-app .ota-mobile-flight-details__segment-route,
body.ota-mobile-app .ota-mobile-flight-details__segment-layover {
  display: block;
  margin-top: 0.125rem;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-flight-details__stopovers {
  margin-top: 0.875rem;
}

body.ota-mobile-app .ota-mobile-flight-details__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0.875rem 0 0;
  padding: 0;
  list-style: none;
}

body.ota-mobile-app .ota-mobile-flight-details__tags li {
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
}

body.ota-mobile-app .ota-mobile-flight-details__baggage {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-flight-details__fare-dl {
  margin: 0;
}

body.ota-mobile-app .ota-mobile-flight-details__fare-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
}

body.ota-mobile-app .ota-mobile-flight-details__fare-row dt {
  margin: 0;
  font-weight: 600;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-flight-details__fare-row dd {
  margin: 0;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-flight-details__fare-row--discount dd {
  color: #16a34a;
}

body.ota-mobile-app .ota-mobile-flight-details__fare-row--total {
  margin-top: 0.375rem;
  padding-top: 0.625rem;
  border-top: 1px solid #eef2f7;
  font-size: 1rem;
}

body.ota-mobile-app .ota-mobile-flight-details__fallback,
body.ota-mobile-app .ota-mobile-flight-details__note,
body.ota-mobile-app .ota-mobile-flight-details__rules-line,
body.ota-mobile-app .ota-mobile-flight-details__disabled-note {
  margin: 0.625rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-flight-details__empty-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-flight-details__sticky-cta {
  position: fixed;
  left: 50%;
  bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  width: min(100%, 480px);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
  z-index: 35;
}

body.ota-mobile-app .ota-mobile-flight-details__cta {
  display: block;
  width: 100%;
  min-height: 3rem;
  border: 0;
  border-radius: 14px;
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  line-height: 3rem;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-flight-details__cta--secondary {
  background: #f1f5f9;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-flight-details__cta.is-disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
}

body.ota-mobile-app .ota-mobile-fare-summary__route {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.8125rem;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-fare-summary__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.2rem;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: #f1f5f9;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

body.ota-mobile-app .ota-mobile-fare-summary__tab {
  flex: 1 1 calc(50% - 0.35rem);
  min-width: 0;
  margin: 0;
  padding: 0.45rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-fare-summary__tab.is-active {
  background: #fff;
  border-color: rgba(148, 163, 184, 0.35);
  color: #0a1628;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

body.ota-mobile-app .ota-mobile-fare-summary__panel[hidden] {
  display: none !important;
}

body.ota-mobile-app .ota-mobile-fare-summary__panel .ota-mobile-flight-details__card {
  margin: 0;
  box-shadow: none;
  border: 0;
  padding: 0;
  background: transparent;
}

body.ota-mobile-app .ota-mobile-fare-summary__baggage-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.22);
}

body.ota-mobile-app .ota-mobile-fare-summary__baggage-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-fare-summary__baggage-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  text-align: right;
}

body.ota-mobile-app .ota-mobile-fare-summary__inline-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e2e8f0;
}

body.ota-mobile-app .ota-mobile-fare-summary__inline-total-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-fare-summary__inline-total-value {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #0a1628;
}

body.ota-mobile-app .ota-mobile-flight-details__sticky-cta--summary {
  display: grid;
  gap: 0.5rem;
}

body.ota-mobile-app .ota-mobile-flight-details__sticky-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

body.ota-mobile-app .ota-mobile-flight-details__sticky-total-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-flight-details__sticky-total-value {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #0a1628;
}

/* —— Mobile dashboards (M5) —— */
body.ota-mobile-app:has([data-testid="ota-mobile-customer-dashboard"]),
body.ota-mobile-app:has([data-testid="ota-mobile-agent-dashboard"]) {
  background: #f1f5f9;
}

body.ota-mobile-app:has([data-testid="ota-mobile-customer-dashboard"]) .ota-mobile-app__top-bar,
body.ota-mobile-app:has([data-testid="ota-mobile-agent-dashboard"]) .ota-mobile-app__top-bar {
  display: none;
}

body.ota-mobile-app:has([data-testid="ota-mobile-customer-dashboard"]) .ota-mobile-app__main,
body.ota-mobile-app:has([data-testid="ota-mobile-agent-dashboard"]) .ota-mobile-app__main {
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

body.ota-mobile-app .ota-mobile-dashboard {
  padding: 0 1rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}

body.ota-mobile-app .ota-mobile-dashboard__header {
  padding: calc(0.75rem + env(safe-area-inset-top, 0px)) 0 1rem;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 88%, #60a5fa) 0%,
    color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 65%, #dbeafe) 100%
  );
  margin: 0 -1rem 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0 0 1.25rem 1.25rem;
  color: #fff;
}

body.ota-mobile-app .ota-mobile-dashboard__header--agent {
  padding-bottom: 0.875rem;
}

body.ota-mobile-app .ota-mobile-dashboard__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

body.ota-mobile-app .ota-mobile-dashboard__greeting {
  margin: 0 0 0.125rem;
  font-size: 0.875rem;
  opacity: 0.92;
}

body.ota-mobile-app .ota-mobile-dashboard__name {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.2;
}

body.ota-mobile-app .ota-mobile-dashboard__agency {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0.9;
}

body.ota-mobile-app .ota-mobile-dashboard__profile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  flex-shrink: 0;
}

body.ota-mobile-app .ota-mobile-dashboard__wallet-pill {
  text-align: right;
  flex-shrink: 0;
  padding: 0.375rem 0.625rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
}

body.ota-mobile-app .ota-mobile-dashboard__wallet-label {
  display: block;
  font-size: 0.6875rem;
  opacity: 0.9;
}

body.ota-mobile-app .ota-mobile-dashboard__wallet-value {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
}

body.ota-mobile-app .ota-mobile-dashboard__section {
  margin-bottom: 1.25rem;
}

body.ota-mobile-app .ota-mobile-dashboard__section-title {
  margin: 0 0 0.625rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

body.ota-mobile-app .ota-mobile-dashboard__stat {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.625rem 0.75rem;
  min-height: 3.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}

body.ota-mobile-app .ota-mobile-dashboard__stat--amber {
  border-color: #fde68a;
  background: #fffbeb;
}

body.ota-mobile-app .ota-mobile-dashboard__stat--sky {
  border-color: #bae6fd;
  background: #f0f9ff;
}

body.ota-mobile-app .ota-mobile-dashboard__stat--violet {
  border-color: #ddd6fe;
  background: #f5f3ff;
}

body.ota-mobile-app .ota-mobile-dashboard__stat--emerald {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

body.ota-mobile-app .ota-mobile-dashboard__stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.3;
}

body.ota-mobile-app .ota-mobile-dashboard__stat-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-dashboard__booking-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.875rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

body.ota-mobile-app .ota-mobile-dashboard__booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

body.ota-mobile-app .ota-mobile-dashboard__booking-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.ota-mobile-app .ota-mobile-dashboard__booking-route {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #0f172a;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-dashboard__booking-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.75rem;
  margin: 0 0 0.875rem;
}

body.ota-mobile-app .ota-mobile-dashboard__booking-meta dt {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
}

body.ota-mobile-app .ota-mobile-dashboard__booking-meta dd {
  margin: 0.125rem 0 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-dashboard__text-safe {
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-dashboard__status {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: capitalize;
}

body.ota-mobile-app .ota-mobile-dashboard__status--positive {
  background: #dcfce7;
  color: #166534;
}

body.ota-mobile-app .ota-mobile-dashboard__status--pending {
  background: #fef3c7;
  color: #92400e;
}

body.ota-mobile-app .ota-mobile-dashboard__status--cancelled {
  background: #fee2e2;
  color: #991b1b;
}

body.ota-mobile-app .ota-mobile-dashboard__status--muted {
  background: #f1f5f9;
  color: #475569;
}

body.ota-mobile-app .ota-mobile-dashboard__btn {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  border-radius: 12px;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  line-height: 2.75rem;
  border: 0;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-dashboard__btn--primary {
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
}

body.ota-mobile-app .ota-mobile-dashboard__quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

body.ota-mobile-app .ota-mobile-dashboard__quick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  padding: 0.875rem;
  min-height: 5.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
}

body.ota-mobile-app .ota-mobile-dashboard__quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  color: var(--ota-mobile-primary, #2563eb);
  background: color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 10%, white);
}

body.ota-mobile-app .ota-mobile-dashboard__quick-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

body.ota-mobile-app .ota-mobile-dashboard__quick-sub {
  font-size: 0.6875rem;
  color: #64748b;
  line-height: 1.35;
}

body.ota-mobile-app .ota-mobile-dashboard__empty {
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-dashboard__empty-title {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-dashboard__empty-help {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  color: #64748b;
}

/* Mobile auth / account entry (M6B) */
body.ota-mobile-app .ota-mobile-auth {
  display: grid;
  gap: 0.875rem;
}

body.ota-mobile-app .ota-mobile-auth__page-header,
body.ota-mobile-app .ota-mobile-auth__card,
body.ota-mobile-app .ota-mobile-auth__info-card {
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef5;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

body.ota-mobile-app .ota-mobile-auth__header,
body.ota-mobile-app .ota-mobile-auth__page-header {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

body.ota-mobile-app .ota-mobile-auth__title {
  margin: 0 0 0.375rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-auth__subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.45;
}

body.ota-mobile-app .ota-mobile-auth__card-title,
body.ota-mobile-app .ota-mobile-auth__info-title {
  margin: 0 0 0.625rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-auth__form {
  display: grid;
  gap: 0.875rem;
}

body.ota-mobile-app .ota-mobile-auth__field {
  margin-bottom: 0;
}

body.ota-mobile-app .ota-mobile-auth__label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-auth__input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 0.9375rem;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-auth__input:focus {
  outline: 2px solid color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 35%, white);
  border-color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-auth__input.is-invalid {
  border-color: #dc2626;
}

body.ota-mobile-app .ota-mobile-auth__error {
  margin: 0.375rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #dc2626;
}

body.ota-mobile-app .ota-mobile-auth__phone-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
}

body.ota-mobile-app .ota-mobile-auth__phone-code {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

body.ota-mobile-app .ota-mobile-auth__grid {
  display: grid;
  gap: 0.875rem;
}

body.ota-mobile-app .ota-mobile-auth__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 360px) {
  body.ota-mobile-app .ota-mobile-auth__grid--two {
    grid-template-columns: 1fr;
  }
}

body.ota-mobile-app .ota-mobile-auth__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

body.ota-mobile-app .ota-mobile-auth__checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-auth__checkbox--terms {
  align-items: flex-start;
}

body.ota-mobile-app .ota-mobile-auth__checkbox input {
  margin-top: 0.125rem;
  flex: 0 0 auto;
}

body.ota-mobile-app .ota-mobile-auth__link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-auth__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 2.75rem;
  padding: 0.6875rem 1rem;
  border: 0;
  border-radius: 12px;
  box-sizing: border-box;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-auth__btn--primary {
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
}

/* M8C — public auth forms: keep submit in card flow; clear bottom nav + Desktop pill */
body.ota-mobile-app:has([data-testid="ota-mobile-register"]) .ota-mobile-app__main,
body.ota-mobile-app:has([data-testid="ota-mobile-booking-lookup"]) .ota-mobile-app__main,
body.ota-mobile-app:has([data-testid="ota-mobile-agent-registration-form"]) .ota-mobile-app__main {
  padding-bottom: calc(8.75rem + env(safe-area-inset-bottom, 0px));
}

body.ota-mobile-app:has([data-testid="ota-mobile-register"]) .ota-mobile-auth__form > .ota-mobile-auth__btn[type="submit"],
body.ota-mobile-app:has([data-testid="ota-mobile-booking-lookup"]) .ota-mobile-auth__form > .ota-mobile-auth__btn[type="submit"],
body.ota-mobile-app:has([data-testid="ota-mobile-agent-registration-form"]) .ota-mobile-auth__form > .ota-mobile-auth__btn[type="submit"] {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  z-index: auto;
  margin: 0;
  box-shadow: none;
}

/* M8D — agent registration landing/submitted CTAs: readable label + clearance above bottom nav */
body.ota-mobile-app:has([data-testid="ota-mobile-agent-registration-landing"]) .ota-mobile-app__main,
body.ota-mobile-app:has([data-testid="ota-mobile-agent-registration-submitted"]) .ota-mobile-app__main {
  padding-bottom: calc(8.75rem + env(safe-area-inset-bottom, 0px));
}

body.ota-mobile-app:has([data-testid="ota-mobile-agent-registration-landing"]) .ota-mobile-auth__card > .ota-mobile-auth__btn--primary,
body.ota-mobile-app:has([data-testid="ota-mobile-agent-registration-submitted"]) .ota-mobile-auth__card > .ota-mobile-auth__btn--primary {
  min-height: 3rem;
  padding: 0.75rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

body.ota-mobile-app .ota-mobile-auth__alert {
  padding: 0.75rem;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
}

body.ota-mobile-app .ota-mobile-auth__alert--danger {
  background: #fef2f2;
  color: #b91c1c;
}

body.ota-mobile-app .ota-mobile-auth__alert--success {
  background: #ecfdf5;
  color: #047857;
}

body.ota-mobile-app .ota-mobile-auth__alert--info {
  background: #eff6ff;
  color: #1d4ed8;
}

body.ota-mobile-app .ota-mobile-auth__list {
  margin: 0;
  padding-left: 1.125rem;
  font-size: 0.8125rem;
  color: #475569;
}

body.ota-mobile-app .ota-mobile-auth__list li + li {
  margin-top: 0.375rem;
}

body.ota-mobile-app .ota-mobile-auth__note {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.45;
}

body.ota-mobile-app .ota-mobile-auth__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
}

body.ota-mobile-app .ota-mobile-auth__links a {
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-auth__quick-actions {
  display: grid;
  gap: 0.5rem;
}

body.ota-mobile-app .ota-mobile-auth__quick-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ota-mobile-primary, #2563eb);
  text-align: center;
}

body.ota-mobile-app .ota-mobile-auth .auth-social-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.875rem;
}

body.ota-mobile-app .ota-mobile-auth .auth-social-btn {
  flex: 1 1 calc(50% - 0.3125rem);
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}

/* AUTH-LOGIN-UI-2 — mobile login */
body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__card {
  padding: 1.15rem;
  border-radius: 18px;
  border-color: #e2e8f0;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 40px -24px rgba(15, 23, 42, 0.28);
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__header {
  margin-bottom: 0.15rem;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__title {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__subtitle {
  font-size: 0.9rem;
  line-height: 1.5;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__form {
  gap: 1rem;
  margin-top: 0.15rem;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #334155;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__input {
  min-height: 46px;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  border-color: #d5dee9;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__password-field {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__password-field .ota-mobile-auth__input {
  width: 100%;
  padding-right: 2.85rem;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__password-toggle {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-tap-highlight-color: transparent;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__password-toggle:active {
  background: rgba(241, 245, 249, 0.95);
  color: #334155;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__password-toggle:focus {
  outline: 0;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__password-toggle:focus-visible {
  outline: 2px solid var(--ota-mobile-primary, #2563eb);
  outline-offset: 2px;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__password-toggle i,
body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__password-toggle .ota-password-toggle__icon {
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__row {
  gap: 0.65rem 1rem;
  margin-top: 0.05rem;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__checkbox {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__btn--primary {
  min-height: 48px;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  border-radius: 999px;
  box-shadow: 0 12px 24px -16px rgba(37, 99, 235, 0.85);
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__social {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__divider {
  display: none;
  align-items: center;
  gap: 0.65rem;
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__social:has(.auth-social-stack) .ota-mobile-auth__divider {
  display: flex;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__divider::before,
body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__divider span {
  flex-shrink: 0;
  white-space: nowrap;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .auth-social-stack {
  margin-top: 0;
  justify-content: center;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .auth-social-btn {
  flex: 0 1 auto;
  min-width: 3.25rem;
  min-height: 44px;
  border-radius: 999px;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__links {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e8eef5;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #64748b;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__links a {
  color: #64748b;
}

body.ota-mobile-app [data-testid="ota-mobile-login"] .ota-mobile-auth__links a:not(:last-child)::after {
  content: "·";
  display: inline;
  margin-left: 0.75rem;
  color: #cbd5e1;
  font-weight: 400;
  pointer-events: none;
}

/* Mobile support (M6B) */
body.ota-mobile-app .ota-mobile-support {
  display: grid;
  gap: 0.875rem;
}

body.ota-mobile-app .ota-mobile-support__header {
  padding: 0.25rem 0 0;
}

body.ota-mobile-app .ota-mobile-support__title {
  margin: 0 0 0.375rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-support__subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.45;
}

body.ota-mobile-app .ota-mobile-support__quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

body.ota-mobile-app .ota-mobile-support__quick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  padding: 0.875rem;
  min-height: 5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

body.ota-mobile-app .ota-mobile-support__quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  color: var(--ota-mobile-primary, #2563eb);
  background: color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 10%, white);
}

body.ota-mobile-app .ota-mobile-support__quick-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-support__card {
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef5;
}

body.ota-mobile-app .ota-mobile-support__card-title {
  margin: 0 0 0.625rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-support__list,
body.ota-mobile-app .ota-mobile-support__channels {
  margin: 0;
  padding-left: 1.125rem;
  font-size: 0.8125rem;
  color: #475569;
}

body.ota-mobile-app .ota-mobile-support__list li + li,
body.ota-mobile-app .ota-mobile-support__channels li + li {
  margin-top: 0.375rem;
}

body.ota-mobile-app .ota-mobile-support__faq p {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.45;
}

body.ota-mobile-app .ota-mobile-support__faq p:last-child {
  margin-bottom: 0;
}

body.ota-mobile-app .ota-mobile-support__lead {
  margin: 0 0 0.625rem;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}

body.ota-mobile-app .ota-mobile-support__channel-label {
  display: inline-block;
  min-width: 4.5rem;
  font-weight: 700;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-support__channels a {
  color: var(--ota-mobile-primary, #2563eb);
  font-weight: 700;
}

/* Mobile public static pages (M6B) */
body.ota-mobile-app .ota-mobile-public {
  display: grid;
  gap: 0.875rem;
}

body.ota-mobile-app .ota-mobile-public__header {
  padding: 0.25rem 0 0;
}

body.ota-mobile-app .ota-mobile-public__kicker {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-public__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-public__lead {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

body.ota-mobile-app .ota-mobile-public__card {
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef5;
}

body.ota-mobile-app .ota-mobile-public__card-title {
  margin: 0 0 0.625rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-public__card p {
  margin: 0;
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.5;
}

body.ota-mobile-app .ota-mobile-public__card p + p {
  margin-top: 0.625rem;
}

body.ota-mobile-app .ota-mobile-public__list {
  margin: 0;
  padding-left: 1.125rem;
  font-size: 0.8125rem;
  color: #475569;
}

body.ota-mobile-app .ota-mobile-public__list li + li {
  margin-top: 0.375rem;
}

body.ota-mobile-app .ota-mobile-public__card a {
  color: var(--ota-mobile-primary, #2563eb);
  font-weight: 700;
}

/* —— Customer account pages (M6C) —— */
body.ota-mobile-app:has([data-testid^="ota-mobile-customer-"]) {
  background: #f1f5f9;
}

body.ota-mobile-app .ota-mobile-app__back-btn,
body.ota-mobile-app .ota-mobile-app__top-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0 0.375rem;
  border-radius: 999px;
  color: #334155;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
}

body.ota-mobile-app .ota-mobile-app__top-action {
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-customer {
  max-width: 480px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

body.ota-mobile-app .ota-mobile-customer__filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.125rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

body.ota-mobile-app .ota-mobile-customer__filters::-webkit-scrollbar {
  display: none;
}

body.ota-mobile-app .ota-mobile-customer__filter {
  flex: 0 0 auto;
  padding: 0.4375rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #dbe3ee;
  background: #fff;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

body.ota-mobile-app .ota-mobile-customer__filter.is-active {
  border-color: var(--ota-mobile-primary, #2563eb);
  background: color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 10%, white);
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-customer__card {
  padding: 0.875rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8eef5;
}

body.ota-mobile-app .ota-mobile-customer__card + .ota-mobile-customer__card {
  margin-top: 0;
}

body.ota-mobile-app .ota-mobile-customer__list {
  display: grid;
  gap: 0.625rem;
}

body.ota-mobile-app .ota-mobile-customer__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

body.ota-mobile-app .ota-mobile-customer__card-title,
body.ota-mobile-app .ota-mobile-customer__page-title {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-customer__page-title {
  font-size: 1.0625rem;
}

body.ota-mobile-app .ota-mobile-customer__ref {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-customer__route {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1e293b;
}

body.ota-mobile-app .ota-mobile-customer__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.75rem;
  margin: 0 0 0.625rem;
}

body.ota-mobile-app .ota-mobile-customer__meta dt {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

body.ota-mobile-app .ota-mobile-customer__meta dd {
  margin: 0.125rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-customer__meta--payment {
  margin-top: 0.625rem;
}

body.ota-mobile-app .ota-mobile-customer__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.1875rem 0.5rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

body.ota-mobile-app .ota-mobile-customer__pill--positive {
  background: #ecfdf5;
  color: #047857;
}

body.ota-mobile-app .ota-mobile-customer__pill--pending {
  background: #fff7ed;
  color: #c2410c;
}

body.ota-mobile-app .ota-mobile-customer__pill--cancelled {
  background: #fef2f2;
  color: #b91c1c;
}

body.ota-mobile-app .ota-mobile-customer__pill--muted {
  background: #f1f5f9;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-customer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body.ota-mobile-app .ota-mobile-customer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-customer__btn--primary {
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
}

body.ota-mobile-app .ota-mobile-customer__btn--secondary {
  background: #fff;
  border-color: #dbe3ee;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-customer__btn--danger {
  background: #fff;
  border-color: #fecaca;
  color: #b91c1c;
}

body.ota-mobile-app .ota-mobile-customer__btn--block {
  width: 100%;
}

body.ota-mobile-app .ota-mobile-customer__empty {
  padding: 1.25rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8eef5;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-customer__empty-title {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-customer__empty-help {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-customer__note,
body.ota-mobile-app .ota-mobile-customer__muted {
  margin: 0 0 0.375rem;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}

body.ota-mobile-app .ota-mobile-customer__text-safe {
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-customer__link {
  color: var(--ota-mobile-primary, #2563eb);
  font-weight: 700;
  text-decoration: none;
}

body.ota-mobile-app .ota-mobile-customer__hero {
  padding: 0.875rem;
  border-radius: 14px;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 88%, #60a5fa) 0%,
    color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 65%, #dbeafe) 100%
  );
  color: #fff;
}

body.ota-mobile-app .ota-mobile-customer__hero-ref {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.92;
}

body.ota-mobile-app .ota-mobile-customer__hero-route {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.25;
}

body.ota-mobile-app .ota-mobile-customer__hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

body.ota-mobile-app .ota-mobile-customer__hero .ota-mobile-customer__pill {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

body.ota-mobile-app .ota-mobile-customer__guest-note {
  margin: 0.625rem 0 0;
  font-size: 0.75rem;
  opacity: 0.92;
}

body.ota-mobile-app .ota-mobile-customer__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.625rem;
}

body.ota-mobile-app .ota-mobile-customer__timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: start;
}

body.ota-mobile-app .ota-mobile-customer__timeline-label {
  margin: 0 0 0.125rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-customer__itinerary-line {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-customer__itinerary-line.is-sub {
  padding-left: 0.75rem;
  color: #64748b;
  font-size: 0.75rem;
}

body.ota-mobile-app .ota-mobile-customer__passenger + .ota-mobile-customer__passenger {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-customer__passenger-name {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-customer__doc-row + .ota-mobile-customer__doc-row {
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-customer__doc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

body.ota-mobile-app .ota-mobile-customer__cancel-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 0.5rem;
  padding: 0.5rem 0;
  border-top: 1px solid #eef2f7;
  font-size: 0.8125rem;
}

body.ota-mobile-app .ota-mobile-customer__form {
  display: grid;
  gap: 0.625rem;
}

body.ota-mobile-app .ota-mobile-customer__field {
  display: grid;
  gap: 0.25rem;
}

body.ota-mobile-app .ota-mobile-customer__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
}

body.ota-mobile-app .ota-mobile-customer__input {
  width: 100%;
  max-width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  background: #fff;
  font: inherit;
  color: #0f172a;
  box-sizing: border-box;
}

body.ota-mobile-app .ota-mobile-customer__input:focus {
  outline: 2px solid color-mix(in srgb, var(--ota-mobile-primary, #2563eb) 35%, white);
  border-color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-customer__input.is-invalid {
  border-color: #ef4444;
}

body.ota-mobile-app .ota-mobile-customer__error {
  margin: 0;
  font-size: 0.75rem;
  color: #b91c1c;
}

body.ota-mobile-app .ota-mobile-customer__ticket-subject {
  margin: 0 0 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-customer__ticket-meta {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-customer__message + .ota-mobile-customer__message {
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px solid #eef2f7;
}

body.ota-mobile-app .ota-mobile-customer__message-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem 0.5rem;
  margin-bottom: 0.25rem;
}

body.ota-mobile-app .ota-mobile-customer__message-author {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-customer__message-body {
  margin: 0;
  font-size: 0.8125rem;
  color: #334155;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-customer__profile-hero {
  text-align: left;
}

body.ota-mobile-app .ota-mobile-customer__danger-summary {
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  color: #b91c1c;
}

body.ota-mobile-app .ota-mobile-customer__danger-details[open] .ota-mobile-customer__danger-summary {
  margin-bottom: 0.625rem;
}

body.ota-mobile-app .ota-mobile-customer__footer-note {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-customer__pagination {
  overflow-x: auto;
}

body.ota-mobile-app .ota-mobile-customer__pagination nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  justify-content: center;
}

body.ota-mobile-app .ota-mobile-customer__pagination a,
body.ota-mobile-app .ota-mobile-customer__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  min-height: 1.85rem;
  padding: 0 0.4375rem;
  border-radius: 8px;
  border: 1px solid #dbe3ee;
  background: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
}

body.ota-mobile-app .ota-mobile-customer__pagination span[aria-current="page"] {
  border-color: var(--ota-mobile-primary, #2563eb);
  color: var(--ota-mobile-primary, #2563eb);
}

/* Agent portal mobile shell (M6D) */
body.ota-mobile-app:has([data-testid^="ota-mobile-agent-"]) {
  --ota-mobile-agent-pad: 0.875rem;
}

body.ota-mobile-app .ota-mobile-agent {
  padding: var(--ota-mobile-agent-pad);
  padding-bottom: calc(var(--ota-mobile-agent-pad) + 0.5rem);
  max-width: 100%;
  overflow-x: clip;
}

body.ota-mobile-app .ota-mobile-agent__filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

body.ota-mobile-app .ota-mobile-agent__filters::-webkit-scrollbar {
  display: none;
}

body.ota-mobile-app .ota-mobile-agent__filters--form {
  flex-direction: column;
  overflow: visible;
}

body.ota-mobile-app .ota-mobile-agent__filter {
  flex: 0 0 auto;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

body.ota-mobile-app .ota-mobile-agent__filter.is-active {
  background: var(--ota-mobile-primary, #2563eb);
  border-color: var(--ota-mobile-primary, #2563eb);
  color: #fff;
}

body.ota-mobile-app .ota-mobile-agent__card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  padding: 0.875rem 1rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

body.ota-mobile-app .ota-mobile-agent__card + .ota-mobile-agent__card,
body.ota-mobile-app .ota-mobile-agent__list .ota-mobile-agent__card + .ota-mobile-agent__card {
  margin-top: 0.75rem;
}

body.ota-mobile-app .ota-mobile-agent__list {
  display: grid;
  gap: 0.75rem;
}

body.ota-mobile-app .ota-mobile-agent__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

body.ota-mobile-app .ota-mobile-agent__card-title,
body.ota-mobile-app .ota-mobile-agent__page-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-agent__page-title {
  font-size: 1.125rem;
}

body.ota-mobile-app .ota-mobile-agent__ref {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-agent__route {
  margin: 0.25rem 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-agent__customer {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
}

body.ota-mobile-app .ota-mobile-agent__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem 0.75rem;
  margin: 0;
}

body.ota-mobile-app .ota-mobile-agent__meta dt {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-agent__meta dd {
  margin: 0.125rem 0 0;
  font-size: 0.875rem;
  color: #0f172a;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-agent__meta--finance dd.ota-mobile-agent__amount {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

body.ota-mobile-app .ota-mobile-agent__amount--total {
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-agent__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

body.ota-mobile-app .ota-mobile-agent__pill--positive {
  background: #dcfce7;
  color: #166534;
}

body.ota-mobile-app .ota-mobile-agent__pill--pending {
  background: #fef3c7;
  color: #92400e;
}

body.ota-mobile-app .ota-mobile-agent__pill--cancelled {
  background: #fee2e2;
  color: #991b1b;
}

body.ota-mobile-app .ota-mobile-agent__pill--muted {
  background: #f1f5f9;
  color: #475569;
}

body.ota-mobile-app .ota-mobile-agent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

body.ota-mobile-app .ota-mobile-agent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

body.ota-mobile-app .ota-mobile-agent__btn--primary {
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
}

body.ota-mobile-app .ota-mobile-agent__btn--secondary {
  background: #fff;
  border-color: #cbd5e1;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-agent__btn--danger {
  background: #fff;
  border-color: #fecaca;
  color: #b91c1c;
}

body.ota-mobile-app .ota-mobile-agent__btn--block {
  width: 100%;
}

body.ota-mobile-app .ota-mobile-agent__empty {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
}

body.ota-mobile-app .ota-mobile-agent__empty-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-agent__empty-help {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-agent__note,
body.ota-mobile-app .ota-mobile-agent__muted {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-agent__text-safe {
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-agent__link {
  color: var(--ota-mobile-primary, #2563eb);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}

body.ota-mobile-app .ota-mobile-agent__hero {
  margin-bottom: 0.75rem;
  padding: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
  border: 1px solid #dbeafe;
}

body.ota-mobile-app .ota-mobile-agent__hero-ref {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-agent__hero-route {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-agent__hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

body.ota-mobile-app .ota-mobile-agent__form {
  display: grid;
  gap: 0.75rem;
}

body.ota-mobile-app .ota-mobile-agent__field {
  display: grid;
  gap: 0.35rem;
}

body.ota-mobile-app .ota-mobile-agent__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-agent__input {
  width: 100%;
  max-width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
  color: #0f172a;
  background: #fff;
  box-sizing: border-box;
}

body.ota-mobile-app .ota-mobile-agent__input:focus {
  outline: 2px solid rgba(37, 99, 235, 0.25);
  border-color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-agent__input.is-invalid {
  border-color: #ef4444;
}

body.ota-mobile-app .ota-mobile-agent__error {
  margin: 0;
  font-size: 0.8125rem;
  color: #b91c1c;
}

body.ota-mobile-app .ota-mobile-agent__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

body.ota-mobile-app .ota-mobile-agent__fieldset-title {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-agent__form-card {
  margin-top: 0.75rem;
}

body.ota-mobile-app .ota-mobile-agent__danger-zone {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

body.ota-mobile-app .ota-mobile-agent__itinerary-line {
  margin: 0.2rem 0;
  font-size: 0.8125rem;
  color: #334155;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-agent__itinerary-line.is-sub {
  margin-left: 0.75rem;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-agent__passenger + .ota-mobile-agent__passenger {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f1f5f9;
}

body.ota-mobile-app .ota-mobile-agent__passenger-name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
}

body.ota-mobile-app .ota-mobile-agent__timeline-item + .ota-mobile-agent__timeline-item {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f1f5f9;
}

body.ota-mobile-app .ota-mobile-agent__timeline-label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: capitalize;
}

body.ota-mobile-app .ota-mobile-agent__cancel-row,
body.ota-mobile-app .ota-mobile-agent__doc-row {
  display: grid;
  gap: 0.15rem;
  padding: 0.5rem 0;
  border-top: 1px solid #f1f5f9;
}

body.ota-mobile-app .ota-mobile-agent__doc-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

body.ota-mobile-app .ota-mobile-agent__message + .ota-mobile-agent__message {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

body.ota-mobile-app .ota-mobile-agent__message-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

body.ota-mobile-app .ota-mobile-agent__message-author {
  font-size: 0.8125rem;
  font-weight: 700;
}

body.ota-mobile-app .ota-mobile-agent__message-body {
  margin: 0;
  font-size: 0.875rem;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

body.ota-mobile-app .ota-mobile-agent__ticket-subject {
  margin: 0.25rem 0;
  font-size: 0.9375rem;
  font-weight: 700;
}

body.ota-mobile-app .ota-mobile-agent__agency-hero {
  text-align: center;
}

body.ota-mobile-app .ota-mobile-agent__agency-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

body.ota-mobile-app .ota-mobile-agent__agency-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

body.ota-mobile-app .ota-mobile-agent__agency-logo-placeholder {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f1f5f9;
  font-size: 1.75rem;
}

body.ota-mobile-app .ota-mobile-agent__perm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.5rem 0;
}

body.ota-mobile-app .ota-mobile-agent__perm-chip {
  display: inline-flex;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.6875rem;
  font-weight: 600;
}

body.ota-mobile-app .ota-mobile-agent__perm-grid {
  display: grid;
  gap: 0.5rem;
}

body.ota-mobile-app .ota-mobile-agent__perm-option {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-agent__footer-note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-agent__pagination {
  margin-top: 0.75rem;
}

body.ota-mobile-app .ota-mobile-agent__pagination nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

body.ota-mobile-app .ota-mobile-agent__pagination a,
body.ota-mobile-app .ota-mobile-agent__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  min-height: 1.85rem;
  padding: 0 0.4375rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
}

@media (max-width: 380px) {
  body.ota-mobile-app .ota-mobile-dashboard__stats {
    gap: 0.5rem;
  }

  body.ota-mobile-app .ota-mobile-dashboard__stat {
    padding: 0.5625rem 0.625rem;
    min-height: 3.5rem;
  }

  body.ota-mobile-app .ota-mobile-dashboard__stat-value {
    font-size: 1rem;
  }
}

body.ota-mobile-app .ota-mobile-agent__pagination span[aria-current="page"] {
  border-color: var(--ota-mobile-primary, #2563eb);
  color: var(--ota-mobile-primary, #2563eb);
}

body.ota-mobile-app .ota-mobile-agent__traveler-card .ota-mobile-agent__card-title {
  margin-bottom: 0.15rem;
}

body.ota-mobile-app .ota-mobile-agent__traveler-card .status-badge {
  display: inline-flex;
}

body.ota-mobile-app .ota-mobile-agent__choice {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-agent__choice input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
}

body.ota-mobile-app .ota-mobile-fare-family-options {
  margin: 0.65rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid #e2e8f0;
}

body.ota-mobile-app .ota-mobile-fare-family-options__label {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.ota-mobile-app .ota-mobile-fare-family-options__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

body.ota-mobile-app .ota-mobile-fare-option {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  background: #fff;
  text-align: left;
}

body.ota-mobile-app .ota-mobile-fare-option.is-selected {
  border-color: var(--ota-mobile-primary, #2563eb);
  background: #eff6ff;
}

body.ota-mobile-app .ota-mobile-fare-option__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-fare-option__code {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
}

body.ota-mobile-app .ota-mobile-fare-option__price {
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
}

body.ota-mobile-app .ota-mobile-fare-option__approx {
  margin-right: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #64748b;
}

body.ota-mobile-app .ota-mobile-fare-option-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body.ota-mobile-app .ota-mobile-fare-option__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

body.ota-mobile-app .ota-mobile-fare-option__details,
body.ota-mobile-app .ota-mobile-fare-option__select {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.4rem 0.55rem;
  border-radius: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

body.ota-mobile-app .ota-mobile-fare-option__details {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
}

body.ota-mobile-app .ota-mobile-fare-option__select {
  border: 1px solid var(--ota-mobile-primary, #2563eb);
  background: var(--ota-mobile-primary, #2563eb);
  color: #fff;
}

body.ota-mobile-app .ota-mobile-fare-family-options__hint {
  margin: 0.45rem 0 0;
  font-size: 0.75rem;
  color: #b45309;
}

/* RETURN-SPLIT-SELECT-R2 — mobile split-flow cards */
body.ota-mobile-app .ota-mobile-return-split-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 1rem 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  font-size: 0.82rem;
  color: #334155;
}
body.ota-mobile-app .ota-mobile-return-split-steps__step.is-active {
  font-weight: 800;
  color: #0f4c81;
}
body.ota-mobile-app .ota-mobile-return-split-steps__step.is-done {
  color: #166534;
}
body.ota-mobile-app .ota-mobile-return-split-selected {
  margin: 0 1rem 0.75rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
body.ota-mobile-app .ota-mobile-return-split-selected__title {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
}
body.ota-mobile-app .ota-mobile-result-card--outbound-split,
body.ota-mobile-app .ota-mobile-result-card--returntrip,
body.ota-mobile-app .ota-mobile-result-card--split-leg {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
body.ota-mobile-app .ota-mobile-result-card__leg-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f4c81;
}
body.ota-mobile-app .ota-mobile-result-card__route--split {
  grid-template-columns: 1fr minmax(4.5rem, auto) 1fr;
}
body.ota-mobile-app .ota-mobile-result-card__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  text-align: center;
}
body.ota-mobile-app .ota-mobile-result-card__dur {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
}
body.ota-mobile-app .ota-mobile-result-card__stops {
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
}
body.ota-mobile-app .ota-mobile-result-card__date {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.68rem;
  color: #94a3b8;
}
body.ota-mobile-app .ota-mobile-result-card__flights,
body.ota-mobile-app .ota-mobile-split-summary__flights {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  color: #64748b;
}
body.ota-mobile-app .ota-mobile-result-card__carrier {
  min-width: 0;
}
body.ota-mobile-app .ota-mobile-result-card__price-block {
  margin-top: 0.15rem;
}
body.ota-mobile-app .ota-mobile-result-card--outbound-split .ota-mobile-result-card__price,
body.ota-mobile-app .ota-mobile-result-card--split-leg .ota-mobile-result-card__price,
body.ota-mobile-app .ota-mobile-result-card--returntrip .ota-mobile-result-card__price {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
}
body.ota-mobile-app .ota-mobile-result-card--outbound-split .ota-mobile-result-card__price-note,
body.ota-mobile-app .ota-mobile-result-card--split-leg .ota-mobile-result-card__price-note,
body.ota-mobile-app .ota-mobile-result-card--returntrip .ota-mobile-result-card__price-note {
  font-size: 0.68rem;
  line-height: 1.2;
}
body.ota-mobile-app .ota-mobile-result-card__delta {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  color: #64748b;
}
body.ota-mobile-app .ota-mobile-result-card__form {
  margin: 0;
}
body.ota-mobile-app .ota-checkout-journey-layovers {
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px dashed #e2e8f0;
}
body.ota-mobile-app .ota-checkout-journey-layovers__route {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
}
body.ota-mobile-app .ota-checkout-journey-layovers__meta {
  margin: 0;
  font-size: 0.72rem;
  color: #64748b;
}
body.ota-mobile-app .ota-checkout-journey-layovers__list {
  margin: 0.2rem 0 0;
  padding-left: 1rem;
  font-size: 0.72rem;
  color: #475569;
}
body.ota-mobile-app .ota-mobile-result-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}
body.ota-mobile-app .ota-mobile-result-card__chip--ok {
  background: #ecfdf5;
  color: #047857;
}
body.ota-mobile-app .ota-mobile-result-card__chip--warn {
  background: #fff7ed;
  color: #c2410c;
}
body.ota-mobile-app .ota-mobile-result-card__details--toggle {
  border: 0;
  background: transparent;
  padding: 0;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #0f4c81;
  text-decoration: underline;
}
body.ota-mobile-app .ota-mobile-split-detail {
  margin-top: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
body.ota-mobile-app .ota-mobile-split-detail__list {
  margin: 0 0 0.35rem;
  padding-left: 1rem;
  font-size: 0.75rem;
  color: #334155;
}
body.ota-mobile-app .ota-mobile-split-detail__seg {
  margin-bottom: 0.25rem;
}
body.ota-mobile-app .ota-mobile-split-detail__fn {
  display: block;
  color: #64748b;
  font-size: 0.72rem;
}
body.ota-mobile-app .ota-mobile-split-detail__baggage {
  margin: 0;
  font-size: 0.75rem;
  color: #475569;
}

