:root {
  --bg: #ffffff;
  --panel: #141414;
  --card: #1b1b1b;
  --surface-primary: var(--card);
  --surface-primary-raised: rgba(255, 255, 255, .04);
  --muted: #b8b8b8;
  --text: #f7f7f7;
  --border: rgba(255, 255, 255, .12);
  --accent: #dc1418;
  --accent2: #ff3b30;
  --danger: #ff3b30;
  --ok: #45d483;
  --search-surface-dark: #1b1b1b;
  --search-surface-raised: rgba(255, 255, 255, .08);

  --shadow: 0 24px 70px rgba(0, 0, 0, .45);
  --radius: 16px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  min-height: 100vh;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: #111111;
  background: var(--bg);
  overflow-x: hidden;
}

body.trending-showcase-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(12px, 2.4vw, 16px)
}

.flight-results-shell {
  background: transparent;
  transition: background-color .5s ease;
  display: flex;
  flex-direction: column;
}

/* Resultados/filtros aparecen justo debajo del buscador, no al final */
.flight-results-shell > .main {
  order: -1;
  width: 100%;
}

.flight-results-shell.hasSearched {
  background: transparent;
}

.flight-results-shell.is-loading #resultsPanelFlights,
.flight-results-shell.is-loading #resultsPanelHotels,
.flight-results-shell.is-loading #filtersPanelFlights,
.flight-results-shell.is-loading #filtersPanelHotels {
  visibility: hidden;
}

.flight-results-shell.is-loading .main {
  min-height: max(560px, calc(100dvh - 32px));
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  white-space: nowrap;
}

.cardResult .pill {
  font-size: 11px;
  color: #475569;
  background: #f8fafc;
  border-color: #e2e8f0;
}

.cabin-badge {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #334155;
  font-weight: 700;
}

.cabin-economy {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #334155;
}

.cabin-premium_economy {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #334155;
}

.cabin-business {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #334155;
}

.cabin-first {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #334155;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ef4444;
  background: #ef4444;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  transition: .15s ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  background: #dc2626;
}

.btn.secondary {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  font-weight: 700;
}

/* Hero */
.hero-banner {
  position: relative;
  z-index: 20;
  background: url('../img/Banner/hero.png') center 42% / cover no-repeat;
  padding: 60px 0 88px;
  margin-top: -16px;
  overflow: visible;
  /* pull up under topbar depending on topbar padding */
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 0) 76%, rgba(248, 250, 252, 0.18) 90%, rgba(248, 250, 252, 0.55) 100%);
}

.hero-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 74px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 0.78) 100%);
  pointer-events: none;
}

.hero-banner>* {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 20px 0;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: .5px;
  color: #fff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.hero p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Search panel */
.search {
  position: relative;
  z-index: 100;
  margin-top: 40px;
  background: rgba(15, 23, 48, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  overflow: visible;
  transform: translateY(124px);
}

.search-mode-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 0;
}

.search-mode-switch .modePill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.search-mode-switch .modePill i {
  font-size: 18px;
  line-height: 1;
}

.search-mode-switch .modePill:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.search-mode-switch .modePill.active {
  border-color: rgba(220, 20, 24, .7);
  background: rgba(220, 20, 24, .24);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.modeTabs {
  display: flex;
  gap: 10px;
  padding: 12px 12px 0 12px;
}

.modeTab {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, .14);
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.modeTab.active {
  border-color: rgba(220, 20, 24, .65);
  background: rgba(220, 20, 24, .18);
  color: var(--text);
  font-weight: 800;
}

.tabs {
  display: flex;
  gap: 10px;
  padding: 12px 12px 0 12px;
}

.suggestions-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 16, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  max-height: 250px;
  overflow-y: auto;
  z-index: 9999;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.suggestions-list li {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  background: rgba(10, 16, 32, 0.5);
}

.suggestions-list li:hover {
  background: rgba(220, 20, 24, 0.25);
}


/* Popular Destinations */
.destinations {
  margin-top: 118px;
  margin-bottom: 20px;
  padding-top: 12px;
  position: relative;
  z-index: 2;
}

.destinations h2 {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 800;
}

.destinations__titleBtn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0f172a;
  font: inherit;
  line-height: inherit;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  transition: color .22s ease, transform .22s ease;
}

.destinations__titleBtn span {
  position: relative;
  display: block;
}

.destinations__titleBtn span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  border-radius: 999px;
  background: #ef4444;
  opacity: 0;
  transform: scaleX(.18) translateY(4px);
  transform-origin: left center;
  transition: opacity .22s ease, transform .22s ease;
}

.destinations__titleBtn:hover,
.destinations__titleBtn:focus-visible {
  color: #ef4444;
  transform: translateY(-2px);
}

.destinations__titleBtn:hover span::after,
.destinations__titleBtn:focus-visible span::after {
  opacity: 1;
  transform: scaleX(1) translateY(0);
}

.destinations__titleBtn:focus-visible {
  outline: 3px solid rgba(239, 68, 68, .28);
  outline-offset: 8px;
  border-radius: 12px;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.dest-card {
  position: relative;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  transition: background 0.3s ease;
}

.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.dest-card:hover::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.dest-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.dest-info h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.dest-info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.destinations--trending {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  margin-top: 104px;
  margin-bottom: 74px;
  padding-top: 20px;
}

.destinations__header {
  margin-bottom: 0;
}

.destinations__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #ef4444;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destinations__kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: #ef4444;
}

.destinations__stage {
  min-width: 0;
  overflow: hidden;
}

.destinations--trending .dest-grid {
  display: flex;
  grid-template-columns: none;
  gap: 26px;
  max-width: none;
  margin: 0;
  padding: 16px 8px 28px 36px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent 0, #000 34px, #000 calc(100% - 18px), transparent 100%);
}

.destinations--trending .dest-grid::-webkit-scrollbar {
  display: none;
}

.destinations--trending .dest-card {
  position: relative;
  top: auto;
  flex: 0 0 clamp(300px, 35vw, 420px);
  height: clamp(190px, 20vw, 235px);
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 22px;
  scroll-snap-align: start;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.18);
}

.destinations--trending .dest-card::before {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.74) 0%, rgba(15, 23, 42, 0.38) 42%, rgba(15, 23, 42, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0) 62%);
}

.destinations--trending .dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.24);
}

.destinations--trending .dest-info {
  left: 22px;
  bottom: 20px;
  max-width: calc(100% - 44px);
}

.destinations--trending .dest-info h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.destinations--trending .dest-info p {
  margin-top: 8px;
  font-size: 15px;
}

.destinations--trending.reveal-on-scroll,
.destinations--trending.reveal-on-scroll.is-visible {
  transform: none;
}

.destinations--trending.reveal-on-scroll .destinations__header {
  opacity: 0;
  transform: translateX(-34px);
  transition:
    opacity .7s cubic-bezier(.22, .61, .36, 1),
    transform .82s cubic-bezier(.22, .61, .36, 1);
  transition-delay: .08s;
}

.destinations--trending.reveal-on-scroll.is-visible .destinations__header {
  opacity: 1;
  transform: translateX(0);
}

.destinations__controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.destinations__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 42px;
  border: 2px solid #ef4444;
  border-radius: 13px;
  background: #ffffff;
  color: #ef4444;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.destinations__arrow:hover:not(:disabled) {
  background: #ef4444;
  color: #ffffff;
  transform: translateY(-2px);
}

.destinations__arrow:disabled {
  border-color: #d1d5db;
  color: #cbd5e1;
  cursor: not-allowed;
}

.trending-showcase[hidden] {
  display: none;
}

.trending-showcase {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: block;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  background: #020617;
}

.trending-showcase__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #020617;
}

.trending-showcase__ambient {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  filter: blur(18px) saturate(1.05);
  opacity: 1;
  transform: scale(1.04);
  transition: opacity .5s ease;
}

.trending-showcase__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .5) 52%, rgba(0, 0, 0, .82) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .38) 42%, rgba(0, 0, 0, .78) 100%),
    rgba(0, 0, 0, .36);
}

.trending-showcase__panel {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trending-showcase__top {
  position: absolute;
  inset: clamp(20px, 3vw, 34px) clamp(20px, 3vw, 42px) auto;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  pointer-events: none;
}

.trending-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #ef4444;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trending-showcase__eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: #ef4444;
}

.trending-showcase__top h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 8px 28px rgba(2, 6, 23, .72);
}

.trending-showcase__top p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.6;
}

.trending-showcase__close,
.trending-showcase__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.trending-showcase__close {
  pointer-events: auto;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 24px;
}

.trending-showcase__close:hover,
.trending-showcase__nav:hover {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(239, 68, 68, .24);
}

.trending-showcase__body {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
}

.trending-showcase__nav {
  position: absolute;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  font-size: 28px;
  z-index: 12;
  transform: translateY(-50%);
}

.trending-showcase__nav:hover {
  transform: translateY(calc(-50% - 2px));
}

.trending-showcase__nav--prev {
  left: clamp(22px, 5vw, 74px);
}

.trending-showcase__nav--next {
  right: clamp(22px, 5vw, 74px);
}

.trending-showcase__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  overflow: hidden;
  perspective: 1600px;
  perspective-origin: 50% 48%;
}

.trending-showcase__slides {
  position: relative;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
}

.trending-showcase__card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --img-x: 0px;
  --img-y: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(28vw, 390px);
  height: min(64vh, 570px);
  min-width: 290px;
  min-height: 420px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  background: rgba(15, 23, 42, .2);
  box-shadow: 0 34px 80px rgba(2, 6, 23, .5);
  transform: translate(-50%, -50%) scale(.74);
  opacity: 0;
  pointer-events: none;
  transition: transform .72s cubic-bezier(.22, .61, .36, 1), opacity .36s ease, filter .36s ease;
  transform-style: preserve-3d;
}

.trending-showcase__card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translate3d(var(--img-x), var(--img-y), 0) scale(1.04);
  transition: transform .72s cubic-bezier(.22, .61, .36, 1);
}

.trending-showcase__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, .02) 0%, rgba(2, 6, 23, .1) 48%, rgba(2, 6, 23, .78) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, .36) 0%, rgba(2, 6, 23, .06) 56%, rgba(2, 6, 23, .1) 100%);
  pointer-events: none;
}

.trending-showcase__card[data-position="current"] {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -47%) translateZ(120px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1);
  z-index: 4;
}

.trending-showcase__card[data-position="previous"] {
  opacity: .58;
  transform: translate(-128%, -47%) rotateY(54deg) scale(.92);
  z-index: 3;
  filter: saturate(.72) brightness(.7);
}

.trending-showcase__card[data-position="next"] {
  opacity: .58;
  transform: translate(28%, -47%) rotateY(-54deg) scale(.92);
  z-index: 3;
  filter: saturate(.72) brightness(.7);
}

.trending-showcase__card[data-position="far-previous"] {
  opacity: .18;
  transform: translate(-146%, -50%) rotateY(54deg) scale(.64);
  z-index: 1;
  filter: blur(1px) brightness(.78);
}

.trending-showcase__card[data-position="far-next"] {
  opacity: .18;
  transform: translate(46%, -50%) rotateY(-54deg) scale(.64);
  z-index: 1;
  filter: blur(1px) brightness(.78);
}

.trending-showcase__card[data-position="current"] img {
  transform: translate3d(var(--img-x), var(--img-y), 0) scale(1.08);
}

.trending-showcase__content {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(52px, 9vh, 86px);
  width: min(640px, 92vw);
  z-index: 2;
  color: #ffffff;
  text-align: center;
  transform: translate3d(-50%, 0, 80px);
  pointer-events: none;
}

.trending-showcase__content span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.trending-showcase__content h4 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 4.2vw, 66px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(15, 23, 42, .34);
  text-transform: uppercase;
}

.trending-showcase__content p {
  max-width: 520px;
  margin: 12px auto 18px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.55;
}

.trending-showcase__season {
  margin-top: -8px !important;
  color: rgba(255, 255, 255, .72) !important;
  font-size: 12px !important;
  font-weight: 700;
}

.trending-showcase__content button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  background: #ef4444;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  pointer-events: auto;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.trending-showcase__content button:hover {
  background: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(239, 68, 68, .28);
}

.tab {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, .14);
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.tab.active {
  border-color: rgba(220, 20, 24, .65);
  background: rgba(220, 20, 24, .18);
  color: var(--text);
  font-weight: 800;
}

.form {
  padding: 12px;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 1.1fr .8fr .9fr .9fr;
  gap: 10px;
  align-items: end;
  position: relative;
  overflow: visible;
}

.form>div {
  position: relative
}

@media (max-width: 980px) {
  .hero-banner {
    background-position: center top;
    padding-top: 70px;
    padding-bottom: 124px;
  }

  .search {
    transform: translateY(92px);
  }

  .mobile-results-toolbar {
    transform: translateY(92px);
  }

  .destinations {
    margin-top: 92px;
  }

  .form {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .hero-banner {
    background-position: center top;
    padding: 66px 0 100px;
  }

  .hero {
    padding: 32px 0 24px;
  }

  .search {
    margin-top: 22px;
    transform: translateY(92px);
  }

  .search-mode-switch {
    padding: 12px 12px 0;
  }

  .search-mode-switch .modePill {
    flex: 1;
    min-height: 42px;
    padding: 10px 12px;
  }

  .destinations {
    margin-top: 18px;
    padding-top: 18px;
  }

  .form {
    grid-template-columns: 1fr;
  }

  .searchLoadingCard {
    width: 100%;
    max-width: 340px;
    padding: 22px 18px;
  }

  .searchLoadingCard__visual {
    width: 126px;
    height: 126px;
  }

  .searchLoadingCard__brand {
    width: 54px;
    height: 54px;
  }

  .searchLoadingCard__content h3 {
    font-size: 19px;
  }
}

label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px
}

