.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.topbar-phone {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(16, 24, 40, 0.08);
  min-height: 54px;
  white-space: nowrap;
}

.topbar-phone-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: rgba(16, 24, 40, 0.6);
}

.topbar-phone-text {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.topbar-phone-label {
  font-size: 14px;
  color: rgba(16, 24, 40, 0.68);
  font-weight: 500;
}

.topbar-phone-number {
  font-weight: 500;
  letter-spacing: -0.3px;
}

.product-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px var(--container-pad) 10px;
  max-width: var(--container-max);
  margin: 0 auto;
  overflow: auto hidden;
  scrollbar-width: none;
}

.product-nav::-webkit-scrollbar {
  display: none;
}

.product-nav__item {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 78px;
  padding: 8px 0 10px;
  border-radius: 0;
  color: rgba(16, 24, 40, 0.62);
  transition: transform 120ms ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.product-nav__item:hover {
  background: transparent;
}

.product-nav__item:active {
  transform: translateY(1px);
}

.product-nav__item.is-active {
  color: var(--brand-500);
}

.product-nav__item.is-active::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 3px;
  background: var(--brand-500);
  border-radius: 999px;
}

.product-nav__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(16, 24, 40, 0.06);
  color: rgba(16, 24, 40, 0.62);
  position: relative;
}

.product-nav__item.is-active .product-nav__icon {
  background: var(--brand-500);
  color: var(--color-white);
}

.product-nav__badge {
  position: absolute;
  top: -7px;
  right: -10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #b57611;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.product-nav__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.1px;
}

.hero {
  background: #11b2d4;
}

.hero__inner {
  padding: 14px 0 18px;
}

.hero__banner {
  height: clamp(110px, 22vw, 150px);
  border-radius: 10px;
  background: url("../images/banner.png") center / cover no-repeat;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.hero__title {
  color: var(--color-white);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.trip-controls {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.trip-tabs {
  display: flex;
  gap: 12px;
  overflow: auto hidden;
  scrollbar-width: none;
  padding-bottom: 2px;
  position: relative;
}

.trip-tabs::-webkit-scrollbar {
  display: none;
}

.trip-tabs::after {
  content: "";
  width: 2px;
  height: 34px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  flex: 0 0 auto;
  margin-left: 6px;
  align-self: center;
}

.tab-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: var(--color-white);
  font-weight: 500;
  background: transparent;
  transition: background-color 120ms ease, border-color 120ms ease;
}

.tab-pill[aria-selected="true"] {
  background: var(--color-white);
  color: var(--brand-500);
  border-color: var(--color-white);
}

.bundle-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: var(--brand-500);
  background: var(--color-white);
  min-height: 46px;
  position: relative;
}

.bundle-pill__tag {
  position: absolute;
  top: -11px;
  left: 18px;
  background: #19b17e;
  color: #ffffff;
  border: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.bundle-pill__line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bundle-pill__icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-500);
}

.bundle-pill__text {
  font-weight: 500;
  letter-spacing: -0.1px;
}

.bundle-pill.is-active {
  background: rgba(255, 255, 255, 0.92);
}

.segment-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 10px 0 10px;
}

.dates-single {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #cfd3da;
  background: var(--color-white);
}

.dates-single .field {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.search-actions {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-3);
}

.search-submit {
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  background: #19c37d;
  color: var(--color-white);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.search-submit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.search-submit__icon svg {
  display: block;
}

.rooms-row {
  display: grid;
  gap: 10px;
}

.rooms-row__label {
  font-size: 12px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 0 6px;
}

.rooms-row__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #cfd3da;
  background: var(--color-white);
}

.rooms-row__item {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  font-weight: 500;
  color: rgba(16, 24, 40, 0.82);
  font-size: 18px;
}

.rooms-row__item + .rooms-row__item {
  border-left: 2px solid #cfd3da;
}

.rooms-row__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: rgba(16, 24, 40, 0.64);
}

.rooms-row__value {
  font-weight: 500;
}

.media-chip {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 12px;
  border-radius: 6px;
  background: rgba(16, 24, 40, 0.8);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.search-card {
  margin-top: 14px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border: 0;
}

.search-grid {
  display: grid;
  gap: 14px;
}

.search-panel {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 4px;
  padding: 12px 14px 12px 52px;
  border-radius: 10px;
  border: 1px solid #cfd3da;
  background: var(--color-white);
  min-width: 0;
  position: relative;
}

.field__label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(16, 24, 40, 0.55);
  font-weight: 500;
}

.field__input {
  width: 100%;
  border: 0;
  padding: 0;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  min-width: 0;
  background: transparent;
}

.field__hint {
  font-size: 16px;
  color: rgba(16, 24, 40, 0.6);
  font-weight: 400;
  font-style: italic;
}

