/* Dashboard / Home logueado — basado en capturas VDV */

.page-dashboard {
  background: #fff;
  overflow-x: clip;
  max-width: 100%;
}

/* Header secundario */
.c-header-subnav {
  border-top: none;
  padding: 4px 0;
}

.c-header-collective__main--subnav-only .c-header-subnav {
  border-top: none;
}

.c-header-subnav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
  font-size: 12px;
}

.c-header-subnav__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--s-color-header-text);
  opacity: 0.85;
}

.c-header-subnav__links a:hover {
  color: var(--checkit-sky-deep);
  opacity: 1;
}

.c-header-subnav__links a:hover i {
  color: var(--checkit-accent);
}

.c-header-collective__display--dashboard {
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 0 0;
  min-height: 56px;
}

.c-header-collective__display--dashboard .c-header-collective__nav {
  flex: 1;
  justify-content: flex-end;
}

.c-user-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-header-collective__display--dashboard > .c-user-menu {
  margin-left: auto;
}

.c-user-menu .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: none;
  background: none;
  font-size: 13px;
  color: var(--s-color-header-text);
}

.c-header-collective__nav--bar .c-user-menu .dropdown-toggle {
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
}

.c-user-menu--bar {
  color: #fff;
  font-size: 12px;
}

.c-user-menu--bar span,
.c-user-menu--bar strong {
  color: #fff;
}

.c-user-menu--bar i {
  color: #fff;
}

.c-user-menu--bar span {
  white-space: nowrap;
}

.c-button--bar-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}

.c-button--bar-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* En barra oscura: anula .c-user-menu button (fondo blanco + texto claro = ilegible) */
.c-user-menu--bar .c-button--bar-light,
.c-header-collective__bar .c-user-menu button.c-button--bar-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.c-user-menu--bar .c-button--bar-light:hover,
.c-header-collective__bar .c-user-menu button.c-button--bar-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.85);
}