input,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, .12);
  color: var(--text);
  outline: none;
}

input:focus,
select:focus {
  border-color: rgba(220, 20, 24, .65);
  box-shadow: 0 0 0 3px rgba(220, 20, 24, .16);
}

.srOnlySelect {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.chipTrigger {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.chipTrigger:hover {
  border-color: rgba(255, 120, 120, .35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22), inset 0 0 0 1px rgba(0, 0, 0, .25);
  transform: translateY(-1px);
}

.chipTrigger:focus-visible {
  outline: none;
  border-color: rgba(220, 20, 24, .65);
  box-shadow: 0 0 0 3px rgba(220, 20, 24, .25), 0 10px 24px rgba(0, 0, 0, .22);
}

.chipIcon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--text);
}

.popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  max-width: 320px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(55, 65, 81, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease;
  pointer-events: none;
  z-index: 9999;
}

.popover.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.popoverRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.popoverLabel {
  color: var(--muted);
  font-size: 12px;
}

.popoverSub {
  color: rgba(147, 167, 207, .75);
  font-size: 11px;
  margin-top: 2px;
}

.paxControls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.roundBtn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .2);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.roundBtn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.roundBtn:hover {
  border-color: rgba(255, 120, 120, .35);
  background: rgba(220, 20, 24, .12);
  transform: scale(1.04);
}

.roundBtn:active {
  transform: scale(.96)
}

.paxValue {
  min-width: 24px;
  text-align: center;
  font-weight: 800;
  color: #ffffff;
}

.popoverDone {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(220, 20, 24, .55);
  background: rgba(220, 20, 24, .16);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.optionBtn {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.optionBtn:hover {
  border-color: rgba(255, 120, 120, .35);
  background: rgba(220, 20, 24, .12);
}

/* Select premium (glass) */
.form #adults,
.form #cabinClass,
select.selectGlass {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 12px 44px 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .25);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;

  /* caret */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23dce9ff' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
}

.form #adults:hover,
.form #cabinClass:hover,
.filters #sortBy:hover,
select.selectGlass:hover {
  border-color: rgba(255, 120, 120, .35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22), inset 0 0 0 1px rgba(0, 0, 0, .25);
}

.form #adults:focus-visible,
.form #cabinClass:focus-visible,
.filters #sortBy:focus-visible,
select.selectGlass:focus-visible {
  border-color: rgba(220, 20, 24, .65);
  box-shadow: 0 0 0 3px rgba(220, 20, 24, .25), 0 10px 24px rgba(0, 0, 0, .22);
}

.form #adults:active,
.form #cabinClass:active,
.filters #sortBy:active,
select.selectGlass:active {
  transform: scale(.99);
}

.form #adults:disabled,
.form #cabinClass:disabled,
select.selectGlass:disabled {
  opacity: .55;
  cursor: not-allowed;
}



select::-ms-expand {
  display: none;
}

.form .submit {
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 24, .65);
  background: linear-gradient(135deg, rgba(220, 20, 24, .9), rgba(255, 59, 48, .9));
  font-weight: 900;
}

.searchFooter {
  padding: 10px 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
  font-size: 12px;
}

.status {
  color: var(--muted)
}

.status.ok {
  color: var(--ok)
}

.status.error {
  color: var(--danger)
}

/* Layout main */
.main {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 14px;
  margin-top: 0;
  padding-bottom: 0;
  position: relative;
  isolation: isolate;
}

/* Solo reserva espacio cuando hay paneles visibles (tras una búsqueda) */
.main:has(> .filters:not([hidden]), > .results:not([hidden])) {
  margin-top: 56px;
  padding-bottom: 40px;
}

@media (max-width: 1180px) {
  .main {
    grid-template-columns: 1fr
  }
}

/* Hotels layout uses left filters + cards */
#resultsPanelHotels {
  min-height: 240px;
}

/* Filters */
.filters {
  position: sticky;
  top: 78px;
  align-self: start;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: 14px;
  color: #0f172a;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}

.filters h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 14px
}

.filters select#sortBy {
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23647569' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  color: #0f172a;
  box-shadow: none;
}

.filters select#sortBy option,
.filters select#sortBy optgroup {
  background: #f8fafc;
  color: #0f172a;
}

.filterRow {
  margin: 10px 0
}

.range {
  width: 100%;
  accent-color: var(--accent);
}

.small {
  font-size: 12px;
  color: #475569;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .22);
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
}

.chip.active {
  border-color: rgba(220, 20, 24, .65);
  color: #0f172a;
  font-weight: 800;
}

.toggleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, .22);
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
}

.toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 44px;
  height: 24px;
}

.toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.toggleTrack {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, .25);
  transition: background .2s ease;
}

.toggleThumb {
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: transform .2s ease, background .2s ease;
}

.toggle input:checked+.toggleTrack {
  background: rgba(59, 130, 246, .7);
}

.toggle input:checked+.toggleTrack+.toggleThumb {
  transform: translateX(20px);
  background: #ffffff;
}

#filtersPanelHotels {
  background: #f1f5f9;
  border: 1px solid rgba(148, 163, 184, .24);
  color: #0f172a;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}

#filtersPanelHotels h3 {
  color: #0f172a;
}

#filtersPanelHotels .small {
  color: #475569;
}

#filtersPanelHotels .toggleRow {
  border: 1px solid rgba(148, 163, 184, .22);
  background: #ffffff;
  color: #334155;
}

#filtersPanelHotels .toggleTrack {
  background: rgba(148, 163, 184, .35);
}

#filtersPanelHotels .toggleThumb {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .16);
}

#filtersPanelHotels .toggle input:checked+.toggleTrack {
  background: rgba(220, 20, 24, .72);
}

#filtersPanelHotels select#sortBy,
#filtersPanelHotels select.selectGlass {
  border: 1px solid rgba(148, 163, 184, .22);
  background-color: #ffffff;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23647569' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  color: #0f172a;
  box-shadow: none;
}

#filtersPanelHotels select#sortBy:hover,
#filtersPanelHotels select.selectGlass:hover {
  border-color: rgba(148, 163, 184, .34);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

#filtersPanelHotels select#sortBy:focus-visible,
#filtersPanelHotels select.selectGlass:focus-visible {
  border-color: rgba(220, 20, 24, .45);
  box-shadow: 0 0 0 3px rgba(220, 20, 24, .12);
}

#filtersPanelHotels select#sortBy option,
#filtersPanelHotels select#sortBy optgroup,
#filtersPanelHotels select.selectGlass option,
#filtersPanelHotels select.selectGlass optgroup {
  background: #ffffff;
  color: #0f172a;
}

/* Results */
.results {
  min-height: 240px;
}

.mobile-results-toolbar {
  display: none;
}

.mobile-filters-backdrop {
  display: none;
}

.mobile-filters-head,
.mobile-filters-actions {
  display: none;
}

.desktop-filters-title {
  display: block;
}

.mobile-filters-close {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .mobile-results-toolbar {
    position: static;
    top: auto;
    z-index: 18;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px clamp(12px, 2.4vw, 16px);
    margin: 40px auto 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
    transform: translateY(124px);
  }

  .mobile-results-toolbar[hidden] {
    display: none;
  }

  .mobile-results-toolbar .btn {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .mobile-results-toolbar__count {
    font-size: 12px;
    color: #64748b;
    font-weight: 700;
  }

  #filtersPanelFlights,
  #filtersPanelHotels {
    position: fixed;
    inset: auto 0 0;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 1300;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    max-height: min(78vh, 680px);
    overflow: auto;
    border-radius: 16px 16px 0 0;
    padding: 14px 14px max(14px, env(safe-area-inset-bottom));
    background: #ffffff;
    box-shadow: 0 -24px 44px rgba(15, 23, 42, .24);
    transform: translateY(105%);
    transition: transform .22s ease;
  }

  #filtersPanelFlights.is-open,
  #filtersPanelHotels.is-open {
    display: block;
    transform: translateY(0);
  }

  body.mobile-filters-open #filtersPanelFlights.is-open,
  body.mobile-filters-open #filtersPanelHotels.is-open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) !important;
  }

  #filtersPanelFlights h3,
  #filtersPanelHotels h3 {
    margin: 0;
  }

  .desktop-filters-title {
    display: none;
  }

  .mobile-filters-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
  }

  .mobile-filters-actions {
    position: sticky;
    bottom: 0;
    display: block;
    padding-top: 10px;
    margin-top: 6px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 32%);
  }

  .mobile-filters-actions .btn {
    width: 100%;
    min-height: 44px;
  }

  .mobile-filters-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1290;
    background: rgba(15, 23, 42, .45);
    backdrop-filter: blur(2px);
  }

  .mobile-filters-backdrop.is-open {
    display: block;
  }

  body.mobile-filters-open {
    overflow: hidden;
  }
}

@media (max-width: 620px) {
  .mobile-results-toolbar {
    transform: translateY(92px);
    margin-top: 22px;
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .resultsHeader {
    flex-direction: column;
    align-items: flex-start;
  }

  .airlineLine {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .offerExpiry {
    margin-left: 0;
    white-space: normal;
  }

  .times {
    display: grid;
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 10px;
  }

  .times>div {
    min-width: 0;
  }

  .lineMid {
    min-width: 0;
    width: 100%;
  }

  .bar {
    width: 100%;
  }

  .route,
  .segmentMeta,
  .segmentRoute {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .timeBig {
    font-size: 16px;
  }

  .priceBox {
    width: 100%;
    margin-left: 0;
  }

  .priceMain,
  .priceSub {
    text-align: left;
    align-items: flex-start;
  }

  .ctaRow {
    width: 100%;
    flex-wrap: wrap;
  }

  .selectBtn {
    width: 100%;
    min-height: 44px;
  }
}

.searchLoadingOverlay {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.searchLoadingOverlay[hidden] {
  display: none;
}

.searchLoadingOverlay__backdrop {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.97) 52%, rgba(238, 242, 247, 0.99) 100%);
  backdrop-filter: blur(18px);
}

.searchLoadingCard {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.searchLoadingCard__visual {
  position: relative;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
}

.searchLoadingCard__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(220, 38, 38, 0.14);
}

.searchLoadingCard__ring--outer {
  animation: searchLoaderPulse 2.4s ease-in-out infinite;
}

.searchLoadingCard__ring--inner {
  inset: 16px;
  border-color: rgba(30, 41, 59, 0.08);
  animation: searchLoaderPulse 2.4s ease-in-out infinite .25s;
}

.searchLoadingCard__brandWrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  animation: searchLoaderFloat 1.9s ease-in-out infinite;
}

.searchLoadingCard__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
  background: #ffffff url("/static/img/logo.png") center/78% no-repeat;
  border: 1px solid #e2e8f0;
}

.searchLoadingCard__content h3 {
  margin: 0;
  color: #111827;
  font-size: 22px;
  font-weight: 800;
}

.searchLoadingCard__eyebrow {
  margin: 0;
  color: #ef4444;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.searchLoadingCard__content p:last-child {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

@keyframes searchLoaderFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes searchLoaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .9;
  }

  50% {
    transform: scale(1.05);
    opacity: .55;
  }
}

@media (max-width: 1180px) {
  .searchLoadingOverlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    min-height: 100%;
    padding: clamp(18px, 5vw, 32px);
    align-items: center;
    justify-content: center;
  }

  .searchLoadingOverlay__backdrop {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(238, 242, 247, 0.98));
    backdrop-filter: blur(16px);
  }

  .searchLoadingCard {
    width: min(100%, 340px);
    padding: 24px 20px;
    border-radius: 22px;
    margin: auto;
  }

  .searchLoadingCard__visual {
    width: 128px;
    height: 128px;
  }

  .searchLoadingCard__brand {
    width: 54px;
    height: 54px;
  }

  .searchLoadingCard__content h3 {
    font-size: 22px;
    line-height: 1.1;
  }
}