.field__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}

.field__icon--origin {
  border-radius: 999px;
  border: 2px solid rgba(16, 24, 40, 0.72);
  width: 18px;
  height: 18px;
  place-self: center;
}

.field__icon--destination {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(16, 24, 40, 0.72);
  position: relative;
}

.field__icon--destination::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.72);
}

.field__icon--calendar {
  width: 22px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid rgba(16, 24, 40, 0.6);
  position: relative;
}

.field__icon--calendar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  height: 2px;
  background: rgba(16, 24, 40, 0.6);
}

.field__icon--passengers {
  width: 24px;
  height: 24px;
  position: relative;
  border: 0;
}

.field__icon--passengers::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(16, 24, 40, 0.62);
  background: transparent;
}

.field__icon--passengers::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 13px;
  transform: translateX(-50%);
  width: 18px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(16, 24, 40, 0.62);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-bottom-right-radius: 999px;
}

.row-origin-dest {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.origin-dest {
  display: grid;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  border: 0;
  position: relative;
}

.origin-dest::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 34px;
  bottom: 34px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(16, 24, 40, 0.32) 0,
    rgba(16, 24, 40, 0.32) 4px,
    transparent 4px,
    transparent 8px
  );
  pointer-events: none;
  z-index: 1;
}

.origin-dest .field {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding-right: 56px;
}

.origin-dest .field + .field {
  border-top: 1px solid #737373;
}

.swap-button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid #737373;
  background: var(--color-white);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform 120ms ease, background-color 120ms ease;
}

.swap-button:hover {
  background: rgba(0, 167, 199, 0.06);
}

.swap-button:active {
  transform: translateY(1px);
}

.dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 0;
  background: var(--color-white);
}

.dates-grid .field {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.dates-grid .field + .field {
  border-left: 1px solid #737373;
}

.dates-grid .field__label {
  color: rgba(16, 24, 40, 0.55);
}

.dates-grid .field:nth-child(2) .field__label {
  visibility: hidden;
}

.dates-grid .field__icon {
  left: 16px;
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 4px;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.switch-row__label {
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0;
  font-size: 15px;
}

.switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  transition: background-color 120ms ease;
  flex: 0 0 auto;
}

.switch__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--color-white);
  transition: transform 120ms ease;
  box-shadow: 0 2px 4px rgba(16, 24, 40, 0.18);
}

.switch[data-state="on"] {
  background: #0ea47a;
}

.switch[data-state="on"] .switch__thumb {
  transform: translateX(20px);
}

.search-actions {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-3);
}

.search-actions__cta {
  width: 100%;
}

.offer-grid {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-5);
}

.offer-card {
  background: var(--color-surface);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.12);
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.offer-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.offer-card--link:hover {
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.16);
}

.offer-card--link:focus-visible {
  outline: 3px solid rgba(17, 146, 194, 0.65);
  outline-offset: 3px;
}

.expandable {
  height: 0;
  overflow: hidden;
  transition: height 220ms ease;
}

.expandable.is-open {
  overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
  .expandable {
    transition: none;
  }
}

.offer-card__media {
  height: 260px;
  position: relative;
  background: #dfe7ef;
}

.offer-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 6px;
  background: rgba(16, 24, 40, 0.8);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.offer-card__body {
  padding: 18px 18px 20px;
  display: grid;
  gap: 14px;
}

.offer-meta {
  display: grid;
  gap: 10px;
}

.offer-meta__kicker {
  font-size: 13px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(16, 24, 40, 0.55);
  font-weight: 500;
}

.offer-meta__title {
  font-size: 26px;
  letter-spacing: -0.6px;
  font-weight: 700;
}

.offer-meta__lines {
  display: grid;
  gap: 6px;
  color: rgba(16, 24, 40, 0.72);
  font-weight: 400;
  font-size: 18px;
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(16, 24, 40, 0.08);
  color: rgba(16, 24, 40, 0.72);
  font-weight: 500;
  font-size: 14px;
}

.rating-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  background: #0b8f79;
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
}

.stars {
  color: #b86a00;
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1;
}

.deal-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(31, 225, 166, 0.2);
  color: rgba(16, 24, 40, 0.85);
  font-weight: 500;
  width: fit-content;
}

.offer-divider {
  height: 1px;
  background: var(--color-border);
}

.price-row {
  display: grid;
  gap: 10px;
}

.price-row__label {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 400;
}

.price-row__value {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 300;
  letter-spacing: -0.6px;
}

.price-row__currency {
  font-size: 18px;
  color: var(--color-text);
  font-weight: 300;
}

.price-row__amount {
  font-size: 44px;
  line-height: 1;
  font-weight: 300;
}

.price-row__ref {
  color: var(--color-muted);
  font-weight: 400;
  font-size: 14px;
}