/* Hero + buscador — video 16:9 a todo el ancho, sin solapamientos */
.c-page-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.c-page-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.c-page-hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.c-page-hero__poster.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.c-page-hero__video {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.c-page-hero__video-el {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  border: 0;
  transform: translate(-50%, -50%);
}

.c-page-hero__youtube,
.c-page-hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.c-page-hero__bg img.c-page-hero__poster,
.c-page-hero__bg img:not(.c-page-hero__poster) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.c-page-hero__overlay {
  display: none;
}

.c-page-hero__content {
  position: relative;
  z-index: 2;
  padding: 56px 16px 0;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

.c-search-widget__headline {
  padding: 22px 0 18px;
  max-width: 680px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 4px;
  animation: heroCopyIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.c-search-widget__headline .c-page-hero__subtitle strong {
  color: var(--checkit-accent-light);
}

.c-search-widget__headline .c-page-hero__eyebrow {
  margin-bottom: 12px;
}

.c-search-widget__headline .c-page-hero__title {
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.08;
  text-shadow: none;
}

.c-search-widget__headline .c-page-hero__title-accent {
  filter: none;
}

.c-search-widget__headline .c-page-hero__subtitle {
  margin-top: 10px;
  font-size: clamp(14px, 1.5vw, 17px);
  max-width: 480px;
  text-shadow: none;
}

.c-page-hero__copy {
  max-width: 760px;
  animation: heroCopyIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.c-page-hero__eyebrow {
  margin: 0 0 18px;
  font-family: "Outfit", var(--font-base);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 14px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.c-page-hero__eyebrow::before {
  content: "";
  flex-shrink: 0;
  width: 36px;
  height: 2px;
  border-radius: 1px;
  background: var(--checkit-spectrum);
}

.c-page-hero__title {
  margin: 0;
  font-family: "Syne", var(--font-base);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: none;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

.c-page-hero__title-line {
  display: inline;
  color: #fff;
  font-weight: 700;
}

.c-page-hero__title-accent {
  display: inline;
  white-space: nowrap;
  font-weight: 800;
  background: linear-gradient(115deg, var(--checkit-accent-light) 0%, var(--checkit-accent) 55%, #f0ebe6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.35));
}

.c-page-hero__subtitle {
  margin: 22px 0 0;
  max-width: 540px;
  font-family: "Outfit", var(--font-base);
  font-size: clamp(17px, 2.3vw, 24px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.c-page-hero__subtitle strong {
  font-weight: 600;
  color: #fff;
}

.c-search-widget {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #0d0d0d 0%, #000 100%);
  color: #fff;
  margin-top: 0;
}

.c-search-widget::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--checkit-spectrum);
}

.c-search-widget__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px 20px;
}

/* Grand Tour — banner de urgencia CRO */
.c-gt-urgency {
  position: relative;
  margin: 18px 0 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(232, 93, 4, 0.45);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(232, 93, 4, 0.22) 0%, transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.c-gt-urgency__glow {
  position: absolute;
  inset: 0;
  background: var(--checkit-spectrum);
  opacity: 0.08;
  pointer-events: none;
}

.c-gt-urgency__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}

.c-gt-urgency__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(232, 93, 4, 0.18);
  color: #ffb347;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-gt-urgency__title {
  margin: 10px 0 6px;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.c-gt-urgency__text {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.c-gt-urgency__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  flex-shrink: 0;
  min-width: min(100%, 260px);
}

.c-gt-urgency__cta {
  white-space: normal;
  text-align: center;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.35);
}

.c-gt-urgency__link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.c-gt-urgency__link:hover {
  color: #fff;
}

.c-gt-urgency.is-active {
  border-color: rgba(76, 217, 100, 0.55);
  box-shadow: 0 0 0 1px rgba(76, 217, 100, 0.25), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.c-gt-urgency.is-active .c-gt-urgency__eyebrow {
  background: rgba(76, 217, 100, 0.16);
  color: #9dffad;
}

.search-form-vdv.is-fast-track .c-search-panel__row--circuitos {
  outline: 1px solid rgba(232, 93, 4, 0.35);
  outline-offset: 4px;
  border-radius: 12px;
}

/* Cinta de modos — carrusel horizontal con flechas */
.c-travel-modes.sb-tabs {
  margin-top: 4px;
  padding: 0;
  border: none;
  background: transparent;
}

.c-travel-modes__intro {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.c-travel-modes__rail {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(8, 12, 18, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.c-travel-modes__rail::before,
.c-travel-modes__rail::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 2;
  pointer-events: none;
}

.c-travel-modes__rail::before {
  left: 44px;
  background: linear-gradient(90deg, rgba(8, 12, 18, 0.95) 0%, transparent 100%);
}

.c-travel-modes__rail::after {
  right: 44px;
  background: linear-gradient(270deg, rgba(8, 12, 18, 0.95) 0%, transparent 100%);
}

.c-travel-modes__panel,
.c-travel-modes__panel.sb-tabs__scroll.c-search-tabs {
  display: flex;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 10px;
  flex: 1;
  min-width: 0;
  padding: 12px 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0;
}

.c-travel-modes__panel.c-search-tabs button.sb-tabs__item {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: inherit;
}

.c-travel-modes__panel::-webkit-scrollbar {
  display: none;
}

.c-travel-modes__label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 8px;
  padding: 8px 12px;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  scroll-snap-align: start;
}

.c-travel-modes__label::after {
  display: none;
}

.c-search-tabs-wrap.sb-tabs {
  display: block;
  border-bottom: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.c-search-tabs-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 72px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 119, 200, 0.55) 0%, rgba(6, 42, 74, 0.85) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.c-search-tabs-arrow--prev {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.c-search-tabs-arrow--next {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.c-search-tabs-arrow i {
  font-size: 15px;
}

.c-search-tabs-arrow:hover:not(:disabled) {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.75) 0%, rgba(3, 105, 161, 0.95) 100%);
  transform: scale(1.03);
}

.c-search-tabs-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.35);
}

.sb-tabs__item {
  flex: 0 0 clamp(160px, 18vw, 220px);
  min-width: clamp(160px, 18vw, 220px);
  max-width: 240px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
  scroll-snap-align: start;
  -webkit-tap-highlight-color: transparent;
}

.sb-tabs__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 56px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  position: relative;
  box-sizing: border-box;
  box-shadow: none;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.sb-tabs__icon,
.sb-tabs__icon--combo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  flex-shrink: 0;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.sb-tabs__icon {
  font-size: 15px;
  line-height: 1;
}

.sb-tabs__text {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: block;
  color: inherit;
  transition: color 0.22s ease;
}

.sb-tabs__icon--combo {
  gap: 2px;
  font-size: 11px;
}

.sb-tabs__icon--combo span {
  font-size: 9px;
  font-weight: 800;
  opacity: 0.85;
  color: inherit;
}

.sb-tabs__item.is-active {
  position: relative;
  z-index: 1;
}

.sb-tabs__item.is-active .sb-tabs__link {
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 119, 200, 0.95) 0%, rgba(6, 42, 74, 0.98) 100%);
  border-color: rgba(125, 211, 252, 0.55);
  transform: none;
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.25),
    0 10px 24px rgba(0, 119, 200, 0.28);
  animation: none;
}

.sb-tabs__item.is-active .sb-tabs__link::after {
  display: none;
}

.sb-tabs__item.is-active .sb-tabs__icon,
.sb-tabs__item.is-active .sb-tabs__icon--combo {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  transform: none;
  box-shadow: none;
  animation: none;
}

.sb-tabs__item.is-active .sb-tabs__icon--combo span {
  color: #fff;
  opacity: 1;
}

.sb-tabs__item.is-active .sb-tabs__text {
  font-weight: 700;
  color: #fff;
  text-shadow: none;
}

.sb-tabs__item:hover:not(.is-active) .sb-tabs__link {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.sb-tabs__item:hover:not(.is-active) .sb-tabs__icon,
.sb-tabs__item:hover:not(.is-active) .sb-tabs__icon--combo {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: none;
  box-shadow: none;
}

.sb-tabs__item:hover:not(.is-active) .sb-tabs__text {
  color: #fff;
}

.c-search-panel {
  display: none;
  padding-top: 20px;
}

.c-search-panel.is-active { display: block; }

.c-search-panel__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
}

.c-search-panel label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.9);
}