.resultsHeader {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.resultsHeader h2 {
  margin: 0;
  color: #111111;
  font-size: 16px
}

.sort {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.cardResult {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
  margin-bottom: 20px;
  color: #0f172a;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.cardResult:hover {
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .cardResult {
    grid-template-columns: 1fr
  }
}

.itinerary {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.airlineLine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.airlineName {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: #0f172a;
}

.airlineLogoWrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  overflow: hidden;
}

.airlineLogo {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: contain;
}

.airlineLogoFallback {
  display: none;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.airlineLogoWrap.is-fallback {
  background: #f8fafc;
}

.airlineLogoWrap.is-fallback .airlineLogoFallback {
  display: inline;
}

.offerExpiry {
  margin-left: auto;
  color: #64748b;
  font-size: 12px;
  white-space: nowrap;
}

.iataBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .08);
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
}

.fareSummary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.segmentBlock .fareSummary {
  margin-top: 12px;
}

.fareTitle {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2px;
  color: #0f172a;
}

.fareMeta {
  font-size: 12px;
  color: #0f172a;
}

.times {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.sliceBlock {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sliceLabel {
  font-size: 12px;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.sliceDuration {
  font-size: 12px;
  color: #0f172a;
}

.detailsWrap {
  margin-top: 6px;
}

.detailsBtn {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.detailsBtn:hover {
  border-color: #94a3b8;
  background: #f1f5f9;
}

.detailsPanel {
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.flightRouteMapCard {
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
}

.flightRouteMapHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.flightRouteMapHeader h4 {
  margin: 0;
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
}

.flightRouteMapHeader span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.flightRouteMapCanvas {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #eef2f7;
}

.flightRouteMapPathAnimated {
  stroke-dasharray: 10 10;
}

.flightRouteMapPlaneMarker {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  pointer-events: none;
}

.plane-svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flightRouteMapNote {
  margin: 9px 0 0;
  color: #64748b;
  font-size: 11px;
  line-height: 1.35;
}

.flightRouteMapFallback {
  height: 100%;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #64748b;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.segmentBlock {
  margin-bottom: 10px;
}

.segmentBlock:last-child {
  margin-bottom: 0;
}

.segmentTitle {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2px;
  margin-bottom: 6px;
}

.segmentStats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.segmentStat {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  color: #475569;
  font-size: 11px;
}

.segmentStat strong {
  color: #0f172a;
  font-size: 12px;
}

.segmentRow {
  display: grid;
  grid-template-columns: minmax(92px, max-content) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  font-size: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}

.segmentRow:last-child {
  border-bottom: none;
}

.segmentRoute {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #0f172a;
}

.segmentAirport {
  font-size: 13px;
  line-height: 1;
}

.segmentArrow {
  color: #94a3b8;
  font-weight: 700;
}

.segmentSchedule {
  min-width: 0;
  text-align: right;
}

.segmentTimes {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.segmentFlightMeta {
  margin-top: 3px;
  color: #64748b;
  font-size: 11px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.segmentMeta {
  color: #0f172a;
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 560px) {
  .flightRouteMapHeader {
    display: grid;
  }

  .flightRouteMapHeader span {
    text-align: left;
  }

  .flightRouteMapCanvas {
    height: 190px;
  }

  .segmentRow {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .segmentSchedule {
    text-align: left;
  }
}

.timeBig {
  font-size: 18px;
  font-weight: 900
}

.route {
  color: #0f172a;
  font-size: 12px;
}

.lineMid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 140px;
  color: #0f172a;
  font-size: 12px;
}

.bar {
  width: 140px;
  height: 3px;
  background: #e2e8f0;
  position: relative;
  border-radius: 999px;
}

.dot {
  position: absolute;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(220, 20, 24, 1), rgba(255, 59, 48, 1));
  box-shadow: 0 0 0 3px rgba(220, 20, 24, .16);
}

.dot.left {
  left: -2px
}

.dot.right {
  right: -2px
}

.metaLine {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 12px;
}

.tioLine {
  text-align: right;
  margin-top: 8px;
  color: #64748b;
  font-size: 12px;
}

.duration {
  color: #64748b;
  font-size: 12px;
  opacity: .95;
  white-space: nowrap;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: .9;
  cursor: pointer;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace
}

.pricing {
  border-left: 1px solid #e2e8f0;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 860px) {
  .pricing {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
  }
}

.priceMain {
  font-size: 18px;
  font-weight: 950;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.priceSub {
  color: #9ca3af;
  font-size: 12px;
  text-align: right;
  line-height: 1.35;
  text-wrap: balance;
}

.priceBox {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: flex-start;
  margin-left: auto;
}

.priceBox .priceMain {
  font-size: 18px;
  line-height: 1.05;
  color: #6b7280;
}

.priceMain__amount {
  max-width: 100%;
  font-size: clamp(1.28rem, 0.8vw + 0.98rem, 1.68rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #4b5563;
  white-space: nowrap;
}

.priceMain__currency {
  display: inline;
  margin-left: 4px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.heroDiscountPill {
  border-color: rgba(90, 200, 255, 0.6);
  background: rgba(90, 200, 255, 0.15);
  color: #ffffff;
}

.searchSubmitBtn {
  width: 100%;
  height: 50px;
  border-radius: 14px;
  font-size: 16px;
}

.ctaRow {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap
}

.tag {
  position: relative;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.tagPrice {
  border: 1px solid #a7f3d0;
  background: #ecfdf5;
  color: #047857;
}

.tagSchedule {
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.selectBtn {
  border: 1px solid rgba(255, 120, 120, .35);
  background: #ef4444;
  color: #fff;
  border-radius: 14px;
  padding: 11px 18px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(239, 68, 68, .30);
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.selectBtn:hover {
  background: #dc2626;
  box-shadow: 0 14px 28px rgba(239, 68, 68, .36);
}

.tagCheck {
  font-weight: 900;
  font-size: 12px;
  opacity: .9;
}

.tag[data-tooltip]::before,
.tag[data-tooltip]::after {
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -6px);
  z-index: 50;
}

.tag[data-tooltip]::after {
  content: attr(data-tooltip);
  top: calc(100% + 8px);
  padding: 6px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 12, 24, .95);
  color: var(--text);
  font-size: 11px;
  max-width: 260px;
  white-space: normal;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

.tag[data-tooltip]::before {
  content: "";
  top: calc(100% + 2px);
  width: 8px;
  height: 8px;
  background: rgba(8, 12, 24, .95);
  border-left: 1px solid rgba(255, 255, 255, .12);
  border-top: 1px solid rgba(255, 255, 255, .12);
  transform: translate(-50%, 0) rotate(45deg);
}

.tag[data-tooltip]:hover::before,
.tag[data-tooltip]:hover::after {
  opacity: 1;
  transform: translate(-50%, 6px);
}

.tagAlt {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #334155;
}

.ctaRow .tagPrice {
  border: 1px solid rgba(239, 68, 68, .28);
  background: rgba(254, 226, 226, .8);
  color: #991b1b;
}

.ctaRow .tagAlt {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #334155;
}

.selectBtn {
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, rgba(220, 20, 24, 1), rgba(255, 59, 48, 1));
  font-weight: 900;
  cursor: pointer;
  color: #ffffff;
  box-shadow: none;
  transition: background .2s ease, filter .2s ease, transform .1s ease;
}

.selectBtn:hover {
  filter: brightness(1.06);
}

.selectBtn:active {
  transform: scale(.98);
}

.selectBtn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 20, 24, .28);
}

/* Hotels */
.hotelCard {
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, .22);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
  overflow: hidden;
  margin-bottom: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-width: 0;
}

.hotelCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, .12);
  border-color: rgba(148, 163, 184, .35);
}

.hotelMedia {
  width: 100%;
  height: 100%;
  background: #e2e8f0;
}

.hotelMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hotelBody {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.hotelHeader {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hotelName {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
  color: #111827;
  overflow-wrap: anywhere;
}

.hotelMeta {
  color: #64748b;
  font-size: 12px;
  display: flex;
  column-gap: 8px;
  row-gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}

.hotelRating {
  font-weight: 800;
  color: #059669;
}

.hotelProviderId {
  display: none;
}

.hotelHighlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
}

.hotelHighlights span,
.hotelStay {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hotelRoomsLeft {
  color: #dc2626;
}

.hotelTags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.hotelTag {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .22);
  color: #475569;
  background: #ffffff;
}

.hotelStay {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 13px;
}

.hotelPrice {
  padding: 16px;
  border-left: 1px solid rgba(148, 163, 184, .18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  min-width: 0;
  background: #f8fafc;
}

.hotelPriceTop {
  width: 100%;
}

.hotelPriceMain {
  font-size: 22px;
  font-weight: 900;
  color: #475569;
  text-align: right;
  overflow-wrap: anywhere;
}

.hotelPriceSub {
  font-size: 12px;
  color: #94a3b8;
  text-align: right;
}

.hotelPriceDetails {
  margin-top: 8px;
  width: 100%;
  color: #475569;
  text-align: left;
}

.hotelPriceDetails summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 6px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 800;
}

.hotelPriceDetails summary::-webkit-details-marker {
  display: none;
}

.hotelPriceDetails summary::after {
  content: "v";
  font-size: 14px;
  line-height: 1;
  color: #dc2626;
}

.hotelPriceDetails[open] summary::after {
  transform: rotate(180deg);
}

.hotelPriceDetails__panel {
  margin-top: 8px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.hotelPriceDetails__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 4px 0;
  font-size: 12px;
  color: #64748b;
}

.hotelPriceDetails__row strong {
  color: #334155;
  white-space: nowrap;
  font-weight: 800;
}

.hotelPriceDetails__row.is-total {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid #e5e7eb;
  color: #111827;
  font-weight: 800;
}

.hotelPriceDetails__row.is-total strong {
  color: #111827;
}

.hotelPriceDetails__panel p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 11px;
  line-height: 1.35;
}

.roomPrice .hotelPriceDetails {
  max-width: 320px;
}

.roomPrice .hotelPriceDetails summary {
  justify-content: center;
}

.hotelCta {
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, rgba(220, 20, 24, 1), rgba(255, 59, 48, 1));
  color: white;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, filter .2s ease, transform .1s ease;
}

.hotelCta:hover {
  filter: brightness(1.06);
}

.hotelCta:active {
  transform: scale(.98)
}

.roomFooter {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, .18);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.roomPrice {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.roomPriceMain {
  font-size: 1.6rem;
  font-weight: 750;
  letter-spacing: .2px;
  line-height: 1;
  color: #6b7280;
}

.roomPriceSub {
  font-size: .85rem;
  color: #9ca3af;
}

.selectRoomBtn {
  padding: 12px 18px;
  border-radius: 12px;
  min-height: 44px;
  font-size: .96rem;
  white-space: nowrap;
  min-width: 260px;
}

.hotelModalGallery {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  min-width: 0;
}

.hotelModalGalleryMain {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 260px;
  max-height: 390px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f8fafc;
  cursor: zoom-in;
}

.hotelModalGalleryMain img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hotelModalGalleryArrow {
  position: absolute;
  top: min(190px, 42%);
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #111827;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .16);
}

.hotelModalGalleryArrow--prev {
  left: 14px;
}

.hotelModalGalleryArrow--next {
  right: 14px;
}

.hotelModalGalleryThumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.hotelModalGalleryThumb {
  flex: 0 0 86px;
  width: 86px;
  height: 62px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
}

.hotelModalGalleryThumb.is-active {
  border-color: #ef4444;
}

.hotelModalGalleryThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.roomCardLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  min-width: 0;
}

.roomMediaCol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.roomMedia,
.roomBody {
  min-width: 0;
}

.roomGallery {
  width: 100%;
  height: 210px;
  min-width: 0;
  overflow: hidden;
}

.roomGallery--two,
.roomGallery--multi {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
}

.roomGalleryStack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  min-height: 0;
}

.roomGalleryTile {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 10px;
}

.roomGalleryTile img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.roomGalleryMore {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
  background: rgba(15, 23, 42, .48);
}

.roomGallery--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.roomHotelContext {
  margin-top: 16px;
  border: 1px solid rgba(148, 163, 184, .18);
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  gap: 10px;
}

.roomHotelContextTitle {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #111827;
}

.roomHotelContextText {
  margin: 0;
  font-size: .83rem;
  color: #475569;
  line-height: 1.45;
}

.roomHotelContextList {
  display: grid;
  gap: 7px;
}

.roomHotelContextListItem {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: .81rem;
  color: #334155;
  line-height: 1.35;
}

.roomHotelContextListItem i,
.roomHotelContextIcon {
  color: #dc2626;
  font-size: .95rem;
  margin-top: 1px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
}

.roomHotelContextIcon svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 860px) {
  .hotelCard {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 16px;
  }

  .hotelMedia {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .hotelBody {
    padding: 22px 18px 18px;
    gap: 10px;
    border-top: 1px solid #f1f5f9;
  }

  .hotelName {
    font-size: 17px;
    line-height: 1.24;
  }

  .hotelMeta {
    font-size: 12px;
    line-height: 1.35;
  }

  .hotelTags {
    margin-top: 8px;
  }

  .hotelTag {
    padding: 5px 9px;
  }

  .hotelHighlights:empty {
    display: none;
  }

  .hotelStay {
    margin-top: 6px;
  }

  .hotelPrice {
    padding: 18px;
    align-items: flex-start;
    border-left: none;
    border-top: 1px solid rgba(148, 163, 184, .18);
  }

  .hotelPriceMain,
  .hotelPriceSub {
    text-align: left
  }

  .hotelPriceDetails summary {
    justify-content: flex-start;
  }

  .roomFooter {
    align-items: stretch;
  }

  .selectRoomBtn {
    width: 100%;
  }

  .roomHotelContext {
    display: none;
  }
}

/* Room photo lightbox */
#hotelPhotoLightbox[hidden] {
  display: none !important;
}

#hotelPhotoLightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 3000 !important;
  display: grid !important;
  place-items: center !important;
  padding: 24px !important;
  box-sizing: border-box !important;
}

#hotelPhotoLightbox [data-role="backdrop"] {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(15, 23, 42, .78) !important;
  backdrop-filter: blur(5px) !important;
}

#hotelPhotoLightbox [data-role="panel"] {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  width: min(1080px, calc(100vw - 64px)) !important;
  height: min(78vh, 720px) !important;
  max-width: calc(100vw - 48px) !important;
  max-height: calc(100dvh - 48px) !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: 0 28px 90px rgba(15, 23, 42, .42) !important;
}

#hotelPhotoLightbox [data-role="stage"] {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #0f172a !important;
}

#hotelPhotoLightbox [data-role="panel"]>div:last-child {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

#hotelPhotoLightboxMain {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 0 !important;
  display: block !important;
  background: transparent !important;
}

#hotelPhotoLightbox [data-role="prev"],
#hotelPhotoLightbox [data-role="next"] {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 3 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(148, 163, 184, .35) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .96) !important;
  color: #0f172a !important;
  cursor: pointer !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .14) !important;
}

#hotelPhotoLightbox [data-role="prev"] {
  left: 18px !important;
}

#hotelPhotoLightbox [data-role="next"] {
  right: 18px !important;
}

#hotelPhotoLightboxCounter {
  color: #64748b !important;
  font-size: 12px !important;
  margin-bottom: 8px !important;
}

#hotelPhotoLightboxThumbs {
  width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  gap: 8px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 2px 2px 4px !important;
  scroll-behavior: smooth !important;
  overscroll-behavior-x: contain !important;
  touch-action: pan-x !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: thin !important;
  scrollbar-color: #cbd5e1 transparent !important;
  cursor: grab !important;
}

#hotelPhotoLightboxThumbs:active {
  cursor: grabbing !important;
}

