.flow-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(29, 116, 233, 0.12), transparent 28%),
    radial-gradient(circle at 94% 10%, rgba(201, 154, 63, 0.14), transparent 24%),
    linear-gradient(180deg, #f2f8ff 0%, #ffffff 48%, #f7fbff 100%);
}

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

.flow-page {
  overflow-x: hidden;
}

.flow-page .travel-menu {
  contain: paint;
  max-width: calc(100vw - 16px);
}

.flow-main {
  padding: 188px 0 64px;
}

.flow-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 31, 54, 0.07);
}

.flow-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.flow-hero .eyebrow {
  color: var(--accent);
}

.flow-hero .hero-helpline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #f8fbff;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: min(1120px, calc(100% - 32px));
  margin: 16px auto 0;
}

.booking-steps span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-weight: 850;
}

.booking-steps span.active {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 26px rgba(15, 111, 255, 0.18);
}

.flow-section {
  margin-top: 24px;
}

.result-price {
  color: var(--ink) !important;
  font-size: 1.15rem;
  font-weight: 900;
}

.flow-service-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  padding: 0 18px 12px;
  background: #fff;
  overflow-x: auto;
}

.flow-service-nav a {
  color: #5f6673;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.flow-travel-menu {
  margin-top: 14px;
}

.mmt-flow-results {
  display: grid;
  gap: 18px;
}

.mmt-result-search {
  position: relative;
  top: auto;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr auto;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 31, 54, 0.09);
}

.mmt-result-search label {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}

.mmt-result-search input,
.mmt-result-search select {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 900;
}

.mmt-result-search .search-button {
  min-width: 164px;
  margin: 12px;
  border-radius: 999px;
}

.mmt-result-flight-controls {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 12px 12px;
  border-top: 1px solid var(--line);
}

.mmt-result-flight-controls label {
  min-height: 70px;
  padding: 12px;
  border: 1px solid #dfe8f2;
  border-radius: 8px;
  background: #f8fbff;
}

.mmt-result-flight-controls input,
.mmt-result-flight-controls select {
  min-height: 42px;
}

.mmt-result-stay-controls {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mmt-result-stay-controls label {
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.mmt-results-layout {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.mmt-filter-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 31, 54, 0.06);
}

.mmt-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mmt-filter-panel strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.mmt-filter-head button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--brand);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.mmt-filter-panel label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-weight: 800;
}

.mmt-filter-panel label:has(input[type="number"]),
.mmt-filter-panel label:has(select) {
  display: grid;
  align-items: stretch;
  gap: 7px;
}

.mmt-filter-panel input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.mmt-filter-panel input[type="number"] {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 850;
}

.mmt-filter-panel div {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}

.mmt-filter-panel > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.mmt-filter-group {
  display: grid;
  gap: 10px;
}

.mmt-filter-group > span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-filter-panel select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
}

.mmt-filter-panel label:has(input[type="checkbox"]) {
  min-height: 38px;
  border: 1px solid #edf3fb;
  border-radius: 12px;
  padding: 8px 10px;
  background: #fbfdff;
}

.mmt-results-column {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.custom-result-note {
  padding: 14px 18px;
  border: 1px solid #cce1ff;
  border-radius: 8px;
  color: #134ea3;
  background: #eef6ff;
  font-weight: 850;
}

.live-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mmt-result-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 210px;
  gap: 18px;
  align-items: stretch;
  min-height: 224px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 31, 54, 0.07);
}

.mmt-empty-card {
  grid-template-columns: 1fr;
  min-height: 150px;
  padding: 22px;
}

.mmt-result-photo {
  position: relative;
  min-height: 224px;
  overflow: hidden;
  background: #dbe7f5;
}

.mmt-result-photo img {
  width: 100%;
  height: 100%;
  min-height: 224px;
  object-fit: cover;
  display: block;
}

.mmt-result-photo span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(7, 79, 174, 0.78);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-result-badge {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-height: 128px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0f6fff, #00a5d8);
  text-align: center;
}

.mmt-result-badge span {
  color: #fff;
  font-size: 1.06rem;
  font-weight: 950;
}

.mmt-result-badge small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.mmt-result-main {
  display: grid;
  align-content: start;
  gap: 11px;
  min-width: 0;
  padding: 18px 0;
}

.mmt-result-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.mmt-result-kicker span,
.mmt-result-kicker small,
.mmt-rating {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-result-kicker span {
  color: #075c42;
  background: #e3fff2;
}

.mmt-result-kicker small {
  color: #36506f;
  background: #edf5ff;
}

.mmt-rating {
  color: #fff;
  background: #159467;
}

.mmt-result-main strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.mmt-result-main p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.mmt-result-location {
  overflow-wrap: anywhere;
}

.mmt-result-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmt-result-details li {
  position: relative;
  min-width: 0;
  padding-left: 14px;
  color: #40516a;
  font-size: 0.9rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.mmt-result-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
}

.mmt-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mmt-result-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #116149;
  background: #e7f8f1;
  font-size: 0.84rem;
  font-weight: 850;
}

.mmt-result-price {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 8px;
  padding: 18px 18px 18px 0;
  text-align: right;
}

.mmt-result-price small {
  color: var(--muted);
  font-weight: 800;
}

.mmt-result-price b {
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 950;
}

.mmt-result-price span {
  max-width: 180px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.mmt-result-price button,
.mmt-continue-button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(90deg, #ff7a36, #ff5b2e);
  box-shadow: 0 10px 22px rgba(255, 91, 46, 0.3);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.mmt-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.mmt-selected-detail {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 31, 54, 0.08);
}

.mmt-detail-visual {
  display: grid;
  align-items: end;
  min-height: 250px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 79, 174, 0.72), rgba(15, 111, 255, 0.18)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=84") center/cover;
}

.mmt-detail-visual span {
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 950;
}

.mmt-detail-content {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.mmt-detail-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.mmt-detail-content p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.mmt-detail-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.mmt-detail-points span,
.mmt-detail-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.mmt-detail-points span {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  font-weight: 850;
}

.mmt-detail-note {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.mmt-detail-note strong {
  color: var(--ink);
}

.mmt-fare-summary {
  position: sticky;
  top: 112px;
}

.mmt-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.mmt-summary-row small {
  color: var(--muted);
  font-weight: 800;
}

.mmt-summary-row b {
  color: var(--ink);
  font-weight: 950;
}

.mmt-flow-detail .mmt-continue-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 100%);
  margin: 22px auto 0;
}

.mmt-prebook-feedback {
  width: min(760px, 100%);
  min-height: 28px;
  margin: 18px auto 0;
  color: #134ea3;
  font-weight: 850;
  text-align: center;
}

.mmt-traveller-layout,
.mmt-review-layout,
.mmt-confirmation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.mmt-form-card {
  display: grid;
  gap: 20px;
  overflow: hidden;
  padding: 0;
}

.mmt-form-head {
  display: grid;
  gap: 8px;
  padding: 24px 24px 0;
}

.mmt-form-head-pro {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
}

.mmt-traveller-brief {
  padding: 0 24px;
}

.mmt-traveller-brief-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 16px;
  align-items: stretch;
  border: 1px solid #d6e5f6;
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 154, 63, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff, #f6faff);
  box-shadow: 0 18px 42px rgba(13, 28, 48, 0.09);
}

.mmt-traveller-brief-card > div:first-child {
  display: grid;
  gap: 6px;
  align-content: center;
}

.mmt-traveller-brief-card span,
.mmt-traveller-brief-card small {
  color: #647287;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-traveller-brief-card strong {
  color: #102746;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 950;
  line-height: 1.12;
}

.mmt-traveller-brief-card p {
  margin: 0;
  color: #52627a;
  font-weight: 820;
}

.mmt-traveller-brief-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mmt-traveller-brief-facts article {
  display: grid;
  gap: 5px;
  align-content: center;
  min-height: 86px;
  border: 1px solid #dce7f3;
  border-radius: 14px;
  padding: 12px;
  background: #ffffff;
}

.mmt-traveller-brief-facts b {
  overflow: hidden;
  color: #173256;
  font-size: 0.95rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-form-status {
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 14px;
  border: 1px solid #bfe9d9;
  border-radius: 8px;
  color: #075c42;
  background: #f0fbf6;
}

.mmt-form-status span {
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-form-status strong {
  color: #075c42;
  font-size: 1rem;
}

.mmt-checkout-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
  gap: 10px;
  padding: 0 24px;
}

.mmt-checkout-stages.flight {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mmt-checkout-stages span {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  padding: 0 14px;
  color: #40516a;
  background: #f8fbff;
  font-weight: 900;
}

.mmt-checkout-stages span:first-child,
.mmt-checkout-stages span:has(+ span) {
  box-shadow: 0 10px 22px rgba(13, 28, 48, 0.04);
}

.mmt-checkout-stages span:first-child {
  border-color: #cde1ff;
  background: #eef6ff;
}

.mmt-checkout-stages b {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: 0.82rem;
}

.mmt-form-head h2,
.mmt-review-hero h2,
.mmt-confirmation-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.mmt-form-head p,
.mmt-review-hero p,
.mmt-review-card p,
.mmt-confirmation-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.mmt-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 24px;
}

.mmt-form-section {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.mmt-form-section legend {
  margin-left: 24px;
  padding: 0 10px;
  color: #102746;
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-form-card .mmt-form-section:nth-of-type(1) {
  border-top: 0;
}

.mmt-form-grid-compact {
  padding: 0;
  margin-top: 14px;
}

.mmt-form-grid .full-line {
  grid-column: 1 / -1;
}

.mmt-traveller-note {
  border: 1px solid #cce1ff;
  border-radius: 8px;
  padding: 12px 14px;
  color: #134ea3;
  background: #eef6ff;
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: none;
}

.mmt-age-guidance {
  border-color: #c7f0df;
  color: #086149;
  background: #f1fcf7;
}

.mmt-flight-checkout-panel {
  display: grid;
  gap: 18px;
  margin: 0 24px;
  padding: 20px;
  border: 1px solid #d8e7ff;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f5f9ff 68%, #fff8e8);
  box-shadow: 0 16px 34px rgba(15, 111, 255, 0.09);
}

.mmt-flight-checkout-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: 18px;
  align-items: stretch;
}

.mmt-flight-checkout-top h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.08;
}

.mmt-flight-checkout-top p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 850;
}

.mmt-flight-selected-plan {
  display: grid;
  gap: 5px;
  align-content: center;
  border: 1px solid #e6c674;
  border-radius: 8px;
  padding: 15px;
  color: var(--ink);
  background: #fff9ea;
}

.mmt-flight-selected-plan span,
.mmt-flight-checkout-facts span,
.mmt-flight-addon-card span {
  color: #7b6225;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mmt-flight-selected-plan strong {
  color: var(--brand);
  font-size: 1.22rem;
  font-weight: 950;
}

.mmt-flight-selected-plan small,
.mmt-flight-checkout-facts small,
.mmt-flight-addon-card small {
  color: var(--muted);
  font-weight: 800;
}

.mmt-flight-checkout-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mmt-flight-checkout-facts article {
  display: grid;
  gap: 5px;
  border: 1px solid #dce7f3;
  border-radius: 8px;
  padding: 13px;
  background: #fff;
}

.mmt-flight-checkout-facts strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 950;
}

.mmt-flight-plan-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmt-flight-plan-benefits li {
  border: 1px solid #cce1ff;
  border-radius: 999px;
  padding: 8px 12px;
  color: #134ea3;
  background: #eef6ff;
  font-weight: 900;
}

.mmt-hotel-checkout-panel {
  border-color: #e8d39e;
  background: linear-gradient(135deg, #ffffff, #f7fbff 58%, #fff8e8);
  box-shadow: 0 16px 34px rgba(201, 154, 63, 0.12);
}

.mmt-hotel-selected-plan {
  border-color: #d9b76a;
  background: #fffaf0;
}

.mmt-hotel-checkout-facts article {
  border-color: #e5d6ad;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mmt-hotel-service-section {
  border-top-color: #e5d6ad;
}

.mmt-passenger-row.hotel-guest {
  grid-template-columns: minmax(180px, 0.95fr) minmax(220px, 1.2fr) minmax(120px, 0.6fr);
  border-color: #d8e7ff;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.mmt-passenger-row.hotel-guest > strong {
  border-color: #e8d39e;
  background: #fffaf0;
}

.mmt-flight-service-section {
  border-top-color: #d8e7ff;
}

.mmt-flight-mix-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr)) minmax(180px, 1.2fr);
  gap: 12px;
  align-items: end;
  border: 1px solid #d8e7ff;
  border-radius: 8px;
  padding: 14px;
  background: #f8fbff;
}

.mmt-flight-mix-controls span {
  color: var(--muted);
  font-weight: 850;
}

.mmt-flight-addon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mmt-flight-addon-card {
  position: relative;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px 10px !important;
  align-items: start;
  min-height: 128px;
  border: 1px solid #d8e7ff;
  border-radius: 8px;
  padding: 14px;
  color: var(--ink) !important;
  background: #ffffff;
  text-transform: none !important;
  box-shadow: 0 10px 24px rgba(15, 111, 255, 0.06);
}

.mmt-flight-addon-card:has(input:checked) {
  border-color: var(--brand);
  background: #eef6ff;
}

.mmt-flight-addon-card input {
  width: 20px !important;
  min-height: 20px !important;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.mmt-flight-addon-card span,
.mmt-flight-addon-card strong,
.mmt-flight-addon-card small {
  grid-column: 2;
}

.mmt-flight-addon-card strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

[data-international-field][hidden] {
  display: none !important;
}

.mmt-additional-travellers {
  display: grid;
  gap: 12px;
}

.mmt-passenger-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.75fr) minmax(180px, 1fr) minmax(150px, 0.8fr);
  gap: 12px;
  border: 1px solid #dce7f3;
  border-radius: 16px;
  padding: 16px;
  background:
    linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 14px 30px rgba(13, 28, 48, 0.06);
}

.mmt-passenger-row.international {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mmt-passenger-row > strong {
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid #d8e1ee;
  border-radius: 14px;
  padding: 12px;
  color: var(--ink);
  background: #f3f8ff;
  font-size: 1rem;
}

.mmt-passenger-row small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.mmt-passenger-row em {
  color: #586a82;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
}

.mmt-passenger-type {
  width: fit-content;
  border: 1px solid #cce1ff;
  border-radius: 999px;
  padding: 4px 9px;
  color: #134ea3 !important;
  background: #eef6ff;
  font-size: 0.72rem !important;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-passenger-type.child {
  border-color: #c7f0df;
  color: #086149 !important;
  background: #f1fcf7;
}

.mmt-passenger-type.infant {
  border-color: #ffd7c5;
  color: #9d3e17 !important;
  background: #fff4ee;
}

.mmt-business-billing-section {
  border-top-color: #c7f0df;
  background: linear-gradient(180deg, #f8fffc, #ffffff);
}

.mmt-business-billing-section[hidden],
.mmt-b2b-addon[hidden] {
  display: none !important;
}

.mmt-form-grid label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mmt-form-grid input,
.mmt-form-grid select,
.mmt-form-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 800;
}

.mmt-form-grid input,
.mmt-form-grid select {
  min-height: 50px;
  padding: 0 13px;
}

.mmt-form-grid textarea {
  min-height: 112px;
  padding: 13px;
  resize: vertical;
}

.mmt-inline-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  min-height: auto;
  border: 1px solid #c7f0df;
  border-radius: 14px;
  padding: 13px;
  color: #086149 !important;
  background: #f1fcf7;
  text-transform: none !important;
  line-height: 1.45;
}

.mmt-inline-check input {
  width: 18px !important;
  min-height: 18px !important;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: #0f6fff;
}

.mmt-form-grid input:focus,
.mmt-form-grid select:focus,
.mmt-form-grid textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(15, 111, 255, 0.12);
  outline: 0;
}

.mmt-form-band {
  margin: 0 24px;
  padding: 18px;
  border: 1px solid #cce1ff;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #f7fbff, #eef6ff);
  box-shadow: 0 14px 30px rgba(15, 111, 255, 0.08);
}

.mmt-form-band > div:first-child {
  display: grid;
  gap: 4px;
}

.mmt-form-band strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.mmt-form-band span {
  color: var(--muted);
  font-weight: 750;
}

.mmt-document-upload {
  margin: 0 24px;
  border: 1px dashed #c7d8ee;
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.mmt-document-upload label {
  display: grid;
  gap: 9px;
  color: #102746;
  font-weight: 950;
}

.mmt-document-upload input {
  width: 100%;
  border: 1px solid #d8e1ee;
  border-radius: 12px;
  padding: 12px;
  background: #ffffff;
}

.mmt-document-upload p {
  margin: 10px 0 0;
  color: #647287;
  font-weight: 800;
}

.mmt-customer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px 24px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mmt-customer-actions label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 850;
  text-transform: none;
}

.mmt-customer-actions input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.mmt-review-main {
  display: grid;
  gap: 14px;
}

.mmt-review-hero,
.mmt-review-card,
.mmt-review-support,
.mmt-confirmation-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 31, 54, 0.08);
}

.mmt-review-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 24px;
  border-color: #cce1ff;
  background:
    linear-gradient(135deg, rgba(238, 246, 255, 0.96), rgba(255, 255, 255, 0.96)),
    linear-gradient(90deg, #0f6fff, #00a5d8);
}

.mmt-review-confidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mmt-review-confidence article {
  display: grid;
  gap: 6px;
  min-height: 118px;
  border: 1px solid #d7e8fb;
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 31, 54, 0.07);
}

.mmt-review-confidence span,
.mmt-review-next-panel b {
  color: #b88927;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-review-confidence strong {
  color: #143d70;
  font-weight: 950;
}

.mmt-review-confidence p {
  color: #5f6f87;
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.36;
}

.mmt-review-card {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 22px;
}

.mmt-review-card strong {
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.12;
}

.mmt-review-card #customerReview {
  color: var(--ink);
  font-weight: 800;
}

.mmt-review-card #customerReview p {
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.mmt-review-card-wide {
  gap: 12px;
}

.mmt-review-edit-link {
  position: absolute;
  top: 18px;
  right: 20px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfe2f8;
  border-radius: 8px;
  padding: 0 12px;
  color: #0b67d8;
  background: #f4f9ff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 950;
}

.mmt-review-edit-link:hover {
  border-color: #0f6fff;
  background: #edf6ff;
}

.mmt-review-booking-brief {
  grid-template-columns: minmax(250px, 0.95fr) minmax(220px, 1fr) repeat(4, minmax(112px, 0.62fr));
  align-items: stretch;
}

.mmt-review-booking-brief .mmt-review-trip-visual {
  min-height: 150px;
  align-content: end;
  border: 0;
  border-radius: 8px;
  padding: 18px;
  color: #ffffff;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 -90px 70px rgba(10, 43, 88, 0.48);
  overflow: hidden;
}

.mmt-review-trip-visual span {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.mmt-review-trip-visual strong {
  color: #ffffff;
  font-size: 1.5rem;
  text-shadow: 0 8px 20px rgba(10, 43, 88, 0.32);
}

.mmt-review-customer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(120px, 0.55fr));
  gap: 10px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #d7e8fb;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f5f9ff);
}

.mmt-review-customer-hero > div,
.mmt-review-customer-hero article {
  display: grid;
  gap: 4px;
  min-height: 82px;
  align-content: center;
  border: 1px solid #dfeaf7;
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
}

.mmt-review-customer-hero span,
.mmt-review-customer-hero small,
.mmt-review-passenger-manifest span,
.mmt-review-checklist span {
  color: #b88927;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-review-customer-hero p {
  margin: 0;
  color: #617086;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.mmt-review-passenger-manifest,
.mmt-review-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.mmt-review-passenger-manifest article,
.mmt-review-checklist article {
  display: grid;
  gap: 6px;
  min-height: 112px;
  border: 1px solid #d7e8fb;
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 31, 54, 0.06);
}

.mmt-review-passenger-manifest strong,
.mmt-review-checklist strong {
  color: #143d70;
  font-size: 1rem;
}

.mmt-review-passenger-manifest p,
.mmt-review-checklist p {
  margin: 0;
  color: #647287;
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1.38;
}

.mmt-review-flight-preferences,
.mmt-review-hotel-preferences,
.mmt-review-cab-preferences,
.mmt-review-holiday-preferences,
.mmt-review-visa-preferences {
  display: grid;
  gap: 12px;
  margin: 12px 0;
  border: 1px solid #d7e8fb;
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #ffffff, #f6fbff);
  box-shadow: 0 12px 28px rgba(16, 31, 54, 0.06);
}

.mmt-review-flight-preferences-head,
.mmt-review-hotel-preferences-head,
.mmt-review-cab-preferences-head,
.mmt-review-holiday-preferences-head,
.mmt-review-visa-preferences-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #e3edf8;
  padding-bottom: 10px;
}

.mmt-review-flight-preferences-head span,
.mmt-review-flight-preference-grid span,
.mmt-review-flight-note span,
.mmt-review-hotel-preferences-head span,
.mmt-review-hotel-preference-grid span,
.mmt-review-hotel-note span,
.mmt-review-cab-preferences-head span,
.mmt-review-cab-preference-grid span,
.mmt-review-cab-note span,
.mmt-review-holiday-preferences-head span,
.mmt-review-holiday-preference-grid span,
.mmt-review-holiday-note span,
.mmt-review-visa-preferences-head span,
.mmt-review-visa-preference-grid span,
.mmt-review-visa-note span {
  display: block;
  color: #b88927;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mmt-review-flight-preferences-head strong,
.mmt-review-hotel-preferences-head strong,
.mmt-review-cab-preferences-head strong,
.mmt-review-holiday-preferences-head strong,
.mmt-review-visa-preferences-head strong {
  display: block;
  margin-top: 4px;
  color: #0b2a55;
  font-size: 1rem;
  line-height: 1.2;
}

.mmt-review-flight-preferences-head p,
.mmt-review-flight-note p,
.mmt-review-hotel-preferences-head p,
.mmt-review-hotel-note p,
.mmt-review-cab-preferences-head p,
.mmt-review-cab-note p,
.mmt-review-holiday-preferences-head p,
.mmt-review-holiday-note p,
.mmt-review-visa-preferences-head p,
.mmt-review-visa-note p {
  margin: 0;
  color: #647287;
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.4;
}

.mmt-review-flight-preference-grid,
.mmt-review-hotel-preference-grid,
.mmt-review-cab-preference-grid,
.mmt-review-holiday-preference-grid,
.mmt-review-visa-preference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.mmt-review-flight-preference-grid article,
.mmt-review-hotel-preference-grid article,
.mmt-review-cab-preference-grid article,
.mmt-review-holiday-preference-grid article,
.mmt-review-visa-preference-grid article {
  display: grid;
  gap: 5px;
  min-height: 76px;
  border: 1px solid #dfeaf7;
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
}

.mmt-review-flight-preference-grid strong,
.mmt-review-hotel-preference-grid strong,
.mmt-review-cab-preference-grid strong,
.mmt-review-holiday-preference-grid strong,
.mmt-review-visa-preference-grid strong {
  color: #123763;
  font-size: 0.92rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.mmt-review-flight-note,
.mmt-review-hotel-note,
.mmt-review-cab-note,
.mmt-review-holiday-note,
.mmt-review-visa-note {
  border: 1px solid #f0d9a3;
  border-radius: 8px;
  padding: 12px;
  background: #fff9ec;
}

.mmt-review-visa-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid #d7e8fb;
  border-radius: 8px;
  background: #ffffff;
}

.mmt-review-visa-checklist span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid #d7e8fb;
  border-radius: 999px;
  padding: 7px 12px;
  color: #0b5fc7;
  background: #eef6ff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
}

.mmt-review-facts {
  display: grid;
  gap: 8px;
  margin: 0;
}

.mmt-review-facts div {
  display: grid;
  grid-template-columns: minmax(130px, 0.36fr) minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.mmt-review-facts div:last-child {
  border-bottom: 0;
}

.mmt-review-facts dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-review-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.mmt-review-note {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 13px;
  border: 1px solid #cce1ff;
  border-radius: 8px;
  background: #f8fbff;
}

.mmt-review-note span {
  color: #134ea3;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-review-note p {
  margin: 0;
}

.mmt-review-next-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mmt-review-next-panel article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid #dbe8f8;
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.mmt-review-next-panel b {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #163966;
  background: #fff8e8;
}

.mmt-review-next-panel strong {
  color: #163966;
  font-weight: 950;
}

.mmt-review-next-panel p {
  margin: 4px 0 0;
  color: #60708a;
  font-size: 0.86rem;
  font-weight: 780;
  line-height: 1.4;
}

.mmt-review-fare-grid,
.mmt-review-policy-grid,
.mmt-confirmation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mmt-review-fare-grid article,
.mmt-confirmation-grid article {
  display: grid;
  gap: 6px;
  min-height: 112px;
  border: 1px solid #dce7f3;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
}

.mmt-review-fare-grid span,
.mmt-review-policy-grid span,
.mmt-confirmation-grid span,
.mmt-confirmation-next article > span {
  color: #ff5b2e;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-review-fare-grid strong,
.mmt-review-policy-grid strong,
.mmt-confirmation-grid strong,
.mmt-confirmation-next strong {
  color: #163966;
  font-weight: 950;
  line-height: 1.25;
}

.mmt-review-fare-grid p,
.mmt-confirmation-grid p,
.mmt-confirmation-next p {
  margin: 0;
  color: #647287;
  font-size: 0.86rem;
  font-weight: 780;
  line-height: 1.42;
}

.mmt-review-policy-grid a {
  display: grid;
  gap: 8px;
  min-height: 104px;
  border: 1px solid #cfe2f8;
  border-radius: 14px;
  padding: 14px;
  background: #f8fbff;
  text-decoration: none;
}

.mmt-review-policy-grid a:hover {
  border-color: #0f6fff;
  background: #eef6ff;
}

#reviewOfficeSupport {
  display: grid;
}

#reviewOfficeSupport .mmt-office-support-card,
#confirmationOfficeSupport .mmt-office-support-card {
  box-shadow: 0 16px 42px rgba(16, 31, 54, 0.08);
}

.mmt-review-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 14px;
  align-items: center;
  padding: 18px 20px;
  border-color: #bfe9d9;
  background: #f0fbf6;
}

.mmt-review-support strong {
  color: #116149;
}

.mmt-review-support span {
  color: #45615a;
  font-weight: 750;
}

.mmt-review-support a {
  grid-row: span 2;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: #159467;
  text-decoration: none;
  font-weight: 900;
}

.mmt-payment-box {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
  border-color: #cfe2f8;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 154, 63, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 44px rgba(16, 31, 54, 0.1);
}

.mmt-payment-total {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.mmt-payment-total b {
  color: var(--ink);
  font-size: 1.8rem;
}

.mmt-payment-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #ffd8a8;
  border-radius: 8px;
  color: #8a4b12;
  background: #fff8ed;
  font-size: 0.92rem;
  font-weight: 800;
}

.mmt-payment-methods {
  display: grid;
  gap: 10px;
  border: 1px solid #d7e7fb;
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.mmt-payment-methods > span,
.mmt-confirmation-payment > span {
  color: #b88927;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mmt-payment-methods label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 10px;
  align-items: center;
  min-height: 54px;
  border: 1px solid #dbe8f6;
  border-radius: 14px;
  padding: 10px 12px;
  color: #1e3351;
  background: #ffffff;
  cursor: pointer;
}

.mmt-payment-methods input {
  grid-row: span 2;
  width: 18px;
  height: 18px;
  accent-color: #0f6fff;
}

.mmt-payment-methods b {
  color: #143d70;
  font-weight: 950;
}

.mmt-payment-methods small {
  color: #687991;
  font-weight: 760;
  line-height: 1.35;
}

.mmt-payment-methods label:has(input:checked) {
  border-color: #0f6fff;
  background: #eef6ff;
  box-shadow: inset 0 0 0 1px rgba(15, 111, 255, 0.12);
}

.mmt-payment-box > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfe2f8;
  border-radius: 8px;
  color: #0b5fc4;
  background: #ffffff;
  text-decoration: none;
  font-weight: 950;
}

.mmt-confirmation-panel {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: clamp(22px, 4vw, 34px);
}

.mmt-confirmation-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.mmt-confirmation-badge {
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #116149;
  background: #e7f8f1;
  font-weight: 950;
}

.mmt-confirmation-status {
  width: fit-content;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid #cce1ff;
  border-radius: 8px;
  background: #f7fbff;
  overflow-wrap: anywhere;
}

.mmt-confirmation-snapshot {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 14px;
  border: 1px solid #d7e7fb;
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.mmt-confirmation-visual {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 8px;
  border-radius: 8px;
  padding: 18px;
  color: #ffffff;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 -100px 76px rgba(10, 43, 88, 0.52);
}

.mmt-confirmation-visual span {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-confirmation-visual strong {
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 950;
}

.mmt-confirmation-snapshot-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.mmt-confirmation-snapshot-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.02;
}

.mmt-confirmation-snapshot-copy p {
  margin: 0;
  color: #5f6f87;
  font-weight: 800;
}

.mmt-confirmation-snapshot-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.mmt-confirmation-snapshot-copy dl div {
  border: 1px solid #dfeaf7;
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
}

.mmt-confirmation-snapshot-copy dt {
  color: #7a8798;
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-confirmation-snapshot-copy dd {
  margin: 5px 0 0;
  color: #143d70;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.mmt-confirmation-payment {
  display: grid;
  gap: 12px;
  border: 1px solid #d7e7fb;
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.mmt-confirmation-payment > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mmt-confirmation-payment article {
  display: grid;
  gap: 5px;
  min-height: 84px;
  border: 1px solid #e1eaf5;
  border-radius: 14px;
  padding: 12px;
  background: #ffffff;
}

.mmt-confirmation-payment small {
  color: #697990;
  font-weight: 850;
  text-transform: uppercase;
}

.mmt-confirmation-payment strong {
  color: #15385f;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.mmt-confirmation-grid {
  margin-top: 4px;
}

.mmt-confirmation-next {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.mmt-confirmation-next article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid #dce7f3;
  border-radius: 14px;
  padding: 14px;
  background: #ffffff;
}

.mmt-confirmation-next article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f6fff, #074fae);
}

.mmt-confirmation-copy h2,
.mmt-confirmation-copy p,
.mmt-confirmation-panel .plan-summary,
.mmt-confirmation-panel .plan-summary strong,
.mmt-confirmation-panel .plan-summary p,
.mmt-confirmation-panel .plan-summary span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.mmt-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.mmt-confirmation-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 900;
}

.mmt-confirmation-actions a:not(.search-button) {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.mmt-status-timeline {
  display: grid;
  gap: 12px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.mmt-status-timeline li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.mmt-status-timeline li span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid #d8e1ee;
  border-radius: 999px;
  color: #667085;
  background: #fff;
  font-weight: 950;
}

.mmt-status-timeline li.done span {
  border-color: #0b8f6d;
  color: #fff;
  background: #0b8f6d;
}

.mmt-status-timeline li.active span {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.mmt-status-timeline strong {
  display: block;
  color: var(--ink);
  font-weight: 950;
}

.mmt-status-timeline p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.pay-button:disabled,
.mmt-continue-button:disabled,
.mmt-result-price button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.review-stack {
  display: grid;
  gap: 16px;
}

.review-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.document-upload {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px dashed #b7c7d9;
  border-radius: 8px;
  background: #f8fbff;
}

.document-upload label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.document-upload input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.document-upload p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.document-preview,
.review-documents ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.document-preview li,
.review-documents li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
}

.document-preview small,
.review-documents small {
  color: var(--muted);
  font-weight: 750;
  white-space: nowrap;
}

.review-documents {
  margin-top: 16px;
}

.confirmation-panel {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: start;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 31, 54, 0.08);
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 1 / -1;
}

.confirmation-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
}

.flow-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(254, 214, 104, 0.18), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(20, 184, 166, 0.14), transparent 24%),
    linear-gradient(180deg, #f3f7fb 0%, #eef4f8 48%, #f7f9fc 100%);
}

.flow-topbar .header-main {
  grid-template-columns: minmax(240px, 300px) minmax(360px, 1fr) auto auto;
  min-height: 70px;
  border-color: rgba(211, 224, 237, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(248, 252, 255, 0.92)),
    linear-gradient(90deg, rgba(201, 154, 63, 0.08), rgba(15, 159, 149, 0.08));
  box-shadow: 0 24px 64px rgba(28, 49, 78, 0.14);
}

.flow-topbar .brand-logo-image {
  max-width: 260px;
  height: 58px;
  object-fit: contain;
}

.flow-topbar .topnav {
  gap: 24px;
}

.flow-topbar .account-actions {
  min-width: 0;
}

.flow-topbar .brand {
  font-weight: 950;
}

.flow-topbar .header-search {
  min-height: 52px;
  border-color: #cfdeef;
  background: #f8fbff;
}

.flow-travel-menu {
  min-height: 74px;
  padding: 7px 9px;
  border-color: rgba(211, 224, 237, 0.94);
  background: rgba(255, 255, 255, 0.98);
  position: relative;
  z-index: 2;
  justify-content: space-between;
  scrollbar-width: thin;
}

.flow-page[data-flow-page="results"] .flow-topbar .header-main {
  display: none;
}

.flow-page[data-flow-page="results"] .flow-travel-menu {
  margin-top: 0;
  min-height: 74px;
  box-shadow: 0 18px 42px rgba(28, 49, 78, 0.12);
}

.flow-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
  width: min(1420px, calc(100% - 32px));
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(211, 224, 237, 0.94);
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(180deg, #ffffff, #f7fbff),
    linear-gradient(120deg, rgba(201, 154, 63, 0.08), rgba(15, 159, 149, 0.08));
  box-shadow: 0 24px 62px rgba(28, 49, 78, 0.11);
}

.flow-footer-brand,
.flow-footer-assurance,
.flow-footer-links,
.flow-footer-bottom {
  padding: 28px;
}

.flow-footer-brand {
  display: grid;
  gap: 14px;
  align-content: start;
  border-right: 1px solid #e1eaf3;
  background: linear-gradient(135deg, #f7fbff, #fff7e8);
}

.flow-footer-brand p {
  margin: 0;
  color: #607087;
  font-weight: 760;
  line-height: 1.55;
}

.flow-footer-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.flow-footer-assurance span {
  display: grid;
  gap: 6px;
  min-height: 84px;
  padding: 15px;
  border: 1px solid #dfe8f2;
  border-radius: 16px;
  color: #607087;
  background: #ffffff;
  font-weight: 780;
}

.flow-footer-assurance strong,
.flow-footer-links strong {
  color: #223650;
  font-weight: 950;
}

.flow-footer-links {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  border-top: 1px solid #e1eaf3;
}

.flow-footer-links div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.flow-footer-links strong {
  font-size: 0.84rem;
  text-transform: uppercase;
}

.flow-footer-links a {
  width: fit-content;
  color: #607087;
  font-weight: 780;
  text-decoration: none;
}

.flow-footer-links a:hover {
  color: var(--brand-dark);
}

.flow-footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #e1eaf3;
  color: #607087;
  font-weight: 780;
}

.flow-travel-menu a {
  min-width: 92px;
  min-height: 58px;
  gap: 7px;
  border-radius: 12px;
  color: #4b596e;
}

.flow-travel-menu a svg {
  width: 22px;
  height: 22px;
}

.flow-travel-menu a.active,
.flow-travel-menu a:hover {
  color: #074fae;
  background: linear-gradient(180deg, #eef6ff, #e6f0ff);
}

.mmt-flow-premium-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(16, 111, 255, 0.18);
  border-radius: 14px;
  color: #102038;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 255, 0.94)),
    linear-gradient(90deg, rgba(255, 122, 54, 0.12), rgba(20, 184, 166, 0.12));
  box-shadow: 0 18px 44px rgba(16, 31, 54, 0.1);
}

.mmt-flow-premium-status div {
  display: grid;
  gap: 5px;
}

.mmt-flow-premium-status span,
.mmt-result-intro .eyebrow,
.mmt-summary-kicker {
  color: #ff5b2e;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mmt-flow-premium-status strong {
  color: #122033;
  font-size: clamp(1rem, 1.8vw, 1.24rem);
}

.mmt-flow-premium-status p {
  max-width: 760px;
  margin: 0;
  color: #58677a;
  font-weight: 750;
}

.mmt-flow-premium-status a,
.mmt-policy-strip a,
.mmt-summary-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.mmt-flow-premium-status a {
  flex: 0 0 auto;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #0f6fff, #074fae);
  box-shadow: 0 12px 24px rgba(15, 111, 255, 0.22);
}

.mmt-flow-hero-pro {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(7, 79, 174, 0.9), rgba(15, 111, 255, 0.72)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=84") center/cover;
  box-shadow: 0 28px 80px rgba(13, 28, 48, 0.22);
}

.mmt-flow-hero-pro h1,
.mmt-flow-hero-pro .eyebrow {
  color: #fff;
}

.mmt-flow-hero-copy {
  max-width: 780px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.mmt-flow-hero-pro .hero-helpline {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.mmt-result-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 2px 0;
}

.mmt-result-intro h2 {
  max-width: 720px;
  margin: 4px 0 0;
  color: #24364f;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.12;
}

.mmt-result-trust,
.mmt-result-assurance,
.mmt-summary-included,
.mmt-policy-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mmt-result-trust span,
.mmt-result-assurance span,
.mmt-summary-included span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.8rem;
  font-weight: 900;
}

.mmt-result-trust span {
  color: #075c42;
  background: #dcfce7;
}

.mmt-result-search {
  top: 12px;
  border-color: #d7e2ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 62px rgba(13, 28, 48, 0.15);
}

.mmt-flow-results .mmt-result-search {
  position: relative;
  top: auto;
  z-index: 1;
}

.mmt-result-search label {
  min-height: 94px;
  padding: 16px 20px;
  color: #6b7484;
}

.mmt-result-search input,
.mmt-result-search select {
  font-size: 1.12rem;
}

.mmt-result-search .search-button {
  min-width: 178px;
  margin: 14px;
  background: linear-gradient(135deg, #c99a3f, #9d721f);
  box-shadow: 0 14px 28px rgba(201, 154, 63, 0.26);
}

.mmt-results-layout {
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 22px;
}

.mmt-filter-panel {
  top: 128px;
  border: 1px solid rgba(215, 226, 239, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 58px rgba(13, 28, 48, 0.11);
}

.mmt-filter-head strong {
  font-size: 1.22rem;
}

.mmt-filter-head button {
  border-color: #cfe0f3;
  color: #074fae;
  background: #f3f8ff;
}

.mmt-filter-group > span {
  color: #18253a;
}

.mmt-filter-help {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #cdeee3;
  border-radius: 14px;
  color: #075c42;
  background: linear-gradient(180deg, #f1fcf7, #ffffff);
}

.mmt-filter-help p {
  margin: 0;
  color: #607086;
  font-size: 0.9rem;
  font-weight: 750;
}

.mmt-filter-help a {
  color: #074fae;
  font-weight: 950;
  text-decoration: none;
}

.custom-result-note {
  border-color: #bdd8ff;
  border-radius: 14px;
  color: #0f4c9a;
  background: linear-gradient(90deg, #edf6ff, #f8fbff);
}

.live-results {
  gap: 18px;
}

.mmt-result-card {
  grid-template-columns: 260px minmax(0, 1fr) 238px;
  gap: 0;
  min-height: 246px;
  border-color: rgba(212, 224, 238, 0.94);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 52px rgba(13, 28, 48, 0.11);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mmt-result-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 111, 255, 0.34);
  box-shadow: 0 26px 70px rgba(13, 28, 48, 0.16);
}

.mmt-result-photo,
.mmt-result-photo img {
  min-height: 246px;
}

.mmt-result-photo span {
  left: 14px;
  bottom: 14px;
  background: rgba(7, 79, 174, 0.82);
  backdrop-filter: blur(10px);
}

.mmt-result-main {
  gap: 12px;
  padding: 22px;
}

.mmt-result-main strong {
  max-width: 780px;
}

.mmt-result-kicker span {
  color: #074fae;
  background: #eaf3ff;
}

.mmt-result-kicker small {
  color: #075c42;
  background: #e3fff2;
}

.mmt-result-assurance {
  margin-top: 2px;
}

.mmt-result-assurance span {
  border: 1px solid #d9e5f3;
  color: #40516a;
  background: #f8fbff;
}

.mmt-result-price {
  justify-items: stretch;
  gap: 10px;
  padding: 22px;
  border-left: 1px solid #edf1f6;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  text-align: left;
}

.mmt-result-price small,
.mmt-result-price span {
  color: #66758a;
}

.mmt-result-price b {
  color: #24364f;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
}

.mmt-result-price span {
  max-width: none;
  line-height: 1.35;
}

.mmt-result-price button {
  width: 100%;
  margin-top: 2px;
}

.mmt-result-price em {
  color: #6b7484;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  text-align: center;
}

.mmt-empty-card {
  min-height: 180px;
  padding: 28px;
}

.mmt-detail-layout {
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: 24px;
}

.mmt-selected-detail,
.mmt-fare-summary {
  border-color: rgba(212, 224, 238, 0.94);
  border-radius: 18px;
  box-shadow: 0 22px 62px rgba(13, 28, 48, 0.12);
}

.mmt-detail-visual {
  align-items: end;
  min-height: 340px;
  border-radius: 18px 18px 0 0;
}

.mmt-detail-visual > div {
  display: grid;
  justify-items: start;
  gap: 5px;
  width: fit-content;
  max-width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.mmt-detail-visual small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.mmt-detail-visual strong {
  color: #fff;
  font-size: 1.38rem;
  font-weight: 950;
}

.mmt-detail-content {
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
}

.mmt-detail-points span {
  min-height: 58px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.mmt-detail-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 10px;
}

.mmt-detail-gallery img {
  width: 100%;
  min-height: 138px;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  background: #eaf3ff;
}

.mmt-detail-gallery img:first-child {
  min-height: 210px;
}

.mmt-detail-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 10px;
}

.mmt-detail-facts div {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid #d9e5f3;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.mmt-detail-facts span {
  color: #687386;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-detail-facts strong {
  color: #24364f;
  font-size: 1rem;
  line-height: 1.22;
}

.mmt-detail-section-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.mmt-detail-section-head h3 {
  margin: 0;
  color: #24364f;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.18;
}

.mmt-detail-section-head p {
  margin-top: 6px;
  color: #607086;
  font-weight: 760;
}

.mmt-detail-section-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 0 12px;
  color: #075c42;
  background: #e3fff2;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-detail-rate-card,
.mmt-detail-inclusions {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #d7e6f8;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.mmt-detail-rate-card .mmt-flight-fare-options,
.mmt-detail-rate-card .mmt-stay-rate-options {
  gap: 10px;
}

.mmt-detail-single-rate {
  display: grid;
  gap: 4px;
  border: 1px solid #d9e5f3;
  border-radius: 14px;
  padding: 14px;
  background: #ffffff;
}

.mmt-detail-single-rate span {
  color: #52627a;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-detail-single-rate strong {
  color: #163966;
  font-size: 1.18rem;
  font-weight: 950;
}

.mmt-detail-single-rate small {
  color: #687386;
  font-weight: 850;
}

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

.mmt-detail-inclusion-grid div {
  display: grid;
  gap: 7px;
  min-height: 128px;
  border: 1px solid #d9e5f3;
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
}

.mmt-detail-inclusion-grid strong {
  color: #163966;
  font-size: 0.98rem;
  font-weight: 950;
}

.mmt-detail-inclusion-grid p {
  color: #607086;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.45;
}

.mmt-detail-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid #cdeee3;
  border-radius: 18px;
  background: linear-gradient(135deg, #f1fcf7, #ffffff);
}

.mmt-detail-timeline div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mmt-detail-timeline span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #14b8a6, #0f6fff);
  font-size: 0.82rem;
  font-weight: 950;
}

.mmt-detail-timeline strong {
  min-width: 0;
  color: #075c42;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.2;
}

.mmt-service-detail-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #d7e6f8;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff, #ffffff);
}

.mmt-service-detail-panel h3 {
  margin: 0;
  color: #24364f;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.mmt-service-detail-panel p {
  margin: 0;
  color: #607086;
  font-weight: 750;
}

.mmt-service-detail-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmt-service-detail-panel li {
  position: relative;
  padding-left: 15px;
  color: #40516a;
  font-weight: 800;
}

.mmt-service-detail-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0f6fff;
}

.mmt-detail-flight-line {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 0.75fr) 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #d9e5f3;
  border-radius: 14px;
  background: #fff;
}

.mmt-detail-flight-line span {
  display: grid;
  justify-items: center;
  color: #687386;
  font-weight: 900;
}

.mmt-detail-flight-line span::after {
  content: "";
  width: 100%;
  height: 2px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f6fff, #14b8a6);
}

.mmt-detail-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mmt-detail-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 11px;
  color: #075c42;
  background: #e3fff2;
  font-size: 0.82rem;
  font-weight: 900;
}

.mmt-service-form-section {
  border-color: #cfe0f3;
  background: linear-gradient(135deg, #f7fbff, #ffffff);
}

.mmt-service-form-section legend {
  color: #074fae;
}

.mmt-detail-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mmt-detail-note {
  border-radius: 14px;
  background: #f8fbff;
}

.mmt-detail-policy-card {
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 1px solid #f2d3c6;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff7f2, #ffffff);
}

.mmt-detail-policy-card strong {
  color: #18253a;
}

.mmt-detail-policy-card p {
  color: #5d6d82;
}

.mmt-detail-policy-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mmt-detail-policy-card a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  color: #074fae;
  background: #edf5ff;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.mmt-fare-summary {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mmt-fare-summary > strong {
  color: #24364f;
  font-size: 1.28rem;
  line-height: 1.2;
}

.mmt-fare-summary > p {
  margin: 0;
  color: #627188;
  font-weight: 750;
}

.mmt-summary-status {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #cdeee3;
  border-radius: 14px;
  color: #075c42;
  background: #f1fcf7;
}

.mmt-summary-status span {
  color: #075c42;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-summary-status b {
  color: #075c42;
  font-size: 1rem;
}

.mmt-summary-included span {
  color: #40516a;
  background: #eef5ff;
}

.mmt-summary-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mmt-summary-actions a {
  border: 1px solid #d6e2f0;
  color: #074fae;
  background: #fff;
}

.mmt-summary-actions a:first-child {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0f6fff, #074fae);
}

.mmt-policy-strip {
  justify-content: center;
  width: min(920px, 100%);
  margin: 22px auto 0;
}

.mmt-policy-strip a {
  min-height: 38px;
  border: 1px solid #d6e2f0;
  padding: 0 14px;
  color: #40516a;
  background: rgba(255, 255, 255, 0.88);
}

.mmt-flow-detail .mmt-continue-button {
  min-height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a36, #ff5b2e);
}

.mmt-result-dashboard {
  display: grid;
  gap: 14px;
  border: 1px solid #d7e6f8;
  border-radius: 18px;
  padding: 18px;
  color: #24364f;
  background: linear-gradient(135deg, #ffffff, #f6fbff);
  box-shadow: 0 18px 46px rgba(13, 28, 48, 0.08);
}

.mmt-result-dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mmt-result-dashboard-head div {
  display: grid;
  gap: 5px;
}

.mmt-result-dashboard-head span,
.mmt-result-dashboard-stats span {
  color: #ff5b2e;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-result-dashboard-head strong {
  color: #24364f;
  font-size: clamp(1.2rem, 2vw, 1.58rem);
  line-height: 1.15;
}

.mmt-result-dashboard-head p {
  margin: 0;
  color: #687386;
  font-weight: 760;
}

.mmt-result-dashboard-head a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 0 14px;
  color: #074fae;
  background: #eaf3ff;
  font-size: 0.86rem;
  font-weight: 950;
  text-decoration: none;
}

.mmt-result-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mmt-result-dashboard-stats article {
  display: grid;
  gap: 5px;
  min-height: 112px;
  border: 1px solid #d9e5f3;
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
}

.mmt-result-dashboard-stats strong {
  overflow: hidden;
  color: #163966;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-result-dashboard-stats small {
  color: #687386;
  font-weight: 800;
  line-height: 1.35;
}

.mmt-result-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid #d8e5f2;
  border-radius: 16px;
  color: #24364f;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 46px rgba(13, 28, 48, 0.08);
}

.mmt-result-toolbar div:first-child {
  display: grid;
  gap: 3px;
}

.mmt-result-toolbar span,
.mmt-result-toolbar em {
  color: #ff5b2e;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-result-toolbar strong {
  color: #24364f;
  font-size: 1.18rem;
}

.mmt-result-toolbar p {
  grid-column: 1 / -1;
  margin: 0;
  color: #687386;
  font-weight: 750;
}

.mmt-result-sort-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.mmt-result-sort-tabs button {
  min-height: 34px;
  border: 1px solid #d6e2f0;
  border-radius: 999px;
  padding: 0 12px;
  color: #52627a;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.mmt-result-sort-tabs button.active {
  border-color: #0f6fff;
  color: #0f6fff;
  background: #eaf3ff;
}

.mmt-quick-filters {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mmt-quick-filters span {
  color: #687386;
  background: transparent;
}

.mmt-quick-filters button {
  min-height: 34px;
  border: 1px solid #d9e5f3;
  border-radius: 999px;
  padding: 0 12px;
  color: #52627a;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.mmt-quick-filters button.active {
  border-color: #14b8a6;
  color: #075c42;
  background: #e3fff2;
}

.mmt-load-more {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 18px;
  border: 1px dashed #b9d4f2;
  border-radius: 18px;
  background: #f8fbff;
}

.mmt-load-more button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f6fff, #074fae);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.mmt-load-more span {
  color: #687386;
  font-size: 0.86rem;
  font-weight: 850;
}

.mmt-stay-result {
  grid-template-columns: 292px minmax(0, 1fr) 248px;
}

.mmt-stay-rating {
  color: #fff;
  background: #159467;
}

.mmt-stay-rating.soft {
  color: #075c42;
  background: #dcfce7;
}

.mmt-stay-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mmt-stay-micro span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 10px;
  color: #52627a;
  background: #f1f6fb;
  font-size: 0.82rem;
  font-weight: 850;
}

.mmt-stay-micro span:first-child,
.mmt-stay-micro span:nth-child(2) {
  color: #074fae;
  background: #eaf3ff;
}

.mmt-stay-micro span:last-child {
  color: #075c42;
  background: #e3fff2;
}

.mmt-stay-subline {
  width: fit-content;
  max-width: 100%;
  border-left: 3px solid #14b8a6;
  padding: 8px 12px;
  border-radius: 0 12px 12px 0;
  color: #40516a;
  background: #f7fcfb;
  font-size: 0.92rem;
  font-weight: 850;
}

.mmt-stay-rate-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.mmt-stay-rate-options div {
  display: grid;
  gap: 3px;
  min-width: 0;
  border: 1px solid #d9e5f3;
  border-radius: 14px;
  padding: 10px 12px;
  color: #40516a;
  background: #ffffff;
}

.mmt-stay-rate-options div.active {
  border-color: #14b8a6;
  background: #f1fcf7;
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.13);
}

.mmt-stay-rate-options span {
  overflow: hidden;
  color: #52627a;
  font-size: 0.74rem;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.mmt-stay-rate-options strong {
  overflow: hidden;
  color: #163966;
  font-size: 1rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-stay-rate-options small {
  overflow: hidden;
  color: #687386;
  font-size: 0.75rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-flight-result {
  grid-template-columns: 188px minmax(0, 1fr) 240px;
}

.mmt-flight-airline {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 22px;
  border-right: 1px solid #edf1f6;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.mmt-flight-airline span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: #074fae;
  background: #eaf3ff;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-flight-airline strong {
  color: #24364f;
  font-size: 1.2rem;
  line-height: 1.15;
}

.mmt-flight-airline small {
  color: #687386;
  font-weight: 850;
}

.mmt-flight-route {
  display: grid;
  grid-template-columns: 0.9fr minmax(170px, 1.1fr) 0.9fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid #d9e5f3;
  border-radius: 16px;
  background: #f8fbff;
}

.mmt-flight-route div:not(.mmt-flight-line) {
  display: grid;
  gap: 4px;
}

.mmt-flight-route b {
  color: #24364f;
  font-size: clamp(1.22rem, 2.2vw, 1.82rem);
}

.mmt-flight-route span,
.mmt-flight-route small {
  color: #687386;
  font-weight: 850;
}

.mmt-flight-route div:not(.mmt-flight-line) span {
  color: #24364f;
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  font-weight: 950;
}

.mmt-flight-route div:not(.mmt-flight-line) small {
  color: #687386;
  font-size: 0.82rem;
}

.mmt-flight-line {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #687386;
  text-align: center;
}

.mmt-flight-line i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f6fff, #14b8a6);
}

.mmt-flight-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mmt-flight-micro span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid #d9e5f3;
  border-radius: 999px;
  padding: 0 11px;
  color: #40516a;
  background: #f8fbff;
  font-size: 0.82rem;
  font-weight: 900;
}

.mmt-flight-micro span:first-child,
.mmt-flight-micro span:nth-child(2) {
  color: #074fae;
  background: #eaf3ff;
}

.mmt-flight-fare-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.mmt-flight-fare-options div {
  display: grid;
  gap: 3px;
  min-width: 0;
  border: 1px solid #d9e5f3;
  border-radius: 14px;
  padding: 10px 12px;
  color: #40516a;
  background: #ffffff;
}

.mmt-flight-fare-options div.active {
  border-color: #0f6fff;
  background: #eaf3ff;
  box-shadow: 0 10px 24px rgba(15, 111, 255, 0.12);
}

.mmt-flight-fare-options span {
  color: #52627a;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-flight-fare-options strong {
  overflow: hidden;
  color: #163966;
  font-size: 1rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-flight-fare-options small {
  overflow: hidden;
  color: #687386;
  font-size: 0.75rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-service-result {
  grid-template-columns: 242px minmax(0, 1fr) 242px;
}

.mmt-service-result .mmt-result-photo {
  background: linear-gradient(135deg, #eaf3ff, #f7fbff);
}

.mmt-flow-results {
  width: min(1840px, calc(100% - 32px));
}

.mmt-results-main {
  padding-top: 246px;
}

.flow-page[data-flow-page="results"] .mmt-results-main {
  padding-top: 132px;
}

.mmt-results-main .mmt-flow-results {
  margin-top: 0;
}

.mmt-flow-results .mmt-result-intro {
  display: none;
}

.mmt-flow-results .mmt-result-search {
  position: sticky;
  top: 206px;
  z-index: 48;
  grid-template-columns: 1.25fr 0.85fr 0.75fr 0.75fr 178px;
  border-radius: 14px;
  border-width: 1px;
  box-shadow: 0 18px 44px rgba(13, 28, 48, 0.14);
}

.mmt-flow-results .mmt-result-search label {
  min-height: 74px;
  border-right: 1px solid #dfe5ed;
  padding: 10px 18px;
  text-transform: uppercase;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search {
  position: relative;
  top: auto;
  z-index: 3;
  margin-bottom: 18px;
}

.mmt-flow-results .mmt-result-search input,
.mmt-flow-results .mmt-result-search select {
  color: #12315f;
  font-size: 1.12rem;
}

.mmt-flow-results .mmt-result-search .search-button {
  min-width: 0;
  min-height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, #c99a3f, #9d721f);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.mmt-results-layout {
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.mmt-filter-panel {
  position: sticky;
  top: 296px;
  max-height: calc(100vh - 318px);
  overflow: auto;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.flow-page[data-flow-page="results"] .mmt-filter-panel {
  top: 194px;
  max-height: calc(100vh - 216px);
}

.mmt-filter-head,
.mmt-filter-card,
.mmt-filter-help {
  border: 1px solid #dde6f0;
  border-radius: 0;
  padding: 20px 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(13, 28, 48, 0.07);
}

.mmt-filter-head {
  margin-bottom: 10px;
}

.mmt-filter-card {
  margin-bottom: 2px;
}

.mmt-filter-panel div {
  border-top: 0;
}

.mmt-filter-card label {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 2px 14px;
  padding: 8px 0;
  color: #12315f;
}

.mmt-filter-card label > input[type="checkbox"] {
  grid-row: span 2;
  width: 28px;
  height: 28px;
}

.mmt-filter-card label b {
  color: #12315f;
  font-size: 1.02rem;
  font-weight: 900;
}

.mmt-filter-card label small {
  grid-column: 2 / -1;
  color: #647287;
  font-size: 0.84rem;
  font-weight: 760;
}

.mmt-filter-card label:has(input[type="number"]),
.mmt-filter-card label:has(select) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  color: #647287;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mmt-listing-summary {
  gap: 18px;
  border-radius: 0;
  border-color: #dce7f3;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(13, 28, 48, 0.1);
}

.mmt-listing-summary .mmt-result-dashboard-head {
  align-items: center;
  min-height: 78px;
  padding: 12px 24px 0;
}

.mmt-listing-summary .mmt-result-dashboard-head strong {
  color: #12315f;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
}

.mmt-listing-summary .mmt-result-dashboard-head p {
  color: #4f5d72;
}

.mmt-stay-listing-summary {
  min-height: auto;
}

.mmt-stay-listing-summary .mmt-result-dashboard-head {
  min-height: 88px;
  padding: 20px 26px;
}

.mmt-stay-listing-summary .mmt-result-dashboard-head > a {
  display: none;
}

.mmt-stay-listing-summary .mmt-supplier-live-strip,
.mmt-stay-listing-summary .mmt-stay-insights,
.mmt-stay-result-toolbar {
  display: none;
}

.mmt-results-column > .custom-result-note {
  display: none;
}

.mmt-fare-rail {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  min-height: 108px;
  border-top: 1px solid #e4ebf3;
  background: #ffffff;
}

.mmt-fare-rail > div {
  display: grid;
  grid-template-columns: repeat(7, minmax(128px, 1fr));
  overflow-x: auto;
}

.mmt-fare-rail button {
  border: 0;
  border-right: 1px solid #e4ebf3;
  color: #12315f;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
}

.mmt-fare-rail button:not(.mmt-rail-arrow) {
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 16px 10px;
  font-weight: 850;
  transition: background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.mmt-fare-rail button.active {
  color: #0f6fff;
  background: #edf6ff;
  box-shadow: inset 0 -5px 0 #0f6fff;
}

.mmt-fare-rail .mmt-date-option:hover,
.mmt-fare-rail .mmt-date-option:focus-visible {
  color: #074fae;
  background: #f1f8ff;
  box-shadow: inset 0 -4px 0 #7bc7ff;
  outline: none;
}

.mmt-fare-rail small {
  color: #11a45b;
  font-size: 1rem;
  font-weight: 950;
}

.mmt-rail-arrow {
  color: #0f6fff !important;
  font-size: 1.8rem !important;
  font-weight: 450 !important;
}

.mmt-stay-insights {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid #e4ebf3;
}

.mmt-stay-insights article {
  display: grid;
  gap: 5px;
  min-height: 108px;
  padding: 18px 22px;
  border-right: 1px solid #e4ebf3;
  background: #ffffff;
}

.mmt-stay-insights span {
  color: #ff5b2e;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-stay-insights strong {
  overflow: hidden;
  color: #12315f;
  font-size: 1.18rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-stay-insights small {
  color: #647287;
  font-weight: 760;
}

.mmt-result-toolbar {
  grid-template-columns: minmax(0, 1fr);
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.mmt-result-toolbar > div:first-child {
  display: none;
}

.mmt-result-toolbar p {
  margin: 6px 0 0;
  color: #12315f;
  font-size: 1.08rem;
  font-weight: 950;
}

.mmt-result-toolbar .mmt-quick-filters {
  display: flex;
  margin-top: 2px;
  padding: 10px 12px;
  border: 1px solid #dce7f3;
  border-radius: 8px;
  background: #ffffff;
}

.mmt-result-sort-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  justify-content: stretch;
}

.mmt-result-sort-tabs button {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  min-height: 92px;
  border-radius: 8px;
  padding: 16px;
  text-align: left;
  background: #f3f5f7;
}

.mmt-result-sort-tabs button::before {
  content: "";
  grid-row: span 3;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e0e6ee, #cfd6df);
}

.mmt-result-sort-tabs button.active {
  border-color: #d7e9ff;
  color: #12315f;
  background: #eaf4ff;
  box-shadow: inset 0 -5px 0 #0f6fff;
}

.mmt-result-sort-tabs button.active::before {
  background: linear-gradient(135deg, #0f6fff, #0aa0e8);
}

.mmt-result-sort-tabs button span,
.mmt-result-sort-tabs button strong,
.mmt-result-sort-tabs button small {
  grid-column: 2;
}

.mmt-result-sort-tabs button span {
  color: #12315f;
  font-size: 1.02rem;
  text-transform: uppercase;
}

.mmt-result-sort-tabs button strong {
  overflow: hidden;
  color: #12315f;
  font-size: 0.96rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-result-sort-tabs button small {
  color: #4f5d72;
  font-weight: 760;
}

.mmt-flight-listing-card {
  grid-template-columns: minmax(160px, 0.72fr) minmax(420px, 1.7fr) minmax(230px, 0.8fr);
  min-height: 246px;
  border-radius: 0;
  overflow: visible;
}

.mmt-flight-listing-card > * {
  min-width: 0;
}

.mmt-flight-promo,
.mmt-flight-coupon {
  grid-column: 1 / -1;
  min-height: 40px;
  padding: 10px 14px;
  color: #12315f;
  background: #fff0d1;
  font-weight: 900;
}

.mmt-flight-promo {
  border-bottom: 1px solid #f6dfac;
}

.mmt-flight-coupon {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #f6dfac;
  font-size: 0.9rem;
}

.mmt-flight-coupon span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #ff6b7a;
}

.mmt-flight-listing-card .mmt-flight-airline {
  justify-items: start;
  border-right: 0;
  background: #ffffff;
}

.mmt-flight-listing-card .mmt-flight-airline strong,
.mmt-flight-listing-card .mmt-flight-airline small {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.mmt-flight-airline button {
  min-height: 34px;
  border: 0;
  color: #0f6fff;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.mmt-flight-airline i {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid #d7e9ff;
  border-radius: 14px;
  color: #0f6fff;
  background: linear-gradient(135deg, #eaf4ff, #ffffff);
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0;
}

.mmt-flight-airline label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  color: #0f6fff;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 950;
}

.mmt-flight-airline label input {
  width: 17px;
  height: 17px;
}

.mmt-flight-listing-card .mmt-result-main {
  border-left: 1px solid #edf1f6;
  border-right: 1px solid #edf1f6;
}

.mmt-flight-listing-card .mmt-flight-route {
  grid-template-columns: minmax(120px, 0.85fr) minmax(130px, 0.7fr) minmax(120px, 0.85fr);
  gap: 12px;
}

.mmt-flight-listing-card .mmt-flight-route b {
  color: #12315f;
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
  overflow-wrap: anywhere;
}

.mmt-flight-listing-card .mmt-flight-route span {
  color: #12315f;
  font-weight: 850;
}

.mmt-flight-listing-card .mmt-flight-route small,
.mmt-flight-listing-card .mmt-flight-line small {
  color: #4f5d72;
}

.mmt-flight-listing-card .mmt-flight-micro,
.mmt-flight-listing-card .mmt-flight-fare-options,
.mmt-flight-listing-card .mmt-result-tags,
.mmt-flight-listing-card .mmt-result-assurance {
  display: none;
}

.mmt-flight-listing-card .mmt-flight-micro {
  display: flex;
}

.mmt-flight-listing-card .mmt-flight-micro span:nth-child(n+4) {
  display: none;
}

.mmt-flight-listing-card .mmt-flight-fare-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mmt-flight-price-panel {
  min-width: 0;
  border-left: 0;
  background: #ffffff;
}

.mmt-flight-price-panel b {
  max-width: 100%;
  font-size: clamp(1.25rem, 1.8vw, 1.56rem);
  overflow-wrap: anywhere;
}

.mmt-flight-price-panel span,
.mmt-flight-price-panel em {
  max-width: 100%;
}

.mmt-flight-price-panel button {
  min-height: 46px;
  border: 1px solid #0f6fff;
  border-radius: 8px;
  color: #0f6fff;
  background: #eef6ff;
}

.mmt-flight-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  border: 1px solid #dbe7f4;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(31, 58, 90, 0.08);
}

.mmt-flight-v2 .mmt-flight-promo {
  min-height: 42px;
  padding: 13px 16px 8px;
  border: 0;
  color: #162640;
  background: #ffffff;
  font-size: 1.02rem;
}

.mmt-flight-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(430px, 1.55fr) minmax(230px, 0.72fr);
  align-items: center;
  gap: 20px;
  min-height: 104px;
  padding: 0 24px 16px 16px;
}

.mmt-flight-carrier {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: auto;
  padding: 0;
  border: 0;
}

.mmt-flight-carrier i {
  width: 48px;
  height: 48px;
  border-radius: 3px;
  color: #ffffff;
  background: linear-gradient(135deg, #173d8f, #1d74e9);
}

.mmt-flight-carrier div {
  display: grid;
  gap: 3px;
}

.mmt-flight-carrier strong {
  color: #162640;
  font-size: 1.06rem;
  font-weight: 950;
}

.mmt-flight-carrier small {
  color: #68758a;
  font-size: 0.9rem;
}

.mmt-flight-carrier label {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: #0f6fff;
}

.mmt-flight-carrier label b {
  color: #0f6fff;
  font-size: 1.1rem;
}

.mmt-flight-route-v2 {
  display: grid;
  grid-template-columns: minmax(92px, 0.7fr) minmax(150px, 0.82fr) minmax(92px, 0.7fr);
  align-items: start;
  gap: 18px;
  padding: 0;
}

.mmt-flight-route-v2 div:not(.mmt-flight-line) {
  display: grid;
  gap: 7px;
  text-align: left;
}

.mmt-flight-route-v2 b {
  color: #06142a;
  font-size: clamp(1.34rem, 2vw, 1.72rem);
  line-height: 1;
}

.mmt-flight-route-v2 span {
  color: #162640;
  font-weight: 780;
}

.mmt-flight-route-v2 .mmt-flight-line {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #203650;
  text-align: center;
}

.mmt-flight-route-v2 .mmt-flight-line span {
  color: #162640;
  font-size: 0.92rem;
  font-weight: 760;
}

.mmt-flight-route-v2 .mmt-flight-line i {
  width: min(100%, 88px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d39d37, #62d6c7);
}

.mmt-flight-route-v2 .mmt-flight-line small {
  color: #0f6fff;
  font-weight: 860;
}

.mmt-flight-v2 .mmt-flight-route-v2 {
  grid-template-columns: minmax(92px, 0.7fr) minmax(150px, 0.82fr) minmax(92px, 0.7fr);
}

.mmt-flight-v2 .mmt-flight-route-v2 b {
  color: #06142a;
}

.mmt-flight-v2 .mmt-flight-route-v2 span {
  color: #162640;
}

.mmt-flight-v2 .mmt-flight-route-v2 small {
  color: #0f6fff;
}

.mmt-flight-v2 .mmt-flight-price-panel {
  display: grid;
  justify-items: end;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
}

.mmt-flight-v2 .mmt-flight-price-panel b {
  color: #06142a;
  font-size: clamp(1.42rem, 2.2vw, 1.75rem);
  line-height: 1;
}

.mmt-flight-v2 .mmt-flight-price-panel span {
  color: #162640;
  font-size: 0.94rem;
}

.mmt-flight-v2 .mmt-flight-price-panel button {
  min-width: 178px;
  min-height: 46px;
  border: 1px solid #0f6fff;
  border-radius: 9px;
  color: #0f6fff;
  background: #eaf4ff;
  font-size: 1rem;
}

.mmt-flight-v2 .mmt-flight-price-panel em {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 3px;
  color: #0f6fff;
  background: #eaf4ff;
  font-style: normal;
  font-weight: 900;
}

.mmt-flight-v2 .mmt-flight-coupon {
  min-height: 36px;
  margin: 0 16px;
  padding: 8px 18px;
  border: 0;
  color: #162640;
  background: #fff0d1;
  font-size: 0.92rem;
}

.mmt-flight-detail-toggle {
  justify-self: end;
  min-height: 50px;
  margin: 2px 24px 16px 0;
  border: 0;
  color: #0f6fff;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.mmt-flight-v2 .mmt-flight-detail-toggle {
  min-height: 46px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  color: #0f6fff !important;
  background: transparent !important;
  box-shadow: none;
}

.mmt-flight-expanded {
  margin-top: 0;
  border-top: 1px solid #dbe7f4;
  background: #f8fbff;
}

.mmt-flight-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid #dbe7f4;
  background: #ffffff;
}

.mmt-flight-tabs button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-right: 1px solid #e4edf7;
  color: #162640;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.mmt-flight-tabs button.active {
  color: #ffffff;
  background: #0f83ee;
}

.mmt-flight-tab-panel {
  padding: 24px;
}

.mmt-flight-tab-panel h4 {
  margin: 0 0 20px;
  color: #06142a;
  font-size: 1.12rem;
}

.mmt-flight-detail-grid {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) minmax(120px, 0.75fr) minmax(130px, 0.7fr) minmax(120px, 0.75fr) repeat(3, minmax(110px, 0.55fr));
  gap: 20px;
  align-items: start;
}

.mmt-flight-detail-airline {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mmt-flight-detail-airline i {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 3px;
  color: #ffffff;
  background: linear-gradient(135deg, #173d8f, #1d74e9);
  font-style: normal;
  font-weight: 950;
}

.mmt-flight-detail-airline div,
.mmt-flight-detail-time,
.mmt-flight-baggage {
  display: grid;
  gap: 7px;
}

.mmt-flight-detail-airline strong,
.mmt-flight-detail-time strong,
.mmt-flight-baggage b,
.mmt-flight-policy-grid strong {
  color: #06142a;
  font-size: 1.02rem;
}

.mmt-flight-detail-airline span,
.mmt-flight-detail-airline em,
.mmt-flight-detail-time span,
.mmt-flight-detail-time small,
.mmt-flight-baggage span,
.mmt-flight-policy-grid p {
  color: #445568;
  font-style: normal;
}

.mmt-flight-detail-line {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.mmt-flight-detail-line i {
  width: 76px;
  height: 4px;
  border-radius: 999px;
  background: #65d7c7;
}

.mmt-flight-detail-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
  color: #243b5a;
}

.mmt-flight-detail-notes span {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #ffffff;
  font-weight: 820;
}

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

.mmt-flight-policy-grid article {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 18px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: #ffffff;
}

.mmt-flight-policy-grid span {
  color: #986c1d;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .flow-topbar .header-main {
    grid-template-columns: minmax(210px, 280px) minmax(280px, 1fr) auto;
  }

  .flow-topbar .account-actions .helpline-chip {
    display: none;
  }

  .flow-topbar .topnav {
    gap: 14px;
  }

  .mmt-flight-row,
  .mmt-flight-detail-grid,
  .mmt-flight-policy-grid {
    grid-template-columns: 1fr;
  }

  .mmt-flight-v2 .mmt-flight-price-panel {
    justify-items: start;
  }

  .mmt-flight-route-v2 {
    grid-template-columns: minmax(92px, 1fr) minmax(140px, 0.85fr) minmax(92px, 1fr);
  }
}

@media (max-width: 680px) {
  .mmt-flight-row {
    padding: 0 16px 16px;
  }

  .mmt-flight-route-v2 {
    grid-template-columns: 1fr;
  }

  .mmt-flight-route-v2 .mmt-flight-line {
    justify-items: stretch;
    text-align: left;
  }

  .mmt-flight-route-v2 .mmt-flight-line i {
    width: 100%;
  }

  .mmt-flight-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mmt-flight-tabs button {
    padding: 0 12px;
  }

  .mmt-flight-tab-panel {
    padding: 18px 14px;
  }
}

.mmt-hotel-listing-card {
  grid-template-columns: 292px minmax(0, 1fr) 238px;
  min-height: 286px;
  border-radius: 0;
}

.mmt-hotel-listing-card .mmt-result-photo,
.mmt-hotel-listing-card .mmt-result-photo img {
  min-height: 286px;
}

.mmt-hotel-listing-card .mmt-result-main {
  gap: 8px;
  padding: 18px;
}

.mmt-hotel-listing-card .mmt-result-kicker {
  gap: 6px;
}

.mmt-hotel-listing-card .mmt-result-kicker small {
  display: none;
}

.mmt-hotel-listing-card .mmt-hotel-title-row strong {
  font-size: clamp(1.24rem, 1.8vw, 1.55rem);
  line-height: 1.12;
}

.mmt-hotel-listing-card .mmt-stay-micro {
  gap: 6px;
}

.mmt-hotel-listing-card .mmt-stay-micro span {
  min-height: 28px;
  font-size: 0.78rem;
}

.mmt-hotel-listing-card .mmt-stay-micro span:nth-child(n+4) {
  display: none;
}

.mmt-hotel-listing-card .mmt-stay-rate-options,
.mmt-hotel-listing-card .mmt-result-details,
.mmt-hotel-listing-card .mmt-result-tags,
.mmt-hotel-listing-card .mmt-result-assurance {
  display: none;
}

.mmt-hotel-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.mmt-hotel-title-row button {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid #d7e6f8;
  border-radius: 8px;
  color: #0f6fff;
  background: #eef6ff;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 950;
}

.mmt-result-photo b {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  overflow: hidden;
  border-radius: 999px;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(7, 79, 174, 0.82);
  font-size: 0.72rem;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.mmt-filter-card label:has(input:not([type])) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  color: #647287;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mmt-hotel-listing-card {
  min-height: 348px;
}

.mmt-hotel-listing-card .mmt-result-photo,
.mmt-hotel-listing-card .mmt-result-photo img {
  min-height: 348px;
}

.mmt-hotel-listing-card .mmt-result-main {
  gap: 10px;
}

.mmt-hotel-listing-card .mmt-stay-rate-options,
.mmt-hotel-listing-card .mmt-result-details,
.mmt-hotel-listing-card .mmt-stay-subline {
  display: none;
}

.mmt-hotel-listing-card .mmt-stay-rate-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mmt-hotel-listing-card .mmt-result-assurance {
  display: flex;
  gap: 6px;
}

.mmt-hotel-listing-card .mmt-result-assurance span {
  min-height: 26px;
  padding: 0 8px;
  font-size: 0.72rem;
}

.mmt-hotel-badges,
.mmt-hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mmt-hotel-badges span,
.mmt-hotel-amenities span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.mmt-hotel-badges span {
  color: #075c42;
  background: #e3fff2;
}

.mmt-hotel-badges span:nth-child(2) {
  color: #074fae;
  background: #eaf3ff;
}

.mmt-hotel-amenities span {
  color: #52627a;
  background: #f1f6fb;
}

.mmt-hotel-blurb {
  margin: 0;
  color: #40516a;
  font-size: 0.95rem;
  font-weight: 780;
  line-height: 1.45;
}

.mmt-hotel-price-panel {
  justify-items: end;
  border-left: 1px solid #e3edf8;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mmt-hotel-price-panel button {
  min-height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1d74e9, #075ec5);
}

.mmt-hotel-listing-card {
  grid-template-columns: minmax(230px, 32%) minmax(0, 1fr) minmax(200px, 24%);
  align-items: stretch;
  min-height: 346px;
  overflow: hidden;
  border: 1px solid #dce7f3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(23, 50, 86, 0.08);
}

.mmt-hotel-listing-card:hover {
  border-color: #b8d6f7;
  box-shadow: 0 18px 42px rgba(23, 50, 86, 0.12);
}

.mmt-hotel-listing-card .mmt-hotel-photo {
  position: relative;
  align-self: stretch;
  min-height: 292px;
  margin: 20px 0 20px 20px;
  overflow: hidden;
  border-radius: 6px;
  background: #edf6ff;
}

.mmt-hotel-listing-card .mmt-hotel-photo img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: cover;
}

.mmt-hotel-photo button {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: #173256;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font: inherit;
  font-size: 1.65rem;
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(23, 50, 86, 0.16);
}

.mmt-hotel-photo > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-height: 32px;
  border-radius: 999px;
  padding: 5px 13px;
  color: #ffffff;
  background: rgba(23, 50, 86, 0.82);
  font-size: 0.88rem;
  font-weight: 950;
}

.mmt-hotel-photo > i {
  position: absolute;
  left: 14px;
  bottom: 24px;
  width: 86px;
  height: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8px 6px, #ffffff 0 5px, transparent 6px),
    radial-gradient(circle at 26px 6px, rgba(255,255,255,0.58) 0 4px, transparent 5px),
    radial-gradient(circle at 43px 6px, rgba(255,255,255,0.46) 0 4px, transparent 5px),
    radial-gradient(circle at 60px 6px, rgba(255,255,255,0.38) 0 4px, transparent 5px),
    rgba(23, 50, 86, 0.58);
}

.mmt-result-photo[data-gallery-id] {
  cursor: zoom-in;
}

.mmt-photo-count-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 5px 13px;
  color: #ffffff;
  background: rgba(23, 50, 86, 0.84);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(13, 28, 48, 0.2);
}

.mmt-service-visual .mmt-photo-count-button {
  left: 14px;
  right: auto;
  bottom: 14px;
  max-width: calc(100% - 28px);
}

.mmt-service-visual i + .mmt-photo-count-button {
  left: auto;
  right: 12px;
}

.mmt-gallery-backdrop {
  position: fixed;
  z-index: 2100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(18, 49, 88, 0.62);
}

.mmt-gallery-modal {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(1080px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  border: 1px solid #d8e8fb;
  border-radius: 14px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(7, 79, 174, 0.24);
}

.mmt-gallery-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 1px solid #d8e8fb;
  border-radius: 999px;
  color: #17365f;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.mmt-gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-right: 48px;
}

.mmt-gallery-head span {
  color: #c99a3f;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-gallery-head strong {
  display: block;
  margin-top: 4px;
  color: #17365f;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 950;
}

.mmt-gallery-head p {
  margin: 6px 0 0;
  color: #52627a;
  font-weight: 820;
}

.mmt-gallery-head a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d74e9, #075ec5);
  font-weight: 950;
  text-decoration: none;
}

.mmt-gallery-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #eef6ff;
}

.mmt-gallery-main img {
  display: block;
  width: 100%;
  height: min(58vh, 560px);
  object-fit: cover;
}

.mmt-gallery-main figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(23, 50, 86, 0.82);
  font-size: 0.82rem;
  font-weight: 950;
}

.mmt-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(126px, 1fr));
  gap: 10px;
}

.mmt-gallery-thumbs button {
  height: 86px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: #eef6ff;
  cursor: pointer;
}

.mmt-gallery-thumbs button.active {
  border-color: #c99a3f;
}

.mmt-gallery-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mmt-hotel-listing-card .mmt-result-main {
  align-content: start;
  gap: 11px;
  padding: 24px 28px;
}

.mmt-hotel-listing-card .mmt-result-kicker {
  display: none;
}

.mmt-hotel-listing-card .mmt-hotel-title-row {
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.mmt-hotel-listing-card .mmt-hotel-title-row strong {
  color: #102746;
  font-size: clamp(1.35rem, 2vw, 1.78rem);
  line-height: 1.08;
}

.mmt-hotel-stars::before {
  content: "****";
  color: #c99a3f;
  font-size: 1rem;
  letter-spacing: 1px;
}

.mmt-hotel-stars.mmt-stars-3::before {
  content: "***";
}

.mmt-hotel-stars.mmt-stars-5::before {
  content: "*****";
}

.mmt-hotel-listing-card .mmt-result-location {
  margin: -2px 0 4px;
  color: #2a3e59;
  font-size: 1.02rem;
  font-weight: 780;
}

.mmt-hotel-listing-card .mmt-result-location a {
  color: #075ec5;
  font-weight: 950;
  text-decoration: none;
}

.mmt-hotel-listing-card .mmt-hotel-badges span {
  min-height: 30px;
  border: 1px solid #ccd9e7;
  border-radius: 6px;
  color: #53627a;
  background: #ffffff;
  font-size: 0.85rem;
}

.mmt-hotel-listing-card .mmt-hotel-badges span:nth-child(n+2) {
  display: none;
}

.mmt-hotel-benefits {
  display: grid;
  gap: 9px;
  margin-top: 6px;
}

.mmt-hotel-benefit {
  position: relative;
  display: block;
  min-height: 25px;
  padding-left: 30px;
  color: #067267;
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.35;
  text-transform: none;
}

.mmt-hotel-listing-card .mmt-hotel-benefits .mmt-hotel-benefit {
  text-transform: none !important;
}

.mmt-hotel-benefit::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #ffffff;
  background: #0f6fff;
  font-size: 0.75rem;
  font-weight: 950;
}

.mmt-hotel-benefit.deal::before {
  content: "%";
  background: #0aa0e8;
}

.mmt-hotel-benefit.check::before {
  content: "v";
  background: #13a36f;
}

.mmt-hotel-benefit.tip {
  color: #8b6520;
}

.mmt-hotel-benefit.tip::before {
  content: "i";
  background: #c99a3f;
}

.mmt-hotel-listing-card .mmt-hotel-amenities {
  margin-top: 4px;
}

.mmt-hotel-listing-card .mmt-hotel-amenities span {
  color: #52627a;
  background: #f1f6fb;
}

.mmt-hotel-listing-card .mmt-stay-rate-options,
.mmt-hotel-listing-card .mmt-result-details,
.mmt-hotel-listing-card .mmt-stay-subline,
.mmt-hotel-listing-card .mmt-card-flow-note,
.mmt-hotel-listing-card .mmt-service-detail-toggle {
  display: none;
}

.mmt-hotel-listing-card .mmt-result-assurance {
  margin-top: 4px;
}

.mmt-hotel-listing-card .mmt-result-assurance span {
  border-radius: 999px;
}

.mmt-hotel-price-panel {
  align-content: space-between;
  justify-items: end;
  gap: 12px;
  padding: 24px;
  border-left: 1px solid #dde7f2;
  text-align: right;
}

.mmt-hotel-review-box {
  display: grid;
  justify-items: end;
  gap: 4px;
  width: 100%;
}

.mmt-hotel-review-box strong {
  color: #075ec5;
  font-size: 1.12rem;
  font-weight: 950;
}

.mmt-hotel-review-box span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 8px;
  padding: 0 9px;
  color: #ffffff;
  background: #075ec5;
  font-size: 1rem;
  font-weight: 950;
}

.mmt-hotel-review-box small {
  color: #3f5068;
  font-size: 0.9rem;
  font-weight: 780;
}

.mmt-hotel-price-panel b {
  color: #102746;
  font-size: clamp(1.65rem, 2.5vw, 2.05rem);
}

.mmt-hotel-price-panel > span,
.mmt-hotel-price-panel > small {
  color: #59687d;
  font-size: 0.96rem;
  font-weight: 780;
  text-transform: none;
}

.mmt-hotel-price-panel em {
  color: #075ec5;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 850;
}

.mmt-card-flow-note {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #dce7f3;
  border-radius: 999px;
  padding: 8px 12px;
  color: #40516a;
  background: #f8fbff;
  font-size: 0.84rem;
  font-weight: 850;
}

.mmt-card-flow-note strong {
  color: #c99a3f;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.mmt-card-flow-note span {
  color: #40516a;
}

.mmt-flight-listing-card .mmt-card-flow-note {
  border-color: #d7e9ff;
  background: #f3f9ff;
}

.mmt-supplier-live-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #d8e8fb;
  border-radius: 8px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #ffffff, #f6fbff);
}

.mmt-supplier-live-strip.live {
  border-color: #b9dafd;
  background: linear-gradient(135deg, #eef7ff, #ffffff);
}

.mmt-supplier-live-strip.review {
  border-color: #e7c67d;
  background: linear-gradient(135deg, #fff9ed, #ffffff);
}

.mmt-supplier-live-strip.setup {
  border-color: #d8e8fb;
  background: #ffffff;
}

.mmt-supplier-live-strip div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.mmt-supplier-live-strip span {
  color: #66758a;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-supplier-live-strip strong {
  color: #17365f;
  font-size: 1.02rem;
  font-weight: 950;
}

.mmt-supplier-live-strip p {
  margin: 0;
  color: #52627a;
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.35;
}

.mmt-supplier-live-strip a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid #c8dcf3;
  border-radius: 999px;
  padding: 0 14px;
  color: #075ec5;
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 950;
  text-decoration: none;
}

.mmt-flight-modal-backdrop {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(18, 49, 88, 0.54);
}

.mmt-flight-price-modal {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(980px, 100%);
  max-height: calc(100vh - 54px);
  overflow: auto;
  border: 1px solid #d8e8fb;
  border-radius: 12px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(7, 79, 174, 0.24);
}

.mmt-flight-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid #d8e8fb;
  border-radius: 999px;
  color: #17365f;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.mmt-flight-modal-head {
  display: grid;
  gap: 8px;
  padding-right: 44px;
}

.mmt-flight-modal-head span {
  color: #66758a;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-flight-modal-head strong {
  color: #17365f;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 950;
}

.mmt-flight-modal-head p {
  margin: 0;
  color: #52627a;
  font-weight: 820;
}

.mmt-flight-plan-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #d8e8fb;
  border-radius: 10px;
  background: #f7fbff;
}

.mmt-flight-plan-tabs button {
  display: grid;
  gap: 4px;
  min-height: 70px;
  border: 0;
  border-right: 1px solid #d8e8fb;
  padding: 12px;
  color: #40516a;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 920;
}

.mmt-flight-plan-tabs button:last-child {
  border-right: 0;
}

.mmt-flight-plan-tabs button.active {
  color: #075ec5;
  background: #ffffff;
  box-shadow: inset 0 -4px 0 #c99a3f;
}

.mmt-flight-plan-tabs small {
  color: #66758a;
  font-weight: 850;
}

.mmt-flight-modal-grid,
.mmt-flight-upgrade-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mmt-flight-modal-grid article,
.mmt-flight-upgrade-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid #d8e8fb;
  border-radius: 10px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 79, 174, 0.09);
}

.mmt-flight-modal-grid article.active,
.mmt-flight-upgrade-grid article.active {
  border-color: #1d74e9;
  background: linear-gradient(135deg, #f1f8ff, #ffffff);
}

.mmt-flight-modal-grid span,
.mmt-flight-upgrade-grid span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  color: #075ec5;
  background: #eaf4ff;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-flight-modal-grid strong,
.mmt-flight-upgrade-grid strong {
  color: #17365f;
  font-size: 1.15rem;
  font-weight: 950;
}

.mmt-flight-modal-grid b,
.mmt-flight-upgrade-grid b {
  color: #17365f;
  font-size: 1.22rem;
  font-weight: 950;
}

.mmt-flight-modal-grid b small {
  color: #66758a;
  font-size: 0.78rem;
}

.mmt-flight-modal-grid p,
.mmt-flight-upgrade-grid p {
  margin: 0;
  color: #52627a;
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.4;
}

.mmt-flight-modal-grid ul,
.mmt-flight-upgrade-grid ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmt-flight-modal-grid li,
.mmt-flight-upgrade-grid li {
  position: relative;
  padding-left: 16px;
  color: #32465f;
  font-size: 0.88rem;
  font-weight: 820;
}

.mmt-flight-modal-grid li::before,
.mmt-flight-upgrade-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #c99a3f;
}

.mmt-flight-modal-grid label,
.mmt-flight-upgrade-grid label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #66758a;
  font-size: 0.82rem;
  font-weight: 850;
}

.mmt-flight-modal-grid button,
.mmt-flight-upgrade-grid button,
.mmt-flight-booking-actions button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d74e9, #075ec5);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.mmt-flight-booking-shell {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: #f7fbff;
}

.mmt-flight-booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #d8e8fb;
  border-radius: 10px;
  padding: 18px;
  background: #ffffff;
}

.mmt-flight-booking-head h2 {
  margin: 4px 0;
  color: #17365f;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 950;
}

.mmt-flight-booking-head p {
  margin: 0;
  color: #52627a;
  font-weight: 820;
}

.mmt-flight-booking-head > div:last-child {
  display: grid;
  gap: 4px;
  justify-items: end;
  min-width: 180px;
}

.mmt-flight-booking-head span,
.mmt-flight-booking-head small {
  color: #66758a;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-flight-booking-head strong {
  color: #17365f;
  font-size: 1.4rem;
  font-weight: 950;
}

.mmt-flight-checkout-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #d8e8fb;
  border-radius: 10px;
  background: #ffffff;
}

.mmt-flight-checkout-tabs span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-right: 1px solid #e5edf7;
  color: #40516a;
  font-size: 0.84rem;
  font-weight: 920;
  text-align: center;
}

.mmt-flight-checkout-tabs span:last-child {
  border-right: 0;
}

.mmt-flight-checkout-tabs span.active {
  color: #075ec5;
  background: #eef6ff;
  box-shadow: inset 0 -4px 0 #c99a3f;
}

.mmt-flight-upgrade-panel,
.mmt-flight-state-card,
.mmt-flight-lock-card,
.mmt-flight-addons-list article {
  border: 1px solid #d8e8fb;
  border-radius: 10px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 79, 174, 0.08);
}

.mmt-flight-state-card,
.mmt-flight-lock-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.6fr);
  gap: 16px;
  align-items: center;
}

.mmt-flight-state-card strong,
.mmt-flight-lock-card strong,
.mmt-flight-addons-list strong {
  color: #17365f;
  font-size: 1.05rem;
  font-weight: 950;
}

.mmt-flight-state-card p,
.mmt-flight-lock-card p,
.mmt-flight-addons-list p {
  margin: 4px 0 0;
  color: #52627a;
  font-weight: 780;
  line-height: 1.4;
}

.mmt-flight-state-card label {
  display: grid;
  gap: 7px;
  color: #66758a;
  font-weight: 900;
}

.mmt-flight-state-card select {
  min-height: 44px;
  border: 1px solid #d8e8fb;
  border-radius: 8px;
  padding: 0 12px;
  color: #17365f;
  background: #ffffff;
  font: inherit;
  font-weight: 850;
}

.mmt-flight-lock-card {
  grid-template-columns: minmax(0, 1fr) 140px;
  background: linear-gradient(135deg, #fff9ed, #ffffff);
}

.mmt-flight-lock-card button {
  min-height: 42px;
  border: 1px solid #d3b166;
  border-radius: 8px;
  color: #8a661f;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.mmt-flight-addons-list {
  display: grid;
  gap: 12px;
}

.mmt-flight-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.mmt-flight-booking-actions button,
.mmt-flight-booking-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  text-decoration: none;
}

.mmt-flight-booking-actions a {
  border: 1px solid #d8e8fb;
  color: #075ec5;
  background: #ffffff;
  font-weight: 950;
}

.mmt-stay-v2,
.mmt-service-v2 {
  overflow: hidden;
  align-items: stretch;
  border-color: #dce8f5;
  background: #ffffff;
}

.mmt-service-v2 {
  grid-template-columns: 264px minmax(0, 1fr) 250px;
  min-height: 292px;
}

.mmt-stay-v2 .mmt-result-main,
.mmt-service-v2 .mmt-result-main {
  align-content: start;
}

.mmt-service-visual {
  position: relative;
  min-height: 292px;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
}

.mmt-service-visual img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: cover;
}

.mmt-service-visual i {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-grid;
  place-items: center;
  min-width: 62px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px;
  padding: 0 12px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(29, 116, 233, 0.96), rgba(201, 154, 63, 0.9));
  box-shadow: 0 14px 28px rgba(7, 79, 174, 0.22);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0;
}

.mmt-service-main {
  gap: 10px;
  padding: 20px;
}

.mmt-service-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mmt-service-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #d8e8fb;
  border-radius: 999px;
  padding: 0 11px;
  color: #1c4f8f;
  background: #f5faff;
  font-size: 0.8rem;
  font-weight: 900;
}

.mmt-service-price-panel {
  border-left: 1px solid #e3edf8;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mmt-service-price-panel em {
  color: #66758a;
}

.mmt-service-detail-toggle {
  width: fit-content;
  min-height: 34px;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: #0f6fff !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 950;
}

.mmt-service-detail-toggle:hover {
  color: #c99a3f !important;
}

.mmt-service-expanded {
  grid-column: 1 / -1;
  display: grid;
  gap: 0;
  border-top: 1px solid #dce8f5;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.mmt-service-expanded[hidden] {
  display: none;
}

.mmt-service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid #dce8f5;
  background: #ffffff;
}

.mmt-service-tabs button {
  min-height: 48px;
  border: 0 !important;
  border-right: 1px solid #e5edf7 !important;
  border-radius: 0 !important;
  padding: 0 22px !important;
  color: #314762 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.mmt-service-tabs button.active {
  color: #075ec5 !important;
  background: #eef6ff !important;
  box-shadow: inset 0 -4px 0 #c99a3f !important;
}

.mmt-service-tab-panel {
  padding: 20px 22px 22px;
}

.mmt-service-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mmt-service-policy-grid article,
.mmt-service-points {
  border: 1px solid #dce8f5;
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(7, 79, 174, 0.08);
}

.mmt-service-policy-grid span,
.mmt-service-points strong {
  color: #66758a;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-service-policy-grid strong {
  display: block;
  margin-top: 8px;
  color: #17365f;
  font-size: 1.04rem;
  font-weight: 950;
}

.mmt-service-policy-grid p {
  margin: 8px 0 0;
  color: #52627a;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.45;
}

.mmt-service-points ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.mmt-service-points li {
  position: relative;
  padding-left: 16px;
  color: #32465f;
  font-size: 0.92rem;
  font-weight: 840;
  line-height: 1.35;
}

.mmt-service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #c99a3f;
}

.mmt-service-v2 {
  grid-template-columns: minmax(230px, 32%) minmax(0, 1fr) minmax(200px, 24%);
  align-items: stretch;
  min-height: 346px;
  overflow: hidden;
  border: 1px solid #dce7f3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(23, 50, 86, 0.08);
}

.mmt-service-v2:hover {
  border-color: #b8d6f7;
  box-shadow: 0 18px 42px rgba(23, 50, 86, 0.12);
}

.mmt-service-v2 .mmt-service-visual {
  align-self: stretch;
  height: 292px;
  min-height: 292px;
  max-height: 292px;
  margin: 20px 0 20px 20px;
  overflow: hidden;
  border-radius: 6px;
  background: #edf6ff;
}

.mmt-service-v2 .mmt-service-visual img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: cover;
}

.mmt-service-v2 .mmt-result-main {
  align-content: start;
  gap: 10px;
  padding: 24px 28px;
}

.mmt-service-v2 .mmt-result-main > strong {
  overflow: hidden;
  color: #102746;
  font-size: clamp(1.35rem, 2vw, 1.78rem);
  line-height: 1.08;
  text-overflow: ellipsis;
}

.mmt-service-v2 .mmt-result-kicker {
  gap: 8px;
}

.mmt-service-v2 .mmt-result-kicker small,
.mmt-service-v2 .mmt-result-details,
.mmt-service-v2 .mmt-result-tags,
.mmt-service-v2 .mmt-card-flow-note {
  display: none;
}

.mmt-service-v2 .mmt-result-location {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #2a3e59;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mmt-service-v2 .mmt-service-mini-strip,
.mmt-service-v2 .mmt-cab-route-strip,
.mmt-service-v2 .mmt-route-timeline,
.mmt-service-v2 .mmt-package-plan-strip {
  margin: 2px 0;
}

.mmt-service-v2 .mmt-service-facts {
  max-height: 70px;
  overflow: hidden;
}

.mmt-service-v2 .mmt-service-facts span:nth-child(n+5),
.mmt-service-v2 .mmt-result-assurance span:nth-child(n+3) {
  display: none;
}

.mmt-service-v2 .mmt-service-price-panel {
  align-content: space-between;
  justify-items: end;
  gap: 12px;
  padding: 24px;
  border-left: 1px solid #dde7f2;
  text-align: right;
}

.mmt-service-v2 .mmt-service-price-panel button {
  min-height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1d74e9, #075ec5);
}

.mmt-detail-search-strip {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(130px, 0.8fr)) 150px;
  overflow: hidden;
  border: 1px solid #dce7f3;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(13, 28, 48, 0.08);
}

.mmt-detail-search-strip div,
.mmt-detail-search-strip a {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 76px;
  border-right: 1px solid #e4edf7;
  padding: 12px 16px;
  text-decoration: none;
}

.mmt-detail-search-strip div:last-of-type {
  border-right: 0;
}

.mmt-detail-search-strip span,
.mmt-property-guide span,
.mmt-room-package-price small,
.mmt-booking-brief span,
.mmt-booking-brief small,
.mmt-coupon-box span,
.mmt-payment-breakup span {
  color: #647287;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-detail-search-strip strong {
  overflow: hidden;
  color: #24364f;
  font-size: 1rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-detail-search-strip a {
  place-items: center;
  border-right: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #0f6fff, #074fae);
  font-weight: 950;
}

.mmt-flight-detail-strip {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(130px, 0.8fr)) 150px;
  overflow: hidden;
  border: 1px solid #dce7f3;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(13, 28, 48, 0.08);
}

.mmt-flight-detail-strip div,
.mmt-flight-detail-strip a {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 76px;
  border-right: 1px solid #e4edf7;
  padding: 12px 16px;
  text-decoration: none;
}

.mmt-flight-detail-strip a {
  place-items: center;
  border-right: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #0f6fff, #074fae);
  font-weight: 950;
}

.mmt-flight-detail-strip span,
.mmt-detail-booking-grid span,
.mmt-flight-rule-grid span,
.mmt-stay-policy-snapshot span,
.mmt-office-support-card span {
  color: #647287;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-flight-detail-strip strong,
.mmt-detail-booking-grid strong,
.mmt-stay-policy-snapshot strong {
  overflow: hidden;
  color: #24364f;
  font-size: 1rem;
  font-weight: 950;
  text-overflow: ellipsis;
}

.mmt-flight-fare-breakup,
.mmt-office-support-card {
  display: grid;
  gap: 14px;
  border: 1px solid #dce7f3;
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 14px 34px rgba(13, 28, 48, 0.07);
}

.mmt-detail-booking-grid,
.mmt-flight-rule-grid,
.mmt-stay-policy-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mmt-detail-booking-grid div,
.mmt-flight-rule-grid article,
.mmt-stay-policy-snapshot article {
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 108px;
  border: 1px solid #dce7f3;
  border-radius: 14px;
  padding: 14px;
  background: #ffffff;
}

.mmt-flight-rule-grid article {
  background: #f8fbff;
}

.mmt-detail-booking-grid small,
.mmt-flight-rule-grid p,
.mmt-stay-policy-snapshot p {
  margin: 0;
  color: #647287;
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1.38;
}

.mmt-office-support-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-color: #cfe2f8;
}

.mmt-office-support-card h3 {
  margin: 0;
  color: #163966;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.mmt-office-support-card p {
  margin: 6px 0 0;
  color: #40516a;
  font-weight: 800;
  line-height: 1.45;
}

.mmt-office-support-card > div:last-child {
  display: grid;
  gap: 5px;
  min-width: 190px;
}

.mmt-office-support-card a {
  color: #0f6fff;
  font-weight: 950;
  text-decoration: none;
}

.mmt-property-guide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mmt-property-guide article,
.mmt-room-package-grid article,
.mmt-detail-rule-tabs article {
  display: grid;
  gap: 9px;
  border: 1px solid #dce7f3;
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(13, 28, 48, 0.07);
}

.mmt-property-guide strong,
.mmt-room-package-grid strong,
.mmt-detail-rule-tabs span,
.mmt-coupon-box strong {
  color: #24364f;
  font-weight: 950;
}

.mmt-property-guide p,
.mmt-detail-rule-tabs p,
.mmt-room-package-grid p,
.mmt-room-package-grid li,
.mmt-coupon-box p {
  margin: 0;
  color: #52627a;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.42;
}

.mmt-room-package-section {
  display: grid;
  gap: 14px;
}

.mmt-room-selector-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid #d7e6f8;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.mmt-room-selector-toolbar span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d9e8f8;
  border-radius: 999px;
  padding: 0 12px;
  color: #163966;
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
}

.mmt-room-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mmt-room-package-grid article {
  align-content: start;
}

.mmt-room-card-media {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #edf5ff, #ffffff);
}

.mmt-room-card-media img {
  width: 100%;
  height: 100%;
  min-height: 142px;
  object-fit: cover;
  display: block;
}

.mmt-room-card-media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: #163966;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(16, 31, 54, 0.16);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-room-card-body,
.mmt-room-card-title {
  display: grid;
  gap: 8px;
}

.mmt-room-card-title small {
  color: #6a7890;
  font-weight: 850;
}

.mmt-room-package-grid article.active,
.mmt-room-package-grid article:has(button:focus-visible) {
  border-color: #0f6fff;
  background: #eef6ff;
  box-shadow: 0 18px 38px rgba(15, 111, 255, 0.12);
}

.mmt-room-package-grid article > div:first-child {
  display: grid;
  gap: 4px;
}

.mmt-room-package-grid article > div:first-child span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  color: #075c42;
  background: #e3fff2;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-room-package-grid ul,
.mmt-important-info ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.mmt-room-package-price {
  display: grid;
  gap: 3px;
  padding-top: 4px;
}

.mmt-room-package-price span {
  color: #6a7890;
  font-size: 0.8rem;
  font-weight: 850;
}

.mmt-room-package-price b {
  color: #163966;
  font-size: 1.22rem;
  font-weight: 950;
}

.mmt-room-package-grid button {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f6fff, #074fae);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.mmt-room-package-grid article.active button {
  background: linear-gradient(135deg, #c99a3f, #9d721f);
}

.mmt-room-selected-card {
  border-color: #dcb965;
  background: #fff8e8;
}

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

.mmt-detail-rule-tabs article.active {
  border-color: #0f6fff;
  background: #eaf3ff;
}

.mmt-hotel-detail-page {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.6vw, 28px);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.mmt-hotel-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 18px;
  border: 1px solid #d6e5f6;
  border-radius: 20px;
  padding: clamp(16px, 2.3vw, 24px);
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 154, 63, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff, #f5f9ff);
  box-shadow: 0 22px 56px rgba(13, 28, 48, 0.1);
}

.mmt-hotel-detail-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.mmt-hotel-detail-copy h2 {
  margin: 0;
  color: #102746;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.06;
}

.mmt-hotel-location-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin: 0;
  color: #52627a;
  font-weight: 850;
  line-height: 1.45;
}

.mmt-hotel-location-line a {
  color: #0f6fff;
  font-weight: 950;
  text-decoration: none;
}

.mmt-hotel-score-row,
.mmt-hotel-amenity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mmt-hotel-score-row > span,
.mmt-hotel-amenity-row span {
  border: 1px solid #d8e7f7;
  border-radius: 999px;
  padding: 8px 11px;
  color: #24364f;
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 950;
}

.mmt-hotel-score {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-color: #cde5ff !important;
  background: #eef7ff !important;
}

.mmt-hotel-score b {
  border-radius: 10px;
  padding: 4px 7px;
  color: #ffffff;
  background: #0f6fff;
}

.mmt-hotel-score small {
  color: #647287;
  font-weight: 850;
}

.mmt-hotel-stars {
  color: #173256 !important;
  background: #fff8e8 !important;
  border-color: #efd081 !important;
}

.mmt-hotel-detail-benefits {
  display: grid;
  gap: 9px;
  padding: 10px 0 2px;
}

.mmt-hotel-detail-page .mmt-hotel-benefit {
  border: 0;
  padding: 0 0 0 22px;
  color: #24415f;
  background: transparent;
  box-shadow: none;
  font-size: 0.95rem;
}

.mmt-hotel-detail-page .mmt-hotel-benefit::before {
  left: 0;
}

.mmt-hotel-price-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  border: 1px solid #d6e5f6;
  border-radius: 18px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(13, 28, 48, 0.08);
}

.mmt-hotel-price-cta div {
  display: grid;
  gap: 2px;
}

.mmt-hotel-price-cta span,
.mmt-hotel-price-cta small {
  color: #647287;
  font-size: 0.78rem;
  font-weight: 920;
  text-transform: uppercase;
}

.mmt-hotel-price-cta strong {
  color: #102746;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 950;
}

.mmt-hotel-price-cta button,
.mmt-hotel-detail-page .mmt-flight-booking-actions button {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  padding: 0 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f6fff, #075cbd);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(15, 111, 255, 0.22);
}

.mmt-hotel-hero-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(130px, 0.7fr);
  gap: 10px;
  min-height: 360px;
}

.mmt-hotel-hero-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  margin: 0;
  border-radius: 18px;
  background: #eaf3ff;
}

.mmt-hotel-hero-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.mmt-hotel-hero-primary {
  min-height: 360px !important;
}

.mmt-hotel-hero-thumbs {
  display: grid;
  gap: 10px;
}

.mmt-hotel-hero-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(16, 39, 70, 0.76);
  font-size: 0.78rem;
  font-weight: 950;
}

.mmt-hotel-detail-panel {
  display: grid;
  gap: 14px;
  border: 1px solid #dce7f3;
  border-radius: 18px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(13, 28, 48, 0.08);
}

.mmt-hotel-room-panel {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.mmt-hotel-detail-page .mmt-room-package-section {
  gap: 12px;
}

.mmt-hotel-detail-page .mmt-room-package-section > .mmt-detail-section-head {
  display: none;
}

.mmt-hotel-detail-page .mmt-room-package-grid article {
  border-radius: 18px;
  background: #ffffff;
}

.mmt-hotel-detail-page .mmt-room-package-grid article.active {
  border-color: #d2a84d;
  background: #fff9eb;
  box-shadow: 0 20px 42px rgba(201, 154, 63, 0.16);
}

.mmt-hotel-detail-page .mmt-room-package-grid article > div:first-child span {
  color: #0f5c43;
  background: #e7fff4;
}

.mmt-hotel-detail-page .mmt-room-package-grid button {
  border-radius: 999px;
}

.mmt-hotel-detail-page .mmt-room-package-grid article.active button {
  background: linear-gradient(135deg, #c99a3f, #9e7225);
}

.mmt-hotel-detail-page .mmt-detail-rule-tabs article {
  min-height: 124px;
}

.mmt-hotel-detail-page .mmt-stay-price-breakup,
.mmt-hotel-detail-page .mmt-stay-supplier-box,
.mmt-hotel-detail-page .mmt-property-guide,
.mmt-hotel-detail-page .mmt-detail-timeline,
.mmt-hotel-detail-page .mmt-detail-inclusions,
.mmt-hotel-detail-page .mmt-office-support-card {
  margin-top: 0;
}

.mmt-booking-brief {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(4, minmax(120px, 0.8fr));
  gap: 10px;
  margin-bottom: 14px;
}

.mmt-booking-brief > div,
.mmt-booking-brief article {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 82px;
  border: 1px solid #dce7f3;
  border-radius: 14px;
  padding: 12px;
  background: #f8fbff;
}

.mmt-booking-brief strong,
.mmt-booking-brief b {
  color: #24364f;
  font-size: 1rem;
  font-weight: 950;
}

.mmt-booking-brief p {
  margin: 0;
  color: #647287;
  font-size: 0.86rem;
  font-weight: 800;
}

.mmt-important-info li {
  color: #40516a;
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .mmt-review-booking-brief,
  .mmt-review-customer-hero {
    grid-template-columns: 1fr 1fr;
  }

  .mmt-review-booking-brief .mmt-review-trip-visual,
  .mmt-review-customer-hero > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .mmt-review-booking-brief,
  .mmt-review-customer-hero,
  .mmt-review-passenger-manifest,
  .mmt-review-checklist {
    grid-template-columns: 1fr;
  }

  .mmt-review-edit-link {
    position: static;
    width: fit-content;
  }

  .mmt-review-trip-visual strong {
    font-size: 1.24rem;
  }
}

.mmt-addon-card > div {
  display: grid;
  gap: 10px;
}

.mmt-addon-card label {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  border: 1px solid #dce7f3;
  border-radius: 12px;
  padding: 0 12px;
  color: #40516a;
  background: #f8fbff;
  font-weight: 850;
}

.mmt-coupon-box,
.mmt-payment-breakup {
  display: grid;
  gap: 9px;
  border: 1px dashed #a9cef8;
  border-radius: 14px;
  padding: 14px;
  background: #f3f9ff;
}

.mmt-payment-breakup {
  border-style: solid;
  background: #ffffff;
}

.mmt-payment-breakup div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.mmt-payment-breakup b {
  color: #24364f;
  font-weight: 950;
  text-align: right;
}

.mmt-due-now {
  display: grid;
  gap: 5px;
  border: 1px solid #d4a849;
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #fff9ed, #ffffff);
}

.mmt-due-now small {
  color: #9d721f;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-due-now strong {
  color: #143d70;
  font-size: 1.55rem;
  font-weight: 950;
}

.mmt-due-now span {
  color: #5f6f87;
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1.36;
}

.mmt-stay-supplier-box,
.mmt-stay-price-breakup,
.mmt-prebook-card {
  display: grid;
  gap: 14px;
  border: 1px solid #dce7f3;
  border-radius: 16px;
  padding: 16px;
  color: #24364f;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 14px 34px rgba(13, 28, 48, 0.07);
}

.mmt-stay-amenity-grid,
.mmt-stay-price-grid,
.mmt-prebook-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mmt-stay-amenity-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid #d7e6f8;
  border-radius: 999px;
  padding: 0 13px;
  color: #40516a;
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 850;
}

.mmt-stay-price-grid div,
.mmt-prebook-card div {
  display: grid;
  gap: 5px;
  min-height: 96px;
  border: 1px solid #dce7f3;
  border-radius: 14px;
  padding: 13px;
  background: #ffffff;
}

.mmt-stay-price-grid span,
.mmt-prebook-card span {
  color: #ff5b2e;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-stay-price-grid strong,
.mmt-prebook-card strong {
  color: #163966;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.25;
}

.mmt-stay-price-grid p,
.mmt-prebook-card p {
  margin: 0;
  color: #647287;
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1.38;
}

.mmt-prebook-card {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: #bfe9dd;
  background: linear-gradient(135deg, #f5fffb, #eef7ff);
}

.mmt-prebook-card div:first-child {
  border-color: #9be7cc;
  background: #ffffff;
}

@media (max-width: 820px) {
  .flow-main {
    padding-top: 166px;
  }

  .mmt-results-main {
    padding-top: 224px;
  }

  .flow-hero,
  .confirmation-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .flow-hero {
    box-sizing: border-box;
    width: calc(100% - 24px);
    padding: 22px 16px;
  }

  .hero-helpline {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .flow-service-nav {
    justify-content: flex-start;
    padding-left: 12px;
    padding-right: 12px;
  }

  .booking-steps {
    grid-template-columns: 1fr;
  }

  .mmt-result-search,
  .mmt-results-layout,
  .mmt-result-card,
  .mmt-result-dashboard-stats,
  .mmt-detail-layout,
  .mmt-detail-points,
  .mmt-traveller-layout,
  .mmt-review-layout,
  .mmt-review-hero,
  .mmt-review-confidence,
  .mmt-review-next-panel,
  .mmt-confirmation-panel,
  .mmt-flight-checkout-top,
  .mmt-flight-checkout-facts,
  .mmt-flight-mix-controls,
  .mmt-flight-addon-grid,
  .mmt-traveller-brief-card,
  .mmt-traveller-brief-facts,
  .mmt-confirmation-payment > div,
  .flow-footer,
  .flow-footer-assurance,
  .flow-footer-links,
  .mmt-form-head-pro,
  .mmt-checkout-stages,
  .mmt-checkout-stages.flight,
  .mmt-form-grid,
  .mmt-form-grid-compact {
    grid-template-columns: 1fr;
  }

  .flow-footer-brand {
    border-right: 0;
    border-bottom: 1px solid #e1eaf3;
  }

  .flow-footer-brand,
  .flow-footer-assurance,
  .flow-footer-links,
  .flow-footer-bottom {
    padding: 22px;
  }

  .flow-footer-bottom {
    flex-direction: column;
  }

  .mmt-result-flight-controls {
    grid-template-columns: 1fr;
  }

  .mmt-passenger-row,
  .mmt-passenger-row.international {
    grid-template-columns: 1fr;
  }

  .mmt-result-search {
    position: static;
  }

  .mmt-flow-results .mmt-result-search {
    position: static;
    top: auto;
  }

  .mmt-result-search label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mmt-filter-panel,
  .mmt-fare-summary,
  .mmt-payment-box {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .mmt-result-price {
    justify-items: stretch;
    text-align: left;
    padding: 0 18px 18px;
  }

  .mmt-result-main {
    padding: 18px;
  }

  .mmt-result-photo,
  .mmt-result-photo img {
    min-height: 210px;
  }

  .mmt-result-details {
    grid-template-columns: 1fr;
  }

  .mmt-result-price button {
    width: 100%;
  }

  .mmt-stay-v2,
  .mmt-service-v2 {
    grid-template-columns: 1fr;
  }

  .mmt-service-visual,
  .mmt-service-visual img {
    min-height: 220px;
  }

  .mmt-service-price-panel {
    justify-items: stretch;
    border-left: 0;
    padding: 0 18px 18px;
  }

  .mmt-service-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmt-service-tabs button {
    border-bottom: 1px solid #e5edf7 !important;
    padding: 0 12px !important;
  }

  .mmt-service-policy-grid,
  .mmt-service-points ul {
    grid-template-columns: 1fr;
  }

  .mmt-service-tab-panel {
    padding: 16px;
  }

  .mmt-supplier-live-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .mmt-flight-modal-backdrop {
    padding: 12px;
  }

  .mmt-flight-price-modal {
    padding: 16px;
  }

  .mmt-flight-plan-tabs,
  .mmt-flight-modal-grid,
  .mmt-flight-upgrade-grid,
  .mmt-flight-checkout-tabs,
  .mmt-flight-state-card,
  .mmt-flight-lock-card,
  .mmt-flight-booking-head {
    grid-template-columns: 1fr;
  }

  .mmt-flight-booking-head,
  .mmt-flight-state-card,
  .mmt-flight-lock-card {
    align-items: stretch;
    flex-direction: column;
  }

  .mmt-flight-booking-head > div:last-child {
    justify-items: start;
  }

  .mmt-flight-checkout-tabs span,
  .mmt-flight-plan-tabs button {
    border-right: 0;
    border-bottom: 1px solid #e5edf7;
  }

  .mmt-flight-checkout-tabs span:last-child,
  .mmt-flight-plan-tabs button:last-child {
    border-bottom: 0;
  }

  .mmt-form-head,
  .mmt-traveller-brief,
  .mmt-form-grid,
  .mmt-customer-actions,
  .mmt-checkout-stages {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mmt-traveller-brief-card {
    padding: 14px;
  }

  .mmt-traveller-brief-facts article {
    min-height: 72px;
  }

  .mmt-form-status {
    min-width: 0;
  }

  .mmt-form-section legend {
    margin-left: 16px;
  }

  .mmt-review-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mmt-form-band,
  .mmt-document-upload {
    margin-left: 16px;
    margin-right: 16px;
  }

  .mmt-confirmation-panel {
    padding: 18px 14px;
  }

  .mmt-customer-actions,
  .mmt-review-support {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .mmt-customer-actions {
    flex-direction: column;
  }

  .mmt-customer-actions .search-button,
  .mmt-review-support a {
    width: 100%;
  }

  .mmt-flow-premium-status,
  .mmt-result-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .mmt-flow-premium-status {
    width: calc(100% - 24px);
    padding: 16px;
  }

  .mmt-flow-premium-status a {
    width: 100%;
  }

  .mmt-result-trust,
  .mmt-policy-strip {
    width: 100%;
  }

  .mmt-result-search {
    border-radius: 16px;
  }

  .mmt-result-search .search-button {
    width: calc(100% - 28px);
  }

  .mmt-result-card {
    border-radius: 16px;
  }

  .mmt-result-price {
    border-left: 0;
    border-top: 1px solid #edf1f6;
    padding: 18px;
  }

  .mmt-result-toolbar {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 14px;
  }

  .mmt-result-dashboard-head {
    flex-direction: column;
  }

  .mmt-result-dashboard-head a {
    width: 100%;
    justify-content: center;
  }

  .mmt-result-sort-tabs,
  .mmt-quick-filters {
    justify-content: flex-start;
  }

  .mmt-flow-results {
    width: calc(100% - 24px);
  }

  .mmt-flow-results .mmt-result-search {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .mmt-result-flight-controls {
    grid-template-columns: 1fr;
  }

  .mmt-results-layout {
    gap: 18px;
  }

  .mmt-filter-head,
  .mmt-filter-card,
  .mmt-filter-help {
    border-radius: 14px;
  }

  .mmt-listing-summary {
    border-radius: 14px;
  }

  .mmt-listing-summary .mmt-result-dashboard-head {
    padding: 16px;
  }

  .mmt-fare-rail {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
  }

  .mmt-fare-rail > div {
    grid-template-columns: repeat(7, minmax(118px, 1fr));
  }

  .mmt-stay-insights,
  .mmt-result-sort-tabs,
  .mmt-flight-listing-card {
    grid-template-columns: 1fr;
  }

  .mmt-result-sort-tabs button {
    min-height: 82px;
  }

  .mmt-flight-promo,
  .mmt-flight-coupon {
    grid-column: 1;
  }

  .mmt-flight-listing-card .mmt-result-main {
    border-left: 0;
    border-right: 0;
  }

  .mmt-hotel-title-row {
    flex-direction: column;
  }

  .mmt-flight-airline {
    border-right: 0;
    border-bottom: 1px solid #edf1f6;
  }

  .mmt-flight-route {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mmt-flight-fare-options {
    grid-template-columns: 1fr;
  }

  .mmt-stay-rate-options {
    grid-template-columns: 1fr;
  }

  .mmt-flight-listing-card .mmt-flight-fare-options,
  .mmt-hotel-listing-card .mmt-stay-rate-options {
    grid-template-columns: 1fr;
  }

  .mmt-result-toolbar .mmt-quick-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .mmt-card-flow-note {
    width: 100%;
    border-radius: 14px;
  }

  .mmt-flight-line {
    justify-items: stretch;
    text-align: left;
  }

  .mmt-flight-line i {
    width: 100%;
  }

  .mmt-flight-listing-card .mmt-result-main > *,
  .mmt-flight-listing-card .mmt-flight-route,
  .mmt-flight-listing-card .mmt-flight-fare-options,
  .mmt-flight-listing-card .mmt-card-flow-note {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .mmt-flight-listing-card .mmt-flight-route {
    grid-template-columns: 1fr;
  }

  .mmt-detail-visual {
    min-height: 260px;
  }

  .mmt-detail-gallery,
  .mmt-detail-facts,
  .mmt-service-detail-panel ul,
  .mmt-detail-flight-line,
  .mmt-detail-inclusion-grid,
  .mmt-detail-timeline {
    grid-template-columns: 1fr;
  }

  .mmt-detail-section-head {
    flex-direction: column;
  }

  .mmt-detail-gallery img,
  .mmt-detail-gallery img:first-child {
    min-height: 170px;
  }

  .mmt-detail-facts div {
    min-height: 78px;
  }

  .mmt-detail-flight-line span {
    justify-items: stretch;
  }

  .mmt-detail-note-grid {
    grid-template-columns: 1fr;
  }

  .mmt-policy-strip a {
    flex: 1 1 160px;
  }

  .mmt-hotel-listing-card .mmt-stay-rate-options,
  .mmt-hotel-listing-card .mmt-result-details,
  .mmt-hotel-detail-hero,
  .mmt-hotel-hero-gallery,
  .mmt-hotel-hero-thumbs,
  .mmt-property-guide,
  .mmt-room-package-grid,
  .mmt-detail-rule-tabs,
  .mmt-review-fare-grid,
  .mmt-review-policy-grid,
  .mmt-confirmation-grid,
  .mmt-booking-brief,
  .mmt-detail-search-strip,
  .mmt-flight-detail-strip,
  .mmt-detail-booking-grid,
  .mmt-flight-rule-grid,
  .mmt-stay-policy-snapshot,
  .mmt-office-support-card,
  .mmt-stay-amenity-grid,
  .mmt-stay-price-grid,
  .mmt-prebook-card {
    grid-template-columns: 1fr;
  }

  .mmt-detail-search-strip div,
  .mmt-detail-search-strip a {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid #e4edf7;
  }

  .mmt-detail-search-strip a {
    border-bottom: 0;
  }

  .mmt-hotel-detail-page {
    padding: 14px;
  }

  .mmt-hotel-detail-copy h2 {
    font-size: 1.75rem;
  }

  .mmt-hotel-hero-gallery {
    min-height: 0;
  }

  .mmt-hotel-hero-gallery figure,
  .mmt-hotel-hero-primary {
    min-height: 210px !important;
  }

  .mmt-hotel-hero-thumbs figure {
    min-height: 150px !important;
  }

  .mmt-hotel-price-cta {
    align-items: stretch;
  }

  .mmt-hotel-price-cta button {
    width: 100%;
  }

  .mmt-hotel-price-panel {
    justify-items: stretch;
    border-left: 0;
  }

  .mmt-booking-brief {
    margin-bottom: 10px;
  }
}

/* THG brand palette: blue, gold and white */
.flow-page {
  --accent: #c99a3f;
  --brand: #1d74e9;
}

.login-button,
.header-search button,
.mmt-result-price button,
.mmt-price-panel button,
.mmt-detail-rate-card button,
.mmt-review-submit,
.mmt-pay-now,
.mmt-confirmation-actions a,
.pay-button {
  background: linear-gradient(135deg, #1d74e9, #075ec5) !important;
  border-color: #1d74e9 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(29, 116, 233, 0.22);
}

.mmt-date-option.active,
.mmt-sort-chip.active,
.mmt-flight-fare-options .active,
.mmt-stay-rate-options .active {
  border-color: #c99a3f !important;
}

.mmt-flight-promo,
.mmt-flight-coupon,
.mmt-coupon-box,
.mmt-live-status {
  background: linear-gradient(135deg, #fff9ed, #ffffff) !important;
  border-color: #e7c67d !important;
}

.mmt-result-cab-controls {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mmt-cab-result {
  border-color: #d9e8f8;
}

.mmt-cab-visual {
  background: linear-gradient(135deg, #eef6ff, #ffffff);
}

.mmt-cab-visual span {
  color: #075ec5;
  background: #eaf3ff;
}

.mmt-cab-main > strong {
  color: #163966;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
}

.mmt-cab-route-strip,
.mmt-transfer-route-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.62fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid #dbeaf8;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #f5f9ff);
}

.mmt-cab-route-strip div,
.mmt-transfer-route-card div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.mmt-cab-route-strip span,
.mmt-transfer-route-card span {
  color: #64738a;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mmt-cab-route-strip b,
.mmt-transfer-route-card strong {
  overflow: hidden;
  color: #10243f;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-cab-route-strip i,
.mmt-transfer-route-card i {
  display: block;
  width: 100%;
  height: 3px;
  margin: 8px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #c99a3f, #0f6fff);
}

.mmt-cab-route-strip small,
.mmt-transfer-route-card small {
  color: #607086;
  font-weight: 800;
}

.mmt-cab-facts span {
  border-color: #d9e8f8;
  color: #163966;
  background: #f6faff;
}

.mmt-cab-checkout-summary,
.mmt-form-options {
  grid-column: 1 / -1;
}

.mmt-cab-checkout-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.mmt-cab-checkout-summary article {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid #dbeaf8;
  border-radius: 14px;
  background: #f7fbff;
}

.mmt-cab-checkout-summary span,
.mmt-cab-checkout-summary small {
  color: #66758a;
  font-weight: 800;
}

.mmt-cab-checkout-summary strong {
  overflow: hidden;
  color: #163966;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mmt-form-options label {
  width: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #dbeaf8;
  border-radius: 999px;
  color: #163966;
  background: #ffffff;
}

.mmt-transfer-detail-page {
  overflow: hidden;
  border: 1px solid #dbeaf8;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(29, 88, 147, 0.1);
}

.mmt-transfer-detail-page .mmt-detail-content {
  padding: clamp(20px, 3vw, 30px);
}

.mmt-transfer-hero {
  min-height: 300px;
}

.mmt-bus-result,
.mmt-package-result,
.mmt-activity-result,
.mmt-visa-result {
  border-color: #d9e8f8;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
}

.mmt-route-visual,
.mmt-package-visual,
.mmt-activity-visual,
.mmt-visa-visual {
  background: linear-gradient(135deg, #f2f8ff, #ffffff);
}

.mmt-route-visual span,
.mmt-package-visual span,
.mmt-activity-visual span,
.mmt-visa-visual span {
  color: #075ec5;
  background: #eaf3ff;
}

.mmt-route-main > strong,
.mmt-package-result .mmt-service-main > strong,
.mmt-activity-result .mmt-service-main > strong,
.mmt-visa-result .mmt-service-main > strong {
  color: #163966;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
}

.mmt-route-timeline,
.mmt-package-plan-strip {
  display: grid;
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid #dbeaf8;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #f5f9ff);
}

.mmt-route-timeline {
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.55fr) minmax(0, 1fr);
}

.mmt-route-timeline div,
.mmt-package-plan-strip article {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.mmt-route-timeline span,
.mmt-package-plan-strip span {
  color: #64738a;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mmt-route-timeline b,
.mmt-package-plan-strip b {
  overflow: hidden;
  color: #163966;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-route-timeline i {
  display: grid;
  align-content: center;
  min-height: 56px;
  color: #075ec5;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.mmt-route-timeline i::before,
.mmt-route-timeline i::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c99a3f, #0f6fff);
}

.mmt-route-timeline small {
  color: #607086;
  font-weight: 800;
}

.mmt-package-plan-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mmt-package-plan-strip article {
  min-height: 78px;
  padding: 10px 12px;
  border: 1px solid #e5eef8;
  border-radius: 12px;
  background: #ffffff;
}

.mmt-visa-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mmt-visa-checklist span {
  padding: 9px 11px;
  border: 1px solid #e8d4a4;
  border-radius: 999px;
  color: #8b6723;
  font-weight: 850;
  background: #fff9ed;
}

.mmt-visa-fee-grid,
.mmt-visa-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.mmt-visa-review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.mmt-visa-fee-grid span,
.mmt-visa-review-grid article {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #dbeaf8;
  border-radius: 12px;
  color: #5d6d84;
  font-size: 0.78rem;
  font-weight: 800;
  background: #ffffff;
}

.mmt-visa-fee-grid b,
.mmt-visa-review-grid strong {
  display: block;
  overflow: hidden;
  color: #143866;
  font-size: 0.9rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-visa-review-grid span {
  display: block;
  margin-bottom: 4px;
  color: #66758b;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mmt-visa-strip article {
  border-color: #d7e8fb;
  background: linear-gradient(135deg, #ffffff, #f4f9ff);
}

.mmt-service-checkout-panel {
  margin-bottom: 16px;
  border-color: #d9e8f8;
  background: linear-gradient(135deg, #ffffff, #f6faff);
}

.mmt-bus-checkout-panel .mmt-flight-selected-plan,
.mmt-package-checkout-panel .mmt-flight-selected-plan,
.mmt-activity-checkout-panel .mmt-flight-selected-plan,
.mmt-visa-checkout-panel .mmt-flight-selected-plan {
  border-color: #e7c67d;
  background: #fff9ed;
}

.mmt-route-detail-panel,
.mmt-package-detail-panel,
.mmt-activity-detail-panel,
.mmt-visa-detail-panel {
  border-color: #dbeaf8;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

@media (max-width: 900px) {
  .mmt-result-cab-controls,
  .mmt-cab-route-strip,
  .mmt-transfer-route-card,
  .mmt-cab-checkout-summary,
  .mmt-route-timeline,
  .mmt-package-plan-strip,
  .mmt-visa-fee-grid,
  .mmt-visa-review-grid {
    grid-template-columns: 1fr;
  }
}

/* Hotel flow final polish */
.mmt-results-layout:has(.mmt-hotel-listing-card) {
  grid-template-columns: 278px minmax(0, 1fr);
  gap: 18px;
}

.mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-filter-panel {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(29, 70, 124, 0.08);
}

.mmt-hotel-filter-card label {
  min-height: 44px;
  border-bottom: 1px solid #edf3fa;
  padding-bottom: 10px;
}

.mmt-hotel-filter-card label:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mmt-hotel-listing-card {
  grid-template-columns: minmax(260px, 30%) minmax(0, 1fr) minmax(220px, 25%);
  min-height: 296px;
  border: 1px solid #d8e6f5;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(29, 70, 124, 0.08);
}

.mmt-hotel-listing-card:hover {
  transform: translateY(-1px);
  border-color: #bcd7f5;
  box-shadow: 0 18px 42px rgba(29, 70, 124, 0.13);
}

.mmt-hotel-listing-card .mmt-hotel-photo {
  margin: 18px 0 18px 18px;
  min-height: 260px;
  border-radius: 8px;
}

.mmt-hotel-listing-card .mmt-hotel-photo img {
  min-height: 260px;
}

.mmt-hotel-listing-card .mmt-result-main {
  gap: 10px;
  padding: 22px 26px;
}

.mmt-hotel-listing-card .mmt-hotel-title-row {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.mmt-hotel-listing-card .mmt-hotel-title-row strong {
  color: #102746;
  font-size: clamp(1.3rem, 1.8vw, 1.72rem);
  line-height: 1.1;
}

.mmt-hotel-stars {
  border-color: #ead29a !important;
  color: #173256 !important;
  background: #fff9ed !important;
}

.mmt-hotel-list-score {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.mmt-hotel-list-score span {
  color: #075ec5;
  font-weight: 950;
}

.mmt-hotel-list-score b {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 30px;
  border-radius: 8px;
  color: #ffffff;
  background: #075ec5;
  font-size: 1rem;
  font-weight: 950;
}

.mmt-hotel-list-score small {
  color: #5f7188;
  font-weight: 820;
}

.mmt-hotel-listing-card .mmt-hotel-badges span {
  color: #7a5a1c;
  background: #fff9ed;
}

.mmt-hotel-listing-card .mmt-hotel-badges span:nth-child(2),
.mmt-hotel-listing-card .mmt-hotel-badges span:nth-child(3) {
  color: #075ec5;
  background: #edf6ff;
}

.mmt-hotel-benefits {
  display: grid;
  gap: 8px;
}

.mmt-hotel-listing-card .mmt-hotel-benefit {
  min-height: auto;
  padding-left: 24px;
  color: #254668;
  background: transparent;
}

.mmt-hotel-listing-card .mmt-hotel-benefit::before {
  left: 0;
  color: #c99a3f;
}

.mmt-hotel-listing-card .mmt-hotel-amenities span {
  color: #40516a;
  background: #f3f8ff;
}

.mmt-hotel-blurb {
  margin: 0;
  color: #40516a;
  font-size: 0.94rem;
  font-weight: 820;
  line-height: 1.4;
}

.mmt-hotel-listing-card .mmt-stay-rate-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mmt-hotel-listing-card .mmt-stay-rate-options div {
  min-height: 70px;
  border-radius: 8px;
  background: #f8fbff;
}

.mmt-hotel-listing-card .mmt-stay-rate-options div.active {
  border-color: #c99a3f;
  background: #fff9ed;
}

.mmt-hotel-listing-card .mmt-result-assurance {
  display: flex;
  gap: 7px;
}

.mmt-hotel-listing-card .mmt-result-assurance span {
  min-height: 28px;
  color: #40516a;
  background: #ffffff;
}

.mmt-hotel-price-panel {
  align-content: start;
  justify-items: end;
  padding: 24px 24px 20px;
  border-left: 1px solid #e4edf7;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  text-align: right;
}

.mmt-hotel-price-stack {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.mmt-hotel-price-stack b {
  color: #102746;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 950;
}

.mmt-hotel-price-stack strong {
  color: #7a5a1c;
  font-size: 0.88rem;
  font-weight: 950;
}

.mmt-hotel-price-panel button {
  width: 100%;
  min-height: 48px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d74e9, #075ec5);
  box-shadow: 0 12px 28px rgba(29, 116, 233, 0.2);
}

.mmt-hotel-price-panel em {
  color: #5f7188;
  font-style: normal;
  text-align: right;
}

.mmt-hotel-detail-page {
  background: #ffffff;
}

.mmt-hotel-detail-hero {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(247,251,255,0.98)),
    linear-gradient(90deg, rgba(201,154,63,0.16), transparent);
}

.mmt-hotel-detail-copy h2 {
  color: #102746;
}

.mmt-hotel-price-cta {
  border-radius: 8px;
}

.mmt-room-package-grid article {
  border-radius: 8px;
}

.mmt-room-package-grid article.active {
  border-color: #c99a3f;
  background: #fff9ed;
}

.mmt-room-package-grid article > div:first-child small {
  color: #5f7188;
  font-weight: 850;
}

.mmt-room-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mmt-room-feature-row em {
  border: 1px solid #d8e6f5;
  border-radius: 999px;
  padding: 7px 9px;
  color: #075ec5;
  background: #f3f8ff;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
}

.mmt-room-package-price b {
  color: #102746;
}

.mmt-room-package-grid article > div:first-child span,
.mmt-stay-price-grid span,
.mmt-prebook-card span {
  color: #7a5a1c;
  background: #fff9ed;
}

.mmt-detail-search-strip a,
.mmt-room-package-grid button,
.mmt-hotel-price-cta button {
  background: linear-gradient(135deg, #1d74e9, #075ec5);
}

.mmt-room-package-grid article.active button {
  background: linear-gradient(135deg, #c99a3f, #9d721f);
}

.mmt-stay-policy-snapshot article,
.mmt-property-guide article,
.mmt-detail-rule-tabs article,
.mmt-stay-price-grid div {
  border-radius: 8px;
}

@media (max-width: 980px) {
  .mmt-results-layout:has(.mmt-hotel-listing-card),
  .mmt-hotel-listing-card,
  .mmt-hotel-detail-hero,
  .mmt-room-package-grid,
  .mmt-confirmation-snapshot,
  .mmt-confirmation-snapshot-copy dl,
  .mmt-review-hero,
  .mmt-review-confidence,
  .mmt-review-next-panel,
  .mmt-stay-policy-snapshot,
  .mmt-property-guide,
  .mmt-stay-price-grid {
    grid-template-columns: 1fr;
  }

  .mmt-hotel-listing-card .mmt-hotel-photo {
    margin: 14px;
  }

  .mmt-hotel-price-panel,
  .mmt-hotel-price-stack {
    justify-items: stretch;
    text-align: left;
  }
}

/* Multi-service result flow polish */
.mmt-premium-flight-card,
.mmt-premium-service-card {
  border-color: #d6e7f8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(22, 57, 102, 0.09);
}

.mmt-premium-flight-card:hover,
.mmt-premium-service-card:hover {
  border-color: #b8d5f4;
  box-shadow: 0 20px 52px rgba(22, 57, 102, 0.14);
}

.mmt-premium-flight-card .mmt-flight-promo {
  color: #7a5a1c;
  background: linear-gradient(135deg, #fff9ed, #ffffff) !important;
}

.mmt-premium-flight-card .mmt-flight-row {
  padding-bottom: 12px;
}

.mmt-premium-flight-card .mmt-flight-carrier i,
.mmt-flight-detail-airline i {
  background: linear-gradient(135deg, #075ec5, #1d74e9);
}

.mmt-premium-flight-card .mmt-flight-route-v2 .mmt-flight-line i,
.mmt-flight-detail-line i {
  background: linear-gradient(90deg, #c99a3f, #68d6c7);
}

.mmt-premium-flight-card .mmt-flight-coupon {
  margin-top: 0;
  color: #223d61;
  background: linear-gradient(135deg, #fff9ed, #ffffff) !important;
}

.mmt-premium-flight-card .mmt-flight-coupon span {
  background: #c99a3f;
}

.mmt-flight-result-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 16px 10px;
  padding: 0 0 2px;
}

.mmt-flight-result-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #d8e8fb;
  border-radius: 999px;
  padding: 0 11px;
  color: #173256;
  background: #f6faff;
  font-size: 0.82rem;
  font-weight: 900;
}

.mmt-premium-flight-card .mmt-flight-price-panel button,
.mmt-premium-price-panel button {
  border: 1px solid #075ec5 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #1d74e9, #075ec5) !important;
  box-shadow: 0 12px 28px rgba(29, 116, 233, 0.18);
}

.mmt-premium-flight-card .mmt-flight-price-panel em {
  color: #075ec5;
  background: #eef6ff;
}

.mmt-premium-service-card {
  grid-template-columns: minmax(238px, 27%) minmax(0, 1fr) minmax(220px, 24%);
  min-height: 286px;
  overflow: hidden;
}

.mmt-premium-service-card .mmt-service-visual,
.mmt-premium-service-card .mmt-service-visual img {
  min-height: 286px;
}

.mmt-premium-service-card .mmt-service-visual span {
  color: #075ec5;
  background: rgba(234, 243, 255, 0.94);
}

.mmt-premium-service-card .mmt-service-visual i {
  border-color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(135deg, rgba(7, 94, 197, 0.96), rgba(201, 154, 63, 0.92));
}

.mmt-premium-service-card .mmt-service-main {
  gap: 11px;
  padding: 22px 24px;
}

.mmt-premium-service-card .mmt-service-main > strong,
.mmt-premium-service-card .mmt-route-main > strong,
.mmt-premium-service-card .mmt-cab-main > strong {
  color: #102746;
  font-size: clamp(1.26rem, 1.8vw, 1.62rem);
  line-height: 1.12;
}

.mmt-service-mini-strip,
.mmt-service-promise-row {
  display: grid;
  gap: 8px;
}

.mmt-service-mini-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mmt-service-mini-strip article {
  display: grid;
  gap: 4px;
  min-height: 70px;
  border: 1px solid #dbeaf8;
  border-radius: 8px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.mmt-service-mini-strip span,
.mmt-service-mini-strip small {
  color: #5f7188;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mmt-service-mini-strip b {
  min-width: 0;
  overflow: hidden;
  color: #173256;
  font-size: 0.94rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-service-promise-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mmt-service-promise-row span {
  display: grid;
  gap: 3px;
  min-height: 52px;
  border: 1px solid #ead29a;
  border-radius: 8px;
  padding: 9px 11px;
  color: #40516a;
  background: #fff9ed;
  font-size: 0.8rem;
  font-weight: 800;
}

.mmt-service-promise-row b {
  color: #7a5a1c;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.mmt-premium-service-card .mmt-service-facts span {
  border-color: #d9e8f8;
  color: #163966;
  background: #f6faff;
}

.mmt-premium-price-panel {
  align-content: start;
  justify-items: stretch;
  gap: 12px;
  border-left: 1px solid #e4edf7;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mmt-premium-price-stack {
  display: grid;
  gap: 5px;
}

.mmt-premium-price-stack b {
  color: #102746;
  font-size: clamp(1.42rem, 1.9vw, 1.82rem);
  line-height: 1;
}

.mmt-premium-price-stack span {
  color: #5f7188;
  line-height: 1.35;
}

.mmt-premium-price-panel em {
  color: #40516a;
  font-style: normal;
  line-height: 1.4;
}

.mmt-premium-service-card .mmt-card-flow-note {
  border-color: #dbeaf8;
  background: #f8fbff;
}

.mmt-premium-service-card .mmt-result-assurance span {
  border-color: #dbeaf8;
  color: #40516a;
  background: #ffffff;
}

@media (max-width: 1180px) {
  .mmt-premium-service-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .mmt-premium-service-card .mmt-premium-price-panel {
    grid-column: 1 / -1;
    border-top: 1px solid #e4edf7;
    border-left: 0;
  }

  .mmt-service-mini-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mmt-premium-flight-card .mmt-flight-row {
    grid-template-columns: 1fr;
  }

  .mmt-premium-flight-card .mmt-flight-price-panel {
    justify-items: stretch;
    text-align: left;
  }

  .mmt-premium-flight-card .mmt-flight-price-panel button {
    min-width: 0;
    width: 100%;
  }

  .mmt-premium-service-card {
    grid-template-columns: 1fr;
  }

  .mmt-premium-service-card .mmt-service-visual,
  .mmt-premium-service-card .mmt-service-visual img {
    min-height: 220px;
  }

  .mmt-service-mini-strip,
  .mmt-service-promise-row {
    grid-template-columns: 1fr;
  }
}

/* Traveller details module polish */
.mmt-document-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid #ead29a;
  border-radius: 8px;
  padding: 12px;
  background: linear-gradient(135deg, #fff9ed, #ffffff);
}

.mmt-document-checklist span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid #d9e8f8;
  border-radius: 999px;
  padding: 0 11px;
  color: #173256;
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
}

.mmt-passenger-row.visa-applicant {
  border-color: #ead29a;
  background: linear-gradient(135deg, #ffffff, #fff9ed);
}

.mmt-passenger-row.cab-passenger,
.mmt-passenger-row.tour-guest,
.mmt-passenger-row.service-traveller {
  border-color: #dbeaf8;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.mmt-passenger-row.lightweight {
  grid-template-columns: minmax(210px, 0.8fr) repeat(2, minmax(0, 1fr));
}

.mmt-passenger-row.visa-applicant .mmt-passenger-type,
.mmt-passenger-row.cab-passenger .mmt-passenger-type,
.mmt-passenger-row.tour-guest .mmt-passenger-type,
.mmt-passenger-row.service-traveller .mmt-passenger-type {
  color: #075ec5;
  background: #eaf3ff;
}

.mmt-passenger-row.visa-applicant .mmt-passenger-type {
  color: #7a5a1c;
  background: #fff3cf;
}

@media (max-width: 760px) {
  .mmt-passenger-row.lightweight {
    grid-template-columns: 1fr;
  }
}

/* Premium THG shared header, result header and footer refresh */
.flow-page {
  --brand: #1d74e9;
  --brand-dark: #075ec5;
  --accent: #c99a3f;
  --ink: #12315f;
  --muted: #5d78a0;
  background:
    linear-gradient(180deg, #eef5fc 0%, #f7fbff 44%, #ffffff 100%);
  color: #12315f;
}

.flow-topbar {
  top: 10px;
  width: min(1840px, calc(100% - 28px));
  gap: 8px;
}

.flow-topbar .header-main {
  display: grid !important;
  grid-template-columns: minmax(260px, 420px) minmax(360px, 1fr) auto auto;
  gap: 12px;
  min-height: 82px;
  padding: 8px 10px;
  border: 1px solid rgba(214, 228, 242, 0.96);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 255, 0.96)),
    linear-gradient(90deg, rgba(29, 116, 233, 0.08), rgba(201, 154, 63, 0.08));
  box-shadow: 0 18px 48px rgba(20, 48, 82, 0.13);
}

.flow-page[data-flow-page="results"] .flow-topbar .header-main {
  display: grid !important;
}

.flow-topbar .brand {
  min-height: 62px;
  padding: 7px 14px;
  border: 1px solid #dbe8f6;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(201, 154, 63, 0.08);
}

.flow-topbar .brand-logo-image {
  width: 100%;
  max-width: 330px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.flow-topbar .header-search {
  min-height: 58px;
  border-color: #d8e6f5;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(29, 116, 233, 0.04);
}

.flow-topbar .header-search input {
  color: #12315f;
  font-weight: 800;
}

.flow-topbar .header-search button,
.flow-topbar .login-button,
.mmt-result-search .search-button {
  border-radius: 8px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #1d74e9, #075ec5) !important;
  box-shadow: 0 14px 28px rgba(29, 116, 233, 0.22);
}

.flow-topbar .topnav {
  gap: 6px;
  justify-content: center;
}

.flow-topbar .topnav a {
  min-height: 44px;
  border-radius: 8px;
  padding: 0 13px;
  color: #4d5f75;
  font-weight: 900;
}

.flow-topbar .topnav a:hover {
  color: #075ec5;
  background: #eef6ff;
}

.flow-topbar .account-actions {
  gap: 9px;
}

.flow-topbar .helpline-chip {
  min-height: 58px;
  border-color: #ead29a;
  border-radius: 10px;
  background: #fff9ed;
}

.flow-topbar .helpline-chip strong {
  color: #7a5a1c;
}

.flow-travel-menu {
  justify-content: space-between;
  width: min(1660px, calc(100% - 70px));
  max-width: calc(100vw - 36px);
  min-height: 82px;
  margin-top: 0;
  padding: 8px;
  border: 1px solid rgba(214, 228, 242, 0.96);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 18px 44px rgba(20, 48, 82, 0.11);
  scrollbar-width: thin;
}

.flow-travel-menu a {
  min-width: 104px;
  min-height: 64px;
  border-radius: 8px;
  color: #44566f;
  font-weight: 900;
}

.flow-travel-menu a svg {
  color: #075ec5;
}

.flow-travel-menu a.active,
.flow-travel-menu a:hover {
  color: #075ec5;
  background: linear-gradient(180deg, #eef6ff, #ffffff);
  box-shadow: inset 0 -3px 0 #1d74e9, inset 0 0 0 1px #d8e9ff;
}

@media (min-width: 1120px) {
  .flow-travel-menu {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 4px;
    overflow: hidden;
  }

  .flow-travel-menu a {
    min-width: 0;
    padding-inline: 6px;
    font-size: 0.78rem;
    line-height: 1.12;
  }
}

.flow-page[data-flow-page="results"] .flow-travel-menu {
  min-height: 82px;
  margin-top: 0;
  box-shadow: 0 18px 44px rgba(20, 48, 82, 0.11);
}

.flow-main {
  padding-top: 208px;
}

.flow-page[data-flow-page="results"] .mmt-results-main {
  padding-top: 204px;
}

.mmt-flow-results {
  width: min(1840px, calc(100% - 48px));
}

.mmt-flow-results .mmt-result-search {
  overflow: visible;
  grid-template-columns: minmax(260px, 1.3fr) minmax(170px, 0.72fr) minmax(160px, 0.64fr) minmax(170px, 0.7fr) 176px;
  align-items: stretch;
  margin-bottom: 20px;
  border: 1px solid rgba(214, 228, 242, 0.98);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(20, 48, 82, 0.12);
}

.mmt-flow-results .mmt-result-search label {
  min-height: 78px;
  padding: 12px 18px;
  border-color: #e2ebf5;
  color: #6a788c;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mmt-flow-results .mmt-result-search input,
.mmt-flow-results .mmt-result-search select {
  color: #12315f;
  font-size: 1.05rem;
  font-weight: 900;
}

.mmt-result-flight-controls,
.mmt-result-stay-controls,
.mmt-result-cab-controls,
.mmt-result-route-controls,
.mmt-result-package-controls,
.mmt-result-activity-controls,
.mmt-result-visa-controls {
  grid-column: 1 / -1;
  border-top: 1px solid #e2ebf5;
  background: #f8fbff;
}

.mmt-results-layout {
  grid-template-columns: minmax(292px, 344px) minmax(0, 1fr);
  gap: 22px;
}

.mmt-filter-panel,
.mmt-result-dashboard,
.mmt-result-toolbar,
.mmt-listing-summary,
.mmt-result-card,
.mmt-premium-flight-card,
.mmt-premium-service-card {
  border-radius: 10px;
  border-color: rgba(214, 228, 242, 0.96);
  box-shadow: 0 18px 44px rgba(20, 48, 82, 0.08);
}

.mmt-result-dashboard,
.mmt-result-toolbar,
.mmt-listing-summary {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mmt-result-dashboard-head h2,
.mmt-listing-summary h2,
.mmt-result-card strong,
.mmt-premium-flight-card strong,
.mmt-premium-service-card strong {
  color: #12315f;
}

.mmt-sort-chip.active,
.mmt-date-option.active,
.mmt-quick-filters button.active {
  border-color: #c99a3f !important;
  color: #075ec5 !important;
  background: #fff9ed !important;
}

.custom-result-note,
.mmt-flight-promo,
.mmt-card-flow-note,
.mmt-supplier-live-strip {
  border-color: #ead29a !important;
  background: linear-gradient(135deg, #fff9ed, #ffffff) !important;
  color: #5b4217;
}

.flow-footer {
  width: min(1760px, calc(100% - 48px));
  margin-top: 38px;
  border-color: #d8e6f5;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 28px 70px rgba(20, 48, 82, 0.11);
}

.flow-footer-brand {
  background: linear-gradient(135deg, #ffffff, #fff9ed);
}

.flow-footer .brand {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.flow-footer-links a,
.flow-footer-brand p,
.flow-footer-bottom {
  color: #607087;
}

.flow-footer-links strong,
.flow-footer-assurance strong,
.flow-footer-bottom span:first-child {
  color: #12315f;
}

@media (max-width: 1420px) {
  .flow-topbar .header-main {
    grid-template-columns: minmax(220px, 330px) minmax(280px, 1fr) auto auto;
    min-height: 78px;
  }

  .flow-topbar .account-actions .helpline-chip {
    display: none;
  }

  .flow-topbar .brand-logo-image {
    max-width: 278px;
  }

  .flow-topbar .header-search {
    min-width: 0;
    min-height: 54px;
    padding-left: 12px;
  }

  .flow-topbar .header-search button {
    padding: 0 16px;
  }

  .flow-topbar .topnav {
    gap: 2px;
  }

  .flow-topbar .topnav a {
    min-height: 40px;
    padding: 0 8px;
    font-size: 0.82rem;
  }

  .flow-topbar .login-button {
    min-height: 54px;
    padding: 0 17px;
  }

  .flow-main,
  .flow-page[data-flow-page="results"] .mmt-results-main {
    padding-top: 194px;
  }
}

@media (max-width: 1120px) {
  .flow-topbar {
    width: min(100% - 18px, 980px);
  }

  .flow-topbar .header-main {
    grid-template-columns: 1fr;
  }

  .flow-topbar .topnav,
  .flow-topbar .account-actions {
    justify-content: stretch;
  }

  .flow-travel-menu {
    justify-content: flex-start;
    width: calc(100% - 18px);
  }

  .flow-main,
  .flow-page[data-flow-page="results"] .mmt-results-main {
    padding-top: 320px;
  }
}

@media (max-width: 820px) {
  .flow-main,
  .flow-page[data-flow-page="results"] .mmt-results-main {
    padding-top: 340px;
  }

  .mmt-flow-results {
    width: calc(100% - 18px);
  }

  .mmt-flow-results .mmt-result-search,
  .mmt-results-layout,
  .flow-footer,
  .flow-footer-assurance,
  .flow-footer-links {
    grid-template-columns: 1fr;
  }

  .flow-footer {
    width: calc(100% - 18px);
  }
}

/* Mobile and result-card premium polish */
.mmt-flight-v2,
.mmt-hotel-listing-card {
  border-color: #d8e6f5;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(20, 48, 82, 0.1);
}

.mmt-flight-v2:hover,
.mmt-hotel-listing-card:hover {
  transform: translateY(-1px);
  border-color: #bcd7f5;
  box-shadow: 0 24px 58px rgba(20, 48, 82, 0.14);
}

.mmt-flight-v2 .mmt-flight-promo,
.mmt-flight-v2 .mmt-flight-coupon {
  color: #5b4217;
  background: linear-gradient(90deg, #fff4d8, #ffffff);
}

.mmt-flight-v2 .mmt-flight-promo {
  border-radius: 12px 12px 0 0;
  font-size: 0.98rem;
}

.mmt-flight-row {
  grid-template-columns: minmax(170px, 0.72fr) minmax(390px, 1.54fr) minmax(230px, 0.74fr);
  padding: 14px 24px 16px 18px;
}

.mmt-flight-carrier i {
  border-radius: 8px;
  background: linear-gradient(135deg, #075ec5, #1d74e9);
  box-shadow: 0 12px 24px rgba(29, 116, 233, 0.2);
}

.mmt-flight-route-v2 {
  align-items: center;
}

.mmt-flight-route-v2 b {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.mmt-flight-route-v2 .mmt-flight-line i {
  height: 5px;
  background: linear-gradient(90deg, #c99a3f, #1d74e9);
}

.mmt-flight-v2 .mmt-flight-price-panel {
  align-content: center;
  justify-items: end;
}

.mmt-flight-v2 .mmt-flight-price-panel b {
  color: #12315f;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.mmt-flight-v2 .mmt-flight-price-panel button,
.mmt-hotel-price-panel button {
  min-height: 50px;
  border: 0 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #1d74e9, #075ec5) !important;
  box-shadow: 0 14px 28px rgba(29, 116, 233, 0.22);
}

.mmt-flight-v2 .mmt-flight-price-panel em {
  border: 1px solid #d8e9ff;
  border-radius: 8px;
  color: #075ec5;
  background: #eef6ff;
}

.mmt-flight-result-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 12px;
}

.mmt-flight-result-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #d8e9ff;
  border-radius: 999px;
  padding: 0 11px;
  color: #173256;
  background: #f6faff;
  font-size: 0.78rem;
  font-weight: 900;
}

.mmt-flight-result-chips span:nth-child(2) {
  border-color: #ead29a;
  color: #7a5a1c;
  background: #fff9ed;
}

.mmt-flight-detail-toggle {
  margin-right: 18px;
  color: #075ec5;
}

.mmt-flight-tabs button.active {
  background: linear-gradient(135deg, #1d74e9, #075ec5);
}

.mmt-hotel-listing-card {
  grid-template-columns: minmax(260px, 31%) minmax(0, 1fr) minmax(220px, 23%);
}

.mmt-hotel-listing-card .mmt-hotel-photo {
  margin: 18px 0 18px 18px;
  border-radius: 10px;
}

.mmt-hotel-photo > span {
  background: rgba(19, 35, 62, 0.82);
}

.mmt-hotel-listing-card .mmt-result-main {
  padding: 24px 28px;
}

.mmt-hotel-listing-card .mmt-hotel-title-row strong {
  color: #12315f;
  font-size: clamp(1.38rem, 2vw, 1.85rem);
}

.mmt-hotel-list-score b,
.mmt-hotel-review-box span {
  background: #075ec5;
}

.mmt-hotel-benefits {
  gap: 7px;
}

.mmt-hotel-listing-card .mmt-hotel-benefit {
  color: #254668;
  font-size: 0.96rem;
}

.mmt-hotel-listing-card .mmt-hotel-badges span {
  border-color: #ead29a;
  color: #7a5a1c;
  background: #fff9ed;
}

.mmt-hotel-listing-card .mmt-hotel-badges span:nth-child(n+2) {
  display: inline-flex;
}

.mmt-hotel-listing-card .mmt-hotel-badges span:nth-child(n+4),
.mmt-hotel-listing-card .mmt-hotel-amenities span:nth-child(n+4) {
  display: none;
}

.mmt-hotel-listing-card .mmt-stay-rate-options {
  display: none;
}

.mmt-hotel-price-panel {
  align-content: start;
  gap: 14px;
}

.mmt-hotel-price-stack {
  width: 100%;
}

.mmt-hotel-price-stack b {
  color: #12315f;
}

.mmt-hotel-listing-card .mmt-hotel-benefit:nth-child(n+3),
.mmt-hotel-listing-card .mmt-result-assurance,
.mmt-hotel-listing-card .mmt-hotel-blurb {
  display: none;
}

.mmt-hotel-listing-card .mmt-hotel-photo,
.mmt-hotel-listing-card .mmt-hotel-photo img {
  min-height: 286px;
}

.mmt-result-toolbar,
.mmt-listing-summary,
.mmt-filter-panel {
  border-radius: 12px;
}

@media (max-width: 1180px) {
  .mmt-flight-row {
    grid-template-columns: minmax(150px, 0.72fr) minmax(320px, 1.5fr) minmax(210px, 0.78fr);
    gap: 16px;
  }

  .mmt-hotel-listing-card {
    grid-template-columns: minmax(230px, 34%) minmax(0, 1fr);
  }

  .mmt-hotel-listing-card .mmt-hotel-price-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    justify-items: start;
    border-top: 1px solid #e4edf7;
    border-left: 0;
    text-align: left;
  }

  .mmt-hotel-review-box,
  .mmt-hotel-price-stack {
    justify-items: start;
  }

  .mmt-hotel-price-panel button {
    min-width: 190px;
  }
}

@media (max-width: 820px) {
  .flow-topbar {
    top: 6px;
    width: calc(100% - 12px);
  }

  .flow-topbar .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 74px;
    padding: 7px;
  }

  .flow-topbar .brand {
    min-height: 58px;
    padding: 6px 9px;
  }

  .flow-topbar .brand-logo-image {
    max-width: 210px;
    height: 42px;
  }

  .flow-topbar .header-search {
    grid-column: 1 / -1;
    order: 3;
    min-height: 48px;
  }

  .flow-topbar .topnav {
    display: none;
  }

  .flow-topbar .account-actions {
    align-items: stretch;
  }

  .flow-topbar .login-button {
    min-height: 58px;
    padding: 0 13px;
    white-space: nowrap;
  }

  .flow-travel-menu {
    width: calc(100% - 12px);
    min-height: 72px;
    padding: 6px;
    border-radius: 10px;
  }

  .flow-travel-menu a {
    min-width: 82px;
    min-height: 58px;
    gap: 4px;
    font-size: 0.78rem;
  }

  .flow-travel-menu a svg {
    width: 18px;
    height: 18px;
  }

  .flow-main,
  .flow-page[data-flow-page="results"] .mmt-results-main {
    padding-top: 238px;
  }

  .mmt-flow-results .mmt-result-search {
    gap: 0;
    overflow: hidden;
    border-radius: 12px;
  }

  .mmt-flow-results .mmt-result-search label {
    min-height: 68px;
    padding: 10px 14px;
  }

  .mmt-result-flight-controls,
  .mmt-result-stay-controls,
  .mmt-result-cab-controls,
  .mmt-result-route-controls,
  .mmt-result-package-controls,
  .mmt-result-activity-controls,
  .mmt-result-visa-controls {
    grid-template-columns: 1fr 1fr;
  }

  .mmt-filter-panel {
    max-height: none;
  }

  .mmt-result-toolbar .mmt-result-sort-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmt-result-sort-tabs button::before {
    width: 38px;
    height: 38px;
  }

  .mmt-flight-v2,
  .mmt-hotel-listing-card {
    border-radius: 12px;
  }

  .mmt-flight-row,
  .mmt-hotel-listing-card,
  .mmt-hotel-listing-card .mmt-hotel-price-panel {
    grid-template-columns: 1fr;
  }

  .mmt-flight-row {
    gap: 14px;
    padding: 12px 14px 14px;
  }

  .mmt-flight-route-v2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mmt-flight-route-v2 div:not(.mmt-flight-line),
  .mmt-flight-v2 .mmt-flight-price-panel,
  .mmt-hotel-price-panel,
  .mmt-hotel-review-box,
  .mmt-hotel-price-stack {
    justify-items: start;
    text-align: left;
  }

  .mmt-flight-v2 .mmt-flight-price-panel button,
  .mmt-hotel-price-panel button {
    width: 100%;
  }

  .mmt-flight-v2 .mmt-flight-price-panel em {
    width: 100%;
    justify-content: center;
  }

  .mmt-flight-result-chips {
    padding: 0 14px 12px;
  }

  .mmt-flight-v2 .mmt-flight-coupon {
    margin: 0 14px;
  }

  .mmt-flight-detail-toggle {
    justify-self: start;
    margin: 4px 14px 14px;
  }

  .mmt-hotel-listing-card .mmt-hotel-photo {
    margin: 14px 14px 0;
    min-height: 230px;
  }

  .mmt-hotel-listing-card .mmt-hotel-photo img {
    min-height: 230px;
  }

  .mmt-hotel-listing-card .mmt-result-main {
    padding: 18px 16px;
  }

  .mmt-hotel-listing-card .mmt-hotel-title-row {
    display: grid;
    gap: 8px;
  }

  .mmt-hotel-listing-card .mmt-stay-rate-options {
    grid-template-columns: 1fr;
  }

  .mmt-hotel-price-panel {
    padding: 18px 16px;
    border-top: 1px solid #e4edf7;
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .flow-topbar .header-main {
    grid-template-columns: 1fr;
  }

  .flow-topbar .account-actions {
    display: none;
  }

  .flow-topbar .brand {
    justify-content: center;
  }

  .flow-topbar .brand-logo-image {
    object-position: center;
  }

  .flow-main,
  .flow-page[data-flow-page="results"] .mmt-results-main {
    padding-top: 224px;
  }

  .mmt-result-flight-controls,
  .mmt-result-stay-controls,
  .mmt-result-cab-controls,
  .mmt-result-route-controls,
  .mmt-result-package-controls,
  .mmt-result-activity-controls,
  .mmt-result-visa-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmt-result-toolbar .mmt-result-sort-tabs {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .mmt-result-toolbar .mmt-result-sort-tabs button {
    flex: 0 0 168px;
    min-height: 72px;
    padding: 10px;
  }

  .mmt-result-toolbar .mmt-result-sort-tabs button::before {
    width: 34px;
    height: 34px;
  }

  .mmt-result-toolbar .mmt-quick-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .mmt-result-toolbar .mmt-quick-filters span,
  .mmt-result-toolbar .mmt-quick-filters button {
    flex: 0 0 auto;
  }

  .mmt-listing-summary {
    gap: 10px;
  }

  .mmt-result-dashboard-head {
    padding: 14px;
  }

  .mmt-supplier-live-strip {
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
  }

  .mmt-supplier-live-strip a {
    min-height: 36px;
    padding: 0 12px;
    white-space: nowrap;
  }

  .mmt-fare-rail {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
  }

  .mmt-fare-rail > div {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .mmt-fare-rail .mmt-date-option {
    flex: 0 0 96px;
    min-height: 76px;
    padding: 9px 8px;
  }

  .mmt-result-toolbar {
    gap: 10px;
    padding: 12px;
  }

  .mmt-result-toolbar p {
    font-size: 0.86rem;
  }

  .mmt-flow-results {
    width: calc(100% - 12px);
  }

  .mmt-flow-results .mmt-result-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmt-flow-results .mmt-result-search label:first-child,
  .mmt-flow-results .mmt-result-search .search-button,
  .mmt-result-flight-controls,
  .mmt-result-stay-controls,
  .mmt-result-cab-controls,
  .mmt-result-route-controls,
  .mmt-result-package-controls,
  .mmt-result-activity-controls,
  .mmt-result-visa-controls {
    grid-column: 1 / -1;
  }

  .mmt-flow-results .mmt-result-search label,
  .mmt-result-flight-controls label,
  .mmt-result-stay-controls label,
  .mmt-result-cab-controls label,
  .mmt-result-route-controls label,
  .mmt-result-package-controls label,
  .mmt-result-activity-controls label,
  .mmt-result-visa-controls label {
    min-height: 58px;
    padding: 8px 10px;
  }

  .mmt-flow-results .mmt-result-search input,
  .mmt-flow-results .mmt-result-search select {
    font-size: 0.92rem;
  }

  .mmt-flow-results .mmt-result-search .search-button {
    width: calc(100% - 20px);
    margin: 10px;
  }

  .mmt-filter-panel {
    max-height: 260px;
    overflow-y: auto;
  }

  .flow-page[data-flow-page="results"] .mmt-filter-panel {
    max-height: 260px;
    overflow-y: auto;
  }

  .mmt-filter-card {
    padding: 12px;
  }

  .mmt-hotel-photo button {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }

  .mmt-hotel-photo > span {
    max-width: calc(100% - 24px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mmt-hotel-listing-card .mmt-result-main {
    gap: 8px;
  }

  .mmt-hotel-list-score small,
  .mmt-hotel-listing-card .mmt-hotel-badges span:nth-child(n+3),
  .mmt-hotel-listing-card .mmt-hotel-amenities,
  .mmt-hotel-listing-card .mmt-hotel-benefit:nth-child(n+2),
  .mmt-hotel-price-panel .mmt-hotel-review-box,
  .mmt-hotel-price-panel > small,
  .mmt-hotel-price-panel em,
  .mmt-hotel-price-stack strong {
    display: none;
  }

  .mmt-hotel-listing-card .mmt-hotel-title-row strong {
    font-size: 1.32rem;
  }

  .mmt-hotel-listing-card .mmt-result-location {
    font-size: 0.92rem;
    line-height: 1.3;
  }

  .mmt-hotel-price-panel {
    gap: 10px;
  }

  .mmt-hotel-price-stack {
    gap: 2px;
  }

  .mmt-hotel-price-stack b {
    font-size: 1.55rem;
  }

  .mmt-flight-v2 {
    gap: 0;
  }

  .mmt-flight-v2 .mmt-flight-promo {
    min-height: 36px;
    padding: 10px 12px 6px;
    font-size: 0.86rem;
  }

  .mmt-flight-carrier {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
  }

  .mmt-flight-carrier i {
    width: 42px;
    height: 42px;
  }

  .mmt-flight-carrier label {
    margin-top: 2px;
  }

  .mmt-flight-route-v2 b {
    font-size: 1.42rem;
  }

  .mmt-flight-route-v2,
  .mmt-flight-v2 .mmt-flight-route-v2 {
    grid-template-columns: minmax(0, 0.9fr) minmax(86px, 0.72fr) minmax(0, 0.9fr);
    align-items: start;
    gap: 8px;
  }

  .mmt-flight-route-v2 div:not(.mmt-flight-line) {
    gap: 4px;
  }

  .mmt-flight-route-v2 span {
    font-size: 0.82rem;
  }

  .mmt-flight-route-v2 .mmt-flight-line {
    justify-items: center;
    text-align: center;
  }

  .mmt-flight-route-v2 .mmt-flight-line i {
    width: 72px;
  }

  .mmt-flight-v2 .mmt-flight-price-panel {
    gap: 6px;
    padding-top: 4px;
  }

  .mmt-flight-result-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .mmt-flight-result-chips span {
    flex: 0 0 auto;
  }

  .mmt-flight-result-chips span:nth-child(n+4) {
    display: none;
  }

  .mmt-flight-v2 .mmt-flight-coupon {
    min-height: auto;
    padding: 8px 10px;
    font-size: 0.78rem;
  }
}

/* Hotel listing card: full-photo MakeMyTrip-style sizing */
.mmt-hotel-listing-card.mmt-stay-v2 {
  grid-template-columns: minmax(318px, 356px) minmax(0, 1fr) minmax(220px, 260px);
  align-items: stretch;
  min-height: 338px;
  border: 1px solid #d9e3ef;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 43, 78, 0.08);
}

.mmt-hotel-listing-card.mmt-stay-v2:hover {
  border-color: #bdd5f1;
  box-shadow: 0 16px 34px rgba(16, 43, 78, 0.12);
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-photo {
  position: relative;
  align-self: start;
  width: calc(100% - 24px);
  height: 288px;
  min-height: 288px;
  margin: 24px 0 24px 24px;
  border-radius: 4px;
  overflow: hidden;
  background: #eaf2fb;
  box-shadow: none;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-photo button {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  color: #253a59;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(16, 43, 78, 0.18);
  font-size: 1.35rem;
  line-height: 1;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-photo > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: auto;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 24px);
  min-height: 30px;
  border-radius: 999px;
  padding: 0 14px;
  color: #ffffff;
  background: rgba(13, 29, 52, 0.82);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-photo i {
  position: absolute;
  left: 14px;
  bottom: 18px;
  width: 68px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 6px 5px, #ffffff 0 4px, transparent 5px),
    radial-gradient(circle at 22px 5px, rgba(255,255,255,0.58) 0 4px, transparent 5px),
    radial-gradient(circle at 38px 5px, rgba(255,255,255,0.42) 0 4px, transparent 5px),
    radial-gradient(circle at 54px 5px, rgba(255,255,255,0.32) 0 4px, transparent 5px),
    rgba(13, 29, 52, 0.44);
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-main {
  gap: 9px;
  padding: 22px 28px 20px 30px;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-kicker,
.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-list-score,
.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-amenities,
.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-blurb,
.mmt-hotel-listing-card.mmt-stay-v2 .mmt-stay-rate-options,
.mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-details,
.mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-assurance,
.mmt-hotel-listing-card.mmt-stay-v2 .mmt-card-flow-note,
.mmt-hotel-listing-card.mmt-stay-v2 .mmt-service-detail-toggle {
  display: none;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-title-row strong {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: #071b35;
  font-size: clamp(1.38rem, 1.7vw, 1.72rem);
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-stars {
  flex: 0 0 auto;
  border: 0 !important;
  padding: 0 !important;
  color: #d2d8df !important;
  background: transparent !important;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-stars::before {
  color: #071b35;
  font-size: 1rem;
  letter-spacing: 1px;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-location {
  margin: 0;
  overflow: hidden;
  color: #243854;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.32;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-location a {
  color: #075ec5;
  font-weight: 850;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-badges {
  margin-top: 5px;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-badges span {
  min-height: 34px;
  border: 1px solid #aeb9c6;
  border-radius: 4px;
  padding: 0 10px;
  color: #687789;
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 760;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-badges span:nth-child(n+2) {
  display: none;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefits {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit {
  display: block;
  min-height: 24px;
  overflow: hidden;
  padding-left: 28px;
  color: #08746c;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.28;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit::before {
  top: 1px;
  width: 18px;
  height: 18px;
  color: #08746c;
  background: transparent;
  font-size: 0.82rem;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit.deal::before {
  content: "%";
  color: #08746c;
  background: transparent;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit.check::before {
  content: "v";
  color: #08746c;
  background: transparent;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit.tip {
  color: #8a651f;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit.tip::before {
  content: "i";
  color: #c99a3f;
  background: transparent;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 14px;
  padding: 24px 24px 20px;
  border-left: 1px solid #d9e3ef;
  background: #ffffff;
  text-align: right;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-review-box {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: end;
  align-items: center;
  column-gap: 8px;
  row-gap: 3px;
  width: 100%;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-review-box strong {
  color: #075ec5;
  font-size: 1.12rem;
  font-weight: 950;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-review-box span {
  min-height: 30px;
  border-radius: 4px;
  padding: 0 9px;
  color: #ffffff;
  background: #075ec5;
  font-size: 1rem;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-review-box small {
  grid-column: 1 / -1;
  color: #243854;
  font-size: 0.92rem;
  font-weight: 650;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack {
  justify-items: end;
  gap: 4px;
  width: 100%;
  margin-top: 44px;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack small {
  display: none;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack b {
  color: #071b35;
  font-size: clamp(1.72rem, 2.3vw, 2.08rem);
  font-weight: 950;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack span {
  max-width: none;
  color: #5f7188;
  font-size: 0.92rem;
  font-weight: 650;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack strong {
  display: none;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel > small {
  margin-top: -10px;
  color: #5f7188;
  font-size: 0.94rem;
  font-weight: 650;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel button {
  justify-self: end;
  width: auto;
  min-height: auto;
  margin-top: 42px;
  border: 0 !important;
  border-radius: 0;
  padding: 0;
  color: #075ec5 !important;
  background: transparent !important;
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 850;
}

.mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel em {
  display: none;
}

@media (max-width: 1180px) {
  .mmt-hotel-listing-card.mmt-stay-v2 {
    grid-template-columns: minmax(270px, 330px) minmax(0, 1fr);
  }

  .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    justify-items: start;
    border-top: 1px solid #d9e3ef;
    border-left: 0;
    text-align: left;
  }

  .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-review-box,
  .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack {
    justify-items: start;
  }

  .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack {
    margin-top: 0;
  }

  .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel button {
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  .mmt-hotel-listing-card.mmt-stay-v2 {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-photo {
    width: auto;
    height: 238px;
    min-height: 238px;
    margin: 14px 14px 0;
  }

  .mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-main {
    padding: 16px 16px 14px;
  }

  .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit:nth-child(n+4) {
    display: none;
  }

  .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel {
    padding: 16px;
  }
}

/* Results page compact header and premium flight detail panel */
.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar {
  top: 0;
  z-index: 90;
  width: 100%;
  gap: 0;
}

.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .header-main {
  grid-template-columns: minmax(260px, 430px) minmax(360px, 1fr) auto auto;
  width: 100%;
  min-height: 76px;
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 255, 0.98)),
    linear-gradient(90deg, rgba(29, 116, 233, 0.08), rgba(201, 154, 63, 0.1));
  box-shadow: 0 16px 38px rgba(20, 48, 82, 0.16);
}

.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-travel-menu {
  max-height: 0;
  min-height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: max-height 0.22s ease, opacity 0.2s ease, transform 0.2s ease;
}

.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .brand,
.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .header-search,
.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .login-button {
  min-height: 56px;
}

.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .brand-logo-image {
  height: 48px;
}

.mmt-flight-expanded {
  border-top: 1px solid #d7e5f5;
  background:
    radial-gradient(circle at 92% 0%, rgba(201, 154, 63, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  overflow: hidden;
}

.mmt-flight-v2 .mmt-flight-expanded {
  border-radius: 0 0 12px 12px;
}

.mmt-flight-tabs {
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid #d7e5f5;
  background: #ffffff;
}

.mmt-flight-tabs button {
  min-height: 46px;
  border: 1px solid #d8e6f5;
  border-radius: 10px;
  padding: 0 18px;
  color: #173256;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 8px 18px rgba(20, 48, 82, 0.05);
}

.mmt-flight-tabs button.active {
  border-color: #075ec5;
  color: #ffffff;
  background: linear-gradient(135deg, #1d74e9, #075ec5);
  box-shadow: 0 12px 26px rgba(29, 116, 233, 0.22);
}

.mmt-flight-tab-panel {
  padding: 22px 24px 26px;
}

.mmt-flight-tab-panel h4 {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  border: 1px solid #ead6a5;
  border-radius: 999px;
  padding: 0 14px;
  color: #76571d;
  background: #fff8e9;
  font-size: 0.94rem;
  letter-spacing: 0;
}

.mmt-flight-detail-grid {
  grid-template-columns: minmax(210px, 1.05fr) minmax(130px, 0.72fr) minmax(150px, 0.76fr) minmax(130px, 0.72fr) repeat(3, minmax(118px, 0.58fr));
  gap: 14px;
  align-items: stretch;
}

.mmt-flight-detail-airline,
.mmt-flight-detail-time,
.mmt-flight-detail-line,
.mmt-flight-baggage {
  min-width: 0;
  border: 1px solid #d8e6f5;
  border-radius: 12px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(20, 48, 82, 0.08);
}

.mmt-flight-detail-airline {
  align-items: center;
}

.mmt-flight-detail-airline i {
  border-radius: 10px;
  background:
    linear-gradient(135deg, #1d74e9, #075ec5),
    linear-gradient(135deg, #c99a3f, #f5d37a);
  box-shadow: 0 10px 18px rgba(29, 116, 233, 0.2);
}

.mmt-flight-detail-airline strong,
.mmt-flight-detail-time strong,
.mmt-flight-baggage b {
  color: #12315f;
  font-size: 1rem;
  line-height: 1.18;
}

.mmt-flight-detail-airline span,
.mmt-flight-detail-airline em,
.mmt-flight-detail-time span,
.mmt-flight-detail-time small {
  color: #5f7188;
  line-height: 1.35;
}

.mmt-flight-detail-line {
  align-content: center;
  justify-items: stretch;
  background:
    linear-gradient(180deg, #ffffff, #eef6ff);
  text-align: center;
}

.mmt-flight-detail-line strong,
.mmt-flight-detail-line span {
  justify-self: center;
}

.mmt-flight-detail-line i {
  width: 100%;
  max-width: 112px;
  margin: 0 auto;
  background: linear-gradient(90deg, #c99a3f, #65d7c7, #1d74e9);
}

.mmt-flight-baggage {
  align-content: start;
  position: relative;
}

.mmt-flight-baggage::before {
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c99a3f, #1d74e9);
}

.mmt-flight-baggage span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  color: #42556f;
  background: #eef6ff;
  font-size: 0.86rem;
  font-weight: 900;
}

.mmt-flight-detail-notes {
  gap: 10px;
  margin-top: 18px;
}

.mmt-flight-detail-notes span {
  border: 1px solid #d8e6f5;
  border-radius: 999px;
  background: #ffffff;
  color: #243b5a;
  box-shadow: 0 8px 18px rgba(20, 48, 82, 0.05);
}

.mmt-flight-policy-grid article {
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 154, 63, 0.11), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 12px 28px rgba(20, 48, 82, 0.08);
}

@media (max-width: 1420px) {
  .flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .header-main {
    grid-template-columns: minmax(220px, 330px) minmax(280px, 1fr) auto auto;
  }
}

@media (max-width: 1180px) {
  .mmt-flight-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmt-flight-detail-line {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1120px) {
  .flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .header-main {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .mmt-flight-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .mmt-flight-tabs button {
    flex: 0 0 160px;
  }

  .mmt-flight-detail-grid,
  .mmt-flight-policy-grid {
    grid-template-columns: 1fr;
  }

  .mmt-flight-detail-line {
    grid-column: auto;
  }
}

.mmt-flight-detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}

.mmt-flight-detail-grid > * {
  min-width: 0;
}

.mmt-flight-detail-airline {
  grid-column: span 2;
}

@media (max-width: 700px) {
  .mmt-flight-detail-airline {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .mmt-service-v2 {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mmt-service-v2 .mmt-service-visual,
  .mmt-service-v2 .mmt-service-visual img {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
  }

  .mmt-service-v2 .mmt-service-visual {
    margin: 16px;
  }

  .mmt-service-v2 .mmt-result-main {
    padding: 18px;
  }

  .mmt-service-v2 .mmt-service-price-panel {
    justify-items: stretch;
    border-left: 0;
    padding: 0 18px 18px;
    text-align: left;
  }

  .mmt-gallery-backdrop {
    padding: 10px;
  }

  .mmt-gallery-modal {
    max-height: calc(100vh - 20px);
    padding: 14px;
  }

  .mmt-gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .mmt-gallery-main img {
    height: 340px;
  }

  .mmt-gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 821px) {
  .mmt-service-v2.mmt-premium-service-card {
    grid-template-columns: minmax(230px, 32%) minmax(0, 1fr) minmax(200px, 24%);
    height: 346px;
    min-height: 346px;
    max-height: 346px;
  }

  .mmt-service-v2.mmt-premium-service-card .mmt-service-visual,
  .mmt-service-v2.mmt-premium-service-card .mmt-service-visual img {
    height: 292px;
    min-height: 292px;
    max-height: 292px;
  }

  .mmt-service-v2.mmt-premium-service-card .mmt-service-visual {
    margin: 20px 0 20px 20px;
  }

  .mmt-service-v2.mmt-premium-service-card .mmt-service-main {
    gap: 10px;
    padding: 24px 28px;
    overflow: hidden;
  }

  .mmt-service-v2.mmt-premium-service-card .mmt-service-price-panel {
    padding: 24px;
    overflow: hidden;
  }
}

/* Shared MakeMyTrip-style result cards for all non-hotel services. */
.mmt-service-v2.mmt-premium-service-card {
  grid-template-columns: minmax(318px, 356px) minmax(0, 1fr) minmax(220px, 260px);
  min-height: 338px;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(16, 43, 78, 0.08);
}

.mmt-service-v2.mmt-premium-service-card .mmt-service-visual {
  position: relative;
  align-self: start;
  width: calc(100% - 24px);
  height: 288px;
  min-height: 288px;
  max-height: 288px;
  margin: 24px 0 24px 24px;
  border-radius: 4px;
  background: #eaf2fb;
  box-shadow: none;
  cursor: pointer;
}

.mmt-service-v2.mmt-premium-service-card .mmt-service-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease;
}

.mmt-service-v2.mmt-premium-service-card .mmt-service-visual:hover img {
  transform: scale(1.035);
}

.mmt-service-v2.mmt-premium-service-card .mmt-service-visual::after {
  content: "View photos";
  position: absolute;
  left: 14px;
  top: 14px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(7, 94, 197, 0.9);
  font-size: 0.78rem;
  font-weight: 950;
}

.mmt-service-v2.mmt-premium-service-card .mmt-service-visual span {
  position: absolute;
  right: 12px;
  top: 12px;
  left: auto;
  max-width: calc(100% - 120px);
  color: #075ec5;
  background: rgba(234, 243, 255, 0.96);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mmt-service-v2.mmt-premium-service-card .mmt-service-visual i {
  position: absolute;
  right: 12px;
  bottom: 58px;
  width: 54px;
  height: 42px;
  border-radius: 12px;
}

.mmt-service-v2.mmt-premium-service-card .mmt-photo-count-button {
  right: 12px;
  bottom: 12px;
  left: auto;
  max-width: calc(100% - 24px);
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(13, 29, 52, 0.82) !important;
  color: #ffffff !important;
}

.mmt-service-v2.mmt-premium-service-card .mmt-service-main {
  padding: 22px 28px 20px 30px;
}

.mmt-service-v2.mmt-premium-service-card .mmt-service-price-panel {
  border-left: 1px solid #e4edf7;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mmt-cruise-result,
.mmt-forex-result,
.mmt-insurance-result {
  border-color: #d9e8f8;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
}

.mmt-cruise-visual,
.mmt-forex-visual,
.mmt-insurance-visual {
  background: linear-gradient(135deg, #f2f8ff, #ffffff);
}

@media (max-width: 1180px) {
  .mmt-service-v2.mmt-premium-service-card {
    grid-template-columns: 280px minmax(0, 1fr);
    max-height: none;
    height: auto;
  }

  .mmt-service-v2.mmt-premium-service-card .mmt-service-price-panel {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid #e4edf7;
  }
}

@media (max-width: 820px) {
  .mmt-service-v2.mmt-premium-service-card {
    grid-template-columns: 1fr;
  }

  .mmt-service-v2.mmt-premium-service-card .mmt-service-visual {
    width: auto;
    margin: 16px;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
  }
}

/* Premium service detail pages for bus, holidays, tours, visa, cruise, forex and insurance. */
.mmt-service-detail-page {
  border-color: #d8e6f5;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 24px 62px rgba(20, 48, 82, 0.12);
}

.mmt-service-detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: 12px 12px 0 0;
  background-position: center;
  background-size: cover;
}

.mmt-service-detail-hero > section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.mmt-service-detail-hero > section article {
  display: grid;
  gap: 4px;
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.mmt-service-detail-hero > section span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-service-detail-hero > section strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.22;
  text-overflow: ellipsis;
}

.mmt-service-detail-page .mmt-detail-content {
  gap: 20px;
  padding: clamp(20px, 3vw, 34px);
}

.mmt-service-detail-page .mmt-detail-gallery {
  position: relative;
  grid-template-columns: minmax(0, 1.28fr) repeat(3, minmax(120px, 0.72fr));
  cursor: pointer;
}

.mmt-service-detail-page .mmt-detail-gallery img {
  min-height: 154px;
  border-radius: 10px;
}

.mmt-service-detail-page .mmt-detail-gallery img:first-child {
  min-height: 244px;
}

.mmt-detail-gallery-button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #ffffff;
  background: rgba(19, 35, 62, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 950;
  box-shadow: 0 14px 26px rgba(20, 48, 82, 0.22);
}

.mmt-service-detail-command,
.mmt-service-checklist-panel,
.mmt-service-continue-panel {
  display: grid;
  gap: 14px;
  border: 1px solid #d8e6f5;
  border-radius: 12px;
  padding: 18px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 16px 38px rgba(20, 48, 82, 0.08);
}

.mmt-service-detail-command {
  border-color: #e4c477;
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 154, 63, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff, #f7fbff);
}

.mmt-service-detail-command .mmt-detail-section-head button,
.mmt-service-continue-panel button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d74e9, #075ec5);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(29, 116, 233, 0.22);
}

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

.mmt-service-detail-command-grid article,
.mmt-service-checklist-grid article {
  display: grid;
  gap: 7px;
  min-height: 142px;
  border: 1px solid #dbe8f6;
  border-radius: 10px;
  padding: 14px;
  background: #ffffff;
}

.mmt-service-detail-command-grid span,
.mmt-service-checklist-grid strong {
  color: #7a5a1c;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-service-detail-command-grid strong {
  color: #12315f;
  font-size: 1rem;
  line-height: 1.2;
}

.mmt-service-detail-command-grid p,
.mmt-service-checklist-grid li {
  color: #53657c;
  font-size: 0.88rem;
  font-weight: 790;
  line-height: 1.42;
}

.mmt-service-checklist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mmt-service-checklist-grid ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmt-service-checklist-grid li {
  position: relative;
  padding-left: 18px;
}

.mmt-service-checklist-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #c99a3f;
}

.mmt-service-continue-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-color: #e4c477;
  background: linear-gradient(135deg, #fff9ed, #ffffff);
}

.mmt-service-continue-panel div {
  display: grid;
  gap: 4px;
}

.mmt-service-continue-panel span {
  color: #7a5a1c;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-service-continue-panel strong {
  color: #12315f;
  font-size: clamp(1.45rem, 2.4vw, 2.08rem);
  font-weight: 950;
}

.mmt-service-continue-panel p {
  color: #53657c;
}

.mmt-service-detail-page .mmt-detail-rule-tabs article.active {
  border-color: #c99a3f;
  background: #fff9ed;
}

.mmt-service-spotlight,
.mmt-service-experience-panel {
  display: grid;
  gap: 16px;
  border: 1px solid #d8e6f5;
  border-radius: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 116, 233, 0.1), transparent 32%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 42px rgba(20, 48, 82, 0.08);
}

.mmt-service-spotlight {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.mmt-service-spotlight > div:first-child {
  display: grid;
  gap: 8px;
}

.mmt-service-spotlight span,
.mmt-service-action-row span {
  color: #7a5a1c;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-service-spotlight strong {
  color: #12315f;
  font-size: clamp(1.28rem, 2.2vw, 2.05rem);
  font-weight: 950;
  line-height: 1.08;
}

.mmt-service-spotlight p {
  margin: 0;
  color: #53657c;
  font-weight: 820;
  line-height: 1.48;
}

.mmt-service-spotlight-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mmt-service-spotlight-stats article {
  display: grid;
  gap: 7px;
  min-height: 96px;
  border: 1px solid #d8e6f5;
  border-radius: 12px;
  padding: 13px;
  background: #ffffff;
}

.mmt-service-spotlight-stats small {
  color: #6a7890;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-service-spotlight-stats b {
  color: #0d5cc7;
  font-size: 0.98rem;
  line-height: 1.2;
}

.mmt-service-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border: 1px solid #e4c477;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(135deg, #fff9ed, #ffffff);
}

.mmt-service-action-row a,
.mmt-service-action-row button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfe0f4;
  border-radius: 999px;
  padding: 0 18px;
  color: #075ec5;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-decoration: none;
}

.mmt-service-action-row button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #1d74e9, #075ec5);
  box-shadow: 0 14px 28px rgba(29, 116, 233, 0.2);
}

.mmt-service-action-row span {
  margin-left: auto;
}

.mmt-service-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mmt-service-experience-grid article {
  display: grid;
  gap: 8px;
  min-height: 152px;
  border: 1px solid #d8e6f5;
  border-radius: 12px;
  padding: 15px;
  background: #ffffff;
}

.mmt-service-experience-grid span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #ffffff;
  background: #0d5cc7;
  font-size: 0.74rem;
  font-weight: 950;
}

.mmt-service-experience-grid strong {
  color: #12315f;
  font-size: 1.02rem;
  font-weight: 950;
}

.mmt-service-experience-grid p {
  margin: 0;
  color: #53657c;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.42;
}

.mmt-service-detail-page-cab .mmt-service-detail-hero,
.mmt-service-spotlight-cab {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 154, 63, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff, #f6fbff);
}

.mmt-service-detail-page-visa .mmt-service-spotlight,
.mmt-service-spotlight-visa,
.mmt-service-detail-page-forex .mmt-service-spotlight,
.mmt-service-spotlight-forex,
.mmt-service-detail-page-insurance .mmt-service-spotlight,
.mmt-service-spotlight-insurance {
  border-color: #cfe0f4;
  background:
    radial-gradient(circle at 0% 0%, rgba(29, 116, 233, 0.12), transparent 35%),
    linear-gradient(135deg, #ffffff, #f8fbff);
}

.mmt-service-detail-page-package .mmt-service-spotlight,
.mmt-service-spotlight-package,
.mmt-service-detail-page-cruise .mmt-service-spotlight,
.mmt-service-spotlight-cruise {
  border-color: #e7cd8a;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 154, 63, 0.18), transparent 35%),
    linear-gradient(135deg, #ffffff, #fffaf0);
}

.mmt-service-detail-page-visa .mmt-service-detail-command,
.mmt-service-detail-page-forex .mmt-service-detail-command {
  border-color: #d4e7fb;
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 116, 233, 0.12), transparent 35%),
    linear-gradient(135deg, #ffffff, #f7fbff);
}

@media (max-width: 1180px) {
  .mmt-service-detail-command-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmt-service-spotlight,
  .mmt-service-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmt-service-detail-page .mmt-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mmt-service-detail-hero > section,
  .mmt-service-detail-command-grid,
  .mmt-service-checklist-grid,
  .mmt-service-continue-panel,
  .mmt-service-spotlight,
  .mmt-service-spotlight-stats,
  .mmt-service-experience-grid {
    grid-template-columns: 1fr;
  }

  .mmt-service-action-row span {
    width: 100%;
    margin-left: 0;
  }

  .mmt-service-detail-page .mmt-detail-gallery {
    grid-template-columns: 1fr;
  }

  .mmt-service-detail-page .mmt-detail-gallery img,
  .mmt-service-detail-page .mmt-detail-gallery img:first-child {
    min-height: 220px;
  }
}

.mmt-gallery-close {
  width: auto;
  min-width: 72px;
  padding: 0 14px;
  border-radius: 999px;
}

.mmt-stay-rate-options button,
.mmt-stay-rate-option {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid #d9e5f3;
  border-radius: 14px;
  padding: 11px 12px;
  color: #40516a;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.mmt-stay-rate-options button:hover,
.mmt-stay-rate-option:hover {
  border-color: #c99a3f;
  box-shadow: 0 14px 28px rgba(201, 154, 63, 0.14);
  transform: translateY(-1px);
}

.mmt-stay-rate-options button.active,
.mmt-stay-rate-option.active {
  border-color: #14b8a6;
  background: #f1fcf7;
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.13);
}

.mmt-stay-rate-options em {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #0b5fc4;
  background: #eef6ff;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
}

.mmt-flight-expanded-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid #d7e5f5;
  padding: 16px 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 154, 63, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff, #f5faff);
}

.mmt-flight-expanded-head > div {
  display: grid;
  gap: 4px;
}

.mmt-flight-expanded-head > div:last-child {
  justify-items: end;
}

.mmt-flight-expanded-head span,
.mmt-flight-expanded-head small {
  color: #b88927;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-flight-expanded-head strong {
  color: #12315f;
  font-size: 1.2rem;
  font-weight: 950;
}

.mmt-flight-expanded-head p {
  margin: 0;
  color: #607189;
  font-weight: 820;
}

.mmt-flight-expanded-head b {
  color: #12315f;
  font-size: 1.35rem;
  font-weight: 950;
}

.mmt-flight-expanded-head button,
.mmt-flight-panel-action button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d74e9, #075ec5);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(29, 116, 233, 0.2);
}

.mmt-flight-baggage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mmt-flight-baggage-chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d7e8fb;
  border-radius: 999px;
  padding: 0 12px;
  color: #17365f;
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
}

.mmt-flight-panel-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  border: 1px solid #ead6a5;
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff9ed;
}

.mmt-flight-panel-action span {
  color: #76571d;
  font-weight: 880;
}

.mmt-payment-box .pay-button {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d74e9, #075ec5);
  box-shadow: 0 16px 34px rgba(29, 116, 233, 0.24);
}

.mmt-review-section .mmt-payment-box {
  max-height: calc(100vh - 130px);
  overflow: auto;
  scrollbar-color: #9fb4cc transparent;
}

@media (max-width: 900px) {
  .mmt-flight-expanded-head {
    grid-template-columns: 1fr;
  }

  .mmt-flight-expanded-head > div:last-child {
    justify-items: start;
  }

  .mmt-flight-panel-action {
    align-items: stretch;
  }

  .mmt-flight-panel-action button {
    width: 100%;
  }
}

/* Colourful premium booking/results refresh: deep blue text, no black UI */
.flow-page {
  color: #12315f !important;
}

.flow-page :where(h1, h2, h3, h4, h5, h6, strong, b, label, .result-price, .mmt-flight-expanded-head strong, .mmt-flight-expanded-head b) {
  color: #12315f !important;
}

.flow-page :where(p, li, small, .muted, .card-subtitle, .mmt-flight-expanded-head p) {
  color: #5d78a0 !important;
}

.flow-page :where(.eyebrow, .result-status, .mmt-flight-expanded-head span, .mmt-flight-expanded-head small) {
  color: #b88927 !important;
}

.flow-page :where(.flow-hero, .result-search-engine, .customer-form, .plan-summary, .confirmation-panel, .live-result-card, .filters-panel, .result-card, .hotel-card, .mmt-detail-policy-card, .mmt-flight-expanded-head, .mmt-flight-panel-action) {
  border-color: #cfe0f4 !important;
  background:
    radial-gradient(circle at top right, rgba(201, 154, 63, 0.13), transparent 30%),
    linear-gradient(135deg, #ffffff, #f5faff) !important;
  box-shadow: 0 18px 46px rgba(29, 86, 156, 0.11) !important;
}

.flow-page :where(.booking-steps span.active, .pay-button, .live-result-card button, .mmt-flight-expanded-head button, .mmt-flight-panel-action button) {
  color: #ffffff !important;
  background: linear-gradient(135deg, #1d74e9, #075ec5) !important;
}

.flow-page :where(a, .link-button) {
  color: #075ec5;
}

.flow-page :where(input, select, textarea) {
  color: #12315f !important;
  background: #ffffff !important;
  border-color: #cfe0f4 !important;
}

/* MMT hotel search-results match 20260628 */
.flow-page[data-flow-page="results"] .mmt-flow-results {
  width: min(100%, 100vw);
  max-width: none;
  margin: 0;
  padding: 0 24px 36px;
  border: 0;
  border-radius: 0;
  background: #f4f4f4 !important;
  box-shadow: none !important;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-intro,
.flow-page[data-flow-page="results"] .mmt-stay-listing-summary .mmt-stay-insights,
.flow-page[data-flow-page="results"] .mmt-stay-listing-summary .mmt-supplier-live-strip,
.flow-page[data-flow-page="results"] .mmt-stay-result-toolbar {
  display: none !important;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultRoomsGuests) {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(320px, 1.55fr) minmax(170px, 0.68fr) minmax(170px, 0.68fr) minmax(260px, 1.05fr) 270px;
  gap: 8px;
  align-items: stretch;
  width: calc(100vw - 48px);
  max-width: 1848px;
  margin: 0 auto 24px;
  border: 0;
  border-radius: 0;
  padding: 18px 24px;
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(18, 49, 95, 0.12), 0 10px 22px rgba(18, 49, 95, 0.08) !important;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultRoomsGuests) input[type="hidden"] {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultRoomsGuests) label {
  min-height: 72px;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  padding: 8px 13px;
  color: #777;
  background: #fafafa !important;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultRoomsGuests) input,
.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultRoomsGuests) select {
  min-height: 32px;
  padding: 0;
  border: 0 !important;
  color: #10233f !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 1.35rem;
  font-weight: 950;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultRoomsGuests) .search-button {
  align-self: stretch;
  min-height: 66px;
  border-radius: 8px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #52b2f5, #075ec5) !important;
  box-shadow: none !important;
  font-size: 1.24rem;
  text-transform: uppercase;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) {
  grid-template-columns: 416px minmax(0, 1fr);
  gap: 0;
  width: calc(100vw - 48px);
  max-width: 1848px;
  margin: 0 auto;
}

.flow-page[data-flow-page="results"] .mmt-results-column {
  min-width: 0;
  padding-left: 48px;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .custom-result-note {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-stay-listing-summary {
  margin: 0 0 26px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.flow-page[data-flow-page="results"] .mmt-stay-listing-summary .mmt-result-dashboard-head {
  min-height: 0;
  padding: 0;
}

.flow-page[data-flow-page="results"] .mmt-stay-listing-summary .mmt-result-dashboard-head span,
.flow-page[data-flow-page="results"] .mmt-stay-listing-summary .mmt-result-dashboard-head p,
.flow-page[data-flow-page="results"] .mmt-stay-listing-summary .mmt-result-dashboard-head a {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-stay-listing-summary .mmt-result-dashboard-head strong {
  color: #061d3a !important;
  font-size: clamp(1.7rem, 2.3vw, 2.15rem);
  line-height: 1.12;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-filter-panel {
  position: sticky;
  top: 104px;
  align-self: start;
  max-height: calc(100vh - 116px);
  overflow: auto;
  border: 0;
  border-radius: 0;
  background: #ffffff !important;
  box-shadow: none !important;
  scrollbar-color: #96a3b3 transparent;
}

.flow-page[data-flow-page="results"] .mmt-filter-panel .mmt-filter-head {
  min-height: 68px;
  padding: 18px 30px;
  border-bottom: 1px solid #e0e0e0;
}

.flow-page[data-flow-page="results"] .mmt-filter-panel .mmt-filter-head strong {
  color: #061d3a !important;
  font-size: 1.45rem;
}

.flow-page[data-flow-page="results"] .mmt-filter-panel .mmt-filter-head button {
  min-height: 34px;
  border: 1px solid #cfe0f4;
  border-radius: 4px;
  padding: 0 14px;
  color: #075ec5;
  background: #f4f9ff;
  font-weight: 850;
}

.flow-page[data-flow-page="results"] .mmt-filter-panel .mmt-filter-card {
  border: 0;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 24px 30px;
  background: #ffffff !important;
  box-shadow: none !important;
}

.flow-page[data-flow-page="results"] .mmt-filter-panel .mmt-filter-card > span {
  margin: 0 0 16px;
  color: #061d3a !important;
  font-size: 1.15rem;
  font-weight: 950;
  text-transform: none;
}

.flow-page[data-flow-page="results"] .mmt-filter-panel .mmt-hotel-screenshot-filters label {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  border: 0;
  padding: 0;
  background: transparent !important;
}

.flow-page[data-flow-page="results"] .mmt-filter-panel .mmt-hotel-screenshot-filters input[type="checkbox"] {
  width: 28px;
  height: 28px;
  margin: 0;
  border: 1px solid #9ca3af;
  border-radius: 3px;
  accent-color: #075ec5;
}

.flow-page[data-flow-page="results"] .mmt-filter-panel .mmt-hotel-screenshot-filters b {
  color: #293d58 !important;
  font-size: 1.05rem;
  font-weight: 650;
}

.flow-page[data-flow-page="results"] .mmt-filter-panel .mmt-hotel-screenshot-filters small {
  color: #8794a6 !important;
  font-size: 0.9rem;
  font-weight: 500;
}

.flow-page[data-flow-page="results"] .mmt-filter-panel .mmt-hotel-advanced-filters,
.flow-page[data-flow-page="results"] .mmt-filter-panel .mmt-filter-help {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 {
  display: grid;
  grid-template-columns: 388px minmax(480px, 1fr) 360px;
  min-height: 384px;
  margin: 0 0 32px;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  background: #ffffff !important;
  box-shadow: none !important;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-photo {
  width: 356px;
  height: 290px;
  min-height: 290px;
  margin: 24px 0 24px 24px;
  border-radius: 4px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-photo > span {
  right: 12px;
  bottom: 13px;
  min-height: 31px;
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(14, 23, 38, 0.86);
  font-size: 0.9rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-photo-count-button {
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  min-height: 31px;
  padding: 0 13px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff !important;
  background: rgba(14, 23, 38, 0.86) !important;
  box-shadow: none;
  font-size: 0.82rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-main {
  padding: 23px 32px 18px 28px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-title-row strong {
  color: #061d3a !important;
  font-size: clamp(1.45rem, 1.7vw, 1.85rem);
  letter-spacing: 0;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-location {
  color: #243854 !important;
  font-size: 1.08rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-location a {
  color: #075ec5;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-badges span {
  min-height: 34px;
  border-color: #aaa;
  border-radius: 4px;
  color: #66758a !important;
  font-size: 0.92rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefits {
  gap: 9px;
  margin-top: 11px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit {
  min-height: 25px;
  color: #08746c !important;
  font-size: 1.06rem;
  font-weight: 560;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit.tip {
  margin-top: 8px;
  color: #8a5e16 !important;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel {
  padding: 24px 24px 20px;
  border-left: 1px solid #d7d7d7;
  background: #ffffff !important;
  box-shadow: none !important;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-review-box strong {
  color: #075ec5 !important;
  font-size: 1.08rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-review-box span {
  border-radius: 4px;
  background: #075ec5 !important;
  font-size: 1rem;
  font-weight: 900;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-review-box small {
  color: #253a59 !important;
  font-size: 0.98rem;
  font-weight: 520;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack {
  margin-top: 84px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack b {
  color: #061d3a !important;
  font-size: clamp(1.78rem, 2.4vw, 2.18rem);
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack span,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel > small {
  color: #5f6470 !important;
  font-size: 0.98rem;
  font-weight: 500;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel button {
  margin-top: 86px;
  color: #075ec5 !important;
  font-size: 0.98rem;
}

.mmt-hotel-rush-deals {
  margin: 0 0 32px;
  border: 1px solid #f2a739;
  border-radius: 4px;
  padding: 28px 24px 26px;
  background: #ffffff !important;
  box-shadow: none !important;
}

.mmt-rush-deals-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 24px;
}

.mmt-rush-deals-head strong {
  color: #061d3a !important;
  font-size: 1.72rem;
  font-weight: 950;
}

.mmt-rush-deals-head span {
  color: #4d5b70;
  font-size: 1.08rem;
}

.mmt-rush-deals-head a {
  margin-left: auto;
  color: #075ec5;
  font-weight: 900;
}

.mmt-rush-deals-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
}

.mmt-rush-deal-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.mmt-rush-deal-card img {
  display: block;
  width: 100%;
  height: 154px;
  object-fit: cover;
}

.mmt-rush-deal-card div {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.mmt-rush-deal-card strong {
  overflow: hidden;
  color: #061d3a !important;
  font-size: 1.02rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-rush-deal-card span {
  overflow: hidden;
  color: #5f7188;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-rush-deal-card b {
  color: #075ec5 !important;
  font-size: 1.08rem;
}

@media (max-width: 1360px) {
  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .flow-page[data-flow-page="results"] .mmt-results-column {
    padding-left: 24px;
  }

  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 {
    grid-template-columns: 330px minmax(0, 1fr) 280px;
  }

  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-photo {
    width: 300px;
  }

  .mmt-rush-deals-track {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
  }
}

@media (max-width: 980px) {
  .flow-page[data-flow-page="results"] .mmt-flow-results,
  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultRoomsGuests),
  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) {
    width: calc(100vw - 20px);
    padding-left: 0;
    padding-right: 0;
  }

  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultRoomsGuests),
  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card),
  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 {
    grid-template-columns: 1fr;
  }

  .flow-page[data-flow-page="results"] .mmt-results-column {
    padding-left: 0;
  }

  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-filter-panel {
    position: static;
    max-height: none;
  }

  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-photo {
    width: auto;
    margin: 14px;
  }

  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel {
    border-left: 0;
    border-top: 1px solid #d7d7d7;
  }

  .mmt-rush-deals-track {
    grid-template-columns: 1fr;
  }
}

/* MMT hotel detail page match 20260628 */
.flow-page[data-flow-page="hotel"] .mmt-flow-premium-status,
.flow-page[data-flow-page="hotel"] .mmt-flow-hero-pro,
.flow-page[data-flow-page="hotel"] .booking-steps,
.flow-page[data-flow-page="hotel"] .flow-topbar,
.flow-page[data-flow-page="hotel"] .mmt-fare-summary,
.flow-page[data-flow-page="hotel"] .mmt-flow-detail > .mmt-policy-strip,
.flow-page[data-flow-page="hotel"] .mmt-flow-detail > .mmt-continue-button {
  display: none !important;
}

.flow-page[data-flow-page="hotel"] .flow-main {
  max-width: none;
  padding-top: 0;
}

.flow-page[data-flow-page="hotel"] .mmt-flow-detail {
  width: min(100vw - 24px, 1880px);
  margin: 0 auto;
  padding: 0;
}

.flow-page[data-flow-page="hotel"] .mmt-detail-layout {
  display: block;
}

.flow-page[data-flow-page="hotel"] .mmt-selected-detail {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mmt-hotel-detail-page.mmt-hotel-detail-v3 {
  gap: 0;
  padding: 0 0 32px;
  color: #122846;
  background: #f3f3f3;
}

.mmt-hotel-detail-search-strip {
  position: sticky;
  top: 0;
  z-index: 28;
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(150px, 0.8fr) minmax(150px, 0.8fr) minmax(210px, 1fr) 200px;
  gap: 8px;
  align-items: stretch;
  margin: 0;
  border-bottom: 1px solid #d8d8d8;
  padding: 10px 48px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(18, 40, 70, 0.07);
}

.mmt-hotel-detail-search-strip label {
  display: grid;
  gap: 5px;
  align-content: center;
  min-height: 58px;
  border: 1px solid #d1d5dc;
  border-radius: 6px;
  padding: 8px 13px;
  background: #f7f7f7;
}

.mmt-hotel-detail-search-strip span {
  color: #727985;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mmt-hotel-detail-search-strip strong {
  overflow: hidden;
  color: #102746;
  font-size: 1rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-hotel-detail-search-strip button {
  min-height: 58px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, #54b5f8, #0867e7);
  cursor: pointer;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-hotel-detail-tabs {
  position: sticky;
  top: 79px;
  z-index: 24;
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  align-items: center;
  border-bottom: 1px solid #cfd8e5;
  background: #ffffff;
}

.mmt-hotel-detail-tabs a {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-bottom: 3px solid transparent;
  color: #40506a;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mmt-hotel-detail-tabs a:hover,
.mmt-hotel-detail-tabs a.active {
  border-color: #0f73ef;
  color: #075ec5;
  background: #f8fbff;
}

.mmt-hotel-overview-card,
.mmt-hotel-profile-section,
.mmt-hotel-rooms-section,
.mmt-hotel-location-section,
.mmt-hotel-rules-panel,
.mmt-hotel-gallery-strip,
.mmt-hotel-reviews-panel,
.mmt-hotel-similar-panel {
  width: min(100% - 48px, 1760px);
  margin: 24px auto 0;
  border: 1px solid #d9dde4;
  border-radius: 8px;
  background: #ffffff;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-filter-panel {
  border: 1px solid #dbe8f7;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 46px rgba(16, 59, 112, 0.08);
  scrollbar-color: #b8c9dd #f4f8fd;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-filter-head {
  position: sticky;
  top: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2ecf7;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-filter-head strong {
  color: #082a55;
  font-size: 19px;
  line-height: 1.15;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-filter-card {
  border-color: #e3edf8;
  background: rgba(255, 255, 255, 0.9);
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-filter-card > span {
  color: #0a2d5a;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-hotel-filter-card label {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-hotel-filter-card label:hover {
  border-color: #cfe1f5;
  background: #f7fbff;
  box-shadow: 0 8px 18px rgba(16, 87, 169, 0.06);
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-hotel-filter-card label:has(input:checked) {
  border-color: #1b78f2;
  background: linear-gradient(90deg, #eff7ff 0%, #ffffff 100%);
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-hotel-filter-card b {
  color: #0b2345;
  font-size: 14px;
  line-height: 1.2;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-hotel-filter-card small {
  color: #60728d;
  font-size: 11.5px;
  line-height: 1.2;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-hotel-filter-card small[data-hotel-filter-count] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  margin-left: auto;
  padding: 3px 8px;
  border: 1px solid #d7e8fb;
  border-radius: 999px;
  background: #f1f7ff;
  color: #0f5fc6;
  font-size: 11px;
  font-weight: 800;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-hotel-filter-card label.is-empty {
  background: #fbfdff;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-hotel-filter-card label.is-empty b {
  color: #6a7a91;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) .mmt-hotel-filter-card label.is-empty small[data-hotel-filter-count] {
  border-color: #e5edf6;
  background: #f7f9fc;
  color: #8a9aaf;
}

.mmt-hotel-profile-section {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.mmt-hotel-profile-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.mmt-hotel-profile-head h2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  margin: 0 0 8px;
  color: #071c3a;
  font-size: clamp(1.5rem, 2.2vw, 2.45rem);
  line-height: 1.08;
}

.mmt-hotel-profile-head h2 span {
  color: #cfd5df;
  font-size: 0.7em;
  font-weight: 950;
}

.mmt-hotel-wishlist {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 0;
  padding: 8px 0;
  color: #071c3a;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
}

.mmt-hotel-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  gap: 24px;
  align-items: start;
}

.mmt-hotel-profile-media {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.78fr);
  gap: 16px;
  min-height: 440px;
}

.mmt-hotel-profile-media button {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  padding: 0;
  background: #eef5ff;
  cursor: pointer;
}

.mmt-hotel-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.mmt-hotel-profile-media button:hover img {
  transform: scale(1.025);
}

.mmt-hotel-profile-main-photo {
  min-height: 440px;
}

.mmt-hotel-profile-main-photo span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  padding: 9px 16px;
  color: #ffffff;
  background: rgba(7, 28, 58, 0.78);
  font-size: 0.92rem;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.mmt-hotel-profile-side-photos {
  display: grid;
  gap: 16px;
}

.mmt-hotel-about-property {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mmt-hotel-about-property h3 {
  margin: 0;
  color: #071c3a;
  font-size: 1.22rem;
  font-weight: 950;
}

.mmt-hotel-about-property p {
  max-width: 860px;
  margin: 0;
  color: #40516a;
  font-size: 0.96rem;
  line-height: 1.55;
}

.mmt-hotel-about-property a {
  width: fit-content;
  color: #096ef0;
  text-decoration: none;
  font-weight: 950;
}

.mmt-hotel-profile-book-card {
  position: sticky;
  top: 142px;
  display: grid;
  gap: 14px;
  border: 1px solid #d7dde7;
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 18px 46px rgba(13, 28, 48, 0.12);
}

.mmt-hotel-profile-package {
  width: fit-content;
  border: 1px solid #c99a3f;
  border-radius: 6px;
  padding: 6px 10px;
  color: #8c5e00;
  background: #fffaf0;
  font-size: 0.82rem;
  font-weight: 950;
}

.mmt-hotel-profile-book-card h3 {
  margin: 0;
  color: #071c3a;
  font-size: 1.34rem;
  line-height: 1.15;
}

.mmt-hotel-profile-book-card p {
  margin: -6px 0 0;
  color: #222f43;
  font-weight: 780;
}

.mmt-hotel-profile-book-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0;
  padding: 0;
  list-style: none;
}

.mmt-hotel-profile-book-card li {
  position: relative;
  padding-left: 24px;
  color: #00776c;
  font-size: 0.96rem;
  line-height: 1.35;
  font-weight: 780;
}

.mmt-hotel-profile-book-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #009a78;
  font-weight: 950;
}

.mmt-hotel-profile-book-card li.muted {
  color: #8b5f11;
}

.mmt-hotel-profile-book-card li.muted::before {
  content: "i";
  color: #c99a3f;
}

.mmt-hotel-profile-price {
  display: grid;
  gap: 3px;
  margin-top: 4px;
}

.mmt-hotel-profile-price span,
.mmt-hotel-profile-price small {
  color: #52627a;
  font-size: 0.86rem;
  font-weight: 780;
}

.mmt-hotel-profile-price strong {
  color: #071c3a;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 950;
}

.mmt-hotel-profile-book-card > button {
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #55b7fb, #0b67df);
  cursor: pointer;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 15px 30px rgba(8, 103, 231, 0.22);
}

.mmt-hotel-profile-more {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  padding: 12px;
  background: #edf7ff;
}

.mmt-hotel-profile-more div {
  display: grid;
  gap: 2px;
}

.mmt-hotel-profile-more strong {
  color: #52627a;
  font-size: 0.88rem;
}

.mmt-hotel-profile-more span {
  color: #24364f;
  font-size: 0.84rem;
}

.mmt-hotel-profile-more a {
  flex: 0 0 auto;
  border: 1px solid #0f73ef;
  border-radius: 999px;
  padding: 8px 14px;
  color: #075ec5;
  background: #ffffff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 950;
}

.mmt-hotel-profile-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mmt-hotel-profile-assurance > span,
.mmt-hotel-profile-assurance .mmt-hotel-benefit {
  border: 1px solid #d8e7f7;
  border-radius: 999px;
  padding: 8px 11px;
  color: #24364f;
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.mmt-hotel-overview-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 18px;
  padding: 22px 28px;
}

.mmt-hotel-overview-card h2 {
  margin: 0 0 8px;
  color: #102746;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
}

.mmt-hotel-overview-card aside {
  display: grid;
  gap: 8px;
  justify-items: end;
  align-content: center;
  border-left: 1px solid #e0e2e7;
  padding-left: 20px;
  text-align: right;
}

.mmt-hotel-overview-card aside span,
.mmt-hotel-overview-card aside small {
  color: #627086;
  font-size: 0.86rem;
  font-weight: 780;
}

.mmt-hotel-overview-card aside strong {
  color: #102746;
  font-size: 1.8rem;
  font-weight: 950;
}

.mmt-hotel-overview-card aside button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #1e83f8, #075ec5);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.mmt-hotel-detail-v3 .mmt-hotel-detail-benefits {
  gap: 7px;
}

.mmt-hotel-detail-v3 .mmt-hotel-benefit {
  color: #08746c;
  font-size: 0.95rem;
}

.mmt-hotel-rooms-section {
  display: grid;
  gap: 18px;
  padding: 22px;
  min-height: 0;
}

.mmt-hotel-rooms-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 2px 4px 6px;
}

.mmt-hotel-rooms-head span {
  color: #a87413;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mmt-hotel-rooms-head strong {
  display: block;
  margin-top: 4px;
  color: #102746;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  font-weight: 950;
}

.mmt-hotel-rooms-head p {
  max-width: 430px;
  margin: 0;
  color: #5b6677;
  font-size: 0.86rem;
  font-weight: 760;
  text-align: right;
}

.mmt-hotel-room-option {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #d8e5f4;
  border-radius: 8px;
  background: #ffffff;
}

.mmt-hotel-room-card {
  display: grid;
  align-content: start;
  gap: 16px;
  border-right: 1px solid #e0e2e7;
  padding: 22px;
}

.mmt-hotel-room-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 235px;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #eaf3ff;
  cursor: pointer;
}

.mmt-hotel-room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mmt-hotel-room-photo span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 8px 14px;
  color: #075ec5;
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 950;
}

.mmt-hotel-room-body {
  display: grid;
  gap: 10px;
  color: #4d5b70;
  font-weight: 760;
}

.mmt-hotel-room-body > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.mmt-hotel-room-body strong {
  color: #102746;
  font-size: 1.18rem;
  font-weight: 950;
}

.mmt-hotel-room-body span {
  color: #66758a;
  font-size: 0.84rem;
  font-weight: 850;
}

.mmt-hotel-room-body p {
  margin: 0;
  color: #5b6677;
  font-size: 0.92rem;
}

.mmt-hotel-room-body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 18px;
  margin: 4px 0 0;
  padding-left: 17px;
}

.mmt-hotel-rate-list {
  display: grid;
}

.mmt-hotel-rate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  min-height: 136px;
  border-bottom: 1px solid #e0e2e7;
  padding: 20px 28px;
}

.mmt-hotel-rate-row:last-child {
  border-bottom: 0;
}

.mmt-hotel-rate-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.mmt-hotel-rate-copy strong {
  color: #24364f;
  font-size: 1.08rem;
  font-weight: 950;
}

.mmt-hotel-rate-copy ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.mmt-hotel-rate-copy li {
  color: #08746c;
  font-size: 0.92rem;
  font-weight: 760;
}

.mmt-link-button {
  width: fit-content;
  border: 0;
  padding: 0;
  color: #075ec5;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.mmt-hotel-rate-price {
  display: grid;
  gap: 8px;
  justify-items: start;
  align-content: start;
}

.mmt-hotel-rate-price strong {
  color: #102746;
  font-size: 1.45rem;
  font-weight: 950;
}

.mmt-hotel-rate-price span,
.mmt-hotel-rate-price small {
  color: #5b6677;
  font-size: 0.86rem;
  font-weight: 760;
}

.mmt-hotel-rate-price button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #54b5f8, #0867e7);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(8, 103, 231, 0.18);
}

.mmt-hotel-location-section {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  overflow: hidden;
  min-height: 330px;
}

.mmt-hotel-attractions {
  display: grid;
  gap: 12px;
  align-content: start;
  border-right: 1px solid #e0e2e7;
  padding: 20px;
}

.mmt-hotel-attractions strong {
  color: #102746;
  font-size: 1rem;
}

.mmt-hotel-attractions label {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 9px;
  align-items: center;
  color: #24364f;
  font-size: 0.9rem;
}

.mmt-hotel-attractions input {
  width: 18px;
  height: 18px;
}

.mmt-hotel-attractions b {
  color: #40516a;
  font-size: 0.82rem;
}

.mmt-hotel-map-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  background:
    linear-gradient(32deg, transparent 42%, rgba(201,154,63,0.45) 43%, rgba(201,154,63,0.45) 46%, transparent 47%),
    linear-gradient(148deg, transparent 48%, rgba(7,94,197,0.18) 49%, rgba(7,94,197,0.18) 52%, transparent 53%),
    radial-gradient(circle at 82% 22%, rgba(104,196,151,0.38), transparent 16%),
    radial-gradient(circle at 20% 78%, rgba(215,223,234,0.65), transparent 22%),
    #eef2f6;
}

.mmt-hotel-map-card span {
  position: absolute;
  left: 28px;
  top: 24px;
  color: #5d6978;
  font-weight: 850;
}

.mmt-hotel-map-card a {
  border: 1px solid #0f73ef;
  border-radius: 6px;
  padding: 10px 20px;
  color: #075ec5;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.mmt-hotel-rules-panel,
.mmt-hotel-reviews-panel,
.mmt-hotel-similar-panel {
  display: grid;
  gap: 16px;
  padding: 20px 24px;
}

.mmt-hotel-panel-head {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid #e0e2e7;
  padding-bottom: 14px;
}

.mmt-hotel-panel-head strong {
  margin-right: auto;
  color: #102746;
  font-size: 1.08rem;
  font-weight: 950;
}

.mmt-hotel-panel-head span,
.mmt-hotel-panel-head a {
  color: #075ec5;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.mmt-hotel-rule-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1fr 1fr;
  gap: 22px;
}

.mmt-hotel-rule-grid article {
  border: 1px solid #d9f3ec;
  border-radius: 12px;
  padding: 14px;
  background: #f6fffb;
}

.mmt-hotel-rule-grid b {
  color: #08746c;
  font-size: 0.9rem;
}

.mmt-hotel-rule-grid p,
.mmt-hotel-rule-grid li {
  color: #4d5b70;
  font-size: 0.9rem;
  line-height: 1.45;
}

.mmt-hotel-rule-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mmt-hotel-rule-tabs button,
.mmt-hotel-rule-tabs a {
  border: 1px solid #d7e6f8;
  border-radius: 6px;
  padding: 9px 14px;
  color: #102746;
  background: #ffffff;
  text-decoration: none;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
}

.mmt-hotel-rule-tabs a {
  color: #075ec5;
}

.mmt-hotel-gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  background: transparent;
}

.mmt-hotel-gallery-strip button,
.mmt-hotel-similar-panel button {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #dfe9f5;
  cursor: pointer;
}

.mmt-hotel-gallery-strip img,
.mmt-hotel-similar-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.mmt-hotel-gallery-strip span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(18, 40, 70, 0.54);
  font-weight: 950;
}

.mmt-hotel-reviews-panel nav {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #e0e2e7;
}

.mmt-hotel-reviews-panel nav button {
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 0 0 10px;
  color: #5d6978;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.mmt-hotel-reviews-panel nav button.active {
  border-color: #0f73ef;
  color: #075ec5;
}

.mmt-hotel-review-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
}

.mmt-hotel-review-grid aside {
  display: grid;
  gap: 10px;
}

.mmt-hotel-review-grid aside strong {
  color: #075ec5;
  font-size: 1rem;
}

.mmt-hotel-review-grid aside b {
  width: fit-content;
  border: 1px solid #0f73ef;
  border-radius: 6px;
  padding: 8px 14px;
  color: #075ec5;
  font-size: 1.25rem;
}

.mmt-hotel-review-grid aside label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #52627a;
  font-size: 0.92rem;
  font-weight: 800;
}

.mmt-hotel-review-grid aside label span {
  border: 1px solid #0f73ef;
  border-radius: 5px;
  padding: 2px 6px;
  color: #075ec5;
}

.mmt-hotel-review-list {
  display: grid;
  gap: 16px;
}

.mmt-hotel-review-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  border-bottom: 1px solid #e0e2e7;
  padding-bottom: 16px;
}

.mmt-hotel-review-list b {
  display: grid;
  place-items: center;
  width: 46px;
  height: 38px;
  border: 1px solid #0f73ef;
  border-radius: 6px;
  color: #075ec5;
}

.mmt-hotel-review-list strong {
  color: #102746;
}

.mmt-hotel-review-list p,
.mmt-hotel-review-list small {
  color: #4d5b70;
}

.mmt-hotel-similar-panel > div:last-child {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mmt-hotel-similar-panel article {
  display: grid;
  gap: 7px;
  border: 1px solid #d9dde4;
  border-radius: 8px;
  padding: 10px;
}

.mmt-hotel-similar-panel button {
  min-height: 130px;
}

.mmt-hotel-similar-panel article strong {
  color: #102746;
  font-size: 1rem;
}

.mmt-hotel-similar-panel article span {
  color: #5d6978;
  font-size: 0.86rem;
}

.mmt-hotel-similar-panel article b {
  color: #075ec5;
  font-size: 1.05rem;
}

@media (max-width: 1180px) {
  .mmt-hotel-detail-search-strip {
    grid-template-columns: 1fr 1fr;
    top: 0;
    padding: 10px 18px;
  }

  .mmt-hotel-detail-tabs {
    top: 156px;
    grid-template-columns: repeat(3, 1fr);
  }

  .mmt-hotel-overview-card,
  .mmt-hotel-rooms-section,
  .mmt-hotel-location-section,
  .mmt-hotel-rule-grid,
  .mmt-hotel-review-grid,
  .mmt-hotel-similar-panel > div:last-child {
    grid-template-columns: 1fr;
  }

  .mmt-hotel-room-card,
  .mmt-hotel-overview-card aside,
  .mmt-hotel-attractions {
    border-right: 0;
    border-left: 0;
  }

  .mmt-hotel-rate-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .flow-page[data-flow-page="hotel"] .flow-main {
    padding-top: 0;
  }

  .mmt-hotel-detail-search-strip,
  .mmt-hotel-detail-tabs {
    position: static;
  }

  .mmt-hotel-detail-search-strip,
  .mmt-hotel-detail-tabs,
  .mmt-hotel-gallery-strip {
    grid-template-columns: 1fr;
  }

  .mmt-hotel-overview-card,
  .mmt-hotel-rooms-section,
  .mmt-hotel-location-section,
  .mmt-hotel-rules-panel,
  .mmt-hotel-gallery-strip,
  .mmt-hotel-reviews-panel,
  .mmt-hotel-similar-panel {
    width: calc(100% - 18px);
  }

  .mmt-hotel-room-card,
  .mmt-hotel-rate-row,
  .mmt-hotel-rules-panel,
  .mmt-hotel-reviews-panel,
  .mmt-hotel-similar-panel {
    padding: 16px;
  }
}

/* MMT customer review form match 20260628 */
.mmt-hotel-review-page .mmt-review-section {
  background: #f5f7fb !important;
}

.mmt-hotel-review-page .mmt-review-layout {
  grid-template-columns: minmax(0, 1fr) minmax(318px, 390px);
  gap: 22px;
  align-items: start;
}

.mmt-hotel-review-page .mmt-review-main {
  gap: 18px;
}

.mmt-hotel-review-page .mmt-review-card {
  border-color: #d7dfe9;
  border-radius: 8px;
  background: #ffffff !important;
  box-shadow: 0 8px 22px rgba(38, 71, 109, 0.08) !important;
}

.mmt-hotel-review-page .mmt-payment-box #payButton {
  display: none;
}

.mmt-hotel-important-info {
  gap: 14px;
  padding: 22px 24px;
}

.mmt-hotel-important-info h3,
.mmt-trip-secure-card h3 {
  margin: 0;
  color: #0f2d52;
  font-size: 1.35rem;
  line-height: 1.15;
}

.mmt-important-rule-box {
  position: relative;
  border: 1px solid #d8dee8;
  border-radius: 18px;
  padding: 24px 18px 16px;
  color: #243a5b;
  background: #ffffff;
}

.mmt-important-rule-box p {
  margin: 0;
  color: #243a5b !important;
  font-size: 1rem;
  font-weight: 780;
}

.mmt-rule-pill {
  position: absolute;
  left: 16px;
  top: -15px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 14px;
  color: #0f5b55;
  background: #ddfff6;
  font-size: 0.9rem;
  font-weight: 900;
}

.mmt-hotel-important-info ul {
  gap: 9px;
  padding-left: 20px;
}

.mmt-hotel-important-info li {
  color: #52677f !important;
  font-size: 1rem;
  font-weight: 760;
}

.mmt-link-button {
  width: fit-content;
  border: 0;
  padding: 0;
  color: #0f6fff;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.mmt-trip-secure-card {
  gap: 18px;
  padding: 24px;
}

.mmt-trip-secure-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.mmt-trip-secure-head p {
  margin: 4px 0 0;
  color: #00796e !important;
  font-size: 1rem;
  font-weight: 850;
}

.mmt-trip-secure-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.mmt-trip-secure-logos span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f6fff, #c99a3f);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-trip-secure-benefits {
  display: grid;
  gap: 12px;
  border-radius: 8px;
  padding: 22px 18px;
  background: linear-gradient(135deg, #ecfaff, #eaf2ff);
}

.mmt-trip-secure-benefits div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.mmt-trip-secure-benefits span {
  color: #243a5b;
  font-size: 1rem;
  font-weight: 780;
}

.mmt-trip-secure-benefits b {
  color: #254061 !important;
  font-size: 1rem;
  font-weight: 850;
  text-align: right;
}

.mmt-trip-secure-benefits button {
  justify-self: end;
  border: 0;
  padding: 0;
  color: #0f6fff;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.mmt-trip-secure-price {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: baseline;
  color: #617289;
}

.mmt-trip-secure-price strong {
  color: #0f2d52 !important;
  font-size: 1.3rem;
  font-weight: 950;
}

.mmt-trip-secure-price span {
  color: #617289;
  font-size: 1rem;
  font-weight: 760;
}

.mmt-trip-secure-price small {
  flex-basis: 100%;
  color: #617289 !important;
  font-size: 0.92rem;
  font-weight: 760;
}

.mmt-trip-secure-options {
  overflow: hidden;
  border: 1px solid #d7dfe9;
  border-radius: 8px;
  background: #ffffff;
}

.mmt-trip-secure-options label {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid #d7dfe9;
  padding: 0 16px;
  cursor: pointer;
}

.mmt-trip-secure-options label:last-child {
  border-bottom: 0;
}

.mmt-trip-secure-options input {
  width: 28px;
  height: 28px;
  accent-color: #0f6fff;
}

.mmt-trip-secure-options b {
  color: #243a5b !important;
  font-size: 1.05rem;
  font-weight: 850;
}

.mmt-review-submit-v2 {
  display: grid;
  gap: 14px;
  margin: 2px 0 0;
  padding: 0;
  background: transparent;
}

.mmt-review-submit-v2 label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #435a75;
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.45;
}

.mmt-review-submit-v2 input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: #0f6fff;
}

.mmt-review-submit-v2 a {
  color: #0f6fff;
  text-decoration: none;
  font-weight: 850;
}

.mmt-review-submit-v2 .pay-button {
  width: min(470px, 100%);
  min-height: 58px;
  border-radius: 7px;
  color: #ffffff !important;
  font-size: 1.16rem;
  font-weight: 950;
  text-transform: uppercase;
  background: linear-gradient(135deg, #4bb0ff, #0f6fff) !important;
  box-shadow: 0 16px 32px rgba(15, 111, 255, 0.22);
}

.mmt-info-modal[hidden] {
  display: none;
}

.mmt-modal-open {
  overflow: hidden;
}

.mmt-info-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(20, 35, 56, 0.64);
}

.mmt-info-modal-panel {
  position: relative;
  width: min(990px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  border-radius: 10px;
  padding: 34px 48px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(14, 31, 54, 0.28);
}

.mmt-info-modal-close {
  position: fixed;
  right: 26px;
  top: 26px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #14325a;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 1.4rem;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(14, 31, 54, 0.2);
}

.mmt-info-modal-panel h3 {
  margin: 0 0 18px;
  color: #0f2d52;
  font-size: 1.55rem;
}

.mmt-info-modal-panel h4 {
  margin: 24px 0 8px;
  color: #0f2d52;
  font-size: 1.18rem;
}

.mmt-info-modal-content {
  display: grid;
  gap: 14px;
}

.mmt-info-modal-content p,
.mmt-info-modal-content li {
  color: #31465f !important;
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.52;
}

.mmt-info-modal-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 980px) {
  .mmt-hotel-review-page .mmt-review-layout {
    grid-template-columns: 1fr;
  }

  .mmt-hotel-review-page .mmt-payment-box {
    position: static;
    max-height: none;
  }
}

@media (max-width: 680px) {
  .mmt-trip-secure-head,
  .mmt-trip-secure-price,
  .mmt-review-submit-v2 label {
    align-items: flex-start;
  }

  .mmt-trip-secure-head {
    display: grid;
  }

  .mmt-trip-secure-benefits div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .mmt-trip-secure-benefits b {
    text-align: left;
  }

  .mmt-info-modal {
    padding: 14px;
  }

  .mmt-info-modal-panel {
    padding: 24px 18px;
  }
}

/* Hotel result overflow correction 20260628 */
.flow-page[data-flow-page="results"] .mmt-results-column {
  min-width: 0;
  overflow: hidden;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 {
  grid-template-columns: minmax(260px, 34%) minmax(0, 1fr) minmax(218px, 24%);
  width: 100%;
  max-width: 100%;
  min-height: 316px;
  overflow: hidden;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-photo {
  width: calc(100% - 24px);
  height: 258px;
  min-height: 258px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-main {
  min-width: 0;
  overflow: hidden;
  padding: 20px 20px 18px 24px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-title-row {
  min-width: 0;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-title-row strong {
  min-width: 0;
  max-width: 100%;
  font-size: clamp(1.28rem, 1.55vw, 1.58rem);
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-stars::before {
  font-size: 0.86rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-location {
  max-width: 100%;
  font-size: 0.95rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-badges span {
  min-height: 29px;
  padding: 0 8px;
  font-size: 0.78rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefits {
  gap: 7px;
  max-width: 100%;
  margin-top: 8px;
  overflow: hidden;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit {
  display: block;
  max-width: 100%;
  min-height: 22px;
  padding-left: 22px;
  overflow: hidden;
  color: #08746c !important;
  font-size: 0.9rem;
  font-weight: 620;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit::before {
  top: 0;
  width: 16px;
  height: 16px;
  font-size: 0.75rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit.tip {
  margin-top: 6px;
  color: #8a5e16 !important;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel {
  min-width: 0;
  gap: 8px;
  padding: 20px 20px 18px;
  overflow: hidden;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-review-box {
  column-gap: 6px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-review-box strong {
  font-size: 0.96rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-review-box span {
  min-height: 28px;
  padding: 0 8px;
  font-size: 0.9rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-review-box small {
  font-size: 0.82rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack {
  max-width: 100%;
  margin-top: 72px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack b {
  font-size: clamp(1.46rem, 2vw, 1.78rem);
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack span,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel > small {
  font-size: 0.82rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-panel button {
  max-width: 100%;
  margin-top: 72px;
  overflow: hidden;
  font-size: 0.85rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1360px) {
  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 {
    grid-template-columns: minmax(230px, 31%) minmax(0, 1fr) minmax(190px, 24%);
  }

  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-result-main {
    padding-right: 16px;
  }

  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-title-row strong {
    font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  }

  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-benefit {
    font-size: 0.82rem;
  }

  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 .mmt-hotel-price-stack b {
    font-size: clamp(1.32rem, 1.8vw, 1.62rem);
  }
}

/* Results header gap correction 20260628 */
.flow-page[data-flow-page="results"] .mmt-results-main {
  padding-top: 188px !important;
}

.flow-page[data-flow-page="results"] .mmt-flow-results {
  padding-top: 0 !important;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultRoomsGuests) {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
  padding-top: 14px;
  padding-bottom: 14px;
}

.flow-page[data-flow-page="results"] .flow-travel-menu {
  margin-bottom: 0 !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.flow-page[data-flow-page="results"] .flow-travel-menu + .mmt-results-main,
.flow-page[data-flow-page="results"] .flow-travel-menu + .mmt-flow-results {
  margin-top: 0 !important;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) {
  padding-top: 0 !important;
}

@media (max-width: 980px) {
  .flow-page[data-flow-page="results"] .mmt-results-main {
    padding-top: 304px !important;
  }

  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultRoomsGuests) {
    margin-bottom: 10px !important;
  }
}

@media (min-width: 981px) and (max-width: 1420px) {
  .flow-page[data-flow-page="results"] .mmt-results-main {
    padding-top: 180px !important;
  }
}

/* MMT flight search-results match 20260628 */
.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) {
  position: sticky;
  top: 0;
  z-index: 88;
  display: grid;
  grid-template-columns: minmax(116px, 0.58fr) minmax(170px, 1fr) minmax(170px, 1fr) minmax(156px, 0.82fr) minmax(156px, 0.82fr) minmax(150px, 0.72fr) minmax(160px, 0.78fr) minmax(150px, 0.68fr);
  gap: 8px 10px;
  align-items: stretch;
  width: calc(100vw - 48px);
  max-width: 1848px;
  margin: 0 auto 0 !important;
  padding: 12px 30px 10px;
  border: 0;
  border-radius: 0;
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(18, 49, 95, 0.12), 0 10px 24px rgba(18, 49, 95, 0.08) !important;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) > input[type="hidden"] {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) > label {
  display: grid;
  align-content: center;
  min-height: 58px;
  padding: 8px 12px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  color: #727987;
  background: #fafafa !important;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) > label input,
.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) > label select {
  min-width: 0;
  min-height: 28px;
  padding: 0;
  border: 0 !important;
  color: #10233f !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 1rem;
  font-weight: 900;
  text-transform: none;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .search-button {
  grid-column: 8;
  grid-row: 1;
  min-height: 58px;
  border-radius: 8px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #56b5f8, #075ec5) !important;
  box-shadow: none !important;
  font-size: 1rem;
  text-transform: uppercase;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-result-flight-controls {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 4px 0 0;
  border-top: 1px solid #eef3f8;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-result-flight-controls label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #e5e9ef;
  border-radius: 4px;
  color: #4a5668;
  background: #fbfcfe;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: none;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-result-flight-controls input,
.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-result-flight-controls select {
  width: auto;
  min-width: 46px;
  min-height: 28px;
  border: 0;
  color: #10233f;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 850;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-price-drop-check {
  margin-left: auto;
  color: #10233f;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card) {
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 0;
  align-items: start;
  width: calc(100vw - 48px);
  max-width: 1848px;
  margin: 0 auto;
  padding-top: 0 !important;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card) .mmt-filter-panel {
  position: sticky;
  top: 112px;
  z-index: 30;
  min-width: 0;
  max-height: calc(100vh - 118px);
  overflow: auto;
  border: 0;
  border-radius: 0;
  background: #ffffff !important;
  box-shadow: none !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-filter-panel .mmt-filter-head {
  min-height: 54px;
  padding: 16px 20px 10px;
  border-bottom: 0;
}

.flow-page[data-flow-page="results"] .mmt-flight-filter-panel .mmt-filter-head strong {
  color: #10233f;
  font-size: 1.02rem;
  font-weight: 920;
}

.flow-page[data-flow-page="results"] .mmt-flight-filter-panel .mmt-filter-head button,
.flow-page[data-flow-page="results"] .mmt-flight-filter-panel .mmt-filter-more {
  color: #0f6fff;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.flow-page[data-flow-page="results"] .mmt-flight-filter-panel .mmt-filter-card {
  margin: 0;
  padding: 14px 20px;
  border: 0;
  border-top: 1px solid #eef1f5;
  border-radius: 0;
  background: #ffffff !important;
  box-shadow: none;
}

.flow-page[data-flow-page="results"] .mmt-flight-filter-panel .mmt-filter-card > span {
  margin-bottom: 10px;
  color: #10233f;
  font-size: 0.95rem;
  font-weight: 920;
  text-transform: none;
}

.flow-page[data-flow-page="results"] .mmt-flight-applied-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #10233f;
  background: #eaf5ff;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-page[data-flow-page="results"] .mmt-flight-applied-card > span {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-flight-applied-chip b {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #ffffff;
  background: #2c8df5;
  font-size: 0.72rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-screenshot-filters label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 4px 0;
  border: 0;
  color: #25354d;
  background: transparent;
  font-size: 0.91rem;
  font-weight: 500;
}

.flow-page[data-flow-page="results"] .mmt-flight-screenshot-filters input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #1689f8;
}

.flow-page[data-flow-page="results"] .mmt-flight-screenshot-filters b {
  overflow: hidden;
  color: #25354d;
  font-size: 0.9rem;
  font-weight: 520;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-page[data-flow-page="results"] .mmt-flight-screenshot-filters small {
  color: #5c697b;
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
}

.flow-page[data-flow-page="results"] .mmt-flight-filter-panel .mmt-filter-help,
.flow-page[data-flow-page="results"] .mmt-flight-filter-panel .mmt-filter-card:has(#resultMaxPrice) {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) {
  min-width: 0;
  overflow: visible;
  background: #eef3f7;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-dashboard {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff !important;
  box-shadow: none !important;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-dashboard-head,
.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-supplier-live-strip {
  display: none !important;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-fare-rail {
  min-height: 96px;
  border: 0;
  border-bottom: 1px solid #dfe8f1;
  box-shadow: 0 8px 22px rgba(18, 49, 95, 0.08);
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-fare-rail button:not(.mmt-rail-arrow) {
  gap: 5px;
  min-height: 94px;
  padding: 12px 8px;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-fare-rail span,
.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-fare-rail strong {
  color: #25354d;
  font-size: 0.88rem;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-fare-rail small {
  color: #0aa35b;
  font-size: 0.96rem;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-toolbar {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 22px 16px 16px;
  border: 0;
  border-radius: 0;
  background: #ffffff !important;
  box-shadow: none !important;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-toolbar > div:first-child,
.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-toolbar .mmt-quick-filters,
.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-toolbar > p {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 14px;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  color: #10233f;
  background: #f2f2f2;
  text-align: left;
  box-shadow: none;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs button::before {
  content: "";
  grid-row: span 3;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #d0d5db;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs button.active {
  background: #eaf5ff;
  box-shadow: inset 0 -5px 0 #1689f8;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs button.active::before {
  background: linear-gradient(135deg, #1689f8, #075ec5);
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs span {
  color: #10233f;
  font-size: 0.96rem;
  font-weight: 920;
  text-transform: uppercase;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs strong,
.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs small {
  color: #10233f;
  font-size: 0.78rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card.mmt-flight-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  min-height: 206px;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: hidden;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 0;
  color: #5e4214;
  background: #fff4df !important;
  font-size: 0.86rem;
  font-weight: 820;
}

.flow-page[data-flow-page="results"] .mmt-flight-on-time {
  color: #0aa35b;
  font-size: 0.78rem;
  font-weight: 900;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-row {
  display: grid;
  grid-template-columns: minmax(174px, 0.78fr) minmax(340px, 1.54fr) minmax(190px, 0.72fr);
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 12px 16px 8px;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-carrier {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-carrier i {
  width: 34px;
  height: 34px;
  border-radius: 2px;
  background: #173d8f;
  box-shadow: none;
  font-size: 0.72rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-carrier strong {
  color: #10233f;
  font-size: 0.96rem;
  font-weight: 900;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-carrier small {
  color: #667388;
  font-size: 0.78rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-carrier label {
  margin-top: 8px;
  color: #0f6fff;
  font-size: 0.78rem;
  font-weight: 850;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-route-v2 {
  grid-template-columns: minmax(96px, 0.72fr) minmax(130px, 0.92fr) minmax(96px, 0.72fr);
  gap: 14px;
  align-items: center;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-route-v2 b {
  color: #10233f;
  font-size: 1.25rem;
  font-weight: 950;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-route-v2 span {
  overflow: hidden;
  color: #10233f;
  font-size: 0.82rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-line {
  gap: 5px;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-line span {
  color: #10233f;
  font-size: 0.8rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-line i {
  width: 60px;
  height: 3px;
  background: #57d3bf;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-line small {
  color: #0f6fff;
  font-size: 0.72rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-price-panel {
  justify-items: end;
  gap: 5px;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-price-panel b {
  color: #10233f;
  font-size: 1.2rem;
  font-weight: 950;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-price-panel span {
  color: #25354d;
  font-size: 0.72rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-price-panel button {
  min-width: 132px;
  min-height: 36px;
  border: 1px solid #1689f8 !important;
  border-radius: 8px;
  color: #0f6fff !important;
  background: #eaf5ff !important;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-price-panel em {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 2px;
  color: #0f6fff;
  background: #eaf5ff;
  font-size: 0.78rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-result-chips {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-coupon {
  min-height: 32px;
  margin: 4px 14px 0;
  padding: 7px 14px;
  color: #10233f;
  background: #fff1d4 !important;
  font-size: 0.8rem;
  font-weight: 580;
  text-align: center;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-coupon span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: #ff6875;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-detail-toggle {
  min-height: 36px;
  margin: 6px 16px 10px 0;
  padding: 0;
  color: #0f6fff !important;
  background: transparent !important;
  font-size: 0.8rem;
  font-weight: 850;
  text-align: right;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-expanded {
  border-top: 1px solid #dfe8f1;
  background: #f7fbff;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-tabs button {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.84rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-tab-panel {
  padding: 16px;
  font-size: 0.86rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-ad-band {
  display: grid;
  grid-template-columns: minmax(160px, auto) 1fr auto auto;
  gap: 12px;
  align-items: center;
  min-height: 92px;
  margin: 0 0 10px;
  padding: 18px 28px;
  border-radius: 14px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 94, 197, 0.82), rgba(10, 126, 210, 0.42)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1400&q=70") center / cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.24);
}

.flow-page[data-flow-page="results"] .mmt-flight-ad-band span {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 850;
}

.flow-page[data-flow-page="results"] .mmt-flight-ad-band strong {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 950;
  text-align: center;
}

.flow-page[data-flow-page="results"] .mmt-flight-ad-band b {
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 3px;
  color: #10233f;
  background: #ffffff;
  font-size: 0.8rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-ad-band small {
  align-self: end;
  color: rgba(255,255,255,0.86);
  font-size: 0.66rem;
}

@media (max-width: 1280px) {
  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }

  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .search-button {
    grid-column: 4;
    grid-row: 2;
  }

  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-result-flight-controls {
    grid-row: 3;
  }

  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card) {
    grid-template-columns: 286px minmax(0, 1fr);
  }

  .flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-row {
    grid-template-columns: minmax(150px, 0.76fr) minmax(300px, 1.48fr) minmax(168px, 0.72fr);
  }
}

@media (max-width: 980px) {
  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType),
  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card) {
    width: calc(100vw - 18px);
  }

  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType),
  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card),
  .flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-row,
  .flow-page[data-flow-page="results"] .mmt-flight-ad-band {
    grid-template-columns: 1fr;
  }

  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .search-button,
  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-result-flight-controls {
    grid-column: auto;
    grid-row: auto;
  }

  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card) .mmt-filter-panel {
    position: static;
    max-height: none;
  }

  .flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-price-panel,
  .flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-detail-toggle {
    justify-items: start;
    text-align: left;
  }
}

/* MMT flight fare modal and booking review flow 20260628 */
.mmt-flight-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(7, 25, 44, 0.68);
}

.mmt-flight-price-modal {
  position: relative;
  width: min(1560px, calc(100vw - 150px));
  max-height: calc(100vh - 118px);
  overflow: hidden;
  border: 1px solid #dce8f7;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(21, 51, 88, 0.28);
}

.mmt-flight-modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  color: #6a7380;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mmt-flight-modal-head {
  display: block;
  padding: 30px 48px 24px;
  border-bottom: 1px solid #edf2f8;
  color: #10233f;
}

.mmt-flight-modal-head strong {
  display: block;
  margin: 0 52px 8px 0;
  color: #10233f;
  font-size: 1.6rem;
  font-weight: 850;
}

.mmt-flight-modal-head p {
  margin: 0;
  color: #526072;
  font-size: 0.98rem;
  font-weight: 520;
}

.mmt-flight-modal-body {
  position: relative;
  max-height: calc(100vh - 230px);
  overflow: auto;
  padding: 28px 48px 34px;
  background: #f7f9fc;
}

.mmt-flight-modal-route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #465369;
}

.mmt-flight-modal-route strong {
  color: #10233f;
  font-size: 1.2rem;
  font-weight: 850;
}

.mmt-flight-modal-route i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  color: #ffffff;
  background: #0b5fcc;
  font-style: normal;
  font-weight: 850;
}

.mmt-flight-modal-route span {
  color: #4f5d70;
  font-size: 1rem;
  font-weight: 760;
}

.mmt-flight-modal-route small {
  color: #4f5d70;
  font-size: 0.94rem;
  font-weight: 650;
}

.mmt-flight-modal-grid {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 74px 10px 0;
  scroll-snap-type: x mandatory;
}

.mmt-flight-modal-grid::-webkit-scrollbar {
  height: 9px;
}

.mmt-flight-modal-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #aeb8c7;
}

.mmt-flight-fare-card {
  position: relative;
  flex: 0 0 450px;
  min-height: 608px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(31, 63, 102, 0.08);
}

.mmt-flight-fare-card.active,
.mmt-flight-fare-card.recommended {
  border-color: #1173ea;
}

.mmt-flight-fare-card mark {
  position: absolute;
  top: 18px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 4px;
  color: #ffffff;
  background: #2f3d4b;
  font-size: 0.76rem;
  font-weight: 850;
}

.mmt-flight-card-select {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mmt-flight-fare-card > *:not(.mmt-flight-card-select) {
  position: relative;
  z-index: 2;
}

.mmt-flight-fare-price {
  min-height: 104px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #edf2f8;
}

.mmt-flight-fare-price strong {
  display: block;
  color: #10233f;
  font-size: 1.38rem;
  font-weight: 900;
}

.mmt-flight-fare-price del {
  margin-right: 8px;
  color: #8b96a7;
  font-size: 1rem;
  font-weight: 650;
}

.mmt-flight-fare-price small {
  color: #38475b;
  font-size: 0.88rem;
  font-weight: 500;
}

.mmt-flight-fare-price span {
  display: block;
  margin-top: 8px;
  color: #38475b;
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mmt-flight-fare-price p {
  margin: 8px 0 0;
  color: #5c6878;
  font-size: 0.88rem;
  line-height: 1.4;
}

.mmt-flight-discount-strip {
  min-height: 40px;
  padding: 10px 24px;
  color: #0b806b;
  background: #e4faf3;
  font-size: 0.86rem;
  font-weight: 720;
}

.mmt-flight-fare-section {
  padding: 18px 24px 4px;
}

.mmt-flight-fare-section b {
  display: block;
  margin-bottom: 10px;
  color: #1b2638;
  font-size: 0.95rem;
  font-weight: 850;
}

.mmt-flight-fare-section ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmt-flight-fare-section li {
  position: relative;
  padding-left: 28px;
  color: #26364b;
  font-size: 0.88rem;
  line-height: 1.35;
}

.mmt-flight-check-list li::before,
.mmt-flight-minus-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.mmt-flight-check-list li::before {
  content: "✓";
  color: #057c69;
  background: #c9f5e9;
}

.mmt-flight-minus-list li::before {
  content: "-";
  color: #966a16;
  background: #ffe5ad;
}

.mmt-flight-benefit-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-top: auto;
  padding: 14px 24px;
  color: #10233f;
  background: #fff0d1;
  font-size: 0.86rem;
  font-weight: 760;
}

.mmt-flight-benefit-strip b {
  color: #8b620e;
  font-size: 0.86rem;
}

.mmt-flight-price-drop {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  align-items: start;
  padding: 16px 24px;
  border-top: 1px solid #edf2f8;
  color: #25354d;
  font-size: 0.92rem;
  font-weight: 820;
}

.mmt-flight-price-drop small {
  grid-column: 2;
  color: #687589;
  font-size: 0.78rem;
  font-weight: 540;
}

.mmt-flight-book-now {
  margin: 0 24px 24px;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(90deg, #48adf5, #0d67df);
  box-shadow: 0 10px 20px rgba(15, 111, 255, 0.22);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.mmt-flight-modal-arrow {
  position: absolute;
  top: 50%;
  right: 34px;
  z-index: 4;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: #0f6fff;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(31, 63, 102, 0.18);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.mmt-detail-layout:has(.mmt-flight-review-page) {
  display: block;
  width: min(100%, 100vw);
}

.mmt-detail-layout:has(.mmt-flight-review-page) > .mmt-fare-summary,
.mmt-flow-detail:has(.mmt-flight-review-page) > .mmt-continue-button,
.mmt-flow-detail:has(.mmt-flight-review-page) > .mmt-policy-strip {
  display: none;
}

.mmt-selected-detail:has(.mmt-flight-review-page) {
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.mmt-flight-review-page {
  width: min(100%, 100vw);
  margin: -20px auto 0;
  color: #10233f;
  background: #eaf4fb;
}

.mmt-flight-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  margin: 0 calc(50% - 50vw);
  padding: 0 max(34px, calc((100vw - 1480px) / 2));
  color: #ffffff;
  background: #071d33;
}

.mmt-flight-review-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 850;
}

.mmt-flight-review-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.mmt-flight-review-header a {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 620;
  text-decoration: none;
}

.mmt-flight-review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  width: min(1480px, calc(100vw - 68px));
  margin: 0 auto;
  padding: 26px 0 54px;
}

.mmt-flight-review-layout main,
.mmt-flight-review-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

.mmt-flight-review-lock {
  margin: 0;
  border: 0;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: none;
}

.mmt-flight-review-lock .mmt-lock-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 3px solid #0f77d7;
  border-radius: 50%;
  color: #0f77d7;
  font-size: 0.7rem;
  font-weight: 850;
}

.mmt-flight-review-lock strong {
  color: #10233f;
  font-size: 1.08rem;
}

.mmt-flight-review-lock em {
  color: #079680;
  font-style: normal;
}

.mmt-flight-review-lock button,
.mmt-flight-review-continue {
  border: 1px solid #0f6fff;
  border-radius: 8px;
  color: #0f6fff;
  background: #ffffff;
  font-weight: 850;
  text-transform: uppercase;
}

.mmt-flight-review-continue {
  justify-self: start;
  min-width: 210px;
  min-height: 56px;
  color: #ffffff;
  background: linear-gradient(90deg, #4cb1f6, #0d69e0);
  box-shadow: 0 12px 24px rgba(15, 111, 255, 0.22);
}

.mmt-flight-trip-card,
.mmt-flight-policy-card,
.mmt-flight-secure-card,
.mmt-flight-review-folds article,
.mmt-flight-fare-review-card,
.mmt-flight-coupon-panel {
  border: 1px solid #dde7f2;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(26, 52, 84, 0.08);
}

.mmt-flight-trip-card {
  padding: 22px 28px;
}

.mmt-flight-trip-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #edf2f8;
}

.mmt-flight-trip-head h3 {
  margin: 0 0 8px;
  color: #10233f;
  font-size: 1.28rem;
  font-weight: 880;
}

.mmt-flight-trip-head p,
.mmt-flight-trip-head a,
.mmt-flight-trip-head span {
  margin: 0;
  color: #536174;
  font-size: 0.92rem;
  font-weight: 650;
}

.mmt-flight-trip-head div:last-child {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.mmt-flight-trip-head div:last-child span {
  padding: 5px 10px;
  border-radius: 3px;
  color: #ffffff;
  background: #30bd88;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.mmt-flight-trip-head a {
  color: #0f6fff;
  text-decoration: none;
}

.mmt-flight-trip-airline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0 12px;
}

.mmt-flight-trip-airline i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  color: #ffffff;
  background: #0f55bd;
  font-style: normal;
  font-weight: 850;
}

.mmt-flight-trip-airline strong,
.mmt-flight-trip-airline b {
  color: #25354d;
  font-size: 0.95rem;
  font-weight: 820;
}

.mmt-flight-trip-airline span {
  color: #647287;
  font-size: 0.9rem;
}

.mmt-flight-trip-airline b {
  margin-left: auto;
  color: #079680;
}

.mmt-flight-trip-timeline {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(170px, 1fr) minmax(130px, 0.8fr);
  gap: 22px;
  align-items: center;
  padding: 20px 18px;
  background: #f5f7fa;
}

.mmt-flight-trip-timeline strong {
  display: block;
  color: #10233f;
  font-size: 1.28rem;
  font-weight: 900;
}

.mmt-flight-trip-timeline span,
.mmt-flight-trip-timeline small,
.mmt-flight-trip-timeline b {
  display: block;
  color: #38475b;
  font-size: 0.86rem;
  font-weight: 620;
}

.mmt-flight-trip-timeline div:nth-child(2) {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.mmt-flight-trip-timeline i {
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: #58d5c6;
}

.mmt-flight-baggage-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 16px 18px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  color: #25354d;
  font-size: 0.88rem;
}

.mmt-flight-extra-bag,
.mmt-flight-summary-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 12px 16px;
  color: #0f6fff;
  background: #eaf6ff;
  font-size: 0.86rem;
  font-weight: 780;
}

.mmt-flight-extra-bag button {
  border: 0;
  color: #0f6fff;
  background: transparent;
  font-weight: 850;
  text-transform: uppercase;
}

.mmt-flight-summary-chip {
  justify-content: flex-start;
  width: fit-content;
  border-radius: 999px;
  color: #6b45c8;
  background: #f0e8ff;
}

.mmt-flight-policy-card {
  overflow: hidden;
}

.mmt-flight-policy-card header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  background: #f4f1ff;
}

.mmt-flight-policy-card h3,
.mmt-flight-secure-card h3 {
  margin: 0;
  color: #10233f;
  font-size: 1.08rem;
  font-weight: 880;
}

.mmt-flight-policy-card header span {
  padding: 6px 12px;
  border-radius: 999px;
  color: #6b45c8;
  background: #ece5ff;
  font-size: 0.82rem;
  font-weight: 780;
}

.mmt-flight-policy-card header a {
  margin-left: auto;
  color: #0f6fff;
  font-weight: 780;
  text-decoration: none;
}

.mmt-flight-policy-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 28px;
}

.mmt-flight-policy-options article {
  display: grid;
  gap: 12px;
  min-height: 240px;
  padding: 16px;
  border: 1px solid #dce6f4;
  border-radius: 8px;
  background: #ffffff;
}

.mmt-flight-policy-options article.active {
  border-color: #0f6fff;
  background: #f5fbff;
}

.mmt-flight-policy-options label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #25354d;
  font-size: 0.86rem;
}

.mmt-flight-policy-options b {
  color: #10233f;
  font-size: 1rem;
}

.mmt-flight-policy-options ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmt-flight-policy-options li {
  color: #2d7f71;
  font-size: 0.78rem;
  line-height: 1.35;
}

.mmt-flight-policy-options button {
  align-self: end;
  min-height: 34px;
  border: 1px solid #0f6fff;
  border-radius: 6px;
  color: #0f6fff;
  background: #ffffff;
  font-weight: 800;
}

.mmt-flexifly-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin: 0 28px 18px;
  padding: 14px 16px;
  border: 1px solid #dde7f2;
  border-radius: 8px;
  color: #25354d;
  background: #ffffff;
  font-size: 0.88rem;
}

.mmt-flexifly-row b {
  color: #10233f;
}

.mmt-flight-note-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 28px 22px 46px;
  color: #38475b;
  font-size: 0.82rem;
}

.mmt-flight-secure-card {
  padding: 22px 28px;
}

.mmt-flight-secure-card p {
  margin: 8px 0 18px;
  color: #56667b;
  font-size: 0.9rem;
}

.mmt-flight-secure-card div {
  display: grid;
  overflow: hidden;
  border: 1px solid #dde7f2;
  border-radius: 8px;
}

.mmt-flight-secure-card label {
  padding: 16px 18px;
  color: #25354d;
  font-weight: 760;
}

.mmt-flight-secure-card label + label {
  border-top: 1px solid #dde7f2;
}

.mmt-flight-review-folds {
  display: grid;
  gap: 14px;
}

.mmt-flight-review-folds article {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
}

.mmt-flight-review-folds strong {
  color: #4b5565;
  font-size: 1.04rem;
  font-weight: 850;
}

.mmt-flight-review-folds span {
  color: #8b96a7;
  font-size: 0.92rem;
}

.mmt-flight-review-side {
  position: sticky;
  top: 112px;
}

.mmt-flight-fare-review-card {
  padding: 20px 22px;
}

.mmt-flight-fare-review-card h3,
.mmt-flight-coupon-head strong {
  margin: 0 0 14px;
  color: #10233f;
  font-size: 1.14rem;
  font-weight: 880;
}

.mmt-flight-fare-review-card div,
.mmt-flight-fare-review-card strong {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e3e8ef;
  color: #25354d;
  font-size: 0.92rem;
}

.mmt-flight-fare-review-card strong {
  border-bottom: 0;
  color: #10233f;
  font-size: 1.08rem;
}

.mmt-flight-fare-review-card b {
  color: inherit;
}

.mmt-flight-fare-review-card small {
  display: block;
  margin-top: 12px;
  color: #667388;
  font-size: 0.78rem;
}

.mmt-flight-coupon-panel {
  overflow: hidden;
}

.mmt-flight-coupon-head {
  min-height: 86px;
  padding: 24px 22px;
  background: linear-gradient(110deg, #ffcc3d, #ffed94);
}

.mmt-flight-coupon-head span {
  float: right;
  color: #bf7a05;
  font-size: 0.78rem;
  font-weight: 850;
}

.mmt-flight-coupon-panel label {
  display: block;
  padding: 18px 22px 8px;
}

.mmt-flight-coupon-panel input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #dbe4ef;
  border-radius: 6px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.mmt-flight-coupon-panel nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 8px 22px 18px;
}

.mmt-flight-coupon-panel nav button {
  min-height: 44px;
  border: 1px solid #dbe4ef;
  border-radius: 6px;
  color: #25354d;
  background: #ffffff;
  font-weight: 760;
}

.mmt-flight-coupon-panel nav .active {
  border-color: #0f6fff;
  color: #0f6fff;
  background: #eef7ff;
}

.mmt-flight-coupon-list {
  display: grid;
  gap: 12px;
  max-height: 640px;
  overflow: auto;
  padding: 0 22px 22px;
}

.mmt-flight-coupon-list article {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid #dfe7f1;
  background: #ffffff;
}

.mmt-flight-coupon-list i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  background: #069180;
  font-style: normal;
  font-weight: 900;
}

.mmt-flight-coupon-list strong,
.mmt-flight-coupon-list b {
  color: #25354d;
  font-size: 0.88rem;
}

.mmt-flight-coupon-list p {
  margin: 7px 0 0;
  color: #667388;
  font-size: 0.78rem;
  line-height: 1.35;
}

.mmt-flight-coupon-list button {
  grid-column: 3;
  border: 0;
  color: #0f6fff;
  background: transparent;
  font-weight: 850;
}

.mmt-flight-coupon-list button.active {
  color: #075ec5;
  text-decoration: underline;
}

.mmt-flight-coupon-status {
  min-height: 22px;
  margin: -6px 22px 18px;
  color: #086f62;
  font-size: 0.82rem;
  font-weight: 760;
}

/* Flight fare and review refinement */
.mmt-flight-price-modal {
  color: #10233f;
  background: #ffffff;
}

.mmt-flight-modal-head,
.mmt-flight-modal-body {
  background: #ffffff;
}

.mmt-flight-modal-head {
  padding: 26px 46px 22px;
}

.mmt-flight-modal-head strong {
  color: #0b2b55;
  font-size: 1.42rem;
}

.mmt-flight-modal-head p,
.mmt-flight-fare-price p,
.mmt-flight-fare-price small {
  color: #52647c;
}

.mmt-flight-modal-grid {
  gap: 14px;
  padding-right: 72px;
}

.mmt-flight-fare-card,
.mmt-flight-fare-card.active,
.mmt-flight-fare-card.recommended {
  min-height: 560px;
  color: #10233f !important;
  background: #ffffff !important;
}

.mmt-flight-fare-card.active,
.mmt-flight-fare-card.recommended {
  border-color: #c99a3f;
  box-shadow: 0 16px 34px rgba(29, 116, 233, 0.12);
}

.mmt-flight-fare-price strong,
.mmt-flight-fare-price span,
.mmt-flight-fare-section b,
.mmt-flight-fare-section li,
.mmt-flight-price-drop,
.mmt-flight-price-drop span {
  color: #10233f !important;
}

.mmt-flight-fare-card mark {
  left: 20px;
  right: auto;
  color: #ffffff;
  background: #0b5fcc;
}

.mmt-flight-benefit-strip,
.mmt-flight-discount-strip {
  border-top: 1px solid #e3ecf6;
  border-bottom: 1px solid #e3ecf6;
}

.mmt-flight-book-now {
  margin-top: 18px;
}

.mmt-flight-review-page {
  background: #eef6ff;
}

.mmt-flight-review-header {
  min-height: 74px;
  color: #10233f;
  background: #ffffff;
  border-bottom: 3px solid #c99a3f;
}

.mmt-flight-review-header h2,
.mmt-flight-review-header a {
  color: #10233f;
}

.mmt-flight-review-layout {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 440px);
  gap: 26px;
  width: min(1520px, calc(100vw - 44px));
}

.mmt-flight-review-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.mmt-flight-review-lock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 26px;
}

.mmt-flight-review-folds {
  gap: 16px;
}

.mmt-flight-review-folds .mmt-flight-addon-panel {
  display: grid;
  gap: 16px;
  padding: 22px 26px;
}

.mmt-flight-addon-panel header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.mmt-flight-addon-panel header strong {
  color: #10233f;
  font-size: 1.08rem;
}

.mmt-flight-addon-panel header span {
  max-width: 560px;
  color: #52647c;
  font-size: 0.9rem;
  text-align: right;
}

.mmt-flight-addon-grid,
.mmt-flight-addon-toggles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mmt-flight-addon-grid label,
.mmt-flight-addon-toggles label {
  display: grid;
  gap: 8px;
  min-height: 70px;
  padding: 12px;
  border: 1px solid #dce8f7;
  border-radius: 8px;
  color: #10233f;
  background: #f8fbff;
  font-size: 0.82rem;
  font-weight: 780;
}

.mmt-flight-addon-grid select,
.mmt-flight-addon-grid input {
  width: 100%;
  min-height: 38px;
  border: 1px solid #cfdded;
  border-radius: 6px;
  padding: 0 10px;
  color: #10233f;
  background: #ffffff;
  font: inherit;
}

.mmt-flight-addon-toggles label {
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 54px;
}

.mmt-flight-review-bottom-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  padding: 8px 0 0;
}

.mmt-flight-review-bottom-actions p {
  margin: 0;
  color: #52647c;
  font-size: 0.86rem;
  font-weight: 680;
}

.mmt-flight-review-continue {
  justify-self: end;
  min-width: 260px;
}

/* Hotel booking review page */
.mmt-hotel-guest-checkout-page .mmt-flow-premium-status,
.mmt-hotel-guest-checkout-page .flow-hero,
.mmt-hotel-guest-checkout-page .booking-steps {
  display: none;
}

.mmt-hotel-guest-checkout-page .flow-main {
  padding-top: 160px;
}

.mmt-hotel-guest-checkout-page .mmt-traveller-section {
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto 48px;
}

.mmt-hotel-guest-checkout-page .mmt-traveller-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.mmt-hotel-guest-form {
  overflow: hidden;
  border: 1px solid #d8e4f3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(8, 47, 108, 0.08);
}

.mmt-hotel-review-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px 12px;
}

.mmt-hotel-review-title h1 {
  margin: 0;
  color: #071f46;
  font-size: 1.55rem;
  line-height: 1.1;
}

.mmt-hotel-review-title p {
  margin: 0;
  color: #60718b;
  font-size: 0.92rem;
  font-weight: 720;
}

.mmt-hotel-booking-card {
  margin: 0 26px 18px;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  background: #ffffff;
}

.mmt-hotel-booking-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 18px;
  padding: 18px;
}

.mmt-hotel-booking-head h2 {
  margin: 0 0 8px;
  color: #071f46;
  font-size: 1.35rem;
  line-height: 1.16;
}

.mmt-hotel-booking-head p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 10px;
  color: #071f46;
  font-weight: 850;
}

.mmt-hotel-booking-head p b {
  border: 1px solid #c8d2df;
  border-radius: 4px;
  padding: 5px 9px;
  color: #60718b;
  background: #ffffff;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.mmt-hotel-booking-head small {
  display: block;
  color: #7a8798;
  font-size: 0.86rem;
  line-height: 1.45;
}

.mmt-hotel-booking-head img {
  width: 116px;
  height: 86px;
  border-radius: 4px;
  object-fit: cover;
}

.mmt-hotel-booking-dates {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #e3eaf3;
  border-bottom: 1px solid #e3eaf3;
  background: linear-gradient(90deg, #ffffff 0%, #eef7ff 100%);
}

.mmt-hotel-booking-dates article {
  min-height: 86px;
  padding: 14px 18px;
  border-right: 1px solid #dce6f2;
}

.mmt-hotel-booking-dates article:last-child {
  border-right: 0;
}

.mmt-hotel-booking-dates span,
.mmt-hotel-booking-dates small,
.mmt-hotel-room-summary span {
  display: block;
  color: #6a7788;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mmt-hotel-booking-dates strong {
  display: block;
  margin: 6px 0 3px;
  color: #071f46;
  font-size: 1.02rem;
  line-height: 1.25;
}

.mmt-hotel-room-summary {
  padding: 18px;
}

.mmt-hotel-room-summary span {
  display: inline-block;
  margin-bottom: 9px;
  border: 1px solid #c89a3f;
  border-radius: 4px;
  padding: 4px 8px;
  color: #8a6518;
  background: #fff7e4;
}

.mmt-hotel-room-summary strong {
  display: block;
  color: #071f46;
  font-size: 1.12rem;
}

.mmt-hotel-room-summary p {
  margin: 8px 0 10px;
  color: #576881;
  font-size: 0.9rem;
}

.mmt-hotel-room-summary ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #08776b;
  font-size: 0.88rem;
}

.mmt-hotel-guest-details-card {
  padding: 24px 22px 22px;
  border-top: 1px solid #e4ebf4;
  background: #ffffff;
}

.mmt-hotel-guest-details-card h2 {
  margin: 0 0 22px;
  color: #071f46;
  font-size: 1.24rem;
}

.mmt-hotel-guest-name-row,
.mmt-hotel-contact-row,
.mmt-hotel-gst-fields {
  display: grid;
  gap: 16px;
}

.mmt-hotel-guest-name-row {
  grid-template-columns: 104px minmax(0, 1fr) minmax(0, 1fr);
  max-width: 880px;
}

.mmt-hotel-contact-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: 1000px;
  margin-top: 28px;
}

.mmt-hotel-guest-details-card label {
  display: grid;
  gap: 9px;
  color: #071f46;
  font-size: 0.83rem;
  font-weight: 500;
  text-transform: uppercase;
}

.mmt-hotel-guest-details-card label small {
  color: #8793a5;
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: none;
}

.mmt-hotel-guest-details-card input,
.mmt-hotel-guest-details-card select {
  width: 100%;
  min-height: 60px;
  border: 1px solid #c9d4e2;
  border-radius: 4px;
  padding: 0 14px;
  color: #071f46;
  background: #ffffff;
  font-size: 1rem;
  font-weight: 520;
  outline: 0;
}

.mmt-hotel-guest-details-card input:focus,
.mmt-hotel-guest-details-card select:focus {
  border-color: #0f6fff;
  box-shadow: 0 0 0 3px rgba(15, 111, 255, 0.12);
}

.mmt-hotel-phone-input {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
}

.mmt-hotel-phone-input b {
  display: grid;
  place-items: center;
  border: 1px solid #c9d4e2;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  color: #071f46;
  background: #ffffff;
  font-size: 1rem;
}

.mmt-hotel-phone-input input {
  border-radius: 0 4px 4px 0;
}

.mmt-hotel-gst-toggle {
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  width: fit-content;
  margin-top: 28px;
  text-transform: none !important;
  font-size: 1rem !important;
  font-weight: 650 !important;
}

.mmt-hotel-gst-toggle input {
  width: 28px;
  min-height: 28px;
  padding: 0;
}

.mmt-hotel-gst-fields {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  margin-top: 16px;
}

.mmt-hotel-gst-fields[hidden] {
  display: none;
}

.mmt-hotel-add-guest {
  margin-top: 28px;
  border: 0;
  color: #0f6fff;
  background: transparent;
  font-size: 1.08rem;
  font-weight: 850;
}

.mmt-hotel-extra-guests {
  display: grid;
  gap: 12px;
  max-width: 1000px;
  margin-top: 14px;
}

.mmt-hotel-extra-guests .mmt-passenger-row {
  grid-template-columns: 190px minmax(0, 1fr) 120px;
  border-radius: 6px;
}

.mmt-hotel-login-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: #eaf5ff;
}

.mmt-hotel-login-strip strong {
  color: #25354d;
  font-size: 0.95rem;
}

.mmt-hotel-login-strip .search-button {
  min-width: 120px;
  min-height: 40px;
  border-radius: 4px;
  padding: 0 22px;
}

.mmt-hotel-state-card,
.mmt-hotel-trip-secure {
  margin: 22px;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
}

.mmt-hotel-state-card h3,
.mmt-hotel-trip-secure h3,
.mmt-hotel-price-breakup-card h3,
.mmt-hotel-coupon-card h3,
.mmt-hotel-login-benefits h3 {
  margin: 0 0 14px;
  color: #071f46;
  font-size: 1.02rem;
}

.mmt-hotel-state-card h3 span,
.mmt-hotel-trip-secure p {
  color: #7a8798;
  font-size: 0.82rem;
  font-weight: 650;
}

.mmt-hotel-state-card select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfd9e6;
  border-radius: 4px;
  padding: 0 12px;
  color: #071f46;
  background: #ffffff;
}

.mmt-hotel-trip-secure div {
  overflow: hidden;
  border: 1px solid #dce6f2;
  border-radius: 8px;
}

.mmt-hotel-trip-secure label {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px;
  color: #25354d;
  font-weight: 700;
}

.mmt-hotel-trip-secure label + label {
  border-top: 1px solid #dce6f2;
}

.mmt-hotel-pay-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: center;
  padding: 0 22px 24px;
}

.mmt-hotel-pay-actions label {
  color: #4e5f78;
  font-size: 0.88rem;
}

.mmt-hotel-pay-actions button {
  min-height: 52px;
  border-radius: 4px;
  text-transform: uppercase;
}

.mmt-hotel-review-sidebar {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.mmt-hotel-review-sidebar section {
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(8, 47, 108, 0.07);
}

.mmt-hotel-price-breakup-card div,
.mmt-hotel-price-breakup-card strong {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e3eaf3;
  color: #25354d;
}

.mmt-hotel-price-breakup-card strong {
  border-bottom: 0;
  color: #071f46;
  font-size: 1.02rem;
}

.mmt-hotel-price-breakup-card small {
  grid-column: 1 / -1;
  color: #7a8798;
  font-size: 0.78rem;
}

.mmt-hotel-coupon-card label {
  display: grid;
  grid-template-columns: 1fr 78px;
  overflow: hidden;
  border: 1px solid #dfe7f1;
  border-radius: 6px;
}

.mmt-hotel-coupon-card input,
.mmt-hotel-coupon-card button {
  min-height: 48px;
  border: 0;
  padding: 0 12px;
  color: #25354d;
  background: #ffffff;
}

.mmt-hotel-coupon-card button {
  color: #0f6fff;
  font-weight: 850;
  text-transform: uppercase;
}

.mmt-hotel-coupon-card p,
.mmt-hotel-coupon-card small,
.mmt-hotel-login-benefits li {
  color: #60718b;
  font-size: 0.84rem;
  line-height: 1.45;
}

.mmt-hotel-login-benefits ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

/* Flight booking traveller card */
.mmt-flight-checkout-page .mmt-flow-premium-status,
.mmt-flight-checkout-page .flow-hero,
.mmt-flight-checkout-page .booking-steps {
  display: none;
}

.mmt-flight-checkout-page .flow-main {
  min-height: 100vh;
  padding-top: 154px;
  background: linear-gradient(180deg, #eef6ff 0%, #f7fbff 46%, #ffffff 100%);
}

.mmt-flight-checkout-page .mmt-traveller-section {
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto 54px;
}

.mmt-flight-checkout-page .mmt-traveller-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.mmt-flight-guest-form {
  overflow: hidden;
  border: 1px solid #d9e6f4;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(8, 47, 108, 0.09);
}

.mmt-flight-review-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px 12px;
}

.mmt-flight-review-title h1 {
  margin: 0;
  color: #071f46;
  font-size: 1.48rem;
  line-height: 1.1;
}

.mmt-flight-review-title p {
  margin: 0;
  color: #60718b;
  font-size: 0.9rem;
  font-weight: 720;
}

.mmt-flight-booking-brief {
  padding: 0;
}

.mmt-flight-booking-card {
  margin: 0 26px 18px;
  overflow: hidden;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  background: #ffffff;
}

.mmt-flight-booking-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 68%, #fff7e5 100%);
}

.mmt-flight-booking-card-head span,
.mmt-flight-booking-card-head small,
.mmt-flight-booking-baggage span,
.mmt-flight-guest-details-card label,
.mmt-flight-option-card label,
.mmt-flight-addons-card label,
.mmt-flight-note-field {
  color: #62728a;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mmt-flight-booking-card-head h2 {
  margin: 5px 0 7px;
  color: #071f46;
  font-size: 1.36rem;
  line-height: 1.15;
}

.mmt-flight-booking-card-head p {
  margin: 0;
  color: #536882;
  font-size: 0.9rem;
  font-weight: 760;
}

.mmt-flight-booking-price {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 4px;
  border-left: 1px solid #dce6f2;
  padding-left: 18px;
}

.mmt-flight-booking-price strong {
  color: #071f46;
  font-size: 1.28rem;
  line-height: 1;
}

.mmt-flight-booking-price span {
  color: #8a6518;
}

.mmt-flight-booking-airline {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-top: 1px solid #e5edf6;
}

.mmt-flight-booking-airline i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  color: #ffffff;
  background: #0f6fff;
  font-style: normal;
  font-weight: 900;
}

.mmt-flight-booking-airline strong {
  display: block;
  color: #071f46;
  font-size: 0.98rem;
}

.mmt-flight-booking-airline span {
  color: #63748c;
  font-size: 0.84rem;
  font-weight: 720;
}

.mmt-flight-booking-airline b {
  border: 1px solid #d9b76a;
  border-radius: 999px;
  padding: 7px 10px;
  color: #7b5a16;
  background: #fff8e8;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.mmt-flight-booking-route {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(140px, 0.7fr) minmax(0, 0.9fr);
  gap: 16px;
  padding: 18px;
  border-top: 1px solid #e5edf6;
  background: #f8fbff;
}

.mmt-flight-booking-route article {
  display: grid;
  gap: 4px;
}

.mmt-flight-booking-route span {
  color: #61718a;
  font-size: 0.74rem;
  font-weight: 860;
  text-transform: uppercase;
}

.mmt-flight-booking-route strong {
  color: #071f46;
  font-size: 1.12rem;
}

.mmt-flight-booking-route small {
  overflow: hidden;
  color: #576a84;
  font-size: 0.82rem;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmt-flight-booking-duration {
  justify-items: center;
  text-align: center;
}

.mmt-flight-booking-duration b {
  color: #071f46;
  font-size: 0.86rem;
}

.mmt-flight-booking-duration i {
  width: 86px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c99a3f, #0f6fff);
}

.mmt-flight-booking-baggage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px 18px;
  border-top: 1px solid #e5edf6;
}

.mmt-flight-booking-baggage span {
  border: 1px solid #dbe7f5;
  border-radius: 6px;
  padding: 10px;
  background: #ffffff;
}

.mmt-flight-booking-baggage b {
  display: block;
  margin-top: 4px;
  color: #071f46;
  font-size: 0.86rem;
  text-transform: none;
}

.mmt-flight-guest-details-card,
.mmt-flight-option-card,
.mmt-flight-co-traveller-card,
.mmt-flight-addons-card {
  margin: 0 26px 18px;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
}

.mmt-flight-guest-details-card h2,
.mmt-flight-option-card h2,
.mmt-flight-co-traveller-card h2,
.mmt-flight-addons-card h2,
.mmt-flight-price-breakup-card h3,
.mmt-flight-coupon-card h3,
.mmt-flight-support-card h3 {
  margin: 0 0 16px;
  color: #071f46;
  font-size: 1.08rem;
  line-height: 1.2;
}

.mmt-flight-name-row,
.mmt-flight-contact-row,
.mmt-flight-doc-row,
.mmt-flight-option-grid,
.mmt-flight-preference-grid {
  display: grid;
  gap: 14px;
}

.mmt-flight-name-row {
  grid-template-columns: 104px minmax(0, 1fr) minmax(0, 1fr);
}

.mmt-flight-contact-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: 24px;
}

.mmt-flight-doc-row,
.mmt-flight-option-grid,
.mmt-flight-preference-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.mmt-flight-guest-details-card label,
.mmt-flight-option-card label,
.mmt-flight-addons-card label,
.mmt-flight-note-field {
  display: grid;
  gap: 8px;
}

.mmt-flight-guest-details-card label small {
  color: #8793a5;
  font-size: 0.72rem;
  font-weight: 520;
  text-transform: none;
}

.mmt-flight-guest-details-card input,
.mmt-flight-guest-details-card select,
.mmt-flight-option-card input,
.mmt-flight-option-card select,
.mmt-flight-addons-card input,
.mmt-flight-addons-card select,
.mmt-flight-addons-card textarea,
.mmt-flight-note-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #ccd8e6;
  border-radius: 5px;
  padding: 0 13px;
  color: #071f46;
  background: #ffffff;
  font-size: 0.94rem;
  font-weight: 650;
  outline: 0;
}

.mmt-flight-addons-card textarea {
  min-height: 90px;
  padding: 12px 13px;
  resize: vertical;
}

.mmt-flight-guest-details-card input:focus,
.mmt-flight-guest-details-card select:focus,
.mmt-flight-option-card input:focus,
.mmt-flight-option-card select:focus,
.mmt-flight-addons-card input:focus,
.mmt-flight-addons-card select:focus,
.mmt-flight-addons-card textarea:focus,
.mmt-flight-note-field input:focus {
  border-color: #0f6fff;
  box-shadow: 0 0 0 3px rgba(15, 111, 255, 0.12);
}

.mmt-flight-phone-input {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
}

.mmt-flight-phone-input b {
  display: grid;
  place-items: center;
  border: 1px solid #ccd8e6;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  color: #071f46;
  background: #ffffff;
  font-size: 0.94rem;
}

.mmt-flight-phone-input input {
  border-radius: 0 5px 5px 0;
}

.mmt-flight-option-card p,
.mmt-flight-co-traveller-card .mmt-traveller-note {
  margin: 14px 0 0;
  border: 1px solid #cfe3ff;
  border-radius: 7px;
  padding: 12px 14px;
  color: #164d99;
  background: #f0f7ff;
  font-size: 0.86rem;
  font-weight: 760;
}

.mmt-flight-co-traveller-card .mmt-additional-travellers {
  margin-top: 14px;
}

.mmt-flight-note-field {
  max-width: 760px;
  margin-top: 16px;
}

.mmt-flight-co-traveller-card .mmt-passenger-row {
  grid-template-columns: 190px minmax(0, 1fr) minmax(150px, 0.72fr);
  border-radius: 7px;
  box-shadow: none;
}

.mmt-flight-co-traveller-card .mmt-passenger-row.international {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mmt-flight-addons-card .mmt-flight-addon-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 20px;
}

.mmt-flight-addons-card .mmt-flight-addon-card {
  min-height: 118px;
  border-radius: 7px;
  box-shadow: none;
}

.mmt-flight-addons-card .mmt-flight-addon-card input {
  min-height: 20px;
}

.mmt-flight-wide {
  grid-column: 1 / -1;
}

.mmt-flight-booking-pay-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  padding: 2px 26px 26px;
}

.mmt-flight-booking-pay-actions label {
  color: #4f6078;
  font-size: 0.88rem;
}

.mmt-flight-booking-pay-actions button {
  min-height: 52px;
  border-radius: 5px;
  text-transform: uppercase;
}

.mmt-flight-booking-sidebar {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.mmt-flight-booking-sidebar section {
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(8, 47, 108, 0.07);
}

.mmt-flight-price-breakup-card div,
.mmt-flight-price-breakup-card strong {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e3eaf3;
  color: #25354d;
}

.mmt-flight-price-breakup-card strong {
  border-bottom: 0;
  color: #071f46;
  font-size: 1.02rem;
}

.mmt-flight-price-breakup-card small,
.mmt-flight-coupon-card p,
.mmt-flight-coupon-card small,
.mmt-flight-support-card li {
  color: #60718b;
  font-size: 0.84rem;
  line-height: 1.45;
}

.mmt-flight-coupon-card label {
  display: grid;
  grid-template-columns: 1fr 76px;
  overflow: hidden;
  border: 1px solid #dfe7f1;
  border-radius: 6px;
}

.mmt-flight-coupon-card input,
.mmt-flight-coupon-card button {
  min-height: 48px;
  border: 0;
  padding: 0 12px;
  color: #25354d;
  background: #ffffff;
}

.mmt-flight-coupon-card button {
  color: #0f6fff;
  font-weight: 850;
  text-transform: uppercase;
}

.mmt-flight-support-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 1280px) {
  .mmt-flight-price-modal {
    width: calc(100vw - 52px);
  }

  .mmt-flight-fare-card {
    flex-basis: 388px;
  }

  .mmt-flight-review-layout {
    grid-template-columns: 1fr;
  }

  .mmt-flight-review-side {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .mmt-hotel-guest-checkout-page .mmt-traveller-layout {
    grid-template-columns: 1fr;
  }

  .mmt-flight-checkout-page .mmt-traveller-layout {
    grid-template-columns: 1fr;
  }

  .mmt-flight-booking-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .mmt-hotel-review-sidebar {
    position: static;
  }
}

@media (min-width: 1081px) and (max-width: 1280px) {
  .mmt-flight-review-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 400px);
  }

  .mmt-flight-review-side {
    position: sticky;
    top: 96px;
    grid-template-columns: 1fr;
  }

  .mmt-flight-checkout-page .mmt-traveller-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .mmt-flight-booking-sidebar {
    position: sticky;
    top: 120px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .mmt-flight-modal-backdrop {
    padding: 12px;
  }

  .mmt-flight-price-modal {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 28px);
  }

  .mmt-flight-modal-head,
  .mmt-flight-modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mmt-flight-fare-card {
    flex-basis: min(360px, calc(100vw - 72px));
  }

  .mmt-flight-review-header,
  .mmt-flight-trip-head,
  .mmt-flight-review-folds article {
    display: grid;
  }

  .mmt-flight-review-layout {
    width: calc(100vw - 24px);
  }

  .mmt-flight-trip-timeline,
  .mmt-flight-policy-options,
  .mmt-flight-review-side {
    grid-template-columns: 1fr;
  }

  .mmt-hotel-guest-checkout-page .flow-main {
    padding-top: 132px;
  }

  .mmt-hotel-guest-checkout-page .mmt-traveller-section {
    width: calc(100vw - 20px);
  }

  .mmt-hotel-review-title,
  .mmt-flight-review-title,
  .mmt-hotel-booking-head,
  .mmt-hotel-login-strip,
  .mmt-hotel-pay-actions,
  .mmt-flight-booking-card-head,
  .mmt-flight-booking-airline,
  .mmt-flight-booking-pay-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mmt-hotel-booking-dates,
  .mmt-hotel-guest-name-row,
  .mmt-hotel-contact-row,
  .mmt-hotel-gst-fields,
  .mmt-flight-name-row,
  .mmt-flight-contact-row,
  .mmt-flight-doc-row,
  .mmt-flight-option-grid,
  .mmt-flight-preference-grid,
  .mmt-flight-booking-route,
  .mmt-flight-booking-baggage,
  .mmt-flight-addons-card .mmt-flight-addon-grid,
  .mmt-flight-booking-sidebar {
    grid-template-columns: 1fr;
  }

  .mmt-hotel-booking-head img {
    width: 100%;
    height: 160px;
  }

  .mmt-hotel-last-name span {
    display: none;
  }
}

/* Premium flight results cleanup 20260628 */
.flow-page[data-flow-page="results"] {
  background: linear-gradient(180deg, #f3f8ff 0%, #eef5fb 42%, #ffffff 100%);
}

/* Premium flight checkout cleanup 20260629 */
.mmt-flight-checkout-page .mmt-traveller-section {
  width: min(1280px, calc(100vw - 36px));
}

.mmt-flight-checkout-page .mmt-traveller-layout {
  grid-template-columns: minmax(0, 1fr) 318px;
  gap: 18px;
}

.mmt-flight-guest-form {
  border-color: #d9e7f7;
  border-radius: 8px;
}

.mmt-flight-review-title {
  padding: 18px 20px 8px;
}

.mmt-flight-review-title h1 {
  font-size: 1.24rem;
  letter-spacing: 0;
}

.mmt-flight-review-title p {
  max-width: 720px;
  font-size: 0.82rem;
}

.mmt-flight-booking-card,
.mmt-flight-guest-details-card,
.mmt-flight-option-card,
.mmt-flight-co-traveller-card,
.mmt-flight-addons-card {
  margin-inline: 20px;
  margin-bottom: 14px;
  border-radius: 7px;
}

.mmt-flight-booking-card-head {
  grid-template-columns: minmax(0, 1fr) 164px;
  padding: 14px 16px;
}

.mmt-flight-booking-card-head h2 {
  font-size: 1.12rem;
}

.mmt-flight-booking-card-head p,
.mmt-flight-booking-airline span,
.mmt-flight-booking-route small,
.mmt-flight-price-breakup-card small,
.mmt-flight-coupon-card p,
.mmt-flight-coupon-card small,
.mmt-flight-support-card li {
  font-size: 0.78rem;
}

.mmt-flight-booking-price strong {
  font-size: 1.08rem;
}

.mmt-flight-booking-airline,
.mmt-flight-booking-route,
.mmt-flight-booking-baggage {
  padding: 13px 16px;
}

.mmt-flight-booking-baggage {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mmt-flight-booking-baggage span {
  padding: 8px 10px;
  font-size: 0.7rem;
}

.mmt-flight-booking-baggage b {
  font-size: 0.78rem;
}

.mmt-flight-lock-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 154px;
  gap: 14px;
  align-items: center;
  margin: 0 20px 14px;
  border: 1px solid #dbe9f9;
  border-radius: 7px;
  padding: 14px 16px;
  background: #f5fbff;
}

.mmt-flight-lock-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #11315d;
}

.mmt-flight-lock-strip span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid #1267d8;
  border-radius: 999px;
  color: #1267d8;
  font-size: 0.72rem;
  font-weight: 900;
}

.mmt-flight-lock-strip strong {
  font-size: 0.95rem;
}

.mmt-flight-lock-strip b {
  color: #00856f;
  font-size: 0.95rem;
}

.mmt-flight-lock-strip button,
.mmt-flight-coupon-card button,
.mmt-flight-offer-tabs button {
  cursor: pointer;
}

.mmt-flight-lock-strip button {
  min-height: 42px;
  border: 1px solid #1267d8;
  border-radius: 6px;
  color: #1267d8;
  background: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
}

.mmt-flight-guest-details-card,
.mmt-flight-option-card,
.mmt-flight-co-traveller-card,
.mmt-flight-addons-card {
  padding: 16px;
}

.mmt-flight-guest-details-card h2,
.mmt-flight-option-card h2,
.mmt-flight-co-traveller-card h2,
.mmt-flight-addons-card h2,
.mmt-flight-price-breakup-card h3,
.mmt-flight-coupon-card h3,
.mmt-flight-support-card h3 {
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.mmt-flight-name-row,
.mmt-flight-contact-row,
.mmt-flight-doc-row,
.mmt-flight-option-grid,
.mmt-flight-preference-grid {
  gap: 10px;
}

.mmt-flight-contact-row,
.mmt-flight-doc-row,
.mmt-flight-option-grid,
.mmt-flight-preference-grid {
  margin-top: 14px;
}

.mmt-flight-guest-details-card label,
.mmt-flight-option-card label,
.mmt-flight-addons-card label,
.mmt-flight-note-field {
  gap: 6px;
  font-size: 0.7rem;
}

.mmt-flight-guest-details-card input,
.mmt-flight-guest-details-card select,
.mmt-flight-option-card input,
.mmt-flight-option-card select,
.mmt-flight-addons-card input,
.mmt-flight-addons-card select,
.mmt-flight-addons-card textarea,
.mmt-flight-note-field input {
  min-height: 44px;
  border-radius: 4px;
  font-size: 0.84rem;
}

.mmt-flight-option-card p,
.mmt-flight-co-traveller-card .mmt-traveller-note {
  padding: 10px 12px;
  font-size: 0.78rem;
}

.mmt-flight-co-traveller-card .mmt-passenger-row {
  grid-template-columns: 170px minmax(0, 1fr) minmax(140px, 0.72fr);
}

.mmt-flight-addons-card .mmt-flight-addon-grid {
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mmt-flight-addons-card .mmt-flight-addon-card {
  min-height: 92px;
  padding: 12px;
}

.mmt-flight-booking-pay-actions {
  grid-template-columns: minmax(0, 1fr) 210px;
  padding: 0 20px 22px;
}

.mmt-flight-booking-pay-actions button {
  min-height: 48px;
}

.mmt-flight-booking-sidebar {
  top: 112px;
  gap: 14px;
}

.mmt-flight-booking-sidebar section {
  border-radius: 7px;
  padding: 16px;
}

.mmt-flight-price-breakup-card div,
.mmt-flight-price-breakup-card strong {
  padding: 11px 0;
}

.mmt-flight-offer-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.mmt-flight-offer-tabs button {
  min-height: 38px;
  border: 1px solid #d7e4f4;
  border-radius: 5px;
  color: #11315d;
  background: #ffffff;
  font-weight: 850;
}

.mmt-flight-offer-tabs .active {
  border-color: #1267d8;
  color: #1267d8;
  background: #edf6ff;
}

.mmt-flight-coupon-card article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  margin-top: 10px;
  border: 1px solid #dfe7f1;
  border-radius: 6px;
  padding: 10px;
  background: #ffffff;
}

.mmt-flight-coupon-card article i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #00856f;
  font-style: normal;
  font-weight: 900;
}

.mmt-flight-coupon-card article strong,
.mmt-flight-coupon-card article b {
  color: #082f6c;
  font-size: 0.82rem;
}

.mmt-flight-coupon-card article span {
  display: block;
  margin-top: 3px;
  color: #60718b;
  font-size: 0.75rem;
  line-height: 1.35;
}

@media (max-width: 1280px) {
  .mmt-flight-checkout-page .mmt-traveller-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

@media (max-width: 1100px) {
  .mmt-flight-checkout-page .mmt-traveller-layout,
  .mmt-flight-booking-sidebar {
    grid-template-columns: 1fr;
  }

  .mmt-flight-booking-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {
  .mmt-flight-lock-strip,
  .mmt-flight-booking-card-head,
  .mmt-flight-booking-baggage,
  .mmt-flight-booking-pay-actions,
  .mmt-flight-addons-card .mmt-flight-addon-grid {
    grid-template-columns: 1fr;
  }

  .mmt-flight-booking-card,
  .mmt-flight-guest-details-card,
  .mmt-flight-option-card,
  .mmt-flight-co-traveller-card,
  .mmt-flight-addons-card,
  .mmt-flight-lock-strip {
    margin-inline: 12px;
  }
}

/* Premium review/payment cleanup 20260629 */
.flow-page[data-page="review"] .flow-main {
  padding-top: 132px;
  background: linear-gradient(180deg, #eef6ff 0%, #f6fbff 44%, #ffffff 100%);
}

.flow-page[data-page="review"] .mmt-review-top-strip {
  width: min(1280px, calc(100vw - 36px));
  min-height: 108px;
  margin: 0 auto 10px;
  border: 1px solid #d8e7f7;
  border-radius: 8px;
  padding: 20px 24px;
  color: #092956;
  background: linear-gradient(135deg, #ffffff 0%, #f2f8ff 70%, #fff8e9 100%);
  box-shadow: 0 12px 34px rgba(18, 49, 95, 0.08);
}

.flow-page[data-page="review"] .mmt-review-top-strip h1 {
  margin: 2px 0 6px;
  color: #092956;
  font-size: 1.36rem;
  letter-spacing: 0;
}

.flow-page[data-page="review"] .mmt-review-top-strip span {
  color: #60718b;
  font-size: 0.86rem;
  font-weight: 760;
}

.flow-page[data-page="review"] .booking-steps {
  width: min(1280px, calc(100vw - 36px));
  margin: 0 auto 14px;
  border-radius: 8px;
}

.flow-page[data-page="review"] .mmt-review-section {
  width: min(1280px, calc(100vw - 36px));
  margin: 0 auto 44px;
}

.flow-page[data-page="review"] .mmt-review-layout {
  grid-template-columns: minmax(0, 1fr) 334px;
  gap: 18px;
  align-items: start;
}

.flow-page[data-page="review"] .mmt-review-main {
  gap: 12px;
}

.flow-page[data-page="review"] .mmt-review-hero,
.flow-page[data-page="review"] .mmt-review-card,
.flow-page[data-page="review"] .mmt-review-support {
  border-color: #dce8f6;
  border-radius: 7px;
  box-shadow: 0 10px 26px rgba(18, 49, 95, 0.06);
}

.flow-page[data-page="review"] .mmt-review-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
  padding: 18px;
  background: #ffffff;
}

.flow-page[data-page="review"] .mmt-review-hero h2 {
  color: #092956;
  font-size: 1.14rem;
}

.flow-page[data-page="review"] .mmt-review-hero p,
.flow-page[data-page="review"] .mmt-review-card p,
.flow-page[data-page="review"] .mmt-review-confidence p,
.flow-page[data-page="review"] .mmt-review-next-panel p {
  color: #60718b;
  font-size: 0.78rem;
  line-height: 1.38;
}

.flow-page[data-page="review"] .mmt-review-confidence {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.flow-page[data-page="review"] .mmt-review-confidence article {
  min-height: 96px;
  border-radius: 6px;
  padding: 12px;
}

.flow-page[data-page="review"] .mmt-review-confidence span,
.flow-page[data-page="review"] .mmt-review-next-panel b,
.flow-page[data-page="review"] .review-label,
.flow-page[data-page="review"] .mmt-review-fare-grid span,
.flow-page[data-page="review"] .mmt-review-policy-grid span {
  color: #8a6419;
  font-size: 0.68rem;
  font-weight: 930;
}

.flow-page[data-page="review"] .mmt-review-confidence strong,
.flow-page[data-page="review"] .mmt-review-card strong,
.flow-page[data-page="review"] .mmt-review-fare-grid strong,
.flow-page[data-page="review"] .mmt-review-policy-grid strong {
  color: #092956;
}

.flow-page[data-page="review"] .mmt-review-card {
  gap: 8px;
  padding: 16px 18px;
}

.flow-page[data-page="review"] .mmt-review-card > strong {
  font-size: 1.04rem;
}

.flow-page[data-page="review"] .mmt-review-edit-link {
  top: 13px;
  right: 14px;
  min-height: 30px;
  border-radius: 5px;
  font-size: 0.74rem;
}

.flow-page[data-page="review"] .mmt-review-booking-brief {
  grid-template-columns: 184px minmax(0, 1fr) repeat(3, minmax(110px, 0.7fr));
  gap: 10px;
}

.flow-page[data-page="review"] .mmt-review-booking-brief .mmt-review-trip-visual {
  min-height: 116px;
  border-radius: 6px;
}

.flow-page[data-page="review"] .mmt-review-booking-brief strong,
.flow-page[data-page="review"] .mmt-review-booking-brief b {
  font-size: 0.9rem;
}

.flow-page[data-page="review"] .mmt-review-fare-grid,
.flow-page[data-page="review"] .mmt-review-policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.flow-page[data-page="review"] .mmt-review-fare-grid article,
.flow-page[data-page="review"] .mmt-review-policy-grid a {
  min-height: 88px;
  border-radius: 6px;
  padding: 12px;
}

.flow-page[data-page="review"] .mmt-review-fare-grid p {
  font-size: 0.76rem;
}

.flow-page[data-page="review"] .mmt-payment-box {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.flow-page[data-page="review"] .mmt-payment-box > div,
.flow-page[data-page="review"] .mmt-payment-methods,
.flow-page[data-page="review"] .mmt-payment-box > a,
.flow-page[data-page="review"] .mmt-payment-note,
.flow-page[data-page="review"] .pay-button {
  border-radius: 7px;
}

.flow-page[data-page="review"] .mmt-payment-box > div,
.flow-page[data-page="review"] .mmt-payment-methods {
  border: 1px solid #dce8f6;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(18, 49, 95, 0.06);
}

.flow-page[data-page="review"] #selectedSummary {
  padding: 16px;
}

.flow-page[data-page="review"] .mmt-coupon-box,
.flow-page[data-page="review"] .mmt-payment-breakup,
.flow-page[data-page="review"] .mmt-due-now,
.flow-page[data-page="review"] .plan-total {
  padding: 14px 16px;
}

.flow-page[data-page="review"] .mmt-coupon-box {
  background: linear-gradient(135deg, #fff6dd, #ffffff);
}

.flow-page[data-page="review"] .mmt-payment-breakup {
  display: grid;
  gap: 10px;
}

.flow-page[data-page="review"] .mmt-payment-breakup div,
.flow-page[data-page="review"] .mmt-due-now,
.flow-page[data-page="review"] .plan-total {
  color: #092956;
}

.flow-page[data-page="review"] .mmt-payment-breakup div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e7eef7;
}

.flow-page[data-page="review"] .mmt-payment-breakup div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.flow-page[data-page="review"] .mmt-payment-breakup span,
.flow-page[data-page="review"] .mmt-due-now small,
.flow-page[data-page="review"] .plan-total small,
.flow-page[data-page="review"] .mmt-payment-methods > span,
.flow-page[data-page="review"] .mmt-coupon-box span {
  color: #60718b;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.flow-page[data-page="review"] .mmt-payment-breakup b,
.flow-page[data-page="review"] .mmt-coupon-box strong,
.flow-page[data-page="review"] .plan-total b,
.flow-page[data-page="review"] .mmt-due-now strong {
  color: #092956;
  font-size: 0.92rem;
}

.flow-page[data-page="review"] .mmt-due-now {
  display: grid;
  gap: 5px;
  background: #f2f8ff;
}

.flow-page[data-page="review"] .mmt-due-now strong {
  font-size: 1.28rem;
}

.flow-page[data-page="review"] .mmt-due-now span,
.flow-page[data-page="review"] .mmt-coupon-box p,
.flow-page[data-page="review"] .mmt-payment-note {
  color: #60718b;
  font-size: 0.76rem;
  line-height: 1.35;
}

.flow-page[data-page="review"] .mmt-payment-methods {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.flow-page[data-page="review"] .mmt-payment-methods label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 3px 9px;
  align-items: start;
  border: 1px solid #dce8f6;
  border-radius: 6px;
  padding: 10px;
  background: #ffffff;
}

.flow-page[data-page="review"] .mmt-payment-methods label:has(input:checked) {
  border-color: #1267d8;
  background: #edf6ff;
}

.flow-page[data-page="review"] .mmt-payment-methods input {
  grid-row: span 2;
  margin-top: 2px;
  accent-color: #1267d8;
}

.flow-page[data-page="review"] .mmt-payment-methods b {
  color: #092956;
  font-size: 0.86rem;
}

.flow-page[data-page="review"] .mmt-payment-methods small {
  color: #60718b;
  font-size: 0.73rem;
  line-height: 1.32;
}

.flow-page[data-page="review"] .pay-button {
  min-height: 48px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #4ab3ff, #1267d8);
  font-weight: 900;
}

.flow-page[data-page="review"] .mmt-payment-note {
  margin: 0;
  border: 1px solid #dce8f6;
  padding: 12px 14px;
  background: #ffffff;
}

.flow-page[data-page="review"] .mmt-payment-box > a {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #d6b56a;
  color: #8a6419;
  background: #fff8e8;
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .flow-page[data-page="review"] .mmt-review-layout {
    grid-template-columns: 1fr;
  }

  .flow-page[data-page="review"] .mmt-payment-box {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-page[data-page="review"] .pay-button,
  .flow-page[data-page="review"] .mmt-payment-note,
  .flow-page[data-page="review"] .mmt-payment-box > a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .flow-page[data-page="review"] .flow-main {
    padding-top: 120px;
  }

  .flow-page[data-page="review"] .mmt-review-top-strip,
  .flow-page[data-page="review"] .booking-steps,
  .flow-page[data-page="review"] .mmt-review-section {
    width: calc(100vw - 20px);
  }

  .flow-page[data-page="review"] .mmt-review-hero,
  .flow-page[data-page="review"] .mmt-review-booking-brief,
  .flow-page[data-page="review"] .mmt-review-fare-grid,
  .flow-page[data-page="review"] .mmt-review-policy-grid,
  .flow-page[data-page="review"] .mmt-payment-box {
    grid-template-columns: 1fr;
  }
}

.flow-page[data-flow-page="results"] .flow-topbar {
  z-index: 130;
  top: 8px;
  width: min(1320px, calc(100% - 20px));
}

.flow-page[data-flow-page="results"] .flow-topbar .header-main,
.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .header-main {
  grid-template-columns: minmax(210px, 330px) minmax(320px, 1fr) auto auto;
  gap: 10px;
  min-height: 68px;
  padding: 7px 8px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(247,251,255,0.98)),
    linear-gradient(90deg, rgba(29,116,233,0.06), rgba(201,154,63,0.08));
  box-shadow: 0 14px 34px rgba(18, 49, 95, 0.12);
}

.flow-page[data-flow-page="results"] .flow-topbar .brand {
  min-height: 52px;
  padding: 5px 12px;
  border-radius: 10px;
}

.flow-page[data-flow-page="results"] .flow-topbar .brand-logo-image {
  max-width: 255px;
  height: 42px;
}

.flow-page[data-flow-page="results"] .flow-topbar .header-search {
  min-height: 50px;
  height: 50px;
  border-radius: 12px;
}

.flow-page[data-flow-page="results"] .flow-topbar .header-search input {
  font-size: 0.92rem;
  font-weight: 760;
}

.flow-page[data-flow-page="results"] .flow-topbar .header-search button {
  height: 36px;
  padding: 0 18px;
  font-size: 0.86rem;
}

.flow-page[data-flow-page="results"] .flow-topbar .topnav {
  gap: 4px;
  font-size: 0.78rem;
}

.flow-page[data-flow-page="results"] .flow-topbar .topnav a {
  min-height: 38px;
  padding: 0 9px;
}

.flow-page[data-flow-page="results"] .flow-topbar .login-button {
  min-height: 50px;
  min-width: 112px;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.flow-page[data-flow-page="results"] .flow-topbar .helpline-chip {
  display: none;
}

.flow-page[data-flow-page="results"] .flow-travel-menu {
  width: min(1210px, calc(100% - 60px));
  min-height: 70px;
  padding: 7px;
  border-radius: 14px;
}

.flow-page[data-flow-page="results"] .flow-travel-menu a {
  min-height: 56px;
  font-size: 0.74rem;
}

.flow-page[data-flow-page="results"] .flow-travel-menu a svg {
  width: 20px;
  height: 20px;
}

.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar {
  top: 0;
  width: 100%;
}

.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .header-main {
  border-radius: 0 0 14px 14px;
}

.flow-page[data-flow-page="results"] .mmt-results-main {
  padding-top: 172px !important;
}

.flow-page[data-flow-page="results"] .mmt-flow-results {
  width: min(1320px, calc(100% - 32px));
  gap: 14px;
  margin-inline: auto;
}

.flow-page[data-flow-page="results"] .mmt-result-intro {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) {
  position: sticky;
  top: 82px;
  z-index: 92;
  grid-template-columns: 94px minmax(128px, 1fr) minmax(128px, 1fr) 124px 124px 126px 132px 138px;
  gap: 7px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto 14px !important;
  padding: 10px 12px;
  border: 1px solid #d8e5f3;
  border-radius: 14px;
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 14px 34px rgba(18, 49, 95, 0.1) !important;
  backdrop-filter: blur(16px);
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) > input[type="hidden"] {
  display: none !important;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) > label {
  grid-column: auto !important;
  min-height: 52px;
  padding: 7px 10px;
  border-color: #dfe8f3;
  border-radius: 10px;
  color: #66758a;
  background: #fbfdff !important;
  font-size: 0.62rem;
  line-height: 1.08;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) > label input,
.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) > label select {
  min-height: 24px;
  font-size: 0.84rem;
  font-weight: 840;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .search-button {
  grid-column: auto !important;
  width: 100% !important;
  margin: 0 !important;
  min-width: 0;
  min-height: 52px;
  border-radius: 10px;
  font-size: 0.84rem;
  letter-spacing: 0;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-result-flight-controls {
  gap: 7px;
  min-height: 36px;
  padding-top: 7px;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-result-flight-controls label {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 780;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-result-flight-controls input,
.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-result-flight-controls select {
  min-height: 24px;
  font-size: 0.76rem;
}

.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-price-drop-check {
  margin-left: 8px;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card) {
  grid-template-columns: 244px minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 1320px;
  padding-top: 2px !important;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card) .mmt-filter-panel {
  position: sticky;
  top: 210px;
  z-index: 30;
  max-height: none;
  overflow: visible;
  border: 1px solid #dce7f4;
  border-radius: 14px;
  background: #ffffff !important;
  box-shadow: 0 12px 28px rgba(18, 49, 95, 0.08) !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-filter-panel .mmt-filter-head {
  min-height: 48px;
  padding: 14px 16px 8px;
}

.flow-page[data-flow-page="results"] .mmt-flight-filter-panel .mmt-filter-head strong {
  font-size: 0.96rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-filter-panel .mmt-filter-card {
  padding: 12px 16px;
}

.flow-page[data-flow-page="results"] .mmt-flight-filter-panel .mmt-filter-card > span {
  font-size: 0.86rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-screenshot-filters label {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px 10px;
  min-height: 38px;
  font-size: 0.82rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-screenshot-filters small {
  grid-column: 2;
  font-size: 0.72rem;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) {
  display: grid;
  gap: 12px;
  background: transparent;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .custom-result-note {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-fare-rail {
  min-height: 74px;
  border: 1px solid #dce7f4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(18, 49, 95, 0.08);
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-fare-rail button:not(.mmt-rail-arrow) {
  min-height: 72px;
  padding: 10px 8px;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-fare-rail span,
.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-fare-rail strong {
  font-size: 0.78rem;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-fare-rail small {
  font-size: 0.82rem;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-toolbar {
  padding: 12px 0 6px;
  background: transparent !important;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs button {
  grid-template-columns: 30px minmax(0, 1fr);
  min-height: 58px;
  border: 1px solid #dce7f4;
  border-radius: 12px;
  padding: 8px 12px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 49, 95, 0.06);
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs button::before {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs span {
  font-size: 0.78rem;
}

.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs strong,
.flow-page[data-flow-page="results"] .mmt-results-column:has(.mmt-flight-listing-card) .mmt-result-sort-tabs small {
  font-size: 0.7rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card.mmt-flight-v2 {
  min-height: 152px;
  margin: 0 0 14px;
  border: 1px solid #dce7f4;
  border-radius: 14px;
  background: #ffffff !important;
  box-shadow: 0 14px 30px rgba(18, 49, 95, 0.08) !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-promo {
  min-height: 32px;
  padding: 0 14px;
  font-size: 0.76rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-row {
  grid-template-columns: minmax(150px, 0.78fr) minmax(300px, 1.55fr) minmax(150px, 0.64fr);
  gap: 14px;
  min-height: 78px;
  padding: 12px 14px 8px;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-carrier {
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-carrier i {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-carrier strong {
  font-size: 0.88rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-carrier small,
.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-carrier label {
  font-size: 0.7rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-route-v2 {
  grid-template-columns: minmax(76px, 0.7fr) minmax(116px, 0.95fr) minmax(76px, 0.7fr);
  gap: 12px;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-route-v2 b {
  font-size: 1.05rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-route-v2 span,
.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-line span {
  font-size: 0.72rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-line i {
  width: 48px;
  height: 2px;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-line small {
  font-size: 0.66rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-price-panel b {
  font-size: 1.05rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-price-panel span,
.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-price-panel em {
  font-size: 0.68rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-price-panel button {
  min-width: 118px;
  min-height: 32px;
  border-radius: 8px;
  font-size: 0.78rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-price-panel em {
  min-height: 30px;
  padding: 0 10px;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-coupon {
  min-height: 28px;
  margin: 3px 14px 0;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-detail-toggle {
  min-height: 30px;
  margin: 3px 14px 8px 0;
  font-size: 0.72rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-ad-band {
  min-height: 74px;
  margin: 0 0 12px;
  border-radius: 14px;
  padding: 14px 20px;
}

.flow-page[data-flow-page="results"] .mmt-flight-ad-band span {
  font-size: 0.78rem;
}

.flow-page[data-flow-page="results"] .mmt-flight-ad-band strong {
  font-size: 1.05rem;
}

.flow-page[data-flow-page="results"] .flow-footer {
  width: min(1320px, calc(100% - 32px));
  margin-top: 42px;
  border-radius: 16px 16px 0 0;
}

@media (max-width: 1180px) {
  .flow-page[data-flow-page="results"] .flow-topbar .header-main,
  .flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .header-main {
    grid-template-columns: minmax(190px, 280px) minmax(260px, 1fr) auto;
  }

  .flow-page[data-flow-page="results"] .flow-topbar .topnav {
    display: none;
  }

  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .search-button {
    grid-column: auto;
    grid-row: auto;
  }

  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-result-flight-controls {
    grid-row: auto;
  }

  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card) {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .flow-page[data-flow-page="results"] .mmt-results-main {
    padding-top: 138px !important;
  }

  .flow-page[data-flow-page="results"] .flow-travel-menu {
    display: none;
  }

  .flow-page[data-flow-page="results"] .mmt-flow-results,
  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType),
  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card) {
    width: calc(100% - 18px);
  }

  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) {
    position: relative;
    top: auto;
    grid-template-columns: 1fr 1fr;
  }

  .flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType) .mmt-result-flight-controls,
  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card),
  .flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-row {
    grid-template-columns: 1fr;
  }

  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card) .mmt-filter-panel {
    position: static;
  }
}

/* Compact premium typography pass */
.flow-page {
  font-size: 14.5px;
}

.flow-page :where(input, select, textarea, button) {
  font-size: 0.9rem;
}

.flow-topbar .header-search input,
.mmt-flow-results .mmt-result-search input,
.mmt-flow-results .mmt-result-search select,
.mmt-flight-checkout-panel input,
.mmt-flight-checkout-panel select,
.mmt-flight-checkout-panel textarea,
.mmt-hotel-guest-details-card input,
.mmt-hotel-guest-details-card select,
.mmt-hotel-detail-search-strip input,
.mmt-hotel-detail-search-strip select {
  font-size: 0.88rem !important;
}

.mmt-flow-results .mmt-result-search label,
.mmt-result-flight-controls label,
.mmt-flight-checkout-panel label,
.mmt-hotel-guest-details-card label,
.mmt-hotel-detail-search-strip span,
.mmt-filter-panel label,
.mmt-hotel-filter-card label {
  font-size: 0.68rem !important;
  line-height: 1.15;
}

.flow-topbar .topnav a,
.flow-topbar .account-actions a,
.flow-travel-menu a,
.mmt-detail-tabs a,
.mmt-hotel-detail-tabs a,
.mmt-flight-checkout-tabs span {
  font-size: 0.78rem !important;
  line-height: 1.15;
}

.mmt-flow-results .mmt-result-search {
  gap: 10px !important;
}

.mmt-flow-results .mmt-result-search input,
.mmt-flow-results .mmt-result-search select {
  min-height: 44px !important;
}

.mmt-flow-results .mmt-result-search .search-button,
.mmt-hotel-price-panel button,
.mmt-flight-price-panel button,
.mmt-flight-checkout-panel .search-button,
.mmt-hotel-guest-details-card .search-button,
.mmt-hotel-rate-price button {
  font-size: 0.84rem !important;
}

.mmt-result-card strong,
.mmt-hotel-title-row strong,
.mmt-hotel-booking-head h2,
.mmt-flight-checkout-top h3,
.mmt-detail-content h2,
.mmt-hotel-detail-copy h2,
.mmt-hotel-room-body strong,
.mmt-hotel-rate-copy strong,
.mmt-hotel-review-title h1 {
  font-size: clamp(1.05rem, 1.45vw, 1.35rem) !important;
}

.mmt-result-card p,
.mmt-result-card small,
.mmt-hotel-benefit,
.mmt-hotel-badges span,
.mmt-hotel-amenities span,
.mmt-flight-listing-card .mmt-flight-coupon,
.mmt-flight-listing-card .mmt-flight-detail-toggle,
.mmt-flight-checkout-panel p,
.mmt-hotel-booking-head p,
.mmt-hotel-room-summary p,
.mmt-hotel-important-info li,
.mmt-hotel-review-list p,
.flow-footer a,
.flow-footer p,
.flow-footer span {
  font-size: 0.78rem !important;
}

.mmt-hotel-price-stack b,
.mmt-hotel-price-panel b,
.mmt-flight-price-panel b,
.mmt-flight-route-v2 b,
.mmt-stay-price-grid strong,
.mmt-detail-single-rate strong,
.mmt-hotel-rate-price strong {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem) !important;
}

.mmt-hotel-review-box strong,
.mmt-hotel-list-score b,
.mmt-flight-line small,
.mmt-hotel-price-stack span,
.mmt-hotel-price-panel small,
.mmt-hotel-rate-price span,
.mmt-hotel-rate-price small,
.mmt-detail-facts span,
.mmt-detail-facts small {
  font-size: 0.72rem !important;
}

.mmt-hotel-listing-card,
.mmt-flight-listing-card,
.mmt-flight-checkout-panel,
.mmt-hotel-booking-card,
.mmt-hotel-guest-details-card,
.mmt-hotel-state-card,
.mmt-hotel-trip-secure,
.mmt-hotel-review-sidebar section,
.mmt-hotel-overview-card,
.mmt-hotel-rooms-section,
.mmt-hotel-location-section,
.mmt-hotel-rules-panel,
.mmt-hotel-reviews-panel,
.mmt-hotel-similar-panel {
  font-size: 0.92rem;
}

/* Extra compact result-card pass for premium readability */
.flow-page[data-flow-page="results"] {
  font-size: 14px !important;
}

.flow-page[data-flow-page="results"] .mmt-result-search label,
.flow-page[data-flow-page="results"] .mmt-result-flight-controls label,
.flow-page[data-flow-page="results"] .mmt-filter-panel h3,
.flow-page[data-flow-page="results"] .mmt-filter-panel h4 {
  font-size: 0.66rem !important;
  letter-spacing: 0 !important;
}

.flow-page[data-flow-page="results"] .mmt-result-search input,
.flow-page[data-flow-page="results"] .mmt-result-search select,
.flow-page[data-flow-page="results"] .mmt-result-flight-controls input,
.flow-page[data-flow-page="results"] .mmt-result-flight-controls select {
  min-height: 40px !important;
  font-size: 0.82rem !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card,
.flow-page[data-flow-page="results"] .mmt-premium-service-card {
  font-size: 0.86rem !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card strong,
.flow-page[data-flow-page="results"] .mmt-hotel-title-row strong,
.flow-page[data-flow-page="results"] .mmt-service-result h3 {
  font-size: clamp(0.98rem, 1.24vw, 1.22rem) !important;
  line-height: 1.16 !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-route-v2 b,
.flow-page[data-flow-page="results"] .mmt-flight-price-panel b,
.flow-page[data-flow-page="results"] .mmt-hotel-price-stack b,
.flow-page[data-flow-page="results"] .mmt-hotel-price-panel b {
  font-size: clamp(1rem, 1.35vw, 1.28rem) !important;
  line-height: 1.12 !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card p,
.flow-page[data-flow-page="results"] .mmt-flight-listing-card small,
.flow-page[data-flow-page="results"] .mmt-flight-listing-card span,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card p,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card small,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card span,
.flow-page[data-flow-page="results"] .mmt-premium-service-card p,
.flow-page[data-flow-page="results"] .mmt-premium-service-card small,
.flow-page[data-flow-page="results"] .mmt-premium-service-card span,
.flow-page[data-flow-page="results"] .mmt-filter-panel label {
  font-size: 0.72rem !important;
  line-height: 1.24 !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-price-panel button,
.flow-page[data-flow-page="results"] .mmt-hotel-price-panel button,
.flow-page[data-flow-page="results"] .mmt-service-price-panel button,
.flow-page[data-flow-page="results"] .mmt-result-search .search-button {
  min-height: 40px !important;
  font-size: 0.8rem !important;
}

/* Final QA polish: wider, readable, blue-gold-white layout */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.flow-page {
  color: #102a52;
}

.flow-page .flow-topbar {
  width: min(1840px, calc(100% - 12px)) !important;
}

.flow-page .flow-topbar .header-main {
  width: 100%;
  grid-template-columns: minmax(220px, 360px) minmax(280px, 1fr) auto auto !important;
  gap: 10px !important;
}

.flow-page .flow-topbar .brand-logo-image {
  max-width: 290px !important;
}

.flow-page .flow-travel-menu {
  width: min(1760px, calc(100% - 28px)) !important;
  max-width: none !important;
  margin-inline: auto !important;
  overflow-x: auto;
  scrollbar-width: thin;
}

@media (min-width: 1280px) {
  .flow-page .flow-travel-menu {
    grid-template-columns: repeat(12, minmax(78px, 1fr)) !important;
    overflow: hidden;
  }

  .flow-page .flow-travel-menu a {
    min-width: 0;
    padding-inline: 4px !important;
    font-size: 0.72rem !important;
    line-height: 1.12 !important;
  }
}

.flow-page[data-flow-page="results"] .flow-topbar {
  width: min(1840px, calc(100% - 12px)) !important;
}

.flow-page[data-flow-page="results"] .flow-travel-menu {
  width: min(1760px, calc(100% - 36px)) !important;
}

.flow-page[data-flow-page="results"] .mmt-flow-results,
.flow-page[data-flow-page="results"] .mmt-flow-results .mmt-result-search:has(#resultTripType),
.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card),
.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card) {
  max-width: 1760px !important;
}

.flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card) {
  grid-template-columns: 260px minmax(0, 1fr) !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card.mmt-flight-v2,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2,
.flow-page[data-flow-page="results"] .mmt-premium-service-card {
  color: #102a52 !important;
  background: #ffffff !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-row {
  grid-template-columns: minmax(170px, 0.9fr) minmax(320px, 1.7fr) minmax(160px, 0.8fr) !important;
  align-items: center;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-price-panel {
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 {
  grid-template-columns: minmax(260px, 360px) minmax(360px, 1fr) minmax(210px, 290px) !important;
  min-height: 260px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card .mmt-hotel-photo {
  min-height: 228px !important;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card .mmt-hotel-price-panel {
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
}

.flow-page[data-flow-page="results"] .flow-footer {
  width: min(1760px, calc(100% - 36px)) !important;
  margin-inline: auto !important;
  overflow: hidden;
}

.flow-page[data-flow-page="results"] .flow-footer-links a,
.flow-page[data-flow-page="results"] .flow-footer p,
.flow-page[data-flow-page="results"] .flow-footer span {
  font-size: 0.82rem !important;
  line-height: 1.35 !important;
}

@media (max-width: 1100px) {
  .flow-page .flow-topbar .header-main {
    grid-template-columns: 1fr !important;
  }

  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-flight-listing-card),
  .flow-page[data-flow-page="results"] .mmt-results-layout:has(.mmt-hotel-listing-card),
  .flow-page[data-flow-page="results"] .mmt-flight-listing-card .mmt-flight-row,
  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card.mmt-stay-v2 {
    grid-template-columns: 1fr !important;
  }
}

/* Final results-page luxury guard: keep header/search/content inside viewport */
.flow-page[data-flow-page="results"] {
  overflow-x: hidden !important;
}

.flow-page[data-flow-page="results"] .mmt-flow-results,
.flow-page[data-flow-page="results"] .flow-footer {
  width: min(1700px, calc(100% - 48px)) !important;
  max-width: 100% !important;
  margin-inline: auto !important;
}

.flow-page[data-flow-page="results"] .mmt-result-search {
  width: 100% !important;
  max-width: 100% !important;
  grid-template-columns:
    minmax(260px, 1.7fr)
    minmax(142px, 0.9fr)
    minmax(142px, 0.9fr)
    minmax(210px, 1.2fr)
    minmax(164px, 0.7fr) !important;
  gap: 10px !important;
  padding: 12px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

.flow-page[data-flow-page="results"] .mmt-result-search label {
  min-width: 0 !important;
  min-height: 62px !important;
  padding: 10px 12px !important;
  border: 1px solid #dfe8f3 !important;
  border-radius: 10px !important;
  background: #fbfdff !important;
}

.flow-page[data-flow-page="results"] .mmt-result-search input,
.flow-page[data-flow-page="results"] .mmt-result-search select {
  min-width: 0 !important;
  width: 100% !important;
}

.flow-page[data-flow-page="results"] .mmt-result-search .search-button {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 62px !important;
  margin: 0 !important;
  border-radius: 12px !important;
}

.flow-page[data-flow-page="results"] .mmt-results-layout {
  width: 100% !important;
  max-width: 100% !important;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr) !important;
}

.flow-page[data-flow-page="results"] .mmt-results-column,
.flow-page[data-flow-page="results"] .mmt-result-card,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card {
  min-width: 0 !important;
  max-width: 100% !important;
}

@media (max-width: 1180px) {
  .flow-page[data-flow-page="results"] .mmt-result-search {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .flow-page[data-flow-page="results"] .mmt-result-search .search-button {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 860px) {
  .flow-page[data-flow-page="results"] .mmt-flow-results,
  .flow-page[data-flow-page="results"] .flow-footer {
    width: calc(100% - 18px) !important;
  }

  .flow-page[data-flow-page="results"] .mmt-result-search,
  .flow-page[data-flow-page="results"] .mmt-results-layout {
    grid-template-columns: 1fr !important;
  }
}

.thg-calendar-popover {
  position: absolute;
  z-index: 9999;
  display: none;
  max-width: calc(100vw - 28px);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 103, 216, .18);
  border-radius: 12px;
  box-shadow: 0 26px 70px rgba(24, 53, 94, .24);
  color: #0b2347;
}

.thg-calendar-popover.active {
  display: block;
}

.thg-calendar-top {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid #e5edf7;
}

.thg-calendar-selection {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.thg-calendar-selection button,
.thg-calendar-nav,
.thg-calendar-footer button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.thg-calendar-selection button {
  display: grid;
  gap: 1px;
  min-width: 145px;
  padding: 7px 14px;
  background: #f6f9fd;
  border-bottom: 3px solid transparent;
  border-radius: 8px 8px 4px 4px;
  color: #465a75;
  text-align: left;
}

.thg-calendar-selection button.active {
  background: #edf6ff;
  border-bottom-color: #1267d8;
  color: #0b4fae;
}

.thg-calendar-selection span {
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.thg-calendar-selection strong {
  font-size: 1.18rem;
  line-height: 1.1;
}

.thg-calendar-nav {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #eef6ff;
  color: #1267d8;
  font-size: 1.4rem;
  font-weight: 900;
}

.thg-calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 22px 24px 12px;
}

.thg-calendar-month h3 {
  margin: 0 0 16px;
  color: #10233d;
  font-size: 1.22rem;
  font-weight: 800;
  text-align: center;
}

.thg-calendar-weekdays,
.thg-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(30px, 1fr));
  align-items: center;
  text-align: center;
}

.thg-calendar-weekdays {
  margin-bottom: 8px;
  color: #80909d;
  font-size: .82rem;
  font-weight: 800;
}

.thg-calendar-grid {
  row-gap: 6px;
}

.thg-calendar-empty {
  min-height: 42px;
}

.thg-calendar-day {
  min-height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #121826;
  cursor: pointer;
  font: inherit;
  font-size: .98rem;
}

.thg-calendar-day span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.thg-calendar-day:hover span {
  background: #edf6ff;
  color: #0b62d8;
}

.thg-calendar-day.is-range {
  background: #e8f4ff;
}

.thg-calendar-day.is-start span,
.thg-calendar-day.is-end span {
  background: #1285f4;
  color: #fff;
  font-weight: 900;
}

.thg-calendar-day.is-disabled {
  color: #c5cdd8;
  cursor: not-allowed;
}

.thg-calendar-day.is-disabled span {
  background: transparent;
}

.thg-calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px 16px;
  border-top: 1px solid #e5edf7;
  color: #607089;
  font-size: .86rem;
  font-weight: 700;
}

.thg-calendar-footer button {
  min-width: 108px;
  min-height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4bb5ff, #1267d8);
  color: #fff;
  font-weight: 900;
}

.mmt-result-search label.is-muted {
  opacity: .58;
}

.mmt-result-search label.is-muted input {
  cursor: not-allowed;
}

@media (max-width: 760px) {
  .thg-calendar-top {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    padding: 10px;
  }

  .thg-calendar-selection {
    gap: 6px;
  }

  .thg-calendar-selection button {
    min-width: 0;
    padding: 7px 9px;
  }

  .thg-calendar-selection strong {
    font-size: .96rem;
  }

  .thg-calendar-months {
    grid-template-columns: 1fr;
    gap: 14px;
    max-height: 62vh;
    overflow: auto;
    padding: 16px 14px 10px;
  }

  .thg-calendar-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Compact hotel results rail, matching the booking-site listing style */
.flow-page[data-flow-page="results"] .mmt-results-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  width: min(100%, 1830px);
  margin: 0 auto;
}

.flow-page[data-flow-page="results"] .mmt-filter-panel {
  top: 178px;
  max-height: calc(100vh - 190px);
  overflow: auto;
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: none;
}

.flow-page[data-flow-page="results"] .mmt-filter-head,
.flow-page[data-flow-page="results"] .mmt-filter-card {
  margin: 0;
  border: 0;
  border-bottom: 1px solid #e8edf5;
  border-radius: 0;
  padding: 14px 16px;
  box-shadow: none;
}

.flow-page[data-flow-page="results"] .mmt-filter-head {
  display: grid;
  gap: 10px;
}

.flow-page[data-flow-page="results"] .mmt-filter-head strong {
  color: #082a57;
  font-size: 1.18rem;
  line-height: 1.1;
}

.flow-page[data-flow-page="results"] .mmt-filter-head button,
.flow-page[data-flow-page="results"] .mmt-filter-more,
.flow-page[data-flow-page="results"] .mmt-hotel-map-card a {
  min-height: 36px;
  border: 1px solid #cbdff6;
  border-radius: 6px;
  color: #0867d8;
  background: #f4f9ff;
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.flow-page[data-flow-page="results"] .mmt-filter-group > span {
  display: block;
  margin-bottom: 10px;
  color: #0b2a55;
  font-size: .96rem;
  font-weight: 950;
  text-transform: none;
}

.flow-page[data-flow-page="results"] .mmt-filter-card label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 2px 10px;
  align-items: center;
  min-height: 34px;
  padding: 5px 0;
  color: #263d5c;
  font-size: .84rem;
}

.flow-page[data-flow-page="results"] .mmt-filter-card label > input[type="checkbox"] {
  grid-row: span 2;
  width: 18px;
  height: 18px;
}

.flow-page[data-flow-page="results"] .mmt-filter-card label b {
  overflow: hidden;
  color: #263d5c;
  font-size: .86rem;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-page[data-flow-page="results"] .mmt-filter-card label small {
  grid-column: 3;
  color: #8795a8;
  font-size: .72rem;
  font-weight: 720;
}

.flow-page[data-flow-page="results"] .mmt-hotel-search-card label,
.flow-page[data-flow-page="results"] .mmt-filter-card label:has(select),
.flow-page[data-flow-page="results"] .mmt-filter-card label:has(input[type="number"]) {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 7px;
  font-size: .75rem;
  text-transform: none;
}

.flow-page[data-flow-page="results"] .mmt-hotel-search-card input,
.flow-page[data-flow-page="results"] .mmt-filter-panel input[type="number"],
.flow-page[data-flow-page="results"] .mmt-filter-panel select {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d8e4f1;
  border-radius: 6px;
  padding: 0 11px;
  color: #102746;
  background: #fff;
  font-size: .82rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-filter-card > select {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-filter-card:has(#resultSort) {
  display: none;
}

.mmt-filter-map-thumb {
  display: grid;
  min-height: 92px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 133, 244, .18), rgba(204, 156, 62, .22)),
    repeating-linear-gradient(45deg, #eaf4ff 0 12px, #f7fbff 12px 24px);
}

.mmt-filter-map-thumb span {
  border-radius: 999px;
  padding: 8px 18px;
  color: #075ec5;
  background: #fff;
  font-size: .78rem;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(12, 68, 132, .12);
}

.flow-page[data-flow-page="results"] .mmt-results-column {
  min-width: 0;
}

.flow-page[data-flow-page="results"] .mmt-stay-result-toolbar {
  display: grid;
  gap: 12px;
  margin: 0 0 14px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.flow-page[data-flow-page="results"] .mmt-stay-result-toolbar > div:first-child {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-stay-result-toolbar p,
.flow-page[data-flow-page="results"] .mmt-stay-result-toolbar .mmt-quick-filters {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-result-sort-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #e4ebf4;
  border-radius: 0;
  background: #fff;
}

.flow-page[data-flow-page="results"] .mmt-result-sort-tabs button {
  display: grid;
  min-height: 46px;
  border: 0;
  border-right: 1px solid #e4ebf4;
  border-radius: 0;
  padding: 7px 10px;
  color: #40506a;
  background: #fff;
  text-align: center;
  box-shadow: none;
}

.flow-page[data-flow-page="results"] .mmt-result-sort-tabs button:last-child {
  border-right: 0;
}

.flow-page[data-flow-page="results"] .mmt-result-sort-tabs button::before,
.flow-page[data-flow-page="results"] .mmt-result-sort-tabs button small {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-result-sort-tabs button span,
.flow-page[data-flow-page="results"] .mmt-result-sort-tabs button strong {
  grid-column: 1;
  color: inherit;
  font-size: .82rem;
  line-height: 1.12;
  text-transform: none;
}

.flow-page[data-flow-page="results"] .mmt-result-sort-tabs button.active {
  color: #075ec5;
  background: #eef7ff;
  box-shadow: inset 0 -3px 0 #0f74e8;
}

.flow-page[data-flow-page="results"] .mmt-listing-summary {
  margin-bottom: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.flow-page[data-flow-page="results"] .mmt-stay-listing-summary .mmt-result-dashboard-head {
  min-height: auto;
  padding: 4px 0 14px;
}

.flow-page[data-flow-page="results"] .mmt-stay-listing-summary .mmt-result-dashboard-head span,
.flow-page[data-flow-page="results"] .mmt-stay-listing-summary .mmt-result-dashboard-head p {
  display: none;
}

.flow-page[data-flow-page="results"] .mmt-stay-listing-summary .mmt-result-dashboard-head strong {
  color: #082a57;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card {
  grid-template-columns: 260px minmax(0, 1fr) 210px;
  min-height: 234px;
  margin-bottom: 14px;
  border-color: #dfe7f1;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card .mmt-hotel-photo {
  min-height: 196px;
  margin: 18px 0 18px 18px;
  border-radius: 5px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card .mmt-hotel-photo img {
  min-height: 196px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card .mmt-result-main {
  gap: 7px;
  padding: 18px 20px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card .mmt-hotel-title-row strong {
  font-size: 1.18rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-listing-card .mmt-result-location,
.flow-page[data-flow-page="results"] .mmt-hotel-benefit {
  font-size: .84rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-benefits {
  gap: 5px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-benefit {
  min-height: 19px;
  padding-left: 24px;
  font-weight: 760;
}

.flow-page[data-flow-page="results"] .mmt-hotel-benefit::before {
  width: 18px;
  height: 18px;
  font-size: .62rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-price-panel {
  gap: 8px;
  padding: 18px 16px;
}

.flow-page[data-flow-page="results"] .mmt-hotel-review-box strong {
  font-size: .92rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-review-box span {
  min-height: 26px;
  border-radius: 6px;
  font-size: .82rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-review-box small,
.flow-page[data-flow-page="results"] .mmt-hotel-price-panel > span,
.flow-page[data-flow-page="results"] .mmt-hotel-price-panel > small,
.flow-page[data-flow-page="results"] .mmt-hotel-price-panel em {
  font-size: .76rem;
}

.flow-page[data-flow-page="results"] .mmt-hotel-price-panel b {
  font-size: 1.46rem;
}

@media (max-width: 980px) {
  .flow-page[data-flow-page="results"] .mmt-results-layout {
    grid-template-columns: 1fr;
  }

  .flow-page[data-flow-page="results"] .mmt-filter-panel {
    position: relative;
    top: auto;
    max-height: none;
  }

  .flow-page[data-flow-page="results"] .mmt-result-sort-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card {
    grid-template-columns: 1fr;
  }

  .flow-page[data-flow-page="results"] .mmt-hotel-listing-card .mmt-hotel-photo {
    margin: 14px;
  }

  .flow-page[data-flow-page="results"] .mmt-hotel-price-panel {
    align-items: start;
    justify-items: start;
    border-left: 0;
    border-top: 1px solid #e4ebf4;
    text-align: left;
  }
}

@media (max-width: 1180px) {
  .mmt-hotel-profile-grid {
    grid-template-columns: 1fr;
  }

  .mmt-hotel-profile-book-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .mmt-hotel-profile-section {
    width: min(100% - 20px, 1760px);
    padding: 16px;
  }

  .mmt-hotel-profile-head {
    display: grid;
  }

  .mmt-hotel-profile-media {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mmt-hotel-profile-main-photo {
    min-height: 260px;
  }

  .mmt-hotel-profile-side-photos {
    grid-template-columns: 1fr 1fr;
  }

  .mmt-hotel-profile-side-photos button {
    min-height: 150px;
  }

  .mmt-hotel-profile-book-card {
    padding: 18px;
  }

  .mmt-hotel-profile-price strong {
    font-size: 2rem;
  }
}

/* Hotel review page: simple booking layout */
.mmt-hotel-guest-checkout-page {
  background: #f3f5f8;
}

.mmt-hotel-guest-checkout-page .flow-main {
  padding-top: 126px !important;
  background: #f3f5f8;
}

.mmt-hotel-guest-checkout-page .mmt-traveller-section {
  width: min(1400px, calc(100vw - 52px)) !important;
  margin: 0 auto 46px !important;
}

.mmt-hotel-guest-checkout-page .mmt-traveller-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px !important;
  gap: 24px !important;
  align-items: start;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-guest-form {
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 14px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-review-title {
  display: block;
  padding: 0 0 16px !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-review-title h1 {
  color: #071f46;
  font-size: 28px !important;
  line-height: 1.1;
  font-weight: 800;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-review-title p {
  margin-top: 6px;
  color: #5f6f86;
  font-size: 14px !important;
  font-weight: 600;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-booking-card,
.mmt-hotel-guest-checkout-page .mmt-hotel-guest-details-card,
.mmt-hotel-guest-checkout-page .mmt-hotel-login-strip,
.mmt-hotel-guest-checkout-page .mmt-hotel-simple-card,
.mmt-hotel-guest-checkout-page .mmt-hotel-state-card,
.mmt-hotel-guest-checkout-page .mmt-hotel-special-request-card,
.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure,
.mmt-hotel-guest-checkout-page .mmt-hotel-payment-options,
.mmt-hotel-guest-checkout-page .mmt-hotel-review-sidebar section {
  border: 1px solid #dfe4ec !important;
  border-radius: 5px !important;
  background: #ffffff !important;
  box-shadow: 0 3px 14px rgba(7, 31, 70, 0.08) !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-booking-card {
  margin: 0 0 22px !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-booking-head {
  grid-template-columns: minmax(0, 1fr) 126px !important;
  gap: 18px;
  padding: 22px 24px !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-booking-head h2 {
  margin-bottom: 10px;
  color: #071f46;
  font-size: 26px !important;
  line-height: 1.12;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-booking-head small,
.mmt-hotel-guest-checkout-page .mmt-hotel-booking-head address {
  color: #7a8595;
  font-size: 14px !important;
  line-height: 1.45;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-booking-head img {
  width: 126px !important;
  height: 96px !important;
  border-radius: 3px !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-booking-dates {
  grid-template-columns: 1.05fr 1.05fr 1.4fr 1.05fr !important;
  background: linear-gradient(105deg, #ffffff 0%, #ffffff 57%, #e4f4ff 100%) !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-booking-dates article {
  min-height: 92px !important;
  padding: 17px 22px !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-booking-dates span,
.mmt-hotel-guest-checkout-page .mmt-hotel-room-summary span {
  color: #697586;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-booking-dates strong {
  color: #071f46;
  font-size: 22px !important;
  line-height: 1.2;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-room-summary {
  padding: 24px !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-room-summary strong {
  color: #071f46;
  font-size: 22px !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-room-summary p,
.mmt-hotel-guest-checkout-page .mmt-hotel-room-summary li {
  font-size: 15px !important;
  line-height: 1.5;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-room-summary ul {
  gap: 8px;
  color: #08776b;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-guest-details-card,
.mmt-hotel-guest-checkout-page .mmt-hotel-simple-card,
.mmt-hotel-guest-checkout-page .mmt-hotel-state-card,
.mmt-hotel-guest-checkout-page .mmt-hotel-special-request-card,
.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure,
.mmt-hotel-guest-checkout-page .mmt-hotel-payment-options {
  margin: 0 0 22px !important;
  padding: 24px !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-guest-details-card h2,
.mmt-hotel-guest-checkout-page .mmt-hotel-simple-card h2,
.mmt-hotel-guest-checkout-page .mmt-hotel-state-card h2,
.mmt-hotel-guest-checkout-page .mmt-hotel-special-request-card h2,
.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure h2,
.mmt-hotel-guest-checkout-page .mmt-hotel-payment-options h2,
.mmt-hotel-guest-checkout-page .mmt-hotel-state-card h3,
.mmt-hotel-guest-checkout-page .mmt-hotel-special-request-card h3,
.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure h3,
.mmt-hotel-guest-checkout-page .mmt-hotel-payment-options h3 {
  margin: 0 0 18px;
  color: #071f46;
  font-size: 21px !important;
  line-height: 1.2;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-guest-details-card input,
.mmt-hotel-guest-checkout-page .mmt-hotel-guest-details-card select,
.mmt-hotel-guest-checkout-page .mmt-hotel-state-card select,
.mmt-hotel-guest-checkout-page .mmt-hotel-special-request-card textarea {
  min-height: 48px !important;
  border: 1px solid #ccd5e0 !important;
  border-radius: 4px !important;
  color: #102a52;
  font-size: 15px !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-login-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -22px 0 22px !important;
  border-top: 0 !important;
  padding: 18px 24px !important;
  background: #eaf5ff !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-special-request-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-special-request-card p,
.mmt-hotel-guest-checkout-page .mmt-hotel-state-card p,
.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure p {
  color: #4f6078;
  font-size: 14px !important;
  line-height: 1.45;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-special-request-card button,
.mmt-hotel-guest-checkout-page .mmt-hotel-login-strip button,
.mmt-hotel-guest-checkout-page .mmt-hotel-pay-actions button {
  border-radius: 4px !important;
  background: linear-gradient(90deg, #4eb5f3, #0d6dfd) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800;
}

.mmt-hotel-guest-checkout-page #hotelSpecialRequestField[hidden] {
  display: none !important;
}

.mmt-hotel-guest-checkout-page #hotelSpecialRequestField {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.mmt-hotel-guest-checkout-page #stayNotes {
  min-height: 96px !important;
  padding: 14px;
  resize: vertical;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure {
  display: block !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure div {
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure > div:first-child {
  display: flex;
  align-items: center;
  min-height: 72px;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 18px 22px;
  background: linear-gradient(90deg, #e5fff7, #eaf2ff);
  color: #42546d;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-head h3 {
  margin-bottom: 4px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-insurance-logos {
  display: flex;
  gap: 10px;
  color: #b27b16;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-benefits {
  display: grid;
  gap: 9px;
  max-width: 720px;
  margin: 14px 0 18px;
  border-radius: 5px;
  padding: 18px 24px;
  list-style: none;
  background: #eaf5ff;
  color: #071f46;
  font-size: 15px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-benefits article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-benefits b {
  color: #30435d;
  font-size: 14px;
  font-weight: 700;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-benefits button {
  justify-self: end;
  border: 0;
  padding: 0;
  color: #0877ee;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-price {
  margin-bottom: 14px;
  color: #4f6078;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-price strong {
  color: #071f46;
  font-size: 20px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-price span,
.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-price small {
  margin-left: 4px;
  font-size: 14px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-options {
  overflow: hidden !important;
  border: 1px solid #d7dde6 !important;
  border-radius: 5px !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure label,
.mmt-hotel-guest-checkout-page .mmt-hotel-payment-options label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #d7dde6;
  border-radius: 5px;
  padding: 17px 20px;
  color: #071f46;
  font-size: 15px;
  font-weight: 700;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-payment-options label + label,
.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure label + label {
  margin-top: 12px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-options label {
  border: 0;
  border-radius: 0;
  margin: 0 !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-trip-secure-options label + label {
  border-top: 1px solid #d7dde6;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-payment-options p {
  margin: 4px 0 0;
  color: #4f6078;
  font-size: 13px;
  font-weight: 500;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-payment-options strong {
  margin-left: auto;
  color: #071f46;
  font-size: 18px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-pay-actions {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-pay-actions label {
  display: flex;
  align-items: start;
  gap: 10px;
  color: #30435d;
  font-size: 14px;
  line-height: 1.4;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-pay-actions button {
  width: min(360px, 100%);
  min-height: 58px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-review-sidebar {
  position: sticky;
  top: 130px;
  display: grid;
  gap: 22px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-review-sidebar section {
  padding: 24px !important;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-review-sidebar h3 {
  margin: 0 0 18px;
  color: #071f46;
  font-size: 20px !important;
  line-height: 1.15;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-price-breakup-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-price-breakup-card button,
.mmt-hotel-guest-checkout-page .mmt-hotel-coupon-card button {
  color: #0877ee;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-review-sidebar dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-review-sidebar div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #071f46;
  font-size: 15px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-review-sidebar div:last-child {
  border-top: 2px solid #d3d8df;
  padding-top: 14px;
  font-size: 18px;
  font-weight: 800;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-review-sidebar strong {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 2px solid #d3d8df;
  padding-top: 14px;
  color: #071f46;
  font-size: 18px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-coupon-card label {
  display: flex;
  border: 1px solid #d7dde6;
  border-radius: 5px;
  overflow: hidden;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-coupon-card input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 14px 16px;
  font-size: 15px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-coupon-card small {
  display: inline-block;
  margin-top: 12px;
  border-radius: 4px;
  padding: 10px 12px;
  background: #fff1d6;
  color: #6b4b11;
  font-size: 13px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-login-benefits ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #071f46;
  font-size: 14px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-login-benefits li {
  border-bottom: 1px solid #e3e7ed;
  padding-bottom: 11px;
}

.mmt-hotel-guest-checkout-page .mmt-hotel-login-benefits li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 980px) {
  .mmt-hotel-guest-checkout-page .mmt-traveller-layout {
    grid-template-columns: 1fr !important;
  }

  .mmt-hotel-guest-checkout-page .mmt-hotel-review-sidebar {
    position: static;
  }

  .mmt-hotel-guest-checkout-page .mmt-hotel-booking-dates,
  .mmt-hotel-guest-checkout-page .mmt-hotel-guest-name-row,
  .mmt-hotel-guest-checkout-page .mmt-hotel-contact-row {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .mmt-hotel-guest-checkout-page .mmt-traveller-section {
    width: min(100% - 18px, 1400px) !important;
  }

  .mmt-hotel-guest-checkout-page .mmt-hotel-booking-head {
    grid-template-columns: 1fr !important;
  }

  .mmt-hotel-guest-checkout-page .mmt-hotel-booking-head img {
    width: 100% !important;
    height: 180px !important;
  }
}

body.mmt-final-payment-page-body {
  background: #f2f2f2 !important;
  color: #071f46;
  font-size: 15px;
}

body.mmt-final-payment-page-body > .site-header,
body.mmt-final-payment-page-body > .booking-shell,
body.mmt-final-payment-page-body > .hero,
body.mmt-final-payment-page-body > .floating-helpline,
body.mmt-final-payment-page-body > .app-footer,
body.mmt-final-payment-page-body > .flow-topbar,
body.mmt-final-payment-page-body > .flow-main > .mmt-flow-premium-status,
body.mmt-final-payment-page-body > .flow-main > .mmt-flow-hero-pro,
body.mmt-final-payment-page-body > .flow-main > .booking-steps,
body.mmt-final-payment-page-body > .flow-main > .flow-footer,
body.mmt-final-payment-page-body footer {
  display: none !important;
}

body.mmt-final-payment-page-body > .flow-main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mmt-payment-review-page {
  min-height: 100vh;
  margin: 0;
  background: #f2f2f2;
  color: #061f45;
  font-family: inherit;
}

.mmt-payment-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 16px clamp(22px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 16px rgba(12, 42, 82, 0.08);
}

.mmt-payment-logo {
  display: inline-flex;
  align-items: center;
  width: 172px;
  min-height: 50px;
}

.mmt-payment-logo img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.mmt-payment-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #45627f;
  font-size: 14px;
  text-transform: uppercase;
}

.mmt-payment-trust span,
.mmt-payment-trust strong {
  border-radius: 999px;
  border: 1px solid #b8d6eb;
  padding: 7px 12px;
  background: #f6fbff;
}

.mmt-payment-trust strong {
  color: #07856f;
}

.mmt-payment-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  width: min(100% - 64px, 1540px);
  margin: 46px auto;
}

.mmt-payment-main,
.mmt-payment-aside {
  display: grid;
  align-content: start;
  gap: 22px;
}

.mmt-payment-aside {
  position: sticky;
  top: 104px;
}

.mmt-payment-card {
  border: 1px solid #dfe5ec;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(18, 46, 84, 0.08);
}

.mmt-payment-booking-card {
  overflow: hidden;
}

.mmt-payment-booking-head {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e1e5eb;
}

.mmt-payment-booking-head img {
  width: 78px;
  height: 68px;
  border-radius: 5px;
  object-fit: cover;
}

.mmt-payment-booking-head h2 {
  margin: 0 0 7px;
  color: #071f46;
  font-size: 22px;
  line-height: 1.15;
}

.mmt-payment-booking-head p {
  margin: 3px 0;
  color: #526b89;
  font-size: 15px;
  line-height: 1.35;
}

.mmt-payment-green {
  color: #008474 !important;
}

.mmt-payment-booking-head button,
.mmt-payment-gift-card button,
.mmt-payment-qr-card button,
.mmt-payment-login-card button {
  border: 0;
  background: transparent;
  color: #0875ee;
  font-weight: 800;
  cursor: pointer;
}

.mmt-payment-expanded {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid #e7ebf1;
}

.mmt-payment-expanded.is-open {
  display: grid;
}

.mmt-payment-expanded span {
  display: block;
  color: #708098;
  font-size: 12px;
  text-transform: uppercase;
}

.mmt-payment-expanded strong {
  display: block;
  margin-top: 5px;
  color: #071f46;
  font-size: 15px;
}

.mmt-payment-booking-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 24px;
  color: #68788c;
  font-size: 15px;
}

.mmt-payment-login-card,
.mmt-payment-gift-card,
.mmt-payment-trip-secure {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
}

.mmt-payment-login-card h3,
.mmt-payment-gift-card h3,
.mmt-payment-trip-secure h3,
.mmt-payment-options-card h3,
.mmt-payment-total-card h3,
.mmt-payment-qr-card h3,
.mmt-payment-login-benefits h3 {
  margin: 0;
  color: #071f46;
  font-size: 19px;
  line-height: 1.2;
}

.mmt-payment-login-card p,
.mmt-payment-trip-secure p,
.mmt-payment-qr-card p {
  margin: 6px 0 0;
  color: #526b89;
  font-size: 14px;
}

.mmt-payment-trip-secure {
  border-color: #c9e4ff;
  background: linear-gradient(90deg, #ffffff 0%, #f4fbff 100%);
}

.mmt-payment-trip-secure > div span {
  display: inline-flex;
  border-radius: 0 0 8px 8px;
  background: #e6f4ff;
  color: #0875ee;
  padding: 7px 12px;
  font-weight: 800;
}

.mmt-payment-trip-secure button {
  border: 0;
  border-radius: 5px;
  padding: 12px 18px;
  background: linear-gradient(90deg, #4eb3f4, #1267d8);
  color: #fff;
  font-weight: 900;
}

.mmt-payment-gift-card {
  min-height: 76px;
}

.mmt-payment-options-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.mmt-payment-options-card label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid #d8e1ec;
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
  cursor: pointer;
}

.mmt-payment-options-card input {
  width: 20px;
  height: 20px;
}

.mmt-payment-options-card b,
.mmt-payment-options-card strong {
  color: #071f46;
  font-size: 16px;
}

.mmt-payment-options-card small {
  display: block;
  margin-top: 4px;
  color: #506783;
  font-size: 13px;
}

.mmt-payment-options-card label:has(input:checked) {
  border-color: #0875ee;
  background: #f3f9ff;
}

.mmt-payment-review-page .mmt-review-submit {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0 0 46px;
  background: transparent;
  box-shadow: none;
}

.mmt-payment-review-page .mmt-review-submit label {
  color: #536982;
  font-size: 14px;
}

.mmt-payment-review-page .mmt-review-submit .pay-button {
  width: min(100%, 360px);
  min-height: 58px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(90deg, #4eb3f4, #1267d8);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.mmt-payment-total-card {
  padding: 22px;
}

.mmt-payment-total-card h3 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dfe5ec;
  font-size: 26px;
}

.mmt-payment-total-card h3 strong {
  color: #008474;
  font-size: 25px;
}

.mmt-payment-total-card div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 0;
  color: #263b55;
  font-size: 16px;
}

.mmt-payment-qr-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 14px;
  min-height: 196px;
  padding: 22px;
  overflow: hidden;
}

.mmt-payment-qr {
  position: relative;
  width: 126px;
  height: 126px;
  border: 7px solid #071f46;
  background:
    linear-gradient(90deg, #071f46 12px, transparent 12px) 14px 18px / 36px 18px,
    linear-gradient(#071f46 12px, transparent 12px) 18px 14px / 18px 36px,
    repeating-linear-gradient(90deg, #071f46 0 8px, #fff 8px 16px);
  background-color: #fff;
}

.mmt-payment-qr-card button {
  position: absolute;
  right: 24px;
  bottom: 38px;
  border-radius: 5px;
  padding: 11px 22px;
  background: linear-gradient(90deg, #4eb3f4, #1267d8);
  color: #fff;
}

.mmt-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.mmt-payment-icons span {
  border-radius: 999px;
  background: #eef6ff;
  padding: 6px 9px;
  color: #435a75;
  font-size: 12px;
  font-weight: 800;
}

.mmt-payment-login-benefits {
  padding: 22px;
}

.mmt-payment-login-benefits h3 {
  margin-bottom: 14px;
}

.mmt-payment-login-benefits ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #263b55;
  font-size: 14px;
}

.mmt-payment-login-benefits li {
  border-bottom: 1px solid #e3e7ed;
  padding-bottom: 10px;
}

.mmt-payment-hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .mmt-payment-shell {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 900px);
    margin: 26px auto;
  }

  .mmt-payment-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .mmt-payment-topbar {
    min-height: 70px;
    padding: 12px 16px;
  }

  .mmt-payment-logo {
    width: 140px;
  }

  .mmt-payment-trust {
    gap: 8px;
    font-size: 11px;
  }

  .mmt-payment-booking-head,
  .mmt-payment-qr-card {
    grid-template-columns: 1fr;
  }

  .mmt-payment-expanded {
    grid-template-columns: 1fr;
  }

  .mmt-payment-options-card label {
    grid-template-columns: auto 1fr;
  }

  .mmt-payment-options-card strong {
    grid-column: 2;
  }
}

/* Results page compact type pass */
.flow-page[data-flow-page="results"] {
  font-size: 13px !important;
}

.flow-page[data-flow-page="results"] .mmt-result-search,
.flow-page[data-flow-page="results"] .mmt-results-layout,
.flow-page[data-flow-page="results"] .mmt-result-card,
.flow-page[data-flow-page="results"] .mmt-flight-listing-card,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card,
.flow-page[data-flow-page="results"] .mmt-premium-service-card,
.flow-page[data-flow-page="results"] .mmt-filter-panel {
  font-size: 0.82rem !important;
}

.flow-page[data-flow-page="results"] .mmt-result-dashboard-head strong,
.flow-page[data-flow-page="results"] .mmt-stay-listing-summary .mmt-result-dashboard-head strong,
.flow-page[data-flow-page="results"] .mmt-filter-head strong {
  font-size: 1.06rem !important;
  line-height: 1.16 !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card strong,
.flow-page[data-flow-page="results"] .mmt-hotel-title-row strong,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card .mmt-hotel-title-row strong,
.flow-page[data-flow-page="results"] .mmt-service-result h3,
.flow-page[data-flow-page="results"] .mmt-premium-service-card h3 {
  font-size: 0.98rem !important;
  line-height: 1.18 !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-route-v2 b,
.flow-page[data-flow-page="results"] .mmt-flight-price-panel b,
.flow-page[data-flow-page="results"] .mmt-hotel-price-stack b,
.flow-page[data-flow-page="results"] .mmt-hotel-price-panel b,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card .mmt-hotel-price-panel b,
.flow-page[data-flow-page="results"] .mmt-service-price-panel b {
  font-size: 1.12rem !important;
  line-height: 1.12 !important;
}

.flow-page[data-flow-page="results"] .mmt-result-search label,
.flow-page[data-flow-page="results"] .mmt-result-flight-controls label,
.flow-page[data-flow-page="results"] .mmt-filter-card label,
.flow-page[data-flow-page="results"] .mmt-filter-group > span,
.flow-page[data-flow-page="results"] .mmt-result-sort-tabs button span,
.flow-page[data-flow-page="results"] .mmt-result-sort-tabs button strong {
  font-size: 0.76rem !important;
  line-height: 1.2 !important;
}

.flow-page[data-flow-page="results"] .mmt-flight-listing-card p,
.flow-page[data-flow-page="results"] .mmt-flight-listing-card span,
.flow-page[data-flow-page="results"] .mmt-flight-listing-card small,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card p,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card span,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card small,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card .mmt-result-location,
.flow-page[data-flow-page="results"] .mmt-hotel-listing-card .mmt-hotel-benefit,
.flow-page[data-flow-page="results"] .mmt-premium-service-card p,
.flow-page[data-flow-page="results"] .mmt-premium-service-card span,
.flow-page[data-flow-page="results"] .mmt-premium-service-card small,
.flow-page[data-flow-page="results"] .mmt-filter-card label b,
.flow-page[data-flow-page="results"] .mmt-filter-card label small {
  font-size: 0.7rem !important;
  line-height: 1.25 !important;
}

.flow-page[data-flow-page="results"] .mmt-result-search input,
.flow-page[data-flow-page="results"] .mmt-result-search select,
.flow-page[data-flow-page="results"] .mmt-result-flight-controls input,
.flow-page[data-flow-page="results"] .mmt-result-flight-controls select,
.flow-page[data-flow-page="results"] .mmt-filter-panel input,
.flow-page[data-flow-page="results"] .mmt-filter-panel select,
.flow-page[data-flow-page="results"] .mmt-flight-price-panel button,
.flow-page[data-flow-page="results"] .mmt-hotel-price-panel button,
.flow-page[data-flow-page="results"] .mmt-service-price-panel button,
.flow-page[data-flow-page="results"] .mmt-result-search .search-button {
  font-size: 0.78rem !important;
}

/* Shared header and footer upgrade */
.flow-topbar .flow-brand-lockup,
.flow-footer .flow-brand-lockup {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.flow-topbar .flow-brand-lockup span,
.flow-footer .flow-brand-lockup span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.flow-topbar .flow-brand-lockup strong,
.flow-footer .flow-brand-lockup strong {
  color: #082a57;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

.flow-topbar .flow-brand-lockup small,
.flow-footer .flow-brand-lockup small {
  color: #5f7190;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
}

.flow-topbar .header-main {
  grid-template-columns: minmax(230px, 320px) minmax(300px, 1fr) auto auto !important;
}

.flow-topbar .topnav {
  gap: 6px !important;
}

.flow-topbar .topnav a {
  min-height: 36px !important;
  border: 1px solid #d9e6f6 !important;
  border-radius: 8px !important;
  padding: 0 11px !important;
  color: #173a66 !important;
  background: #f7fbff !important;
  font-size: 0.78rem !important;
  font-weight: 880 !important;
}

.flow-topbar .topnav a:hover {
  color: #075ec5 !important;
  border-color: #acd0fb !important;
  background: #ffffff !important;
}

.flow-topbar .flow-whatsapp-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid #bfe8dc;
  border-radius: 9px;
  padding: 0 13px;
  color: #05684d;
  background: #ecfff8;
  font-size: 0.8rem;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.flow-footer {
  background:
    linear-gradient(135deg, #061d3f 0%, #0b3265 54%, #103f7e 100%) !important;
}

.flow-footer-brand-card,
.flow-footer-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.flow-footer .flow-brand-lockup strong,
.flow-footer .flow-brand-lockup small {
  color: #ffffff;
}

.flow-footer-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
}

.flow-footer-metrics span {
  min-height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px;
  color: #c9d7ea;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  line-height: 1.35;
}

.flow-footer-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.1;
}

.flow-footer-contact-card a {
  font-weight: 850;
}

@media (max-width: 1320px) {
  .flow-topbar .header-main {
    grid-template-columns: minmax(200px, 260px) minmax(260px, 1fr) auto !important;
  }

  .flow-topbar .topnav {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .flow-topbar .flow-brand-lockup span,
  .flow-topbar .flow-whatsapp-chip,
  .flow-topbar .helpline-chip {
    display: none !important;
  }

  .flow-topbar .header-main {
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr) auto !important;
  }

  .flow-footer-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .flow-topbar .header-main {
    grid-template-columns: 1fr !important;
  }

  .flow-footer-metrics {
    grid-template-columns: 1fr;
  }
}

/* Header v2: cleaner shared app bar */
.flow-topbar {
  border-bottom: 1px solid rgba(14, 64, 128, 0.12) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 14px 34px rgba(12, 52, 103, 0.12) !important;
  backdrop-filter: blur(18px);
}

.flow-topbar .header-main {
  width: min(1760px, calc(100% - 36px)) !important;
  min-height: 70px !important;
  grid-template-columns: minmax(230px, 310px) minmax(320px, 1fr) auto !important;
  gap: 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 10px 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.flow-topbar .flow-brand-lockup {
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.flow-topbar .brand-logo-image {
  width: 168px !important;
  height: 44px !important;
  object-fit: contain !important;
}

.flow-topbar .flow-brand-lockup strong {
  color: #092a57 !important;
  font-size: 0.88rem !important;
}

.flow-topbar .flow-brand-lockup small {
  color: #6a7d97 !important;
}

.flow-topbar .header-search {
  min-height: 46px !important;
  border: 1px solid #d8e6f7 !important;
  border-radius: 999px !important;
  padding: 0 8px 0 16px !important;
  background: #f6faff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.flow-topbar .header-search input {
  font-size: 0.86rem !important;
}

.flow-topbar .header-search button {
  min-height: 36px !important;
  border-radius: 999px !important;
  padding: 0 15px !important;
  background: linear-gradient(135deg, #0b63ce, #063f95) !important;
  font-size: 0.82rem !important;
}

.flow-topbar .topnav a,
.flow-topbar .flow-whatsapp-chip,
.flow-topbar .helpline-chip,
.flow-topbar .login-button {
  min-height: 42px !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

.flow-topbar .login-button {
  color: #ffffff !important;
  background: linear-gradient(135deg, #102d54, #071f46) !important;
}

.flow-topbar .flow-travel-menu {
  width: min(1760px, calc(100% - 36px)) !important;
  border: 1px solid #e0eaf6 !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 34px rgba(12, 52, 103, 0.1) !important;
}

.flow-topbar .flow-travel-menu a {
  border-radius: 12px !important;
}

.flow-page[data-flow-page="results"] .flow-topbar,
.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar {
  min-height: auto !important;
  background: rgba(255, 255, 255, 0.98) !important;
}

.flow-page[data-flow-page="results"] .flow-topbar .header-main,
.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .header-main {
  min-height: 64px !important;
  padding: 8px 0 !important;
}

@media (max-width: 1320px) {
  .flow-topbar .header-main {
    grid-template-columns: minmax(180px, 240px) minmax(260px, 1fr) auto !important;
  }

  .flow-topbar .flow-whatsapp-chip,
  .flow-topbar .helpline-chip {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .flow-topbar .header-main {
    width: min(100% - 24px, 720px) !important;
    grid-template-columns: minmax(150px, 1fr) auto !important;
  }

  .flow-topbar .header-search,
  .flow-topbar .flow-brand-lockup span {
    display: none !important;
  }

  .flow-topbar .brand-logo-image {
    width: 166px !important;
    height: 40px !important;
  }

  .flow-topbar .flow-travel-menu {
    width: min(100% - 24px, 720px) !important;
    overflow-x: auto !important;
  }
}

/* MMT-style full booking flow refresh for THG */
.flow-page {
  --thg-mmt-blue: #008cff;
  --thg-mmt-blue-dark: #062c68;
  --thg-mmt-navy: #071f45;
  --thg-mmt-ink: #172b4d;
  --thg-mmt-muted: #5f6f87;
  --thg-mmt-border: #d8e1ee;
  --thg-mmt-soft: #f3f6fb;
  background:
    linear-gradient(180deg, #08265b 0, #08265b 238px, #f3f5f8 238px, #f3f5f8 100%) !important;
  color: var(--thg-mmt-ink) !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
}

.flow-page .flow-main {
  width: 100% !important;
  padding: 28px 0 72px !important;
}

.flow-page[data-page="results"] .flow-main,
.flow-page[data-flow-page="results"] .flow-main,
.flow-page .flow-main.mmt-results-main {
  padding-top: 26px !important;
}

.flow-page .topbar,
.flow-page .flow-topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 60 !important;
  min-height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 12px 0 18px !important;
  background:
    linear-gradient(90deg, #071f45 0%, #0b3d82 54%, #08265b 100%) !important;
  box-shadow: none !important;
}

.flow-page .topbar .header-main,
.flow-page .flow-topbar .header-main,
.flow-page[data-flow-page="results"] .flow-topbar .header-main,
.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .header-main {
  display: grid !important;
  grid-template-columns: minmax(230px, 310px) minmax(320px, 1fr) auto auto !important;
  align-items: center !important;
  gap: 12px !important;
  width: min(1240px, calc(100% - 32px)) !important;
  min-height: 62px !important;
  margin: 0 auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.flow-page .brand,
.flow-page .flow-brand-lockup {
  min-width: 0 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.flow-page .brand-logo,
.flow-page .flow-brand-lockup {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: min(300px, 100%) !important;
  min-height: 50px !important;
  border: 0 !important;
  border-radius: 7px !important;
  padding: 5px 10px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16) !important;
}

.flow-page .brand-logo-image,
.flow-page .flow-topbar .brand-logo-image {
  display: block !important;
  width: 162px !important;
  height: 40px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.flow-page .flow-brand-lockup span {
  display: grid !important;
  gap: 1px !important;
}

.flow-page .flow-brand-lockup strong {
  color: #071f45 !important;
  font-size: 0.76rem !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
}

.flow-page .flow-brand-lockup small {
  color: #6b7280 !important;
  font-size: 0.64rem !important;
  font-weight: 850 !important;
}

.flow-page .header-search,
.flow-page .flow-topbar .header-search {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr) auto !important;
  align-items: center !important;
  min-height: 44px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 5px !important;
  padding: 0 6px 0 13px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

.flow-page .header-search svg {
  width: 18px !important;
  height: 18px !important;
  fill: none !important;
  stroke: #cfe6ff !important;
  stroke-width: 2 !important;
}

.flow-page .header-search input {
  min-width: 0 !important;
  color: #ffffff !important;
  font-size: 0.84rem !important;
  font-weight: 800 !important;
}

.flow-page .header-search input::placeholder {
  color: #c8daf3 !important;
}

.flow-page .header-search button,
.flow-page .flow-topbar .header-search button {
  min-height: 34px !important;
  border: 0 !important;
  border-radius: 4px !important;
  padding: 0 14px !important;
  color: #08265b !important;
  background: #ffffff !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
}

.flow-page .topnav,
.flow-page .flow-topbar .topnav,
.flow-page .account-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.flow-page .topnav a,
.flow-page .flow-whatsapp-chip,
.flow-page .helpline-chip,
.flow-page .login-button,
.flow-page .flow-topbar .topnav a,
.flow-page .flow-topbar .flow-whatsapp-chip,
.flow-page .flow-topbar .helpline-chip,
.flow-page .flow-topbar .login-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 5px !important;
  padding: 0 12px !important;
  color: #eef6ff !important;
  background: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.flow-page .helpline-chip {
  display: grid !important;
  align-content: center !important;
  min-width: 132px !important;
  line-height: 1.1 !important;
}

.flow-page .helpline-chip span {
  color: #bdd7fb !important;
  font-size: 0.62rem !important;
  text-transform: uppercase !important;
}

.flow-page .helpline-chip strong {
  color: #ffffff !important;
  font-size: 0.82rem !important;
}

.flow-page .login-button,
.flow-page .flow-topbar .login-button {
  border: 0 !important;
  color: #08265b !important;
  background: #ffffff !important;
}

.flow-page .travel-menu,
.flow-page .flow-travel-menu,
.flow-page .flow-topbar .flow-travel-menu,
.flow-page[data-flow-page="results"] .flow-travel-menu {
  display: flex !important;
  justify-content: center !important;
  gap: 4px !important;
  width: min(1200px, calc(100% - 32px)) !important;
  min-height: 92px !important;
  margin: 12px auto 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 8px 12px 6px !important;
  background: #ffffff !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16) !important;
  overflow-x: auto !important;
}

.flow-page .travel-menu a,
.flow-page .flow-travel-menu a,
.flow-page .flow-topbar .flow-travel-menu a {
  position: relative !important;
  display: grid !important;
  justify-items: center !important;
  align-content: center !important;
  gap: 6px !important;
  width: 90px !important;
  min-width: 90px !important;
  min-height: 76px !important;
  border: 0 !important;
  border-radius: 8px !important;
  padding: 8px 6px !important;
  color: #42526e !important;
  background: transparent !important;
  font-size: 0.72rem !important;
  font-weight: 850 !important;
  line-height: 1.12 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: normal !important;
}

.flow-page .travel-menu a svg,
.flow-page .flow-travel-menu a svg {
  width: 28px !important;
  height: 28px !important;
  fill: none !important;
  stroke: var(--thg-mmt-blue) !important;
  stroke-width: 1.9 !important;
}

.flow-page .travel-menu a.active,
.flow-page .flow-travel-menu a.active,
.flow-page .travel-menu a:hover,
.flow-page .flow-travel-menu a:hover {
  color: var(--thg-mmt-blue) !important;
  background: #eef7ff !important;
}

.flow-page .travel-menu a.active::after,
.flow-page .flow-travel-menu a.active::after {
  content: "" !important;
  position: absolute !important;
  right: 16px !important;
  bottom: 0 !important;
  left: 16px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: var(--thg-mmt-blue) !important;
}

.flow-page .mmt-live-status,
.flow-page .flow-hero,
.flow-page .booking-steps,
.flow-page .flow-section,
.flow-page .mmt-flow-results,
.flow-page .mmt-traveller-section,
.flow-page .mmt-review-section {
  width: min(1200px, calc(100% - 32px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.flow-page .mmt-live-status,
.flow-page .flow-hero,
.flow-page .mmt-flow-hero-pro {
  border: 0 !important;
  border-radius: 10px !important;
  padding: 20px 24px !important;
  color: var(--thg-mmt-ink) !important;
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(16, 31, 54, 0.1) !important;
}

.flow-page .mmt-live-status {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-top: 0 !important;
}

.flow-page .mmt-live-status span,
.flow-page .eyebrow {
  color: var(--thg-mmt-blue) !important;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.flow-page .mmt-live-status strong,
.flow-page .flow-hero h1,
.flow-page .mmt-flow-hero-pro h1 {
  color: #202e4a !important;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem) !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
}

.flow-page .mmt-live-status p,
.flow-page .mmt-flow-hero-copy,
.flow-page .flow-hero p {
  color: var(--thg-mmt-muted) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

.flow-page .mmt-live-status a,
.flow-page .hero-helpline {
  border: 0 !important;
  border-radius: 5px !important;
  color: #ffffff !important;
  background: linear-gradient(93deg, #53b2fe, #065af3) !important;
  box-shadow: 0 8px 18px rgba(6, 90, 243, 0.24) !important;
}

.flow-page .booking-steps {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 12px !important;
  border: 1px solid var(--thg-mmt-border) !important;
  border-radius: 10px !important;
  padding: 6px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(16, 31, 54, 0.08) !important;
}

.flow-page .booking-steps span {
  position: relative !important;
  min-height: 38px !important;
  border: 0 !important;
  border-radius: 7px !important;
  color: #59677d !important;
  background: transparent !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
}

.flow-page .booking-steps span.active {
  color: #ffffff !important;
  background: var(--thg-mmt-blue) !important;
  box-shadow: 0 8px 18px rgba(0, 140, 255, 0.2) !important;
}

.flow-page .mmt-flow-results {
  display: grid !important;
  gap: 16px !important;
  margin-top: 0 !important;
}

.flow-page .mmt-result-intro {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 16px !important;
  align-items: center !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 18px 22px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(16, 31, 54, 0.1) !important;
}

.flow-page .mmt-result-intro h2 {
  margin: 0 !important;
  color: #202e4a !important;
  font-size: 1.18rem !important;
  line-height: 1.22 !important;
}

.flow-page .mmt-result-trust {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.flow-page .mmt-result-trust span,
.flow-page .mmt-quick-filters button,
.flow-page .mmt-result-sort-tabs button {
  border: 1px solid #d9e8f7 !important;
  border-radius: 999px !important;
  color: #0b4f9f !important;
  background: #f4f9ff !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
}

.flow-page .mmt-result-search,
.flow-page .result-search-engine {
  display: grid !important;
  grid-template-columns: minmax(180px, 1.3fr) repeat(3, minmax(145px, 1fr)) auto !important;
  align-items: stretch !important;
  gap: 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(16, 31, 54, 0.14) !important;
  overflow: hidden !important;
}

.flow-page .mmt-result-search label,
.flow-page .result-search-engine label {
  display: grid !important;
  gap: 7px !important;
  min-height: 86px !important;
  border: 0 !important;
  border-right: 1px solid var(--thg-mmt-border) !important;
  border-radius: 0 !important;
  padding: 14px 16px !important;
  color: #4a5568 !important;
  background: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.flow-page .mmt-result-search label:focus-within,
.flow-page .result-search-engine label:focus-within {
  background: #f4faff !important;
  box-shadow: inset 0 3px 0 var(--thg-mmt-blue) !important;
}

.flow-page .mmt-result-search input,
.flow-page .mmt-result-search select,
.flow-page .result-search-engine input,
.flow-page .result-search-engine select {
  min-width: 0 !important;
  min-height: 34px !important;
  border: 0 !important;
  outline: 0 !important;
  color: #071b3a !important;
  background: transparent !important;
  font-size: 1rem !important;
  font-weight: 950 !important;
}

.flow-page .mmt-result-search .search-button,
.flow-page .result-search-engine .search-button,
.flow-page .search-button,
.flow-page .pay-button,
.flow-page .mmt-review-submit,
.flow-page .mmt-review-submit-v2 .pay-button {
  border: 0 !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(93deg, #53b2fe, #065af3) !important;
  box-shadow: 0 12px 24px rgba(6, 90, 243, 0.28) !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
}

.flow-page .mmt-result-search .search-button,
.flow-page .result-search-engine .search-button {
  min-width: 178px !important;
  min-height: 54px !important;
  margin: 16px !important;
  align-self: center !important;
}

.flow-page .mmt-result-flight-controls {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 0 !important;
  border-top: 1px solid var(--thg-mmt-border) !important;
  padding: 0 !important;
  background: #ffffff !important;
}

.flow-page .mmt-result-flight-controls label {
  min-height: 76px !important;
  border-right: 1px solid var(--thg-mmt-border) !important;
  background: #ffffff !important;
}

.flow-page .mmt-results-layout {
  display: grid !important;
  grid-template-columns: 292px minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: start !important;
}

.flow-page .mmt-results-column,
.flow-page .live-results {
  display: grid !important;
  gap: 14px !important;
  min-width: 0 !important;
}

.flow-page .custom-result-note {
  border: 1px solid #dbe7f5 !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
  color: #42526e !important;
  background: #ffffff !important;
  box-shadow: 0 6px 18px rgba(16, 31, 54, 0.06) !important;
  font-weight: 850 !important;
}

.flow-page .mmt-filter-panel {
  position: sticky !important;
  top: 176px !important;
  display: grid !important;
  gap: 12px !important;
  max-height: calc(100vh - 196px) !important;
  overflow: auto !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 14px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 28px rgba(16, 31, 54, 0.13) !important;
}

.flow-page .mmt-filter-head,
.flow-page .mmt-filter-card,
.flow-page .mmt-filter-help {
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.flow-page .mmt-filter-head {
  padding: 12px !important;
}

.flow-page .mmt-filter-head strong,
.flow-page .mmt-filter-card > span,
.flow-page .mmt-filter-group > span {
  color: #202e4a !important;
  font-size: 0.86rem !important;
  font-weight: 950 !important;
}

.flow-page .mmt-filter-head button,
.flow-page .mmt-filter-more {
  border: 1px solid #d9e8f7 !important;
  border-radius: 999px !important;
  color: var(--thg-mmt-blue) !important;
  background: #f4f9ff !important;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
}

.flow-page .mmt-filter-card {
  display: grid !important;
  gap: 9px !important;
  padding: 12px !important;
}

.flow-page .mmt-filter-card label,
.flow-page .mmt-filter-panel label {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  min-height: 34px !important;
  border-radius: 6px !important;
  color: #2f3a4f !important;
  background: transparent !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  text-transform: none !important;
}

.flow-page .mmt-filter-card label:hover,
.flow-page .mmt-filter-card label:has(input:checked) {
  background: #f4f9ff !important;
}

.flow-page .mmt-filter-card input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  accent-color: var(--thg-mmt-blue) !important;
}

.flow-page .mmt-filter-panel input,
.flow-page .mmt-filter-panel select {
  border: 1px solid #d8e1ee !important;
  border-radius: 6px !important;
  color: #172b4d !important;
  background: #ffffff !important;
}

.flow-page .mmt-result-card,
.flow-page .live-result-card,
.flow-page .mmt-flight-listing-card,
.flow-page .mmt-hotel-listing-card,
.flow-page .mmt-premium-service-card {
  border: 1px solid #dde5ef !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 6px 18px rgba(16, 31, 54, 0.08) !important;
  overflow: hidden !important;
}

.flow-page .mmt-result-card:hover,
.flow-page .mmt-flight-listing-card:hover,
.flow-page .mmt-hotel-listing-card:hover,
.flow-page .mmt-premium-service-card:hover {
  border-color: #b6d8fb !important;
  box-shadow: 0 12px 28px rgba(16, 31, 54, 0.12) !important;
  transform: none !important;
}

.flow-page .mmt-hotel-listing-card {
  display: grid !important;
  grid-template-columns: 238px minmax(0, 1fr) 246px !important;
  gap: 0 !important;
}

.flow-page .mmt-result-photo,
.flow-page .mmt-hotel-photo,
.flow-page .mmt-service-visual {
  min-height: 100% !important;
  border-radius: 0 !important;
  background: #eaf1f8 !important;
}

.flow-page .mmt-result-photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: 210px !important;
  object-fit: cover !important;
}

.flow-page .mmt-result-main,
.flow-page .mmt-service-main {
  padding: 16px 18px !important;
  color: #202e4a !important;
}

.flow-page .mmt-result-kicker span,
.flow-page .mmt-result-kicker small {
  border-radius: 999px !important;
  color: #0b4f9f !important;
  background: #eef7ff !important;
  font-size: 0.7rem !important;
  font-weight: 950 !important;
}

.flow-page .mmt-hotel-title-row strong,
.flow-page .mmt-service-main > strong,
.flow-page .mmt-flight-airline strong {
  color: #202e4a !important;
  font-size: 1.05rem !important;
  line-height: 1.22 !important;
}

.flow-page .mmt-result-location,
.flow-page .mmt-hotel-blurb,
.flow-page .mmt-result-details,
.flow-page .mmt-card-flow-note,
.flow-page .mmt-result-assurance {
  color: #5f6f87 !important;
  font-size: 0.78rem !important;
  line-height: 1.35 !important;
}

.flow-page .mmt-hotel-benefits,
.flow-page .mmt-hotel-amenities,
.flow-page .mmt-result-tags,
.flow-page .mmt-service-facts {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
}

.flow-page .mmt-hotel-benefit,
.flow-page .mmt-hotel-amenities span,
.flow-page .mmt-result-tags span,
.flow-page .mmt-service-facts span,
.flow-page .mmt-result-assurance span {
  border-radius: 5px !important;
  color: #24604f !important;
  background: #eefaf5 !important;
  font-size: 0.72rem !important;
  font-weight: 850 !important;
}

.flow-page .mmt-result-price,
.flow-page .mmt-hotel-price-panel,
.flow-page .mmt-service-price-panel,
.flow-page .mmt-flight-price-panel {
  display: grid !important;
  align-content: center !important;
  gap: 8px !important;
  border-left: 1px solid #e2e8f0 !important;
  padding: 16px !important;
  color: #202e4a !important;
  background: #fbfcff !important;
  text-align: right !important;
}

.flow-page .mmt-result-price b,
.flow-page .mmt-hotel-price-stack b,
.flow-page .mmt-flight-price-panel b,
.flow-page .mmt-service-price-panel b {
  color: #202e4a !important;
  font-size: 1.35rem !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
}

.flow-page .mmt-result-price button,
.flow-page .mmt-hotel-price-panel button,
.flow-page .mmt-flight-price-panel button,
.flow-page .mmt-service-price-panel button,
.flow-page .live-result-card button[data-id] {
  min-height: 42px !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 0 16px !important;
  color: #ffffff !important;
  background: linear-gradient(93deg, #ff8f3f, #f05a24) !important;
  box-shadow: 0 8px 18px rgba(240, 90, 36, 0.2) !important;
  font-size: 0.82rem !important;
  font-weight: 950 !important;
}

.flow-page .mmt-flight-listing-card {
  display: grid !important;
  gap: 0 !important;
}

.flow-page .mmt-flight-promo {
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 9px 14px !important;
  color: #07538a !important;
  background: #eef7ff !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
}

.flow-page .mmt-flight-row {
  display: grid !important;
  grid-template-columns: 230px minmax(0, 1fr) 190px !important;
  align-items: stretch !important;
  gap: 0 !important;
}

.flow-page .mmt-flight-airline,
.flow-page .mmt-flight-route,
.flow-page .mmt-flight-price-panel {
  padding: 16px !important;
}

.flow-page .mmt-flight-airline i {
  border-radius: 8px !important;
  color: #ffffff !important;
  background: var(--thg-mmt-blue) !important;
}

.flow-page .mmt-flight-route-v2 {
  display: grid !important;
  grid-template-columns: 1fr minmax(120px, 1fr) 1fr !important;
  align-items: center !important;
}

.flow-page .mmt-flight-route-v2 b {
  color: #202e4a !important;
  font-size: 1.25rem !important;
}

.flow-page .mmt-flight-detail-toggle {
  border-top: 1px solid #e2e8f0 !important;
  color: var(--thg-mmt-blue) !important;
  background: #ffffff !important;
  font-weight: 950 !important;
}

.flow-page .mmt-premium-service-card {
  display: grid !important;
  grid-template-columns: 210px minmax(0, 1fr) 210px !important;
}

.flow-page .mmt-cab-route-strip {
  border: 1px solid #dfe7f1 !important;
  border-radius: 8px !important;
  background: #f8fbff !important;
}

.flow-page .mmt-flow-detail,
.flow-page .mmt-traveller-section,
.flow-page .mmt-review-section {
  margin-top: 18px !important;
}

.flow-page .mmt-detail-layout,
.flow-page .plan-layout,
.flow-page .mmt-traveller-layout,
.flow-page .mmt-review-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px !important;
  gap: 18px !important;
  align-items: start !important;
}

.flow-page .mmt-selected-detail,
.flow-page .customer-form,
.flow-page .mmt-form-card,
.flow-page .plan-summary,
.flow-page .mmt-fare-summary,
.flow-page .mmt-review-hero,
.flow-page .mmt-review-card,
.flow-page .mmt-payment-box,
.flow-page .confirmation-panel {
  border: 0 !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(16, 31, 54, 0.1) !important;
}

.flow-page .customer-form,
.flow-page .mmt-form-card,
.flow-page .mmt-selected-detail,
.flow-page .mmt-review-main {
  padding: 20px !important;
}

.flow-page .mmt-form-head,
.flow-page .mmt-form-head-pro,
.flow-page .mmt-review-hero {
  border: 0 !important;
  border-radius: 8px !important;
  padding: 18px !important;
  color: #202e4a !important;
  background: #f4f9ff !important;
}

.flow-page .mmt-form-head h2,
.flow-page .mmt-review-hero h2,
.flow-page .customer-form h2 {
  color: #202e4a !important;
  font-size: 1.28rem !important;
  line-height: 1.18 !important;
}

.flow-page .customer-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.flow-page .customer-grid label,
.flow-page .customer-form label,
.flow-page .mmt-form-card label {
  display: grid !important;
  gap: 7px !important;
  border: 1px solid var(--thg-mmt-border) !important;
  border-radius: 8px !important;
  padding: 12px !important;
  color: #4a5568 !important;
  background: #ffffff !important;
  font-size: 0.74rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.flow-page .customer-grid label:focus-within,
.flow-page .customer-form label:focus-within {
  border-color: #a9d4ff !important;
  box-shadow: 0 0 0 3px rgba(0, 140, 255, 0.12) !important;
}

.flow-page .customer-grid input,
.flow-page .customer-grid select,
.flow-page .customer-grid textarea,
.flow-page .customer-form input,
.flow-page .customer-form select,
.flow-page .customer-form textarea {
  width: 100% !important;
  min-height: 38px !important;
  border: 0 !important;
  outline: 0 !important;
  color: #071b3a !important;
  background: transparent !important;
  font: inherit !important;
  font-size: 0.96rem !important;
  font-weight: 850 !important;
  text-transform: none !important;
}

.flow-page .customer-grid .full-line {
  grid-column: 1 / -1 !important;
}

.flow-page .customer-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-top: 16px !important;
}

.flow-page .customer-actions label {
  display: flex !important;
  align-items: center !important;
  width: fit-content !important;
  min-height: 42px !important;
}

.flow-page .customer-actions .search-button,
.flow-page .mmt-continue-button,
.flow-page .pay-button {
  min-height: 50px !important;
  padding: 0 24px !important;
}

.flow-page .plan-summary,
.flow-page .mmt-fare-summary,
.flow-page .mmt-payment-box {
  position: sticky !important;
  top: 176px !important;
  padding: 18px !important;
}

.flow-page .plan-summary strong,
.flow-page .plan-summary b,
.flow-page .mmt-payment-total b,
.flow-page .mmt-due-now strong {
  color: #202e4a !important;
}

.flow-page .mmt-policy-strip {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 12px 0 !important;
}

.flow-page .mmt-policy-strip a {
  border-radius: 999px !important;
  padding: 8px 12px !important;
  color: #0b4f9f !important;
  background: #eef7ff !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
}

.flow-page .mmt-review-layout {
  grid-template-columns: minmax(0, 1fr) 360px !important;
}

.flow-page .mmt-review-main {
  display: grid !important;
  gap: 14px !important;
  padding: 0 !important;
  background: transparent !important;
}

.flow-page .mmt-review-hero,
.flow-page .mmt-review-card,
.flow-page .mmt-review-support {
  padding: 18px !important;
}

.flow-page .mmt-review-card {
  border: 1px solid #e2e8f0 !important;
}

.flow-page .review-label {
  color: var(--thg-mmt-blue) !important;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
}

.flow-page .mmt-review-edit-link {
  border-radius: 999px !important;
  color: var(--thg-mmt-blue) !important;
  background: #eef7ff !important;
  font-size: 0.76rem !important;
  font-weight: 950 !important;
}

.flow-page .mmt-payment-box {
  display: grid !important;
  gap: 12px !important;
}

.flow-page .mmt-coupon-box,
.flow-page .mmt-payment-breakup,
.flow-page .mmt-due-now,
.flow-page .mmt-payment-methods,
.flow-page .mmt-payment-total {
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 12px !important;
  background: #ffffff !important;
}

.flow-page .mmt-coupon-box {
  background: #fff7ea !important;
}

.flow-page .mmt-payment-methods label {
  border: 1px solid #d8e1ee !important;
  border-radius: 8px !important;
  padding: 12px !important;
  background: #ffffff !important;
}

.flow-page .mmt-payment-methods label:has(input:checked) {
  border-color: #83c7ff !important;
  background: #f2f9ff !important;
}

.flow-page .flow-footer {
  margin-top: 48px !important;
  padding: 34px 0 28px !important;
  color: #d6e4f8 !important;
  background:
    linear-gradient(135deg, #061d3f 0%, #0b3265 54%, #103f7e 100%) !important;
}

.flow-page .flow-footer a {
  color: #e7f1ff !important;
}

.flow-page .flow-footer-brand-card,
.flow-page .flow-footer-contact-card,
.flow-page .flow-footer-assurance span,
.flow-page .flow-footer-metrics span {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

@media (max-width: 1280px) {
  .flow-page .topbar .header-main,
  .flow-page .flow-topbar .header-main {
    grid-template-columns: minmax(210px, 300px) minmax(260px, 1fr) auto !important;
  }

  .flow-page .topnav,
  .flow-page .flow-whatsapp-chip,
  .flow-page .helpline-chip {
    display: none !important;
  }

  .flow-page .travel-menu,
  .flow-page .flow-travel-menu {
    justify-content: flex-start !important;
  }
}

@media (max-width: 1080px) {
  .flow-page .mmt-results-layout,
  .flow-page .mmt-detail-layout,
  .flow-page .plan-layout,
  .flow-page .mmt-traveller-layout,
  .flow-page .mmt-review-layout {
    grid-template-columns: 1fr !important;
  }

  .flow-page .mmt-filter-panel,
  .flow-page .plan-summary,
  .flow-page .mmt-fare-summary,
  .flow-page .mmt-payment-box {
    position: static !important;
    max-height: none !important;
  }

  .flow-page .mmt-hotel-listing-card,
  .flow-page .mmt-premium-service-card {
    grid-template-columns: 220px minmax(0, 1fr) !important;
  }

  .flow-page .mmt-hotel-price-panel,
  .flow-page .mmt-service-price-panel {
    grid-column: 1 / -1 !important;
    border-left: 0 !important;
    border-top: 1px solid #e2e8f0 !important;
    text-align: left !important;
  }

  .flow-page .mmt-result-search,
  .flow-page .result-search-engine {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .flow-page .mmt-result-search .search-button,
  .flow-page .result-search-engine .search-button {
    grid-column: 1 / -1 !important;
    width: min(260px, 90%) !important;
    justify-self: center !important;
  }
}

@media (max-width: 760px) {
  .flow-page {
    background:
      linear-gradient(180deg, #08265b 0, #08265b 210px, #f3f5f8 210px, #f3f5f8 100%) !important;
  }

  .flow-page .topbar,
  .flow-page .flow-topbar {
    padding: 10px 0 12px !important;
  }

  .flow-page .topbar .header-main,
  .flow-page .flow-topbar .header-main {
    grid-template-columns: minmax(160px, 1fr) auto !important;
    width: calc(100% - 20px) !important;
  }

  .flow-page .brand-logo,
  .flow-page .flow-brand-lockup {
    min-height: 44px !important;
    padding: 5px 8px !important;
  }

  .flow-page .brand-logo-image,
  .flow-page .flow-topbar .brand-logo-image {
    width: 150px !important;
    height: 34px !important;
  }

  .flow-page .flow-brand-lockup span,
  .flow-page .header-search,
  .flow-page .account-actions .flow-whatsapp-chip,
  .flow-page .account-actions .helpline-chip {
    display: none !important;
  }

  .flow-page .login-button {
    min-height: 36px !important;
    padding: 0 12px !important;
  }

  .flow-page .travel-menu,
  .flow-page .flow-travel-menu {
    width: calc(100% - 20px) !important;
    min-height: 84px !important;
    padding: 7px 9px !important;
  }

  .flow-page .travel-menu a,
  .flow-page .flow-travel-menu a {
    width: 72px !important;
    min-width: 72px !important;
    min-height: 70px !important;
    font-size: 0.66rem !important;
  }

  .flow-page .flow-main {
    padding-top: 18px !important;
  }

  .flow-page .mmt-live-status,
  .flow-page .flow-hero,
  .flow-page .booking-steps,
  .flow-page .flow-section,
  .flow-page .mmt-flow-results,
  .flow-page .mmt-traveller-section,
  .flow-page .mmt-review-section {
    width: calc(100% - 20px) !important;
  }

  .flow-page .mmt-live-status,
  .flow-page .flow-hero,
  .flow-page .mmt-result-intro {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }

  .flow-page .booking-steps {
    grid-template-columns: 1fr !important;
  }

  .flow-page .mmt-result-search,
  .flow-page .result-search-engine,
  .flow-page .mmt-result-flight-controls,
  .flow-page .customer-grid {
    grid-template-columns: 1fr !important;
  }

  .flow-page .mmt-result-search label,
  .flow-page .result-search-engine label,
  .flow-page .mmt-result-flight-controls label {
    min-height: 72px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--thg-mmt-border) !important;
  }

  .flow-page .mmt-hotel-listing-card,
  .flow-page .mmt-premium-service-card,
  .flow-page .mmt-flight-row {
    grid-template-columns: 1fr !important;
  }

  .flow-page .mmt-result-photo img {
    min-height: 190px !important;
  }

  .flow-page .mmt-result-price,
  .flow-page .mmt-flight-price-panel {
    border-left: 0 !important;
    border-top: 1px solid #e2e8f0 !important;
    text-align: left !important;
  }

  .flow-page .customer-actions {
    display: grid !important;
    align-items: stretch !important;
  }

  .flow-page .customer-actions .search-button,
  .flow-page .mmt-continue-button,
  .flow-page .pay-button {
    width: 100% !important;
  }
}

body.flow-page .topbar.flow-topbar,
body.flow-page[data-page] .topbar.flow-topbar,
body.flow-page[data-flow-page] .topbar.flow-topbar,
body.flow-page[data-flow-page="results"] .topbar.flow-topbar,
body.flow-page[data-flow-page="results"].mmt-results-compact-header .topbar.flow-topbar {
  background:
    linear-gradient(90deg, #071f45 0%, #0b3d82 54%, #08265b 100%) !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.flow-page .topbar.flow-topbar .header-main,
body.flow-page[data-flow-page="results"] .topbar.flow-topbar .header-main,
body.flow-page[data-flow-page="results"].mmt-results-compact-header .topbar.flow-topbar .header-main {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.flow-page[data-flow-page="hotel"] .topbar.flow-topbar {
  display: block !important;
}

body.flow-page[data-flow-page="hotel"] .flow-main {
  padding-top: 22px !important;
}

@media (max-width: 1360px) {
  body.flow-page .topbar.flow-topbar .header-main {
    grid-template-columns: minmax(220px, 310px) minmax(320px, 1fr) auto !important;
  }

  body.flow-page .topbar.flow-topbar .topnav,
  body.flow-page .topbar.flow-topbar .flow-whatsapp-chip,
  body.flow-page .topbar.flow-topbar .helpline-chip {
    display: none !important;
  }

  body.flow-page .topbar.flow-topbar .account-actions {
    justify-self: end !important;
    width: auto !important;
  }
}

/* Deep flow typography and sizing pass */
.flow-page .topbar,
.flow-page .flow-topbar {
  padding: 10px 0 14px !important;
}

.flow-page .topbar .header-main,
.flow-page .flow-topbar .header-main,
.flow-page[data-flow-page="results"] .flow-topbar .header-main,
.flow-page[data-flow-page="results"].mmt-results-compact-header .flow-topbar .header-main {
  width: min(1280px, calc(100% - 32px)) !important;
  min-height: 56px !important;
  grid-template-columns: minmax(205px, 270px) minmax(280px, 1fr) auto auto !important;
  gap: 10px !important;
}

.flow-page .brand,
.flow-page .flow-brand-lockup {
  min-height: 46px !important;
  padding: 5px 9px !important;
}

.flow-page .brand-logo-image,
.flow-page .flow-topbar .brand-logo-image {
  width: 148px !important;
  height: 36px !important;
}

.flow-page .flow-brand-lockup span strong {
  font-size: 0.82rem !important;
}

.flow-page .flow-brand-lockup span small {
  font-size: 0.66rem !important;
}

.flow-page .header-search,
.flow-page .flow-topbar .header-search {
  min-height: 38px !important;
  grid-template-columns: 20px minmax(0, 1fr) auto !important;
  padding: 0 5px 0 11px !important;
}

.flow-page .header-search input {
  font-size: 0.78rem !important;
}

.flow-page .header-search button,
.flow-page .flow-topbar .header-search button {
  min-height: 30px !important;
  padding: 0 11px !important;
  font-size: 0.72rem !important;
}

.flow-page .topnav a,
.flow-page .flow-whatsapp-chip,
.flow-page .helpline-chip,
.flow-page .login-button {
  min-height: 34px !important;
  padding-right: 10px !important;
  padding-left: 10px !important;
  font-size: 0.72rem !important;
}

.flow-page .travel-menu,
.flow-page .flow-travel-menu {
  width: min(1180px, calc(100% - 32px)) !important;
  min-height: 86px !important;
  padding: 7px 12px 5px !important;
}

.flow-page .travel-menu a,
.flow-page .flow-travel-menu a,
.flow-page .flow-topbar .flow-travel-menu a {
  width: 84px !important;
  min-width: 84px !important;
  min-height: 72px !important;
  gap: 5px !important;
  font-size: 0.68rem !important;
}

.flow-page .travel-menu a svg,
.flow-page .flow-travel-menu a svg {
  width: 24px !important;
  height: 24px !important;
}

.flow-page .flow-main {
  padding-top: 20px !important;
}

.flow-page .flow-hero,
.flow-page .mmt-flow-hero-pro,
.flow-page .mmt-live-status,
.flow-page .booking-steps,
.flow-page .flow-section,
.flow-page .mmt-flow-results,
.flow-page .mmt-traveller-section,
.flow-page .mmt-review-section {
  width: min(1180px, calc(100% - 32px)) !important;
}

.flow-page .flow-hero,
.flow-page .mmt-flow-hero-pro,
.flow-page .mmt-live-status {
  min-height: 96px !important;
  border-radius: 8px !important;
  padding: 18px 20px !important;
}

.flow-page .flow-hero h1,
.flow-page .mmt-flow-hero-pro h1 {
  font-size: 1.42rem !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

.flow-page .mmt-flow-hero-copy,
.flow-page .flow-hero p,
.flow-page .mmt-live-status p {
  font-size: 0.84rem !important;
}

.flow-page .booking-steps {
  margin-top: 10px !important;
  border-radius: 8px !important;
  padding: 5px !important;
}

.flow-page .booking-steps span {
  min-height: 34px !important;
  border-radius: 6px !important;
  font-size: 0.72rem !important;
}

.flow-page .mmt-result-intro {
  border-radius: 8px !important;
  padding: 16px 18px !important;
}

.flow-page .mmt-result-intro h2 {
  font-size: 1.18rem !important;
  line-height: 1.22 !important;
}

.flow-page .mmt-result-intro p,
.flow-page .mmt-result-trust span {
  font-size: 0.76rem !important;
}

.flow-page .mmt-result-search,
.flow-page .result-search-engine {
  border-radius: 8px !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.flow-page .mmt-result-flight-controls {
  grid-column: 1 / -1 !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.flow-page .mmt-result-search label,
.flow-page .result-search-engine label,
.flow-page .mmt-result-flight-controls label {
  min-height: 74px !important;
  gap: 5px !important;
  padding: 11px 13px !important;
  font-size: 0.68rem !important;
}

.flow-page .mmt-result-search input,
.flow-page .mmt-result-search select,
.flow-page .result-search-engine input,
.flow-page .result-search-engine select,
.flow-page .mmt-result-flight-controls input,
.flow-page .mmt-result-flight-controls select {
  min-height: 30px !important;
  font-size: 0.88rem !important;
  line-height: 1.15 !important;
}

.flow-page .mmt-result-search .search-button,
.flow-page .result-search-engine .search-button {
  min-height: 50px !important;
  align-self: center !important;
  border-radius: 999px !important;
  font-size: 0.94rem !important;
}

.flow-page .mmt-results-layout {
  gap: 16px !important;
  grid-template-columns: minmax(220px, 252px) minmax(0, 1fr) !important;
}

.flow-page .mmt-filter-panel {
  border-radius: 8px !important;
  padding: 12px !important;
  font-size: 0.78rem !important;
}

.flow-page .mmt-filter-group {
  padding: 10px !important;
}

.flow-page .mmt-filter-group span,
.flow-page .mmt-filter-group b {
  font-size: 0.78rem !important;
}

.flow-page .mmt-filter-group label,
.flow-page .mmt-filter-group small {
  font-size: 0.72rem !important;
}

.flow-page .mmt-result-dashboard,
.flow-page .mmt-result-toolbar,
.flow-page .custom-result-note,
.flow-page .mmt-hotel-rush-deals,
.flow-page .mmt-hotel-listing-card,
.flow-page .mmt-premium-service-card,
.flow-page .mmt-flight-listing-card,
.flow-page .mmt-form-card,
.flow-page .mmt-fare-summary,
.flow-page .mmt-payment-box {
  border-radius: 8px !important;
}

.flow-page .mmt-result-dashboard-head strong,
.flow-page .mmt-hotel-title-row strong,
.flow-page .mmt-result-main h3,
.flow-page .mmt-selected-detail h2,
.flow-page .mmt-form-card h2,
.flow-page .mmt-review-card h2 {
  font-size: 1.05rem !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
}

.flow-page .mmt-result-dashboard-head span,
.flow-page .mmt-result-kicker,
.flow-page .mmt-result-main p,
.flow-page .mmt-result-details,
.flow-page .mmt-stay-subline,
.flow-page .mmt-card-flow-note,
.flow-page .mmt-result-assurance,
.flow-page .mmt-service-detail-toggle,
.flow-page .mmt-selected-detail p,
.flow-page .customer-form label,
.flow-page .mmt-payment-methods label {
  font-size: 0.78rem !important;
  line-height: 1.35 !important;
}

.flow-page .mmt-hotel-listing-card {
  grid-template-columns: 220px minmax(0, 1fr) 218px !important;
}

.flow-page .mmt-premium-service-card {
  grid-template-columns: 190px minmax(0, 1fr) 190px !important;
}

.flow-page .mmt-result-photo,
.flow-page .mmt-hotel-photo,
.flow-page .mmt-service-visual {
  min-height: 178px !important;
}

.flow-page .mmt-result-main,
.flow-page .mmt-service-main {
  padding: 14px 16px !important;
}

.flow-page .mmt-hotel-price-panel,
.flow-page .mmt-service-price-panel,
.flow-page .mmt-flight-price-panel,
.flow-page .mmt-result-price {
  padding: 14px !important;
}

.flow-page .mmt-result-price strong,
.flow-page .mmt-hotel-price-panel strong,
.flow-page .mmt-service-price-panel strong,
.flow-page .mmt-flight-price-panel strong {
  font-size: 1.18rem !important;
}

.flow-page .mmt-result-card .search-button,
.flow-page .mmt-hotel-price-panel .search-button,
.flow-page .mmt-service-price-panel .search-button,
.flow-page .mmt-continue-button,
.flow-page .pay-button {
  min-height: 42px !important;
  border-radius: 999px !important;
  font-size: 0.86rem !important;
}

@media (max-width: 1180px) {
  .flow-page .topbar .header-main,
  .flow-page .flow-topbar .header-main,
  body.flow-page .topbar.flow-topbar .header-main {
    grid-template-columns: minmax(190px, 255px) minmax(260px, 1fr) auto !important;
  }

  .flow-page .topnav,
  .flow-page .flow-whatsapp-chip,
  .flow-page .helpline-chip {
    display: none !important;
  }

  .flow-page .mmt-result-search,
  .flow-page .result-search-engine,
  .flow-page .mmt-result-flight-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .flow-page .flow-main {
    padding-top: 14px !important;
  }

  .flow-page .mmt-result-search,
  .flow-page .result-search-engine,
  .flow-page .mmt-result-flight-controls {
    grid-template-columns: 1fr !important;
  }

  .flow-page .mmt-result-search label,
  .flow-page .result-search-engine label,
  .flow-page .mmt-result-flight-controls label {
    min-height: 68px !important;
    border-right: 0 !important;
  }

  .flow-page .mmt-hotel-listing-card,
  .flow-page .mmt-premium-service-card,
  .flow-page .mmt-flight-row {
    grid-template-columns: 1fr !important;
  }

  .flow-page .flow-hero h1,
  .flow-page .mmt-flow-hero-pro h1,
  .flow-page .mmt-result-intro h2 {
    font-size: 1.08rem !important;
  }
}