.c-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 12px 14px;
  min-height: 48px;
}

.c-search-field input,
.c-search-field select,
.c-search-field button.c-search-field__trigger {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
  text-align: left;
  width: 100%;
}

.c-search-field select option,
.c-search-panel__class select option {
  background: #fff;
  color: #222;
}

.c-search-field i {
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.c-search-panel__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.c-search-panel__toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
}

.c-search-panel__toolbar select {
  background: #1a1a1a;
  border: 1px solid #444;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
}

.c-search-field--split {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 8px;
  padding-right: 40px;
  position: relative;
}

.c-search-field--split > i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.c-search-field__time {
  border-left: 1px solid #444 !important;
  padding-left: 8px !important;
  text-align: center;
}

.c-search-field--select select {
  appearance: none;
  cursor: pointer;
}

.c-search-field--select {
  position: relative;
  overflow: visible;
}

.c-search-panel__row > div {
  overflow: visible;
  min-width: 0;
}

.c-search-field--select:has(.c-icon-select-picker.is-open),
.c-search-field--select:has(.c-accommodation-type-picker.is-open) {
  z-index: 80;
}

.c-search-field--select .c-icon-select-picker__menu,
.c-search-field--select .c-accommodation-type-picker__menu {
  min-width: max(100%, 280px);
}

.c-search-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-search-submit-wrap .c-button--brand {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  min-width: 140px;
}

.c-search-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-align: right;
  margin-top: 12px;
}

.c-search-legal a {
  color: var(--checkit-accent-light);
  text-decoration: underline;
}

.c-search-legal a:hover {
  color: var(--checkit-sky);
}

.c-search-recent {
  background: #000;
  padding: 12px 0;
  border-top: 1px solid #222;
}

.c-search-recent__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

.c-search-recent button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

/* Secciones home */
.c-home-section {
  padding: 48px 0;
}

.o-container--large {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 28px);
  width: 100%;
  box-sizing: border-box;
}