#hotelPhotoLightboxThumbs button[data-role="thumb"] {
  flex: 0 0 58px !important;
  width: 58px !important;
  height: 42px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(148, 163, 184, .35) !important;
}

#hotelPhotoLightboxThumbs button[data-role="thumb"] img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

#hotelPhotoLightbox,
#hotelPhotoLightbox [data-role="backdrop"],
#hotelPhotoLightbox [data-role="panel"] {
  background: transparent !important;
}

#hotelPhotoLightbox [data-role="backdrop"] {
  background: transparent !important;
  backdrop-filter: blur(6px) !important;
}

#hotelPhotoLightbox [data-role="panel"] {
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 32px 110px rgba(0, 0, 0, .72) !important;
}

#hotelPhotoLightbox [data-role="stage"] {
  background: #ffffff !important;
}

#hotelPhotoLightbox [data-role="panel"]>div:first-child {
  background: #ffffff !important;
  min-height: 44px !important;
  padding: 8px 14px !important;
  border-bottom: 1px solid #e5e7eb !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

#hotelPhotoLightbox [data-role="panel"]>div:first-child>div {
  margin-left: auto !important;
}

#hotelPhotoLightbox [data-role="panel"]>div:last-child {
  background: #ffffff !important;
  padding: 12px 16px 14px !important;
  border-top: 1px solid #e5e7eb !important;
}

#hotelPhotoLightboxTitle {
  color: #111827 !important;
  font-size: 13px !important;
  letter-spacing: .01em !important;
}

#hotelPhotoLightbox [data-role="toggle-play"],
#hotelPhotoLightbox [data-role="close"] {
  border: 1px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #111827 !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
}

#hotelPhotoLightbox [data-role="toggle-play"] {
  height: 28px !important;
  padding: 0 10px !important;
  font-size: 12px !important;
}

#hotelPhotoLightbox [data-role="close"] {
  width: 30px !important;
  height: 30px !important;
  font-size: 18px !important;
}

#hotelPhotoLightboxCounter {
  color: #475569 !important;
}

#hotelPhotoLightboxThumbs button[data-role="thumb"] {
  border-color: #cbd5e1 !important;
  background: #ffffff !important;
}

#hotelPhotoLightboxThumbs button[data-role="thumb"]:focus-visible {
  outline: 2px solid #ef4444 !important;
  outline-offset: 2px !important;
}

/* Modal */
.modal[hidden] {
  display: none
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}

.modalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 20, .72);
  backdrop-filter: blur(6px);
}

.modalCard {
  position: relative;
  width: min(960px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overscroll-behavior: contain;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 18px;
  box-shadow: 0 28px 56px rgba(15, 23, 42, .18);
  padding: 16px;
  z-index: 1;
}

.modalHeader {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
  color: #111827;
}

.modalClose {
  border: none;
  background: #f1f5f9;
  color: #111827;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.modalBody {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.offerQuoteModal {
  justify-content: flex-end;
  align-items: stretch;
  padding: 0;
}

.offerQuoteModal .modalBackdrop {
  background: rgba(15, 23, 42, .58);
  backdrop-filter: blur(5px);
}

.offerQuoteSheet {
  width: min(54vw, 760px);
  min-width: 560px;
  max-height: 100dvh;
  height: 100dvh;
  padding: 0;
  border: 0;
  border-left: 1px solid #e5e7eb;
  border-radius: 0;
  box-shadow: -24px 0 70px rgba(15, 23, 42, .22);
  overflow: hidden;
  background: #ffffff;
  animation: offerQuoteSlideIn .24s ease-out;
}

.offerQuoteSheet__header {
  position: sticky;
  top: 0;
  z-index: 5;
  min-height: 72px;
  padding: 22px 28px 10px;
  margin: 0;
  background: #ffffff;
}

.offerQuoteSheet__header .modalClose,
.offerQuoteSheet__share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: none;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 24px;
  line-height: 1;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.offerQuoteSheet__share {
  color: #1e3a8a;
  font-size: 22px;
}

.offerQuoteSheet__header .modalClose:hover,
.offerQuoteSheet__share:hover {
  background: #e2e8f0;
  color: #dc1418;
  transform: translateY(-1px);
}

.offerQuoteSheet__body {
  height: calc(100dvh - 72px);
  padding: 0;
  overflow-y: auto;
  background: #ffffff;
}

.offerQuoteSheet__content {
  width: min(100%, 660px);
  margin: 0 auto;
  padding: 8px 36px 28px;
}

.offerQuoteSheet__summary {
  padding: 0 0 26px;
  border-bottom: 1px solid #e5e7eb;
}

.offerQuoteSheet__eyebrow {
  margin: 0 0 28px;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 800;
}

.offerQuoteSheet__kicker {
  margin: 0 0 10px;
  color: #dc1418;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offerQuoteSheet__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.offerQuoteSheet__lead {
  margin: 20px 0 0;
  color: #334155;
  font-size: 1.1rem;
  font-weight: 800;
}

.offerQuoteSheet__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.offerQuoteSheet__metaItem {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f8fafc;
  color: #475569;
  font-weight: 700;
}

.hotelVisualBreakdownCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-left: 3px solid #ef4444;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.hotelVisualBreakdownCopy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.hotelVisualBreakdownIcon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 34px !important;
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  overflow: hidden !important;
  color: #ef4444 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  line-height: 1 !important;
}

.hotelVisualBreakdownIcon i {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  font-size: 18px !important;
  line-height: 18px !important;
}

.hotelVisualBreakdownText {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.hotelVisualBreakdownText strong {
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.hotelVisualBreakdownText span {
  color: #64748b;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

.hotelVisualBreakdownLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  text-decoration: none;
  white-space: nowrap;
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  border-radius: 9px;
  color: #4b5563 !important;
  font-size: 12.5px;
  font-weight: 800;
  box-shadow: none;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hotelVisualBreakdownLink:hover {
  background: #f9fafb !important;
  border-color: #9ca3af !important;
  color: #374151 !important;
  box-shadow: 0 4px 10px rgba(15, 23, 42, .08) !important;
  transform: translateY(-1px);
}

.hotelVisualBreakdownLink:focus-visible {
  outline: 2px solid rgba(239, 68, 68, .45);
  outline-offset: 2px;
}

.hotelVisualBreakdownLink i {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 620px) {
  .hotelVisualBreakdownCard {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .hotelVisualBreakdownLink {
    align-self: flex-start;
    width: auto;
  }
}

.offerQuoteSheet__metaItem i {
  color: #334155;
  font-size: 18px;
}

.offerQuoteSheet__metaItem span {
  color: #334155;
  font-size: .95rem;
  font-weight: 800;
}

.offerQuoteSheet__details {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #dcfce7;
  border-radius: 12px;
  background: #f0fdf4;
  color: #166534;
}

.offerQuoteSheet__details--negative {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.offerQuoteSheet__details strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
}

.offerQuoteSheet__details p {
  margin: 8px 0 0;
  color: #475569;
  font-size: .92rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.offerQuoteSheet__price {
  margin-top: 18px;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 800;
}

.offerQuoteSheet__priceNote {
  margin: 8px 0 0;
  color: #64748b;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.45;
}

.offerQuoteSheet__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 28px;
}

.offerQuoteSheet__sectionTitle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #334155;
  font-size: 1rem;
  font-weight: 800;
}

.offerQuoteSheet__sectionTitle i {
  color: #dc1418;
}

.offerQuoteSheet__fields {
  display: grid;
  gap: 14px;
}

.offerQuoteSheet__fields--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offerQuoteSheet__segments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.offerQuoteSheet__segments label {
  cursor: pointer;
}

.offerQuoteSheet__segments input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.offerQuoteSheet__segments span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #ffffff;
  color: #334155;
  font-size: .9rem;
  font-weight: 800;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.offerQuoteSheet__segments input:checked+span {
  border-color: #ef4444;
  background: #ffffff;
  color: #dc2626;
}

.offerQuoteSheet__contactPref {
  display: grid;
  gap: 8px;
}

.offerQuoteSheet__contactPref>span {
  color: #64748b;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.3;
}

.offerQuoteSheet__field {
  display: grid;
  gap: 7px;
}

.offerQuoteSheet__field label {
  color: #64748b;
  font-size: .88rem;
  font-weight: 600;
}

.offerQuoteSheet input,
.offerQuoteSheet textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.offerQuoteSheet textarea {
  min-height: 104px;
  resize: vertical;
}

.offerQuoteSheet input::placeholder,
.offerQuoteSheet textarea::placeholder {
  color: #475569;
  opacity: 1;
}

.offerQuoteSheet input:focus,
.offerQuoteSheet textarea:focus {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .18);
}

.offerQuoteSheet__total {
  display: none !important;
}

.offerQuoteSheet__footer {
  position: sticky;
  bottom: 0;
  z-index: 4;
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 22%);
}

.offerQuoteSheet__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.offerQuoteSheet__captcha {
  display: flex;
  justify-content: center;
}

.offerQuoteSheet__trust {
  margin: 0;
  color: #64748b;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.offerQuoteSheet__footer .btn.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  border-radius: 12px;
  border: none;
  background: #ef4444;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.offerQuoteSheet__footer .btn.submit:hover {
  background: #dc2626;
  box-shadow: 0 10px 22px rgba(220, 38, 38, .22);
  transform: translateY(-1px);
}

.offerQuoteSheet__status {
  min-height: 20px;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
}

@keyframes offerQuoteSlideIn {
  from {
    opacity: .96;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes offerQuoteRiseIn {
  from {
    opacity: .96;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .offerQuoteSheet {
    width: min(92vw, 640px);
    min-width: 0;
  }
}

.roomCard {
  margin-bottom: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid rgba(148, 163, 184, .18);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
  min-width: 0;
}

.detailGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.detailItem {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, .18);
  background: #ffffff;
}

.detailLabel {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 4px;
}

.detailValue {
  font-weight: 700;
  color: #111827;
  font-size: 13px;
}

@media (max-width: 680px) {
  .detailGrid {
    grid-template-columns: 1fr
  }

  .modal {
    align-items: flex-end;
  }

  .modalCard {
    width: calc(100vw - 8px);
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
    padding: 12px 12px max(12px, env(safe-area-inset-bottom));
  }

  .modalHeader {
    position: sticky;
    top: 0;
    z-index: 3;
    background: #ffffff;
    padding: 8px 4px 10px;
  }

  .offerQuoteModal {
    align-items: flex-end;
    justify-content: center;
  }

  .offerQuoteSheet {
    width: 100vw;
    height: 92dvh;
    min-width: 0;
    max-height: 92dvh;
    border-left: 0;
    border-radius: 18px 18px 0 0;
    animation: offerQuoteRiseIn .24s ease-out;
  }

  .offerQuoteSheet__header {
    min-height: 64px;
    padding: 14px 18px 8px;
  }

  .offerQuoteSheet__header .modalClose,
  .offerQuoteSheet__share {
    width: 38px;
    height: 38px;
  }

  .offerQuoteSheet__body {
    height: calc(92dvh - 64px);
  }

  .offerQuoteSheet__content {
    padding: 8px 18px max(18px, env(safe-area-inset-bottom));
  }

  .offerQuoteSheet__title {
    font-size: 1.55rem;
  }

  .offerQuoteSheet__meta,
  .offerQuoteSheet__fields--two {
    grid-template-columns: 1fr;
  }

  .offerQuoteSheet__segments {
    grid-template-columns: 1fr;
  }

  .offerQuoteSheet__footer {
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .roomCard {
    padding: 12px;
    margin-bottom: 12px;
  }

  .hotelModalGalleryMain {
    aspect-ratio: 4 / 3;
    min-height: 210px;
    max-height: 300px;
    border-radius: 14px;
  }

  .hotelModalGalleryArrow {
    top: 38%;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .hotelModalGalleryThumb {
    flex-basis: 72px;
    width: 72px;
    height: 54px;
  }

  .roomCardLayout,
  .roomCard>div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .roomPriceMain {
    font-size: 1.3rem;
  }

  .roomFooter {
    position: sticky;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), #fff);
    padding: 12px 0 4px;
    margin-top: 12px;
    z-index: 4;
  }

  .selectRoomBtn {
    min-width: 0;
    width: 100%;
  }
}

/* Select premium (override) - Light Theme */
.form select#adults,
.form select#cabinClass,
.filters select#sortBy,
.filters select#hotelSortBy,
.filters select#hotelScoreMin,
select.selectGlass {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 44px 10px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%2364748b' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  color: #1e293b;
  font-weight: 600;
  font-size: 14px;
  box-shadow: none;
  transition: all .18s ease;
}

.form select#adults:hover,
.form select#cabinClass:hover,
.filters select#sortBy:hover,
select.selectGlass:hover {
  border-color: #94a3b8;
  background-color: #f8fafc;
}

.form select#adults:focus-visible,
.form select#cabinClass:focus-visible,
.filters select#sortBy:focus-visible,
select.selectGlass:focus-visible {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  outline: none;
}

.filters select#sortBy option,
.filters select#sortBy optgroup,
select.selectGlass option,
select.selectGlass optgroup {
  background: #ffffff;
  color: #1e293b;
}

/* Search engine glass layout */
.search {
  margin-top: 34px;
  padding: 18px 32px 24px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 18px;
  box-shadow: 0 26px 68px rgba(15, 23, 42, .16);
  backdrop-filter: blur(14px) saturate(112%);
  -webkit-backdrop-filter: blur(14px) saturate(112%);
  isolation: isolate;
  z-index: 50;
  transform: translateY(222px);
}

.search::before,
.search::after {
  display: none;
}

.search>* {
  position: relative;
  z-index: 1;
}

.search .search-mode-switch::after {
  display: none;
}

.search-mode-switch {
  gap: 8px;
  padding: 0 0 10px;
}

.search-mode-switch .modePill {
  min-width: 122px;
  min-height: 40px;
  padding: 8px 15px;
  border-color: #e5e7eb;
  background: #ffffff;
  color: #4b5563;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}

.search-mode-switch .modePill i {
  font-size: 16px;
}

.search-mode-switch .modePill:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  color: #111827;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
}

.search-mode-switch .modePill.active {
  border-color: #ef4444;
  background: #ffffff;
  color: #ef4444;
  box-shadow: 0 1px 2px rgba(239, 68, 68, .08);
}

.search .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 0 0 16px;
}

.search .tab {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.search .tab.active {
  background: transparent;
  color: #111827;
}

.search .tab::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .8);
}

.search .tab.active::before {
  border-color: #ef4444;
  background:
    radial-gradient(circle at center, #ef4444 0 39%, transparent 43%),
    #ffffff;
}

#panelFlights .form {
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) minmax(150px, .95fr) minmax(170px, 1fr) minmax(120px, .72fr) minmax(136px, .82fr);
}

#panelFlights .form:has(#returnDateField:not([hidden])) {
  grid-template-columns: minmax(136px, .95fr) minmax(136px, .95fr) minmax(132px, .82fr) minmax(132px, .82fr) minmax(154px, .98fr) minmax(110px, .68fr) minmax(128px, .78fr);
}