.logos-grid {
  margin-top: var(--space-6);
  display: flex;
  gap: 16px;
  overflow: auto hidden;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.logos-grid::-webkit-scrollbar {
  display: none;
}

.logo-tile {
  background: var(--color-surface);
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
  padding: 26px 18px;
  display: grid;
  place-items: center;
  min-height: 140px;
  flex: 0 0 220px;
  cursor: pointer;
}

.logo-tile__img {
  max-width: 90%;
  max-height: 112px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.content-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.content-card__title {
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 700;
  color: #3a3a3a;
}

.content-card__body {
  margin-top: 18px;
  display: grid;
  gap: 22px;
  font-size: 20px;
  line-height: 1.55;
  color: #3f444c;
  font-weight: 400;
}

.content-link {
  color: #00a7ff;
  font-weight: 500;
}

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

.faq-card {
  background: var(--color-white);
  border-radius: 14px;
  border: 2px solid #d8dce3;
  padding: 26px 22px;
}

.faq-card__title {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.6px;
  font-weight: 700;
  color: #3a3a3a;
}

.faq-card__text {
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.55;
  color: #3f444c;
  font-weight: 400;
}

@media (max-width: 520px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.links-panel {
  background: var(--color-white);
  border-radius: 16px;
  border: 2px solid #d8dce3;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.links-panel__title {
  font-weight: 700;
  color: rgba(16, 24, 40, 0.88);
  line-height: 1.05;
  font-size: 20px;
  margin-bottom: 14px;
}

.links-panel__link {
  display: block;
  color: #00a7ff;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  padding: 6px 0;
}

.call-banner {
  border-radius: 10px;
  background: #1aa8e8;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  color: var(--color-white);
}

.call-banner__title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.call-banner__subtitle {
  margin-top: 2px;
  font-weight: 500;
  font-size: 12px;
  opacity: 0.95;
}

.call-banner__cta {
  background: #25c36a;
  color: #0b3a1f;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 14px;
  white-space: nowrap;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.newsletter {
  background: var(--color-white);
  border-radius: 16px;
  border: 2px solid #d8dce3;
  padding: 26px 22px;
}

.newsletter__grid {
  display: grid;
  gap: 18px;
}

.newsletter__title {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.6px;
  font-weight: 700;
  color: #3a3a3a;
}

.newsletter__subtitle {
  margin-top: 10px;
  font-weight: 500;
  font-size: 18px;
  color: #3f444c;
}

.newsletter__link {
  display: inline-block;
  margin-top: 10px;
  color: #00a7ff;
  font-weight: 500;
}

.newsletter__form {
  display: grid;
  gap: 14px;
}

.newsletter__input {
  height: 56px;
  border-radius: 8px;
  border: 2px solid #d8dce3;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(16, 24, 40, 0.88);
}

.newsletter__input::placeholder {
  color: rgba(16, 24, 40, 0.55);
  font-style: italic;
}

.newsletter__button {
  height: 48px;
  border-radius: 999px;
  background: var(--brand-500);
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
}

.site-footer {
  padding: 26px 0 40px;
  background: #ffffff;
  border-top: 1px solid #e9edf2;
}

.footer-divider {
  height: 1px;
  background: #e9edf2;
  margin: 8px 0 22px;
}

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

.footer-col__title {
  font-weight: 700;
  color: rgba(16, 24, 40, 0.72);
  margin-bottom: 10px;
}

.footer-link {
  display: block;
  padding: 6px 0;
  color: rgba(16, 24, 40, 0.6);
  font-weight: 500;
}

.footer-link--muted {
  opacity: 0.45;
}

.footer-iata {
  padding-top: 34px;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: left;
}

.footer-iata__img {
  width: 120px;
  height: auto;
}

.footer-iata__text {
  max-width: 520px;
  color: rgba(16, 24, 40, 0.62);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .links-panel {
    grid-template-columns: 1fr;
  }

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

.popover {
  position: absolute;
  z-index: 60;
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.18);
}

.popover__list {
  max-height: 300px;
  overflow: auto;
  padding: 8px;
}

.popover__option {
  width: 100%;
  text-align: left;
  padding: 12px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: rgba(16, 24, 40, 0.9);
}

.popover__option:hover,
.popover__option.is-active {
  background: rgba(0, 167, 199, 0.1);
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px 8px;
}

.calendar__title {
  font-weight: 500;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  color: rgba(16, 24, 40, 0.92);
}

.calendar__nav {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: rgba(16, 24, 40, 0.04);
  font-size: 20px;
  font-weight: 500;
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  padding: 0 12px 8px;
}

.calendar__weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: rgba(16, 24, 40, 0.55);
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  padding: 0 12px 12px;
}

.calendar__cell {
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: rgba(16, 24, 40, 0.02);
  font-weight: 900;
}

.calendar__cell:disabled {
  opacity: 0.35;
}

.calendar__cell.is-selected {
  background: var(--brand-500);
  border-color: var(--brand-500);
  color: var(--color-white);
}

.calendar__cell--empty {
  border: 0;
  background: transparent;
}

.passengers__title {
  padding: 14px 14px 8px;
  font-weight: 900;
  font-size: 18px;
  color: rgba(16, 24, 40, 0.92);
}

.passengers__rows {
  display: grid;
  gap: 10px;
  padding: 0 14px 12px;
}

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

.passengers__left {
  display: grid;
  gap: 2px;
}

.passengers__label {
  font-weight: 900;
  color: rgba(16, 24, 40, 0.9);
}

.passengers__hint {
  font-size: 13px;
  color: rgba(16, 24, 40, 0.55);
  font-weight: 700;
}

.passengers__right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.stepper__btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: rgba(16, 24, 40, 0.04);
  font-weight: 900;
  font-size: 18px;
}

.stepper__btn:disabled {
  opacity: 0.35;
}

.stepper__value {
  min-width: 18px;
  text-align: center;
  font-weight: 900;
  color: rgba(16, 24, 40, 0.9);
}

.passengers__divider {
  height: 1px;
  background: rgba(16, 24, 40, 0.12);
  margin: 0 14px;
}

.passengers__cabin {
  padding: 12px 14px 0;
  display: grid;
  gap: 8px;
}

.passengers__select {
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(16, 24, 40, 0.14);
  padding: 0 12px;
  font-weight: 800;
  background: var(--color-white);
}

.passengers__actions {
  padding: 14px;
}

.passengers__done {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  background: var(--brand-500);
  color: var(--color-white);
  font-weight: 900;
}

/* Header Right items and User Menu Button styles */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-link {
  display: none;
  align-items: center;
  gap: 8px;
  color: rgba(16, 24, 40, 0.72);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 120ms ease;
}
.header-link:hover {
  color: var(--brand-600);
}
.header-link svg {
  color: rgba(16, 24, 40, 0.6);
  flex-shrink: 0;
}
.user-menu-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d7dbe2;
  color: rgba(16, 24, 40, 0.72);
  cursor: pointer;
  min-height: 40px;
  transition: border-color 120ms ease, background-color 120ms ease;
}
.user-menu-btn:hover {
  background: #f8f9fa;
  border-color: #c0c4cc;
}
.user-avatar-icon {
  color: rgba(16, 24, 40, 0.5);
  display: inline-flex;
  align-items: center;
}
.user-menu-text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.user-hamburger-icon {
  color: rgba(16, 24, 40, 0.5);
  display: inline-flex;
  align-items: center;
}
.topbar-phone {
  background: rgba(16, 24, 40, 0.05);
  border-radius: 999px;
  padding: 6px 14px;
  min-height: 0;
}
.topbar-phone-text {
  display: flex;
  flex-direction: column;
}
.topbar-phone-label {
  font-size: 11px;
  color: rgba(16, 24, 40, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.topbar-phone-number {
  font-size: 13px;
  color: #222;
  font-weight: 500;
}
.swap-icon-vertical {
  display: inline-block;
}
.swap-icon-horizontal {
  display: none;
}

/* Payment Modal CSS */
.payment-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 16px;
  animation: fadeIn 200ms ease-out;
}

.payment-modal {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 480px;
  padding: 32px;
  position: relative;
  animation: scaleIn 200ms ease-out;
}

.payment-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.payment-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.payment-modal-logo {
  font-size: 36px;
  display: inline-block;
  margin-bottom: 12px;
}

.payment-modal-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
  border: none !important;
}

.payment-modal-header p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

.payment-modal-qr-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.payment-modal-qr {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  background: white;
  max-width: 200px;
  height: auto;
}

.payment-modal-amount {
  text-align: center;
  font-size: 16px;
  color: #334155;
  margin-bottom: 20px;
}

.payment-modal-amount strong {
  color: #0f172a;
  font-size: 20px;
}

.payment-modal-copy-section {
  margin-bottom: 24px;
}

.payment-modal-copy-section label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 6px;
}

.payment-modal-copy-row {
  display: flex;
  gap: 8px;
}

.payment-modal-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 13px;
  color: #334155;
  outline: none;
  background-color: #f8fafc;
}

.btn-copy-pix {
  background-color: #00a7c7;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 150ms;
}

.btn-copy-pix:hover {
  background-color: #008fa7;
}

.payment-modal-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  margin-top: 16px;
}

.payment-modal-status .spinner {
  animation: spin 2s linear infinite;
  display: inline-block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.checkout-status-visible {
  color: #dc2626;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  text-align: center;
  display: block;
}