.c-home-section--gray { background: #f8f8f8; }

.c-section-title {
  text-align: center;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 32px;
  color: #222;
  position: relative;
  padding-bottom: 14px;
}

.c-section-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: var(--checkit-spectrum);
}

.c-section-subtitle {
  text-align: center;
  color: var(--s-color-middle-gray);
  margin: -24px 0 32px;
  font-size: 14px;
}

/* Carrusel paquetes */
.c-carousel {
  position: relative;
  padding: 0 8px;
  max-width: 100%;
  overflow: hidden;
}

.c-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 8px 16px;
  scroll-behavior: smooth;
  max-width: 100%;
  min-width: 0;
}

.c-carousel__track::-webkit-scrollbar { display: none; }

.c-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #8f6628;
  background: var(--checkit-accent);
  box-shadow: 0 6px 18px rgba(201, 149, 58, 0.35);
  color: #fff;
  z-index: 2;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.c-carousel__arrow:hover:not(:disabled) {
  background: #b88432;
  border-color: #7a5520;
  color: #fff;
  box-shadow: 0 8px 22px rgba(201, 149, 58, 0.45);
  transform: translateY(-50%) scale(1.05);
}

.c-carousel__arrow:disabled {
  opacity: 1;
  background: #eef2f6;
  border-color: #cbd5e1;
  color: #94a3b8;
  box-shadow: none;
  cursor: default;
  transform: translateY(-50%);
}

.c-carousel__arrow--prev { left: -4px; }
.c-carousel__arrow--next { right: -4px; }

.c-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.c-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  padding: 0;
}

.c-carousel__dot.is-active {
  background: var(--checkit-accent);
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 2px rgba(201, 149, 58, 0.25);
}

/* Circuitos destacados — cinta con flechas */
.c-carousel--packages-home {
  position: relative;
  padding: 0 clamp(44px, 5vw, 56px);
}

.c-carousel--packages-home .c-carousel__track {
  gap: clamp(16px, 2.4vw, 28px);
  padding: 4px 2px 16px;
  scroll-padding-inline: 8px;
}

.c-carousel--packages-home .c-package-card {
  flex: 0 0 calc((100% - (2 * clamp(16px, 2.4vw, 28px))) / 3);
  min-width: clamp(220px, 28vw, 320px);
  max-width: 360px;
}

.c-carousel--packages-home .c-package-card__title {
  max-width: none;
}

.c-carousel--packages-home .c-carousel__arrow--prev { left: 2px; }
.c-carousel--packages-home .c-carousel__arrow--next { right: 2px; }

.c-carousel--packages-home .c-carousel__arrow {
  background: var(--checkit-accent);
  border: 2px solid #8f6628;
  color: #fff;
  box-shadow:
    0 8px 22px rgba(201, 149, 58, 0.4),
    0 0 0 1px rgba(143, 102, 40, 0.15);
  z-index: 4;
}

.c-carousel--packages-home .c-carousel__arrow i {
  font-size: 17px;
  font-weight: 700;
}

.c-carousel--packages-home .c-carousel__arrow:hover:not(:disabled) {
  background: #b88432;
  border-color: #7a5520;
  color: #fff;
  box-shadow: 0 10px 26px rgba(201, 149, 58, 0.48);
  transform: translateY(-50%) scale(1.06);
}

.c-carousel--packages-home .c-carousel__arrow:disabled {
  background: #eef2f6;
  border-color: #cbd5e1;
  color: #94a3b8;
  box-shadow: none;
  transform: translateY(-50%);
}

.c-carousel--packages-home .c-carousel__dots[hidden] {
  display: none;
}

.c-featured-empty {
  margin: 0;
  padding: 32px 16px;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
}

.c-carousel--ideas {
  margin-top: 28px;
}

.c-home-section-lead {
  margin: -8px auto 24px;
  max-width: 720px;
  text-align: center;
  color: var(--color-text-muted, #5c6570);
  font-size: 1rem;
  line-height: 1.5;
}

#home-vdv-catalog {
  padding-top: 32px;
}