/* 6 columnas: Destino, Check-in, Check-out, Huéspedes, Moneda, Buscar.
   "Huéspedes" reemplazó a Adultos/Habitaciones/Edades, por eso necesita más ancho. */
#panelHotels .form {
  grid-template-columns: minmax(180px, 1.2fr) minmax(130px, .9fr) minmax(130px, .9fr) minmax(168px, 1.1fr) minmax(104px, .68fr) minmax(126px, .76fr);
}

.search .form {
  padding: 16px 0 0;
  gap: 10px;
  border-top: 1px solid #e5e7eb;
}

.search .form>div {
  min-width: 0;
}

.search label {
  margin-bottom: 6px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
}

.search input,
.search select,
.search select.selectGlass,
.search .chipTrigger {
  width: 100%;
  min-width: 0;
  min-height: 41px;
  padding: 11px 13px;
  border-radius: 11px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}

.search select,
.search select.selectGlass {
  padding-right: 38px;
  background-image:
    linear-gradient(180deg, #ffffff, #ffffff),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%236b7280' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 13px center;
  background-size: auto, 16px 16px;
}

.search input:hover,
.search select:hover,
.search select.selectGlass:hover,
.search .chipTrigger:hover {
  border-color: #d1d5db;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
  transform: none;
}

.search input:focus,
.search select:focus,
.search select.selectGlass:focus,
.search .chipTrigger:focus-visible {
  border-color: rgba(239, 68, 68, .82);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .18), 0 4px 12px rgba(15, 23, 42, .06);
}

.search .chipIcon {
  color: #6b7280;
  flex: 0 0 auto;
}

/* El resumen de huéspedes/cabina no debe partirse en varias líneas. */
.search .chipTrigger span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search .form .submit {
  width: 100%;
  height: 50px;
  border-radius: 13px;
  border-color: rgba(239, 68, 68, .88);
  background: #ef4444;
  color: #ffffff;
  justify-content: center;
  font-size: 16px;
  box-shadow: none;
}

.search .form .submit:hover {
  background: #dc2626;
  box-shadow: 0 10px 22px rgba(220, 38, 38, .22);
}

.search .searchFooter {
  padding: 14px 0 0;
  border-top: 0;
  color: #6b7280;
}

.search .status {
  color: #6b7280;
}

.search .popover {
  top: calc(100% + 12px);
  left: 50%;
  width: 224px;
  min-width: 224px;
  max-width: 224px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .16);
  transform: translate(-50%, -6px);
}

.search .popover.is-open {
  transform: translate(-50%, 0);
}

.search .popover.align-right {
  transform: translate(0, -6px);
}

.search .popover.align-right.is-open {
  transform: translate(0, 0);
}

.search .popover.align-left {
  transform: translate(0, -6px);
}

.search .popover.align-left.is-open {
  transform: translate(0, 0);
}

.search .popover::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
  transform: translateX(-50%) rotate(45deg);
}

.search .popover.align-right::before {
  left: calc(100% - 46px);
}

.search .popover.align-left::before {
  left: 46px;
}

.search .popoverRow {
  gap: 12px;
  margin-bottom: 12px;
}

.search .popoverLabel {
  color: #111827;
  font-size: 12px;
  line-height: 1.15;
}

.search .popoverSub {
  color: #6b7280;
}

.search .roundBtn {
  width: 24px;
  height: 24px;
  border-color: #e5e7eb;
  background: #ffffff;
  color: #374151;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
}

.search .roundBtn:hover {
  border-color: #ef4444;
  background: #fef2f2;
  color: #ef4444;
}

.search .paxControls {
  gap: 9px;
}

.search .paxValue {
  min-width: 18px;
  color: #111827;
  font-weight: 500;
}

.search .popoverDone {
  min-height: 36px;
  margin-top: 2px;
  border-radius: 10px;
  border-color: rgba(239, 68, 68, .82);
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(220, 38, 38, .18);
}

.search .popoverDone:hover {
  background: #dc2626;
}

.search .optionBtn {
  color: #111827;
}

.search .optionBtn:hover {
  border-color: #fee2e2;
  background: #fef2f2;
  color: #ef4444;
}

.search .hotelOptionTrigger {
  justify-content: space-between;
}

.search .hotelOptionTrigger::after {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: center / 16px 16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%236b7280' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  opacity: .9;
}

.search .hotelOptionPopover {
  width: 168px;
  min-width: 168px;
  max-width: 168px;
  padding: 8px;
}

.search .hotelOptionPopover .optionBtn {
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 800;
}

/* Edades de niños dentro del popover de huéspedes de hotel. */
.hotelChildrenAges {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding-top: 2px;
  border-top: 1px solid #eef2f7;
}

.hotelChildAge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: #374151;
}

.hotelChildAge select {
  flex: 0 0 auto;
  min-width: 104px;
  padding: 6px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
}

.hotelDateRangePicker {
  position: absolute;
  z-index: 10020;
  width: 532px;
  max-width: calc(100vw - 16px);
  padding: 16px 16px 0;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .2);
  color: #111827;
}

.hotelDateRangePicker[hidden] {
  display: none;
}

.hotelDateRangePicker__nav {
  position: absolute;
  inset: 12px 12px auto 12px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.hotelDateRangePicker__arrow {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111827;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

.hotelDateRangePicker__arrow:hover {
  background: #f3f4f6;
  color: #ef4444;
}

.hotelDateRangePicker__months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.hotelDateRangePicker__month h3 {
  margin: 0 0 18px;
  text-align: center;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
}

.hotelDateRangePicker__weekdays,
.hotelDateRangePicker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
}

.hotelDateRangePicker__weekdays {
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 13px;
}

.hotelDateRangePicker__weekdays span {
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hotelDateRangePicker__empty {
  height: 38px;
}

.hotelDateRangePicker__day {
  width: 100%;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111827;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.hotelDateRangePicker__day:hover {
  background: #fef2f2;
  color: #dc2626;
}

.hotelDateRangePicker__day.is-range {
  background: #fee2e2;
}

.hotelDateRangePicker__day.is-start,
.hotelDateRangePicker__day.is-end {
  background: #ef4444;
  color: #ffffff;
  font-weight: 800;
}

.hotelDateRangePicker__day:disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

.hotelDateRangePicker__day:disabled:hover {
  background: transparent;
}

.hotelDateRangePicker__summary {
  margin: 14px -16px 0;
  padding: 11px 16px;
  border-top: 1px solid #e5e7eb;
  color: #374151;
  font-size: 13px;
  text-align: center;
}

.search .suggestions-list {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(203, 213, 225, .9);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .18);
  max-height: 228px;
  z-index: 9999;
}

.search .suggestions-list li {
  background: #ffffff;
  color: #334155;
  border-bottom-color: #e2e8f0;
}

.search .suggestions-list li:hover {
  background: #fef2f2;
  color: #991b1b;
}

@media (max-width: 980px) {
  .search {
    transform: translateY(168px);
    max-width: 100%;
  }

  .destinations {
    margin-top: 112px;
  }

  #panelFlights .form,
  #panelFlights .form:has(#returnDateField:not([hidden])) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #panelFlights .form>div:last-child {
    grid-column: 1 / -1;
  }

  #panelHotels .form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #panelHotels .form>div:first-child,
  #panelHotels .form>div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .hero {
    max-width: min(360px, calc(100vw - 48px));
    margin-inline: auto;
    padding: 56px 0 20px;
  }

  .hero h1 {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.04;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .hero p {
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.28;
  }

  .search {
    margin-top: 22px;
    padding: 16px;
    transform: translateY(134px);
    width: 100%;
  }

  .search-mode-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-bottom: 12px;
  }

  .search-mode-switch .modePill {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
  }

  #panelFlights .form,
  #panelFlights .form:has(#returnDateField:not([hidden])),
  #panelHotels .form {
    grid-template-columns: 1fr;
  }

  #panelFlights .form>div:last-child,
  #panelHotels .form>div:first-child,
  #panelHotels .form>div:last-child {
    grid-column: auto;
  }

  /* En mobile el popover se despliega EN FLUJO (acordeón): empuja hacia abajo los
     campos/botón en vez de taparlos. !important porque positionPopover() escribe
     left/right inline y la base es position:absolute. */
  .search .popover,
  .search .popover.align-right,
  .search .popover.align-left {
    position: static !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin-top: 8px !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .12) !important;
  }

  .search .popover.is-open,
  .search .popover.align-right.is-open,
  .search .popover.align-left.is-open {
    transform: translateY(0) !important;
  }

  /* La flechita no aplica cuando el popover es inline. */
  .search .popover::before {
    display: none !important;
  }

  .search .searchFooter {
    align-items: flex-start;
  }

  /* Más aire para la barra de filtros móvil. */
  .mobile-results-toolbar {
    margin-top: 10px;
  }

  .destinations {
    margin-top: 18px;
  }

  .hotelDateRangePicker {
    padding: 14px 12px 0;
  }

  .hotelDateRangePicker__months {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hotelDateRangePicker__summary {
    margin-left: -12px;
    margin-right: -12px;
  }
}

/* Skeleton */
.skeleton {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}

.shimmer {
  height: 120px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  background-size: 220% 100%;
  animation: shimmer 1.2s infinite linear;
}

@keyframes shimmer {
  0% {
    background-position: 0% 0%
  }

  100% {
    background-position: 200% 0%
  }
}

.callback {
  --cb-bg: var(--bg);
  --cb-blue: #d10f15;
  --cb-white: #fff;
  --cb-text: #f7fbff;
  --cb-muted: #d5edf6;
  --cb-accent: #f06a63;
  padding: 72px 16px 120px;
  background: var(--cb-bg);
  font-family: 'Montserrat', sans-serif;
}

.callback__panel {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--cb-blue);
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 40px;
}

.callback__video {
  width: 48%;
  aspect-ratio: 1/1;
  background: transparent;
  position: absolute;
  left: -18%;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
}

.callback.is-visible .callback__video {
  animation: callbackVisualIn 1.15s cubic-bezier(.2, .9, .2, 1) .05s both;
}

.callback__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@keyframes callbackVisualIn {
  from {
    opacity: 0;
    transform: translate(-90px, -50%) scale(.72) rotate(-5deg);
  }

  68% {
    opacity: 1;
    transform: translate(10px, -50%) scale(1.06) rotate(1deg);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
  }
}

@keyframes callbackImageMobileIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.callback__content {
  width: 56%;
  margin-left: auto;
  padding: 60px 72px 120px 40px;
  color: var(--cb-text);
}

.kicker {
  margin: 0 0 18px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kicker span {
  width: 70px;
  height: 2px;
  background: var(--cb-white);
  display: block
}

.callback h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.desc {
  margin: 0 0 38px;
  color: var(--cb-muted);
  line-height: 1.65;
  max-width: 640px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  font-size: clamp(16px, 1.35vw, 18px);
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, .35);
  border-left: 1px solid transparent;
}

.stats article {
  padding: 26px 22px;
  border-right: 1px solid rgba(255, 255, 255, .35);
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.statIcon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #000000;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.statIconSvg {
  width: 29px;
  height: 29px;
  display: block;
}

.stats article:nth-child(2n) {
  border-right: none
}

.stats h3 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1;
  font-weight: 800
}

.stats p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.35
}

.hotline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -48px;
  background: #f2f2f2;
  color: #333;
  width: min(92%, 620px);
  min-width: 0;
  padding: 24px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 20px;
}

.hotline>div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hotline__icon {
  font-size: 44px;
  color: var(--cb-blue)
}

.hotline__stars {
  display: flex;
  gap: 4px;
  font-size: 34px;
  color: #ffcc4d;
  letter-spacing: 2px;
  line-height: 1;
}

.hotline__star {
  display: inline-block;
  animation: starTwinkle 1.8s ease-in-out infinite;
  animation-delay: var(--star-delay, 0s);
  transform-origin: center;
}

.hotline__star:nth-child(2) { --star-delay: .12s; }
.hotline__star:nth-child(3) { --star-delay: .24s; }
.hotline__star:nth-child(4) { --star-delay: .36s; }
.hotline__star:nth-child(5) { --star-delay: .48s; }

.offers__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--muted);
  width: 100%;
}

.cruises-empty {
  text-align: center;
  width: 100%;
  padding: 40px;
  color: var(--cruise-text-muted);
}

.visa-btn__country {
  font-size: .85em;
  font-weight: 700;
  margin-right: 6px;
}

.visa-btn__country--lower {
  text-transform: lowercase;
}

.visa-btn__country--upper {
  text-transform: uppercase;
}

@keyframes starTwinkle {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1)
  }

  35% {
    transform: scale(1.16);
    filter: brightness(1.18)
  }
}

@media (prefers-reduced-motion: reduce) {
  .hotline__star {
    animation: none
  }
}

.hotline p {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600
}

.hotline strong {
  color: var(--cb-accent);
  font-size: 44px;
  line-height: 1;
  font-weight: 800
}

.hotline__link {
  color: #ef4444;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.hotline__link:hover {
  border-bottom-color: #ef4444;
  opacity: 0.8;
}

@media (max-width:1100px) {
  .callback {
    padding: 72px 16px 104px;
  }

  .callback__video {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(86%, 480px);
    aspect-ratio: 16 / 9;
    max-width: 480px;
    margin: clamp(-58px, -6vw, -34px) auto 0;
    overflow: visible;
    z-index: 2;
  }

  .callback.is-visible .callback__video {
    animation: callbackImageMobileIn .75s cubic-bezier(.22, 1, .36, 1) both;
    transform-origin: center;
  }

  .callback__image {
    animation: none;
    clip-path: none;
    filter: drop-shadow(0 22px 22px rgba(15, 23, 42, .22));
    transform: translateY(-26px) scale(1.06);
    transform-origin: center bottom;
    object-fit: cover;
  }

  .callback.is-visible .callback__image {
    animation: none;
  }

  .callback__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    border-radius: 32px;
    overflow: visible;
  }

  .callback__content {
    width: 100%;
    padding: 0 24px 160px;
    margin-top: -8px;
  }

  .callback h2 {
    font-size: 40px
  }

  .hotline {
    left: 24px;
    right: 24px;
    transform: none;
    width: auto
  }
}

@media (max-width:700px) {
  .stats {
    grid-template-columns: 1fr 1fr
  }

  .stats article {
    border-right: none
  }

  .stats h3 {
    font-size: 36px
  }

  .stats p {
    font-size: 21px
  }

  .hotline {
    left: 16px;
    right: 16px;
    bottom: -42px;
    padding: 16px 18px;
    gap: 12px;
    flex-direction: column;
  }

  .hotline__icon {
    font-size: 36px
  }

  .hotline__stars {
    font-size: 30px
  }

  .hotline strong {
    font-size: 34px
  }

  .hotline p {
    font-size: 18px
  }
}

@media (max-width:520px) {
  .callback {
    padding-top: 86px;
  }

  .callback__panel {
    border-radius: 28px;
  }

  .callback__video {
    width: min(84%, 380px);
    margin-top: -22px;
    margin-bottom: 0;
  }

  .callback__image {
    transform: translateY(-24px) scale(1.08);
  }

  .callback__content {
    padding: 0 18px 150px;
  }

  .stats {
    grid-template-columns: 1fr 1fr
  }

  .stats article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 10px;
    border-right: 1px solid rgba(255, 255, 255, .35);
  }

  .stats article:nth-child(2n) {
    border-right: none;
  }

  .stats .statIcon {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
  }

  .stats .statIconSvg {
    width: 24px;
    height: 24px;
  }

  .stats h3 {
    font-size: 28px;
    margin: 0;
  }

  .stats p {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.2;
  }
}

.travel-activity {
  background: #ffffff;
  padding: 80px 16px 70px;
  color: #111111;
  font-family: 'Montserrat', sans-serif;
}

.travel-activity .section-kicker {
  margin: 0;
  color: #f06a63;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
}

.travel-activity .section-title {
  margin: 10px 0 14px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
}

.travel-activity .section-desc {
  margin: 0 0 28px;
  color: #4b5563;
  max-width: 760px;
  line-height: 1.65;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.activity-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 18px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #f97373);
  opacity: 0;
  transform: scaleX(.28);
  transform-origin: left center;
  transition: opacity .22s ease, transform .22s ease;
}

.activity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(239, 68, 68, .14), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.activity-card i {
  position: relative;
  z-index: 1;
  font-size: 26px;
  color: #f06a63;
  transition: color .22s ease, transform .22s ease;
}

.activity-card h3 {
  position: relative;
  z-index: 1;
  margin: 12px 0 6px;
  font-size: 19px;
  font-weight: 700;
  color: #111827;
}

.activity-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

.activity-card:hover {
  transform: translateY(-8px);
  border-color: #ef4444;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
}

.activity-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.activity-card:hover::after {
  opacity: 1;
}

.activity-card:hover i {
  color: #ef4444;
  transform: scale(1.1);
}

@media (max-width:1000px) {
  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .travel-activity .section-title {
    font-size: 36px
  }
}

@media (max-width:640px) {
  .travel-activity {
    padding: 28px 16px 64px
  }

  .travel-activity .section-kicker {
    font-size: 12px;
  }

  .travel-activity .section-title {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.12;
  }

  .travel-activity .section-desc {
    max-width: 32ch;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
  }

  .activity-card {
    min-height: 136px;
    border-radius: 16px;
    padding: 18px 14px;
  }

  .activity-card i {
    font-size: 24px;
  }

  .activity-card h3 {
    margin: 12px 0 5px;
    font-size: 18px;
    line-height: 1.18;
  }

  .activity-card p {
    font-size: 13px;
    line-height: 1.35;
  }

  .activity-grid .activity-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    min-height: 116px;
  }

  .travel-activity .section-title {
    font-size: 28px
  }
}

@media (max-width:360px) {
  .activity-grid {
    grid-template-columns: 1fr
  }

  .activity-grid .activity-card:last-child {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }
}

@media (min-width:1001px) {
  .activity-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr))
  }

  .activity-grid .activity-card {
    grid-column: span 3
  }

  .activity-grid .activity-card:nth-child(5) {
    grid-column: 2 / span 3
  }

  .activity-grid .activity-card:nth-child(6) {
    grid-column: 5 / span 3
  }

  .activity-grid .activity-card:nth-child(7) {
    grid-column: 8 / span 3
  }
}

.offers {
  background: #ffffff;
  padding: 100px 20px;
  font-family: "Barlow", sans-serif;
}

.offers__container {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.offers__tag {
  color: #d10f15;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}

.offers__tag::before {
  content: "";
  width: 70px;
  height: 2px;
  background: #d10f15;
}

.offers__title {
  margin: 0;
  color: #111111;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
}

.offers__text {
  max-width: 860px;
  margin: 18px auto 42px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

.offers__carousel {
  position: relative;
  padding: 0 52px;
}

.offers__viewport {
  overflow: hidden;
  padding-top: 34px;
  margin-top: -34px;
}

.offers__grid {
  display: flex;
  gap: 0;
  transition: transform .9s ease;
  will-change: transform;
}

.offers__page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.offers__arrow {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 24, 39, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #334155;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  z-index: 2;
}

.offers__arrow:hover {
  border-color: #d10f15;
  color: #d10f15;
}

.offers__arrow:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.offers__arrow--prev {
  left: 4px
}

.offers__arrow--next {
  right: 4px
}

.offer-card {
  position: relative;
}

.offer-card__media {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 640px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
}

.offer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center;
  transition: transform .28s ease;
  will-change: transform;
  cursor: inherit;
}

.offer-card__media.is-zoomed {
  cursor: zoom-out;
  touch-action: none;
}

.offer-card__media.is-zoomed img {
  transition-duration: .12s;
}

.offer-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff675c;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  display: grid;
  place-content: center;
  line-height: 1;
}

.offer-card__badge small {
  font-size: 25px;
  font-weight: 700;
  margin-top: 4px;
}

.offer-card__body {
  width: calc(100% - 72px);
  margin: -56px auto 0;
  background: #fff;
  padding: 16px 18px 18px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.offer-card__country {
  margin: 0 0 8px;
  color: #d10f15;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
}

.offer-card h3 {
  margin: 0 0 10px;
  color: #10204f;
  font-size: 23px;
  line-height: 1.2;
}

.offer-card .btn.submit {
  width: 100%;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px;
  transition: all 0.2s ease;
}

.offer-card .btn.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.offer-card__price {
  margin: 0;
  color: #d10f15;
  font-size: 18px;
  font-weight: 700;
}

.offer-card__price del {
  color: #d10f15;
  opacity: .9;
  margin-right: 6px;
}

.offer-card__discount {
  margin: 8px 0 0;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width:1100px) {
  .offers__carousel {
    padding: 0 44px
  }

  .offers__page {
    grid-template-columns: 1fr
  }

  .offers__viewport {
    max-width: 500px;
    margin: 0 auto
  }

  .offer-card__media {
    width: 100%;
    aspect-ratio: auto;
    height: auto;
    max-height: none;
    background: #d1d5db;
    border-radius: 14px;
  }

  .offer-card__media img {
    height: auto;
    object-fit: contain;
  }

  .offer-card__body {
    width: calc(100% - 34px);
    margin: -42px auto 0;
    padding: 14px 14px 16px;
  }

  .offer-card h3 {
    font-size: 21px
  }
}

@media (max-width:640px) {
  .offers__carousel {
    padding: 0 36px
  }

  .offers__arrow {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
}

.tarifas {
  background: #ffffff;
  padding: 84px 20px 70px;
  font-family: "Barlow", sans-serif;
}

.tarifas h2 {
  margin: 0 auto 24px;
  max-width: 1180px;
  color: #111111;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  text-align: center;
}

.tarifas__kicker {
  margin: 0 auto 14px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d10f15;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.tarifas__kicker::before {
  content: "";
  width: 72px;
  height: 2px;
  background: #d10f15;
}

.tarifas__ticker {
  max-width: 1180px;
  margin: 22px auto 0;
  border: 1px solid rgba(209, 15, 21, .55);
  border-radius: 999px;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(209, 15, 21, .08);
  overflow: hidden;
}

.tarifas__tickerTrack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 10px 16px;
  color: #3b1b1d;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  animation: tarifasTickerPulse 2.8s ease-in-out infinite;
}

.tarifas__tickerTrack span[aria-hidden="true"] {
  opacity: .7;
}

@keyframes tarifasTickerPulse {

  0%,
  100% {
    opacity: .88;
    letter-spacing: .11em
  }

  50% {
    opacity: 1;
    letter-spacing: .14em
  }
}

@media (prefers-reduced-motion: reduce) {
  .tarifas__tickerTrack {
    animation: none;
  }
}

.tarifas .cards {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tarifas .card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
}

.tarifas .img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.tarifas .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tarifas .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ff6a5c;
  color: #fff;
  border-radius: 12px;
  padding: 8px 10px 6px;
  text-align: center;
  min-width: 64px;
  line-height: 1.05;
}

.tarifas .badge span {
  display: block;
  font-weight: 800;
  font-size: 16px;
}

.tarifas .badge small {
  font-size: 11px;
  opacity: .95;
}

.tarifas .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 14px 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .84));
}

.tarifas .overlay .sub {
  margin: 0 0 6px;
  color: #d7def0;
  font-size: 11px;
  letter-spacing: .06em;
}

.tarifas .overlay h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 800;
}

.tarifas .overlay a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #d10f15;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.tarifas .info {
  padding: 14px;
}

.tarifas .info p {
  margin: 0 0 6px;
  color: #6b7280;
  font-size: 11px;
  letter-spacing: .05em;
}

.tarifas .info h4 {
  margin: 0;
  color: #111111;
  font-size: 24px;
  line-height: 1.18;
}

.tarifas .info .tarifasDesc {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .02em;
  text-transform: none;
}

@media (max-width:1080px) {
  .tarifas .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:700px) {
  .tarifas {
    padding: 42px 16px 58px;
  }

  .tarifas .cards {
    grid-template-columns: 1fr
  }

  .tarifas .info h4 {
    font-size: 22px
  }
}

.offer-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.offer-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 12, .82);
}

.offer-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 1200px);
  margin: 2vh auto;
  background: #0c111b;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  padding: 12px 12px 14px;
}

.offer-lightbox__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .4);
  color: #fff;
  cursor: pointer;
}

.offer-lightbox__toolbar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 6px 0 10px;
}

.offer-lightbox__toolbar button {
  border: 1px solid rgba(255, 255, 255, .24);
  background: #161f2f;
  color: #fff;
  border-radius: 8px;
  min-width: 44px;
  height: 36px;
  cursor: pointer;
}

.offer-lightbox__viewport {
  height: min(82vh, 900px);
  overflow: auto;
  border-radius: 10px;
  background: #0a0f17;
  display: grid;
  place-items: center;
}

.offer-lightbox__viewport img {
  width: auto;
  max-width: 100%;
  max-height: none;
  transform-origin: center center;
  transition: transform .15s ease;
}

.pros {
  display: none;
  padding: 86px 16px 92px;
  background: #06080d;
  color: #e9eefb;
  font-family: "Montserrat", sans-serif;
}

.pros__container {
  max-width: 1240px;
}

.pros__kicker {
  margin: 0 0 10px;
  color: #f06a63;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 700;
}

.pros__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  max-width: 900px;
}

.pros__trust {
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pros__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #f3f7ff;
  font-size: 14px;
  font-weight: 600;
}

.pros__trustIcon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  line-height: 1;
}

.pros__trustIcon--gold {
  color: #facc15;
  background: rgba(250, 204, 21, .16);
}

.pros__trustIcon--violet {
  color: #a78bfa;
  background: rgba(167, 139, 250, .16);
}

.pros__trustIcon--amber {
  color: #f59e0b;
  background: rgba(245, 158, 11, .16);
}

.pros__trustIcon--sky {
  color: #38bdf8;
  background: rgba(56, 189, 248, .16);
}

.pros__desc {
  margin: 16px 0 28px;
  color: #c6d1e8;
  max-width: 900px;
  line-height: 1.65;
  font-size: 18px;
}

.pros__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pros__card {
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  border-radius: 18px;
  padding: 22px 20px;
}

.pros__card--highlights {
  background: linear-gradient(180deg, rgba(209, 15, 21, .14), rgba(255, 255, 255, .03));
  border-color: rgba(240, 106, 99, .28);
}