.c-home-vdv-bands {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.c-home-vdv-band {
  padding: 4px 0 0;
}

.c-home-vdv-band--alt {
  padding: 20px 20px 4px;
  margin: 0 -20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}

.c-home-vdv-band__title {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-heading, #1a2332);
}

.c-home-vdv-band__lead {
  margin: 0 0 18px;
  color: var(--color-text-muted, #5c6570);
  font-size: 0.95rem;
  line-height: 1.45;
}

.c-home-catalog-cta {
  margin: 24px 0 0;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 991px) {
  .c-carousel--packages-home .c-package-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .c-carousel--packages-home {
    padding: 0 40px;
  }

  .c-carousel--packages-home .c-package-card {
    flex: 0 0 min(86%, 320px);
    min-width: 0;
    max-width: 320px;
  }

  .c-carousel--packages-home .c-carousel__arrow--prev { left: 0; }
  .c-carousel--packages-home .c-carousel__arrow--next { right: 0; }
}

/* Tarjeta paquete */
.c-package-card {
  flex: 0 0 clamp(240px, 31%, 320px);
  min-width: 240px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: #fff;
  box-shadow: 0 10px 28px rgba(8, 16, 32, 0.18);
  isolation: isolate;
}

.c-package-card--clickable {
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.c-package-card--clickable:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(8, 16, 32, 0.32);
}

.c-package-card--clickable:hover .c-package-card__overlay {
  background:
    linear-gradient(180deg, rgba(6, 10, 22, 0.82) 0%, rgba(6, 10, 22, 0.28) 42%, rgba(6, 10, 22, 0.96) 100%);
}

.c-package-card--clickable:hover .c-package-card__bg img {
  transform: scale(1.05);
}

.c-package-card__cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: 12px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--checkit-accent-gradient);
  color: #1a1408;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.c-package-card--clickable:hover .c-package-card__cta {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.42);
}

.c-package-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.c-package-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.45s ease;
}

.c-package-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 22, 0.78) 0%, rgba(6, 10, 22, 0.22) 40%, rgba(6, 10, 22, 0.94) 100%);
}

.c-package-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 18px 16px 14px;
}

.c-package-card__content::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  background: linear-gradient(to top, rgba(4, 8, 18, 0.97) 0%, rgba(4, 8, 18, 0.72) 55%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.c-package-card__title {
  margin: 0 0 12px;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
  max-width: 18ch;
}

.c-package-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.c-package-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.c-package-card__badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--checkit-accent-gradient);
  color: #1a1408;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: auto;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.c-package-card__price {
  align-self: stretch;
  text-align: right;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 24px rgba(0, 0, 0, 0.28);
}

.c-package-card__price small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.c-package-card__price strong {
  display: block;
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--checkit-accent-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

/* Features */
.c-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.c-feature-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 32px 24px 24px;
  text-align: center;
  position: relative;
}

.c-feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -56px auto 16px;
  background: #fff;
  font-size: 22px;
  color: #555;
}

.c-feature-card h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.c-feature-card p {
  margin: 0;
  font-size: 13px;
  color: var(--s-color-middle-gray);
  line-height: 1.6;
}

/* Split content */
.c-split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.c-split-section__img {
  border-radius: 8px;
  overflow: hidden;
}

.c-split-section__img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.c-split-section__text h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 20px;
}

.c-split-section__text p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.7;
}

.c-split-section__text .c-highlight {
  margin-top: 20px;
  font-weight: 700;
  font-size: 16px;
}

/* Banner ideas */
.c-ideas-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.c-ideas-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.c-ideas-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.c-ideas-banner__text {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.c-ideas-banner__text h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
}

.c-ideas-banner__text p {
  margin: 0;
  font-size: 16px;
}

/* Destinos mundo */
.c-destino-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.c-destino-duo__card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 32px;
}

.c-destino-duo__card .c-destino-duo__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.c-destino-duo__card .c-destino-duo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.c-destino-duo__card h3,
.c-destino-duo__card p,
.c-destino-duo__card .c-button {
  position: relative;
  z-index: 1;
}

.c-destino-duo__card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.c-destino-duo__card p {
  margin: 0 0 20px;
  font-size: 14px;
}

.c-destino-duo__card .c-button--white {
  background: #fff;
  color: #333;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
}