.pros__badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(209, 15, 21, .18);
  color: #ffd4d1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.pros__card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 800;
  color: #ffffff;
}

.pros__flag {
  display: inline-block;
  width: 22px;
  height: 15px;
  margin-right: 8px;
  vertical-align: -2px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, .25);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pros__flag--us {
  background-image: url("https://flagcdn.com/w40/us.png");
}

.pros__flag--ca {
  background-image: url("https://flagcdn.com/w40/ca.png");
}

.pros__list {
  margin: 0;
  padding-left: 18px;
  color: #d5dff1;
  line-height: 1.55;
  font-size: 16px;
}

.pros__list li {
  margin-bottom: 8px;
}

.pros__cta {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: #d10f15;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.pros__cta:hover,
.pros__cta:focus-visible {
  background: #f06a63;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(209, 15, 21, .25);
}

.pros__cta--alt {
  position: relative;
  background: linear-gradient(90deg, #d10f15 0%, #f06a63 100%);
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: 0 0 0 0 rgba(240, 106, 99, .45);
  animation: prosCtaPulse 2.2s ease-in-out infinite;
}

.pros__cta--alt:hover,
.pros__cta--alt:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(209, 15, 21, .35);
}

@keyframes prosCtaPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(240, 106, 99, .42)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(240, 106, 99, 0)
  }
}

@media (max-width:1080px) {
  .pros__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:760px) {
  .pros {
    padding: 70px 16px 76px
  }

  .pros__trust span {
    font-size: 13px
  }

  .pros__desc {
    font-size: 17px
  }

  .pros__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .pros__card--highlights {
    grid-column: 1 / -1
  }

  .pros__card h3 {
    font-size: 23px
  }
}

@media (max-width:560px) {
  .pros__grid {
    grid-template-columns: 1fr
  }

  .pros__card--highlights {
    grid-column: auto
  }
}

.holiday-offer {
  position: relative;
  overflow: hidden;
  padding: 60px 20px 50px;
  font-family: "Barlow", sans-serif;
  isolation: isolate;
}

.holiday-offer::before {
  content: "";
  position: absolute;
  inset: -120px 0;
  z-index: -1;
  background-image:
    linear-gradient(0deg, rgba(8, 10, 14, .78), rgba(8, 10, 14, .78)),
    var(--holiday-bg, none);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: translateY(var(--holiday-parallax-y, 0));
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
  pointer-events: none;
}

.holiday-offer__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.holiday-offer__tag {
  color: #d10f15;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.holiday-offer__title {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.05;
}

.holiday-offer__subtitle {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(19px, 1.95vw, 25px);
  font-weight: 600;
  max-width: 600px;
  line-height: 1.25;
}

.holiday-offer__form {
  max-width: 550px;
  border: 1px solid rgba(255, 255, 255, .45);
  display: grid;
  grid-template-columns: 1fr 200px;
  margin-bottom: 25px;
}

.holiday-offer__form input {
  border: 0;
  outline: none;
  background: transparent;
  color: #d7deea;
  font-size: 19px;
  padding: 18px 22px;
}

.holiday-offer__form input::placeholder {
  color: #9fb0c5;
}

.holiday-offer__form button {
  border: 0;
  background: #ff6a5c;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
}

.holiday-offer__text {
  max-width: 600px;
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.5;
}

.newsletter-status {
  max-width: 600px;
  min-height: 22px;
  margin: -16px 0 24px;
  color: #d7deea;
  font-size: 15px;
  font-weight: 600;
}

.newsletter-status.is-success {
  color: #86efac;
}

.newsletter-status.is-error {
  color: #fecaca;
}

.newsletter-status.is-muted {
  color: #d7deea;
}

@media (max-width:900px) {
  .holiday-offer__subtitle {
    font-size: 20px;
  }

  .holiday-offer__form {
    grid-template-columns: 1fr;
  }

  .holiday-offer__form button {
    min-height: 58px;
    font-size: 18px;
  }

  .holiday-offer__form input {
    font-size: 18px;
  }
}

@media (max-width:760px) {
  .dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .dest-card {
    height: 180px;
    border-radius: 16px;
  }

  .dest-info {
    left: 14px;
    bottom: 14px;
  }

  .dest-info h3 {
    font-size: 20px
  }
}

@media (max-width:520px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:760px) {
  .destinations--trending {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 72px;
    margin-bottom: 22px;
    padding-top: 8px;
  }

  .destinations--trending .dest-grid {
    display: flex;
    gap: 16px;
    padding: 10px 8px 22px 10px;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 18px), transparent 100%);
  }

  .destinations--trending .dest-card {
    flex-basis: min(82vw, 340px);
    height: 220px;
    margin-bottom: 0;
    border-radius: 18px;
  }

  .destinations--trending .dest-info {
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
  }

  .destinations--trending .dest-info h3 {
    font-size: 30px;
  }

  .destinations__controls {
    justify-content: flex-start;
    padding-left: 10px;
  }

  .trending-showcase {
    padding: 0;
  }

  .trending-showcase__panel {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    overflow: hidden;
  }

  .trending-showcase__top {
    inset: 18px 18px auto;
  }

  .trending-showcase__top p {
    max-width: 260px;
    font-size: 14px;
  }

  .trending-showcase__body {
    display: block;
    padding: 0;
  }

  .trending-showcase__nav {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 48px;
    border-radius: 14px;
    transform: translateY(-50%);
  }

  .trending-showcase__nav:hover {
    transform: translateY(calc(-50% - 2px));
  }

  .trending-showcase__nav--prev {
    left: 14px;
  }

  .trending-showcase__nav--next {
    right: 14px;
  }

  .trending-showcase__viewport {
    min-height: 100dvh;
  }

  .trending-showcase__card {
    width: min(72vw, 310px);
    height: min(56dvh, 470px);
    min-width: 0;
    min-height: 360px;
  }

  .trending-showcase__card[data-position="previous"],
  .trending-showcase__card[data-position="far-previous"] {
    transform: translate(-124%, -42%) rotateY(54deg) scale(.78);
  }

  .trending-showcase__card[data-position="next"],
  .trending-showcase__card[data-position="far-next"] {
    transform: translate(24%, -42%) rotateY(-54deg) scale(.78);
  }

  .trending-showcase__card[data-position="current"] {
    transform: translate(-50%, -42%) translateZ(80px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1);
  }

  .trending-showcase__content p {
    max-width: 260px;
    font-size: 13px;
  }

  .trending-showcase__content {
    bottom: 34px;
    left: 50%;
    right: auto;
    width: min(310px, 82vw);
  }
}

/* Index typography system */
:root {
  --idx-title-size: clamp(30px, 3.8vw, 50px);
  --idx-title-line: 1.08;
  --idx-subtitle-size: clamp(18px, 1.9vw, 24px);
  --idx-subtitle-line: 1.35;
  --idx-paragraph-size: clamp(15px, 1.25vw, 18px);
  --idx-paragraph-line: 1.6;
  --idx-card-title-size: clamp(21px, 2.05vw, 25px);
  --idx-card-title-line: 1.2;
}

.destinations h2,
.travel-activity .section-title,
.offers__title,
.tarifas h2,
.pros__title,
.holiday-offer__title {
  font-size: var(--idx-title-size);
  line-height: var(--idx-title-line);
}

.hero p,
.travel-activity .section-desc,
.offers__text,
.pros__desc,
.holiday-offer__subtitle {
  font-size: var(--idx-subtitle-size);
  line-height: var(--idx-subtitle-line);
}

.dest-info h3,
.activity-card h3,
.offer-card h3,
.tarifas .overlay h3,
.tarifas .info h4,
.pros__card h3 {
  font-size: var(--idx-card-title-size);
  line-height: var(--idx-card-title-line);
}

.callback .desc,
.dest-info p,
.activity-card p,
.holiday-offer__text,
.pros__list {
  font-size: var(--idx-paragraph-size);
  line-height: var(--idx-paragraph-line);
}

.owa-footer {
  margin-top: 0;
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #e6edf9;
  background: #2f3135;
  border-top: 0;
  position: relative;
  z-index: 0;
  box-shadow: 0 22px 0 #292b2f;
}

.owa-footer__main {
  padding: 38px 0 30px;
}

.owa-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.owa-footer h3 {
  margin: 0 0 16px;
  color: #f6f8fc;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
}

.owa-footer h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background: #d10f15;
  margin-right: 10px;
  vertical-align: -2px;
}

.owa-footer p {
  margin: 0;
  color: #d2d8e2;
  font-size: 15px;
  line-height: 1.65;
}

.owa-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  order: 4;
  justify-content: flex-start;
}

.owa-footer__badges span {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #f3f7ff;
}

.owa-footer__trust-logos {
  width: 100%;
  margin-top: 14px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  order: 3;
}

.owa-footer__trust-logo {
  min-height: 34px;
  padding: 5px 8px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, .14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
  box-sizing: border-box;
}

.owa-footer__trust-logo img,
.owa-footer__trust-logo svg {
  display: block;
  width: auto;
  max-width: 158px;
  max-height: 28px;
  object-fit: contain;
}

.owa-footer__trust-logo--rnt {
  min-width: 92px;
  width: 92px;
  height: 34px;
  padding: 5px 8px;
  display: grid;
  place-items: center;
}

.owa-footer__trust-logo--cch {
  min-width: 156px;
  width: 156px;
  height: 34px;
  padding: 5px 8px;
}

.owa-footer__trust-logo--cch img,
.owa-footer__trust-logo--cch svg {
  width: 108px;
  max-width: 108px;
  height: auto;
  max-height: 24px;
}

.owa-footer__trust-logo--rnt svg {
  width: 68px;
  max-width: 68px;
  height: auto;
  max-height: 22px;
  margin: 0 auto;
}

.owa-footer__list,
.owa-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.owa-footer__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e5ecf8;
  font-size: 15px;
  line-height: 1.5;
}

.owa-footer__list i {
  color: #ff6a5c;
  font-size: 17px;
}

.owa-footer__links a {
  color: #e3ebf9;
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
}

.owa-footer__links a:hover {
  color: #ff8c82;
}

.owa-footer__subscribe {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.owa-footer__subscribe input {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 0;
  background: #f2f4f8;
  color: #1f2937;
  padding: 12px 14px;
  font-size: 14px;
}

.owa-footer__subscribe button {
  border: 0;
  background: #ff6a5c;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 14px;
  cursor: pointer;
  text-transform: uppercase;
}

.owa-footer__subscribe button:hover {
  background: #ff5a4b;
}

.owa-footer__payment-logos {
  width: 100%;
  margin-top: 8px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.owa-footer__payment-message {
  width: 100%;
  margin: 12px 0 0 !important;
  color: #f3f4f6 !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  letter-spacing: .02em;
}

.owa-footer__payment-message i {
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
}

.owa-footer__payment-logo {
  height: 30px;
  min-width: 44px;
  padding: 5px 7px;
  border-radius: 7px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, .14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.owa-footer__payment-logo img,
.owa-footer__payment-logo svg {
  display: block;
  max-width: 100%;
  max-height: 18px;
  width: auto;
  object-fit: contain;
}

.owa-footer__payment-logo--wide {
  min-width: 86px;
}

.rnt-lookup-modal[hidden] {
  display: none;
}

body.rnt-modal-open {
  overflow: hidden;
}

.rnt-lookup-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.rnt-lookup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .58);
  backdrop-filter: blur(3px);
}

.rnt-lookup-modal__dialog {
  position: relative;
  width: min(100%, 520px);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .26);
  color: #1f2937;
}

.rnt-lookup-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.rnt-lookup-modal__dialog h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
}

.rnt-lookup-modal__dialog p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.55;
}

.rnt-lookup-modal__data {
  margin: 20px 0;
  display: grid;
  gap: 10px;
}

.rnt-lookup-modal__data div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f8fafc;
}

.rnt-lookup-modal__data dt {
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

.rnt-lookup-modal__data dd {
  margin: 0;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
}

.rnt-lookup-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.rnt-lookup-modal__primary,
.rnt-lookup-modal__secondary {
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.rnt-lookup-modal__primary {
  border: 0;
  background: #ef4444;
  color: #ffffff;
}

.rnt-lookup-modal__secondary {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
}

.rnt-lookup-modal__status {
  min-height: 20px;
  margin-top: 12px !important;
  color: #059669 !important;
  font-size: 13px !important;
  font-weight: 700;
}

@media (max-width: 560px) {
  .rnt-lookup-modal__dialog {
    padding: 22px 18px;
  }

  .rnt-lookup-modal__data div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .rnt-lookup-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.owa-footer .newsletter-status {
  min-height: 0;
  margin: 2px 0 0;
  font-size: 14px;
}

.owa-footer__grid>section:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.owa-footer__grid>section:first-child h3,
.owa-footer__grid>section:first-child p,
.owa-footer__grid>section:first-child .owa-footer__badges,
.owa-footer__grid>section:first-child .owa-footer__trust-logos {
  width: 100%;
}

.owa-footer__grid>section:first-child h3 {
  order: 1;
}

.owa-footer__grid>section:first-child p {
  order: 2;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  overflow-wrap: break-word;
  word-spacing: 0;
  letter-spacing: 0;
  font-size: 15px;
  line-height: 1.65;
}

.owa-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #292b2f;
}

.owa-footer__bottomRow {
  max-width: 1320px;
  display: grid;
  grid-template-columns: max-content 160px max-content;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 10px 0;
}

.owa-footer__miniLinks {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
}

.owa-footer__miniLinks a {
  color: #d7dee8;
  font-size: 12px;
}

.owa-footer__miniLinks a:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: rgba(255, 255, 255, .35);
}

.owa-footer__brandLogo {
  width: 160px;
  height: 50px;
  display: block;
  justify-self: center;
  background: url("/static/img/Logo%20Owa.png") center center / contain no-repeat;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.owa-footer__bottom p {
  margin: 0;
  justify-self: end;
  text-align: right;
  color: #d2d8e2;
  font-size: 12px;
  line-height: 1.45;
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 1280px) {
  .owa-footer__bottomRow {
    grid-template-columns: 1fr;
    padding: 14px 0;
    text-align: center;
  }

  .owa-footer__miniLinks {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .owa-footer__bottom p {
    justify-self: center;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 1100px) {
  .owa-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .owa-footer {
    box-shadow: none;
  }

  .owa-footer__main {
    display: none;
  }

  .owa-footer__bottom {
    background: #292b2f;
  }

  .owa-footer__bottomRow {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 16px 22px;
  }

  .owa-footer__miniLinks {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    justify-items: center;
    white-space: normal;
  }

  .owa-footer__miniLinks a {
    font-size: 12px;
    line-height: 1.25;
  }

  .owa-footer__miniLinks a:not(:last-child)::after {
    content: none;
  }

  .owa-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .owa-footer h3 {
    font-size: 20px;
  }

  .owa-footer p,
  .owa-footer__list li,
  .owa-footer__links a {
    font-size: 15px;
  }

  .owa-footer__brandLogo {
    width: 128px;
    height: 40px;
  }

  .owa-footer__bottom p {
    max-width: 300px;
    font-size: 11.5px;
    line-height: 1.4;
    text-align: center;
  }

  .owa-footer__grid>section:first-child {
    align-items: center;
  }

  .owa-chat-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

.owa-chat-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #e30613;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 18px 40px rgba(227, 6, 19, 0.34);
  cursor: pointer;
  z-index: 60;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  isolation: isolate;
}

.owa-chat-fab svg {
  width: 44px;
  height: 44px;
  display: block;
  overflow: visible;
}

.owa-chat-fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 48px rgba(227, 6, 19, 0.44);
}

.owa-chat-fab__pulse {
  fill: rgba(255, 255, 255, 0.12);
  transform-origin: center;
  animation: owaChatFabPulse 2.8s ease-in-out infinite;
}

.owa-chat-fab__bot {
  animation: owaChatFabFloat 3.1s ease-in-out infinite;
}

.owa-chat-fab__head {
  fill: #fff;
}

.owa-chat-fab__eye,
.owa-chat-fab__antenna-dot {
  fill: #ff584c;
}

.owa-chat-fab__mouth,
.owa-chat-fab__antenna,
.owa-chat-fab__arm {
  fill: none;
  stroke: #ff584c;
  stroke-linecap: round;
  stroke-width: 2.4;
}

.owa-chat-fab__eye {
  transform-origin: center;
  animation: owaChatFabBlink 4.6s ease-in-out infinite;
}

@keyframes owaChatFabPulse {

  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.18;
  }
}

@keyframes owaChatFabFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1.5px);
  }
}

@keyframes owaChatFabBlink {

  0%,
  44%,
  48%,
  100% {
    transform: scaleY(1);
  }

  46% {
    transform: scaleY(0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .callback__video {
    animation: none;
  }

  .callback__image {
    animation: none;
  }

  .owa-chat-fab,
  .owa-chat-fab__pulse,
  .owa-chat-fab__bot,
  .owa-chat-fab__eye {
    animation: none;
    transition: none;
    transform: none;
  }
}

.owa-chat-panel {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 380px;
  max-width: calc(100vw - 28px);
  height: 620px;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
  z-index: 59;
}

.owa-chat-panel[hidden] {
  display: none;
}

.owa-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 16px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.owa-chat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.owa-chat-title__logo {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  background: url("/static/img/logo.png") center/contain no-repeat;
}

.owa-chat-header strong {
  display: block;
  color: #111827;
  font-size: 16px;
}

.owa-chat-header p {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 12px;
}

.owa-chat-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.owa-chat-header button {
  border: 0;
  background: transparent;
  color: #111827;
  cursor: pointer;
}

.owa-chat-actions > button {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 22px;
  transition: background 0.2s ease, color 0.2s ease;
}

.owa-chat-actions > button:hover {
  background: #f3f4f6;
  color: #ef4444;
}

.owa-chat-actions i {
  font-size: 18px;
  line-height: 1;
}

.owa-chat-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 34px;
  min-width: 150px;
  padding: 6px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
  z-index: 2;
}

.owa-chat-menu[hidden] {
  display: none;
}

.owa-chat-menu button {
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.owa-chat-menu button:hover {
  background: #f3f4f6;
}

.owa-chat-menu button + button {
  margin-top: 2px;
}

.owa-chat-menu button:last-child {
  color: #dc2626;
}

.owa-chat-menu button:last-child:hover {
  background: #fef2f2;
}

.owa-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f8fafc;
}

.owa-chat-msg {
  display: flex;
  margin-bottom: 12px;
  animation: owaChatMsgIn 0.3s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

@keyframes owaChatMsgIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.owa-chat-msg--user {
  justify-content: flex-end;
}

.owa-chat-bubble {
  max-width: 86%;
  padding: 11px 13px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.owa-chat-msg--bot .owa-chat-bubble {
  color: #111827;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-bottom-left-radius: 6px;
}

.owa-chat-typing {
  display: flex;
  gap: 4px;
  padding: 11px 16px;
  align-items: center;
  min-height: 38px;
}

.owa-chat-typing__label {
  margin-left: 6px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}

.owa-chat-typing span {
  width: 6px;
  height: 6px;
  background: #9ca3af;
  border-radius: 50%;
  display: inline-block;
  animation: owaChatTypingDot 1.4s infinite ease-in-out both;
}

.owa-chat-typing span:nth-child(1) {
  animation-delay: -0.32s;
}

.owa-chat-typing span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes owaChatTypingDot {

  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.owa-chat-msg--user .owa-chat-bubble {
  color: #fff;
  background: linear-gradient(135deg, #e30613, #ff4f4b);
  border-bottom-right-radius: 6px;
}

.owa-chat-msg--quick-actions {
  margin-top: -2px;
}

.owa-chat-quick-actions {
  width: min(310px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.owa-chat-quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.owa-chat-quick-action:hover {
  border-color: #ef4444;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.owa-chat-quick-action i {
  color: #ef4444;
  font-size: 15px;
}

.owa-chat-mapcard {
  width: min(290px, 100%);
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  text-decoration: none;
  color: #111827;
}

.owa-chat-mapcard__thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(180deg, rgba(227, 6, 19, 0.34), rgba(58, 30, 44, 0.9));
  color: #fff;
}

.owa-chat-mapcard__thumb--whatsapp {
  background: linear-gradient(180deg, #128c7e, #075e54);
}

.owa-chat-mapcard--whatsapp .owa-chat-mapcard__cta {
  color: #075e54;
}

.owa-chat-mapcard__thumb i {
  font-size: 24px;
}

.owa-chat-mapcard__thumb span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.owa-chat-mapcard__body {
  padding: 12px 12px 11px;
}

.owa-chat-mapcard__body strong {
  display: block;
  font-size: 14px;
  color: #111827;
}

.owa-chat-mapcard__body p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #6b7280;
}

.owa-chat-mapcard__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.owa-chat-mapcard__chip {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-size: 11px;
  color: #4b5563;
}

.owa-chat-mapcard__cta {
  display: inline-flex;
  margin-top: 10px;
  color: #ff4f4b;
  font-size: 12px;
  font-weight: 700;
}

.owa-chat-results {
  width: min(310px, 100%);
  display: grid;
  gap: 10px;
}

.owa-chat-results__title {
  padding: 0 2px;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.owa-chat-flight-option {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
}

.owa-chat-flight-option--selected {
  border-color: #ef4444;
  background: #fef2f2;
}

.owa-chat-flight-option__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.owa-chat-flight-option__top strong {
  font-size: 14px;
  color: #111827;
}

.owa-chat-flight-option__cabin {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.16);
  border: 1px solid rgba(255, 79, 75, 0.34);
  color: #ffb3ad;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.owa-chat-flight-option p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #4b5563;
}

.owa-chat-flight-option__details {
  margin-top: 4px !important;
  color: #6b7280 !important;
}

.owa-chat-flight-option__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.owa-chat-flight-option__price {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}

.owa-chat-flight-option__button {
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #e30613, #ff4f4b);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.owa-chat-flight-option__button:hover {
  transform: translateY(-1px);
}

.owa-chat-flight-option__button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.owa-chat-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.owa-chat-input textarea {
  min-height: 56px;
  max-height: 120px;
  resize: vertical;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font: inherit;
}

.owa-chat-input textarea::placeholder {
  color: #9ca3af;
}

.owa-chat-input button {
  align-self: end;
  min-width: 92px;
  height: 56px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #e30613, #ff4f4b);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 640px) {
  .owa-chat-fab {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .owa-chat-panel {
    right: 12px;
    left: 12px;
    top: calc(70px + env(safe-area-inset-top) + 12px);
    bottom: calc(78px + env(safe-area-inset-bottom));
    width: auto;
    max-width: none;
    height: auto;
    max-height: none;
    border-radius: 20px;
  }

  .owa-chat-header {
    padding: 14px 14px 12px;
  }

  .owa-chat-input {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .owa-chat-input textarea {
    min-height: 48px;
    max-height: 96px;
  }

  .owa-chat-input button {
    width: 100%;
    height: 48px;
  }
}

/* Scroll reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  filter: saturate(.94);
  transition:
    opacity .62s cubic-bezier(.22, .61, .36, 1),
    transform .74s cubic-bezier(.22, .61, .36, 1),
    filter .62s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.owa-footer.reveal-on-scroll {
  transform: translateY(-26px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .destinations--trending.reveal-on-scroll .destinations__header {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Flight Card Redesign --- */
.flightCard { display: flex; flex-direction: column; background-color: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); margin-bottom: 16px; overflow: hidden; transition: box-shadow 0.2s ease, border-color 0.2s ease; }
@media (min-width: 768px) { .flightCard { flex-direction: row; } }
.flightCard:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); border-color: #cbd5e1; }
.flightCard__main { flex: 1; padding: 20px; display: flex; flex-direction: column; }
.flightCard__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.flightCard__airline { display: flex; align-items: center; gap: 12px; }
.flightCard__airline img { height: 24px; width: auto; object-fit: contain; }
.flightCard__airlineName { font-weight: 700; color: #0f172a; }
.flightCard__badges { display: flex; gap: 8px; }
.flightCard__badges .pill,
.flightCard__badges .cabin-badge {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}
.flightTimeline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.flightTimeline__point { display: flex; flex-direction: column; }
.flightTimeline__point--left { text-align: left; }
.flightTimeline__point--right { text-align: right; }
.flightTimeline__time { font-size: 20px; font-weight: 900; color: #0f172a; line-height: 1.2; }
.flightTimeline__airport { font-size: 14px; color: #64748b; }
.flightTimeline__center { flex: 1; margin: 0 24px; display: flex; flex-direction: column; align-items: center; }
.flightTimeline__duration { font-size: 12px; font-weight: 500; color: #64748b; margin-bottom: 4px; }
.flightTimeline__line { width: 100%; display: flex; align-items: center; }
.flightTimeline__dot { width: 6px; height: 6px; border-radius: 50%; background-color: #cbd5e1; }
.flightTimeline__stroke { flex: 1; height: 1px; background-color: #cbd5e1; position: relative; }
.flightTimeline__stops { font-size: 12px; font-weight: 600; color: #10b981; margin-top: 4px; }
.flightTimeline__stops--has-stops { color: #f59e0b; }
.flightCard__toggleBtn { margin-top: 8px; font-size: 14px; color: #2563eb; font-weight: 500; background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; padding: 0; }
.flightCard__toggleBtn:hover { text-decoration: underline; }
.flightCard__divider { width: 100%; height: 1px; background-color: #e2e8f0; margin: 0; }
@media (min-width: 768px) { .flightCard__divider { width: 1px; height: auto; margin: 20px 0; } }
.flightCard__aside { width: 100%; padding: 20px; background-color: #f8fafc; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; text-align: right; }
@media (min-width: 768px) { .flightCard__aside { width: 250px; align-items: center; text-align: center; } }
.flightCard__priceBlock { margin-bottom: 12px; display: flex; flex-direction: column; align-items: flex-end; }
@media (min-width: 768px) { .flightCard__priceBlock { align-items: center; } }
.flightCard__tags { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.flightCard__tags .tag { white-space: nowrap; }
.flightCard__price { font-size: 24px; font-weight: 900; color: #0f172a; line-height: 1; }
.flightCard__currency { font-size: 14px; font-weight: 400; color: #64748b; }
.flightCard__priceLabel { font-size: 12px; color: #64748b; margin-top: 4px; }
.flightCard__cta { width: 100%; background-color: #ef4444; color: #ffffff; font-weight: 700; padding: 12px 16px; border-radius: 8px; border: none; cursor: pointer; transition: background-color 0.2s ease; }
.flightCard__cta:hover { background-color: #dc2626; }
.flightCard__details { width: 100%; background-color: #f8fafc; border-top: 1px solid #e2e8f0; padding: 20px; }
.flightCard__details.hidden { display: none; }
.flightCard__expiry { margin-bottom: 12px; color: #64748b; font-size: 12px; }
.flightCard__offerCode { color: #94a3b8; font-size: 12px; }
.flightCard__routeMap { margin-top: 12px; }
.flightLoadMore { display: flex; justify-content: center; margin: 18px 0 4px; }
.flightLoadMore__btn { width: min(100%, 400px); display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: #ffffff; border: 1px solid #d1d5db; color: #4f46e5; border-radius: 999px; box-shadow: 0 1px 3px rgba(15, 23, 42, 0.16); font-weight: 600; padding: 14px 22px; cursor: pointer; transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; }
.flightLoadMore__btn:hover { border-color: #c7d2fe; box-shadow: 0 4px 10px rgba(15, 23, 42, 0.16); color: #4338ca; }