/* Destinos elegidos */
.c-destino-thumb {
  flex: 0 0 clamp(200px, 28%, 280px);
  min-width: 200px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.c-destino-thumb__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.c-destino-thumb__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}

.c-destino-thumb span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

/* Mapa oficina */
.c-office-map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 360px;
}

.c-office-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.c-office-card {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 1;
}

.c-office-card p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 13px;
}

.c-office-card p:last-child { margin-bottom: 0; }

.c-office-card i {
  color: var(--s-color-brand-primary);
  margin-top: 2px;
}

/* Tabs novedades */
.c-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.c-tabs-nav button {
  padding: 12px 4px;
  border: none;
  background: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--s-color-middle-gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}

.c-tabs-nav button.is-active {
  color: #333;
  border-bottom-color: #888;
}

@media (min-width: 768px) {
  .c-search-panel__row {
    grid-template-columns: 1fr 1fr auto;
  }

  .c-search-panel__row--wide {
    grid-template-columns: 1fr 1fr 1fr auto;
  }

  .c-search-panel__row--circuitos {
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
  }

  .c-search-panel__row--transportes,
  .c-search-panel__row--alojamiento,
  .c-search-panel__row--traslados,
  .c-search-panel__row--actividades,
  .c-search-panel__row--coche,
  .c-search-panel__row--fly-drive {
    grid-template-columns: repeat(3, 1fr);
  }

  .c-search-panel__row--transportes .c-search-submit-wrap,
  .c-search-panel__row--alojamiento .c-search-submit-wrap,
  .c-search-panel__row--traslados .c-search-submit-wrap,
  .c-search-panel__row--actividades .c-search-submit-wrap,
  .c-search-panel__row--coche .c-search-submit-wrap,
  .c-search-panel__row--fly-drive .c-search-submit-wrap {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .c-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .c-split-section {
    grid-template-columns: 1fr 1fr;
  }

  .c-destino-duo {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .c-search-panel__row--transportes,
  .c-search-panel__row--alojamiento,
  .c-search-panel__row--actividades,
  .c-search-panel__row--fly-drive {
    grid-template-columns: repeat(5, 1fr) auto;
  }

  .c-search-panel__row--transportes .c-search-submit-wrap,
  .c-search-panel__row--alojamiento .c-search-submit-wrap,
  .c-search-panel__row--actividades .c-search-submit-wrap,
  .c-search-panel__row--fly-drive .c-search-submit-wrap {
    grid-column: auto;
    justify-self: auto;
  }

  .c-search-panel__row--traslados,
  .c-search-panel__row--coche {
    grid-template-columns: repeat(4, 1fr) auto;
  }

  .c-search-panel__row--traslados .c-search-submit-wrap,
  .c-search-panel__row--coche .c-search-submit-wrap {
    grid-column: auto;
    justify-self: auto;
  }
}

@media (max-width: 1199px) {
  /* Subnav va a la hamburguesa (celulares + tablets) */
  .c-header-collective__main--subnav-only {
    display: none !important;
  }

  .page-dashboard .c-page-hero {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .page-dashboard .c-page-hero {
    margin-top: 0;
  }

  .c-package-card {
    flex: 0 0 calc(50% - 8px);
  }

  .c-carousel__arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .c-office-card {
    position: relative;
    top: auto;
    left: auto;
    margin: 16px;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .c-package-card {
    flex: 0 0 85%;
  }

  .c-page-hero {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .c-search-widget__headline {
    padding: 16px 0 14px;
  }

  .c-search-widget__headline .c-page-hero__eyebrow {
    font-size: 9px;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
  }

  .c-search-widget__headline .c-page-hero__eyebrow::before { width: 20px; }

  .c-search-widget__headline .c-page-hero__title {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .c-search-widget__headline .c-page-hero__subtitle {
    margin-top: 8px;
    font-size: 13px;
  }

  .c-gt-urgency__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .c-gt-urgency__actions {
    min-width: 0;
  }

  .c-travel-modes__rail {
    border-radius: 14px;
  }

  .c-search-tabs-arrow {
    width: 36px;
    min-height: 64px;
  }

  .c-travel-modes__panel {
    padding: 10px 8px;
    gap: 8px;
  }

  .sb-tabs__item {
    flex-basis: clamp(132px, 42vw, 200px);
    min-width: clamp(132px, 42vw, 200px);
  }

  .sb-tabs__link {
    min-height: 52px;
    padding: 10px 12px;
    gap: 9px;
  }

  .sb-tabs__icon,
  .sb-tabs__icon--combo {
    width: 28px;
    height: 28px;
  }

  .sb-tabs__icon { font-size: 14px; }

  .sb-tabs__text { font-size: 11px; }
}

.c-search-widget .c-location-ac {
  position: relative;
}

.c-search-widget .c-location-ac__panel {
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 4px);
  z-index: 1600;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  width: max(100%, 360px);
  min-width: min(360px, 92vw);
  max-width: min(640px, 96vw);
  max-height: min(320px, 50vh);
  overflow: auto;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.c-search-widget .c-location-ac__panel.is-fixed {
  position: fixed;
}

.c-search-widget .c-location-ac__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 16px;
  cursor: pointer;
}

.c-search-widget .c-location-ac__hint {
  padding: 10px 16px;
  font-size: 12px;
  color: #64748b;
  font-style: italic;
  pointer-events: none;
}

.c-search-widget .c-location-ac__item:hover,
.c-search-widget .c-location-ac__item.is-active {
  background: #e8f4fc;
}

.c-search-widget .c-location-ac__item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}

.c-search-widget .c-location-ac__item small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: #475569;
  line-height: 1.35;
}

.c-search-widget .c-location-ac__icon {
  margin-top: 2px;
  color: var(--checkit-sky-deep, #2d8ab8);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.c-search-widget .c-location-ac__panel--universal {
  overflow: auto;
  max-height: min(78vh, 720px);
}

.c-search-widget .c-location-ac__panel--universal[data-loading="1"]::before {
  content: '';
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: block;
  height: 2px;
  margin-bottom: -2px;
  background: linear-gradient(90deg, transparent, #2d8ab8 45%, #38bdf8 55%, transparent);
  background-size: 200% 100%;
  animation: c-location-ac-loading-bar 1.1s ease-in-out infinite;
  pointer-events: none;
}

@keyframes c-location-ac-loading-bar {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.c-search-widget .c-location-ac__region-spinner {
  font-size: 0.82em;
  opacity: 0.85;
}

.c-search-widget .c-location-ac__item.is-stale,
.c-search-widget .c-location-ac__group-head.is-stale {
  opacity: 0.55;
}

.c-search-widget .c-location-ac__hint--status {
  padding: 0.45rem 16px;
  font-size: 0.82rem;
  color: #64748b;
  list-style: none;
}

.c-search-widget .c-location-ac__panel--grouped {
  width: max(100%, 540px);
  min-width: min(540px, 94vw);
  max-width: min(680px, 96vw);
  max-height: min(480px, 62vh);
  padding: 4px 0 8px;
}

.c-search-widget .c-location-ac__group-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e293b;
  background: #eef2f6;
  border-top: 1px solid #dbe3ea;
  pointer-events: none;
  list-style: none;
}

.c-search-widget .c-location-ac__group-head:first-child {
  border-top: none;
}

.c-search-widget .c-location-ac__group-head i {
  color: var(--checkit-sky-deep, #2d8ab8);
  width: 14px;
  text-align: center;
}

.c-search-widget .c-location-ac__group-head small {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0;
  text-transform: none;
}

.c-search-widget .c-location-ac__region {
  padding: 9px 16px 5px;
  font-size: 13px;
  font-weight: 700;
  color: #0369a1;
  list-style: none;
  pointer-events: none;
}

.c-search-widget .c-location-ac__region--hotels {
  background: #f8fafc;
  border-top: 1px solid #dbe3ea;
  padding-top: 10px;
}

.c-search-widget .c-location-ac__divider {
  list-style: none;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  pointer-events: none;
}

.c-search-widget .c-location-ac__group-head--cities {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #e8f4fc;
  border-bottom: 1px solid #cfe4f3;
}

.c-search-widget .c-location-ac__hint--loading {
  display: none;
}
