/* =============================================================
   TRAVEYO — Custom Brand CSS
   Font: Manrope (Google Fonts)
   Primary Navy : #0b1d35
   Brand Teal   : #1dc6c8
   Accent Orange: #fd962c
   ============================================================= */

/* ---------- CSS Variables ---------- */
:root {
  --trv-navy:        #0b1d35;
  --trv-navy-mid:    #112542;
  --trv-navy-light:  #1a3558;
  --trv-teal:        #1dc6c8;
  --trv-teal-dark:   #14a0a2;
  --trv-orange:      #fd962c;
  --trv-coral:       #ff7a45;
  --trv-cta-start:   #20d3cf;
  --trv-cta-end:     #108aa0;
  --trv-white:       #ffffff;
  --trv-gray-100:    #f5f8fc;
  --trv-gray-200:    #eaf0f8;
  --trv-gray-500:    #8899aa;
  --trv-text:        #1a2e44;
  --trv-radius:      8px;
  --trv-radius-lg:   14px;
  --trv-shadow:      0 4px 24px rgba(11,29,53,.10);
  --trv-shadow-lg:   0 8px 40px rgba(11,29,53,.18);
  --trv-transition:  all .22s cubic-bezier(.4,0,.2,1);
}

/* ---------- Base Typography ---------- */
html, body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, label, input, button, select, textarea {
  font-family: 'Manrope', 'Plus Jakarta Sans', system-ui, sans-serif !important;
}

body {
  color: var(--trv-text);
  background: var(--trv-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ============================================================
   HEADER — TAMAMEN TRANSPARAN
   - .page-header tek bir arka plan overlay alır
   - .trv-topbar ve .trv-mainnav tamamen şeffaf
   - İkisi arasında sadece ince rgba çizgi
   - Scroll sonrası solid navy
   ============================================================ */

/* Tema orijinal elemanlarını gizle */
.panel-fixed,
.main-nav,
.btn-toggle-nav { display: none !important; }

/* ── HEADER: fully transparent, position fixed ── */
.page-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: linear-gradient(90deg, rgba(5,20,37,.74) 0%, rgba(12,54,62,.50) 52%, rgba(5,13,25,.78) 100%) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none !important;
  box-shadow: none !important;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.page-header .container {
  max-width: 1320px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* Scroll sonrası: solid + blur */
.page-header.trv-scrolled {
  background: rgba(7, 18, 36, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 2px 28px rgba(0,0,0,.32) !important;
}

/* ---------- KATMAN 1: Top Bar — kendi bg'si YOK ---------- */
.trv-topbar {
  background: transparent !important;
  /* sadece alt border: iki katmanı ayıran ince çizgi */
  border-bottom: 1px solid rgba(255,255,255,.13);
  font-size: 13px;
  padding: 0;
  line-height: 1;
}
.trv-topbar .container { display: block; }
.trv-topbar__row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap !important;
  gap: 10px;
}

.trv-topbar a {
  color: rgba(255,255,255,.96) !important;
  text-decoration: none !important;
  transition: var(--trv-transition);
  font-size: 13px;
  font-weight: 700;
}
.trv-topbar a:hover { color: var(--trv-teal) !important; }

/* Sosyal ikonlar */
.trv-topbar__social { display: flex; align-items: center; gap: 9px; }
.trv-topbar__social { order: 5; margin-left: 8px; }
.trv-topbar__social,
.trv-topbar__contact,
.trv-topbar__rates,
.trv-topbar__actions,
.trv-header-search--topbar {
  flex-shrink: 0;
}
.trv-topbar__social a {
  width: 31px; height: 31px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.96);
  border-radius: 50%;
  font-size: 14px;
  color: rgba(255,255,255,.98) !important;
  transition: var(--trv-transition);
}
.trv-social-x {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.trv-topbar__social a:hover {
  background: var(--trv-teal) !important;
  border-color: var(--trv-teal) !important;
  color: #fff !important;
}

/* Telefon + Mail */
.trv-topbar__contact {
  display: flex; align-items: center; gap: 16px;
  padding: 0 0 0 14px;
  order: 1;
}
.trv-topbar__contact a {
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
  font-size: 12.5px;
}

.trv-topbar__rates {
  order: 2;
}

.trv-header-search--topbar {
  order: 3;
}

/* Sağ aksiyon grubu */
.trv-topbar__actions {
  display: flex; align-items: center; gap: 10px; margin-left: auto;
  flex-wrap: nowrap !important;
  order: 4;
}
.trv-topbar__actions .trv-sep {
  display: none;
}
.trv-topbar__lang {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  color: rgba(255,255,255,.96) !important;
  font-size: 12.5px;
  font-weight: 800;
  transition: var(--trv-transition);
  white-space: nowrap;
}
.trv-topbar__lang:hover { border-color: var(--trv-teal) !important; color: var(--trv-teal) !important; }

.trv-topbar__btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0;
  border-radius: 0;
  border: 1px solid transparent;
  transition: var(--trv-transition);
  font-weight: 800;
  color: rgba(255,255,255,.96) !important;
  text-decoration: none !important;
  font-size: 12.5px;
  cursor: pointer;
  white-space: nowrap;
}
.trv-topbar__btn:hover {
  background: rgba(255,255,255,.1);
  color: #fff !important;
}
.trv-topbar__btn--signup {
  border-color: transparent !important;
}
.trv-topbar__btn--signup:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.55) !important;
}

/* ---------- KATMAN 2: Ana Nav — kendi bg'si YOK ---------- */
.trv-mainnav {
  background: transparent !important;
  border-bottom: none;
  box-shadow: none;
}
.trv-mainnav__row {
  min-height: 92px;
}
.trv-mainnav__actions {
  gap: 10px;
  margin-left: auto;
}

.trv-header-quicklinks {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-right: 8px;
  line-height: 1;
}

.trv-header-quicklinks .trv-topbar__btn {
  min-height: 20px;
  font-size: 12px;
}

.trv-header-quicklinks .trv-favorite-count,
.trv-header-quicklinks .trv-cart-count {
  min-width: 18px;
  height: 18px;
  font-size: 10px;
}
.trv-mainnav .navbar-logo {
  margin-right: clamp(16px, 2vw, 40px) !important;
}

/* Logo */
.navbar-logo { text-decoration: none !important; }
.navbar-logo img {
  max-height: 52px;
  display: block;
  filter: none;
}

/* Nav linkleri: beyaz metin (transparan arka plan üstünde) — 8 öğe tek satır */
.trv-nav-links { display: flex; align-items: center; gap: 0; }
.trv-nav-links .nav-item { position: relative; }
.trv-nav-links .nav-link {
  color: rgba(255,255,255,.96) !important;
  background: transparent !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 10px 6px !important;
  border-radius: 6px;
  transition: var(--trv-transition);
  white-space: nowrap;
  display: flex; align-items: center; gap: 3px;
  text-decoration: none !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
  letter-spacing: -.01em;
}
.trv-nav-links .nav-link .fa {
  font-size: 10px;
  margin-left: 2px;
}
.trv-nav-links .nav-link:hover,
.trv-nav-links .nav-item.show > .nav-link,
.trv-nav-links .nav-item.is-open > .nav-link,
.trv-nav-links .nav-item:focus-within > .nav-link {
  color: var(--trv-teal) !important;
  background: rgba(255,255,255,.08) !important;
}

/* Dropdown — beyaz kutu */
.trv-nav-links .nav-item.dropdown {
  position: relative;
}
.trv-nav-links .nav-item.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}
.trv-nav-links .dropdown-menu {
  display: block !important;
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  z-index: 10000 !important;
  background: #fff !important;
  border: 1px solid var(--trv-gray-200) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 32px rgba(11,29,53,.16) !important;
  padding: 6px 0 !important;
  margin-top: 0 !important;
  min-width: 215px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.trv-nav-links .dropdown-menu li {
  position: relative;
  list-style: none;
}
.trv-nav-links .dropdown-menu .dropdown-menu {
  top: -7px !important;
  left: calc(100% - 2px) !important;
}
.trv-nav-links .dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}
.trv-nav-links .nav-item.dropdown:hover > .dropdown-menu,
.trv-nav-links .nav-item.dropdown:focus-within > .dropdown-menu,
.trv-nav-links .nav-item.dropdown.show > .dropdown-menu,
.trv-nav-links .nav-item.dropdown.is-open > .dropdown-menu,
.trv-nav-links .dropdown-menu li.dropdown:hover > .dropdown-menu,
.trv-nav-links .dropdown-menu li.dropdown:focus-within > .dropdown-menu,
.trv-nav-links .dropdown-menu li.dropdown.is-open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@keyframes trvDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trv-nav-links .dropdown-menu .nav-link {
  color: var(--trv-navy) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  padding: 9px 18px !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-shadow: none !important;
}
.trv-nav-links .dropdown-menu .nav-link:hover {
  color: var(--trv-teal) !important;
  background: rgba(29,198,200,.07) !important;
}

/* CTA button */
.trv-nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px;
  min-width: 132px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--trv-cta-start), var(--trv-cta-end));
  color: #fff !important;
  border-radius: 15px;
  font-size: 13px; font-weight: 800;
  text-decoration: none !important;
  transition: var(--trv-transition);
  white-space: nowrap; flex-shrink: 0;
  letter-spacing: 0;
}
.trv-nav-cta:hover {
  background: linear-gradient(135deg, #24ddd8, #0b7188);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(16,138,160,.28);
  transform: translateY(-1px);
}

/* ============================================================
   CATALOG / DETAIL PAGES
   ============================================================ */
.trv-catalog-page .page-content,
.trv-detail-page .page-content {
  padding: 32px 0 56px;
}

.trv-catalog-filter-form .form-control,
.trv-catalog-toolbar .form-control,
.trv-detail-page .sidebar__finder .form-control {
  border-radius: 8px;
}

.trv-catalog-toolbar {
  gap: 12px;
  padding: 12px 16px;
}

.trv-catalog-toolbar__search {
  flex: 1 1 260px;
  min-width: 220px;
}

.trv-catalog-toolbar__sort {
  flex: 0 0 220px;
  min-width: 200px;
}

.trv-catalog-toolbar__btn {
  min-width: 120px;
}

.trv-catalog-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 12px;
}

.trv-catalog-summary--inline {
  flex: 1 1 auto;
  margin: 0;
  padding: 12px 16px;
}

.trv-catalog-summary__title {
  margin: 0 0 4px;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--trv-navy);
}

.trv-catalog-summary__text {
  margin: 0;
  color: #64748b;
}

.trv-catalog-summary__count {
  white-space: nowrap;
  font-weight: 800;
  color: var(--trv-teal-dark);
}

.trv-catalog-page .product__title,
.trv-detail-page .product__title {
  font-size: 1.15rem;
}

.trv-catalog-page .product__footer,
.trv-flight-provider-card .product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.trv-catalog-page .product__footer .btn,
.trv-flight-provider-card .product__footer .btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 40px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.15;
  white-space: nowrap;
}

.trv-catalog-page .product__footer > .product__price,
.trv-detail-page .product__footer > .product__price {
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 0;
}

.trv-catalog-page .product__footer > .trv-cart-add-form,
.trv-detail-page .product__footer > .trv-cart-add-form,
.trv-catalog-page .product__footer > .product__btn-book,
.trv-detail-page .product__footer > .product__btn-book {
  flex: 0 0 calc(50% - 4px);
  max-width: calc(50% - 4px);
  min-width: 0;
}

.product__footer > .trv-cart-add-form {
  order: 2;
}

.product__footer > .product__btn-book {
  order: 3;
}

.trv-detail-page .product__footer .btn {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.15;
  white-space: nowrap;
}

.trv-icon-action {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding-left: 14px !important;
  padding-right: 14px !important;
  font-size: 15px !important;
}

.product__footer .trv-icon-action {
  min-height: 42px;
}

.btn-order.trv-icon-action {
  min-height: 44px;
}

.trv-catalog-page .product__price .cost,
.trv-detail-page .product__price .cost,
.trv-detail-page .price {
  color: var(--trv-teal-dark);
  font-weight: 800;
}

.trv-catalog-page .sidebar-filter .modal-body,
.trv-detail-page .sidebar-filter .modal-body {
  padding-bottom: 0;
}

.trv-filter-actions {
  gap: 10px;
}

.trv-filter-actions .btn {
  min-width: 0;
}

.trv-detail-page .hotel-nav__menu .nav-link span {
  font-weight: 700;
}

.trv-detail-page .hotel-card,
.trv-catalog-page .hotel-card {
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(11, 29, 53, .08);
}

.trv-detail-page .hotel-gallery__carousel {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.trv-detail-page .hotel-gallery__carousel .swiper-slide,
.trv-detail-page .hotel-gallery__carousel img {
  height: 420px;
}

.trv-detail-page .hotel-gallery__carousel img,
.trv-detail-page .hotel-gallery__thumb img {
  object-fit: cover;
}

.trv-detail-page .hotel-gallery__thumbs {
  margin-top: 12px;
}

.trv-detail-page .hotel-gallery__thumb {
  border-radius: 10px;
  overflow: hidden;
}

.trv-detail-page .hotel-gallery__thumb img {
  height: 96px;
  width: 100%;
}

.trv-detail-page .hotel-package__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trv-detail-page .hotel-package__options li {
  margin: 0;
}

.trv-detail-page .hotel-package__options span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f5f8fc;
  color: var(--trv-text);
}

.trv-detail-page .hotel-package__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.trv-hotel-detail-page .hotel-items {
  overflow: visible;
}

.trv-hotel-detail-page .hotel-items > .row {
  align-items: stretch;
}

.trv-hotel-detail-page .hotel-package {
  height: 100%;
}

.trv-hotel-detail-page .hotel-items__check {
  display: flex;
  border-left: 1px solid rgba(15, 35, 64, .12);
}

.trv-hotel-detail-page .hotel-items__check > .js-sticky-top {
  position: static !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  max-width: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 24px 18px !important;
}

.trv-hotel-detail-page .hotel-items__check p {
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.trv-hotel-detail-page .hotel-items__check .text-danger {
  width: 100%;
  max-width: 240px;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.trv-hotel-detail-page .hotel-items__check .price {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--trv-orange);
}

.trv-hotel-detail-page .hotel-items__check form,
.trv-hotel-detail-page .hotel-items__check .btn-order {
  width: 100%;
  max-width: 172px;
}

.trv-hotel-detail-page .hotel-items__check .btn-order {
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px !important;
  line-height: 1;
  white-space: nowrap;
}

.trv-hotel-detail-page .hotel-items__check .btn-order.trv-icon-action {
  max-width: 172px;
}

.trv-hotel-detail-page .hotel-items__check .btn-outline-secondary.btn-order {
  font-size: 12px;
  font-weight: 700;
}

.trv-hotel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--trv-teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trv-hotel-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .8fr);
  gap: 18px;
}

.trv-hotel-overview__copy,
.trv-hotel-overview__highlights,
.trv-hotel-video,
.trv-hotel-request-modal .modal-content {
  border: 1px solid rgba(15, 35, 64, .08);
  background: #fff;
  box-shadow: 0 16px 42px rgba(11, 29, 53, .10);
}

.trv-hotel-overview__copy,
.trv-hotel-overview__highlights {
  border-radius: 16px;
  padding: 24px;
}

.trv-hotel-overview__copy h2 {
  margin: 0 0 12px;
  color: var(--trv-navy);
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: 0;
}

.trv-hotel-overview__copy p {
  margin: 0 0 18px;
  color: #51647a;
  line-height: 1.75;
}

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

.trv-hotel-fact {
  min-height: 96px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #eff8fa);
  border: 1px solid rgba(29, 198, 200, .16);
}

.trv-hotel-fact i {
  color: var(--trv-orange);
  margin-bottom: 8px;
}

.trv-hotel-fact span,
.trv-hotel-fact strong {
  display: block;
}

.trv-hotel-fact span {
  color: #718198;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.trv-hotel-fact strong {
  color: var(--trv-navy);
  font-size: 13px;
  line-height: 1.35;
}

.trv-hotel-overview__highlights h3 {
  margin: 0 0 14px;
  color: var(--trv-navy);
  font-size: 18px;
}

.trv-hotel-mini-gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-auto-rows: 86px;
  gap: 8px;
  margin-bottom: 18px;
}

.trv-hotel-mini-gallery a {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #eef5f7;
}

.trv-hotel-mini-gallery a:first-child {
  grid-row: span 2;
}

.trv-hotel-mini-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s ease;
}

.trv-hotel-mini-gallery a:hover img {
  transform: scale(1.045);
}

.trv-hotel-overview__highlights ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.trv-hotel-overview__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #51647a;
  line-height: 1.55;
}

.trv-hotel-overview__highlights li i {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  background: rgba(29, 198, 200, .12);
  color: var(--trv-teal-dark);
  font-size: 11px;
}

.trv-hotel-amenity-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trv-hotel-amenity-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(253, 150, 44, .10);
  color: #a0520b;
  font-size: 12px;
  font-weight: 800;
}

.trv-hotel-story-panel {
  display: grid;
  grid-template-columns: minmax(200px, .36fr) minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(11, 29, 53, .08);
}

.trv-hotel-story-panel h3 {
  margin: 0;
  color: var(--trv-navy);
  font-size: 24px;
  letter-spacing: 0;
}

.trv-hotel-story-panel p {
  margin: 0;
  color: #51647a;
  line-height: 1.78;
}

.trv-hotel-media-count {
  color: var(--trv-teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.trv-hotel-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trv-hotel-media-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #eef5f7;
  box-shadow: 0 12px 30px rgba(11, 29, 53, .11);
}

.trv-hotel-media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s ease;
}

.trv-hotel-media-tile span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--trv-navy);
  font-size: 11px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.trv-hotel-media-tile:hover img {
  transform: scale(1.045);
}

.trv-hotel-media-tile:hover span {
  opacity: 1;
  transform: translateY(0);
}

.trv-hotel-video {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1fr);
  gap: 18px;
  border-radius: 18px;
  padding: 18px;
}

.trv-hotel-video__copy {
  padding: 8px 8px 8px 4px;
}

.trv-hotel-video__copy h4 {
  margin: 0 0 10px;
  color: var(--trv-navy);
  font-size: 22px;
}

.trv-hotel-video__copy p {
  margin: 0;
  color: #617287;
  line-height: 1.7;
}

.trv-hotel-video__frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #0b1d35;
}

.trv-hotel-video__frame iframe,
.trv-hotel-video__frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.trv-hotel-request-modal .modal-dialog {
  max-width: 1020px;
}

.trv-hotel-request-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #fff;
}

.trv-hotel-request-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--trv-navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.trv-hotel-request-modal__grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
  min-height: 590px;
}

.trv-hotel-request-modal__media {
  position: relative;
  min-height: 100%;
  background: var(--trv-navy);
}

.trv-hotel-request-modal__media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  display: block;
  opacity: .82;
}

.trv-hotel-request-modal__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 53, .08), rgba(11, 29, 53, .82));
}

.trv-hotel-request-modal__summary {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
}

.trv-hotel-request-modal__summary span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trv-hotel-request-modal__summary h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0;
}

.trv-hotel-request-modal__summary p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.55;
}

.trv-hotel-request-modal__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trv-hotel-request-modal__badges strong {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--trv-orange);
  color: #fff;
  font-size: 13px;
}

.trv-hotel-request-modal__badges strong:first-child {
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .24);
}

.trv-hotel-request-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 16px;
}

.trv-hotel-request-modal__thumbs a {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
}

.trv-hotel-request-modal__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trv-hotel-request-modal__body {
  padding: 36px;
}

.trv-hotel-request-modal__body h2 {
  margin: 0 0 10px;
  color: var(--trv-navy);
  font-size: 30px;
  letter-spacing: 0;
}

.trv-hotel-request-modal__body > p {
  margin: 0 0 18px;
  color: #617287;
  line-height: 1.65;
}

.trv-hotel-request-modal__quickfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.trv-hotel-request-modal__quickfacts span {
  min-height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(29, 198, 200, .16);
  border-radius: 14px;
  background: #f7fbfc;
  color: var(--trv-navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.trv-hotel-request-modal__quickfacts i {
  color: var(--trv-teal-dark);
}

.trv-hotel-request-form label {
  margin-bottom: 6px;
  color: #5d6d82;
  font-size: 12px;
  font-weight: 900;
}

.trv-hotel-request-form .form-control {
  min-height: 44px;
  border: 1px solid rgba(15, 35, 64, .14);
  border-radius: 12px;
  box-shadow: none;
}

.trv-hotel-request-form textarea.form-control {
  min-height: 94px;
  resize: vertical;
}

@media (max-width: 767.98px) {
  .trv-hotel-detail-page .hotel-items__check {
    border-left: 0;
    border-top: 1px solid rgba(15, 35, 64, .12);
  }

  .trv-hotel-detail-page .hotel-items__check > .js-sticky-top {
    padding: 20px 16px !important;
  }

  .trv-hotel-overview,
  .trv-hotel-video,
  .trv-hotel-story-panel,
  .trv-hotel-request-modal__grid {
    grid-template-columns: 1fr;
  }

  .trv-hotel-facts,
  .trv-hotel-media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trv-hotel-request-modal .modal-dialog {
    margin: 12px;
  }

  .trv-hotel-request-modal__media img {
    min-height: 260px;
    max-height: 300px;
  }

  .trv-hotel-request-modal__quickfacts {
    grid-template-columns: 1fr;
  }

  .trv-hotel-request-modal__body {
    padding: 24px 18px;
  }
}

@media (max-width: 575.98px) {
  .trv-hotel-facts,
  .trv-hotel-media-grid {
    grid-template-columns: 1fr;
  }
}

.trv-tour-day-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: #eef5f7;
  box-shadow: 0 10px 26px rgba(11, 29, 53, .10);
}

.trv-tour-day-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trv-detail-page .hotel-service__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trv-detail-page .hotel-service__list li {
  gap: 10px;
  margin-bottom: 12px;
}

.trv-flight-search-block {
  border-radius: 12px;
  padding: 24px;
}

.trv-flight-provider-card .product__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .trv-catalog-summary,
  .trv-catalog-summary--inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .trv-catalog-toolbar {
    padding: 12px;
  }

  .trv-catalog-toolbar__search,
  .trv-catalog-toolbar__sort,
  .trv-catalog-toolbar__btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .trv-detail-page .hotel-gallery__carousel .swiper-slide,
  .trv-detail-page .hotel-gallery__carousel img {
    height: 300px;
  }
}

/* Header search */
.trv-header-search {
  align-items: center;
  height: 40px;
  min-width: 180px;
  max-width: 220px;
  margin-right: 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
  flex-shrink: 1;
}
.trv-header-search input {
  min-width: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 6px 0 14px;
  font-size: 11.5px;
  outline: none;
}
.trv-header-search input::placeholder {
  color: rgba(255,255,255,.62);
}
.trv-header-search button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.9);
  cursor: pointer;
}
.trv-header-search button:hover {
  color: var(--trv-teal);
}
.trv-header-search--mobile {
  display: flex;
  max-width: none;
  width: 100%;
  margin: 0;
}
.trv-mainnav__row > .trv-header-search:not(.trv-header-search--topbar) {
  display: none !important;
}
.trv-header-search--topbar {
  height: 34px;
  min-width: 180px;
  max-width: 220px;
  margin: 0 4px;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}
.trv-header-search--topbar button {
  width: 36px;
  height: 32px;
}

/* Mobil hamburger */
.trv-hamburger {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 7px;
  padding: 7px 10px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: var(--trv-transition);
  line-height: 1;
}
.trv-hamburger:hover {
  background: rgba(255,255,255,.2);
  border-color: var(--trv-teal);
}
.trv-hamburger.is-active {
  background: rgba(29,198,200,.22);
  border-color: var(--trv-teal);
  color: #fff;
}

/* Mobil menü: beyaz panel */
.trv-mobile-nav {
  background: rgba(7,18,36,.98);
  border-top: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
  display: none;
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  transition: opacity .08s ease, transform .08s ease;
  will-change: opacity, transform;
}
.trv-mobile-nav.show {
  display: block !important;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.trv-mobile-nav.collapse:not(.show),
.trv-mobile-submenu.collapse:not(.show) {
  display: none !important;
}
.trv-mobile-nav.collapsing {
  height: auto !important;
  display: block !important;
  transition: none !important;
}
.trv-mobile-nav .nav-link {
  color: rgba(255,255,255,.92) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 11px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: transparent !important;
  border-radius: 0 !important;
}
.trv-mobile-nav .nav-link:hover { color: var(--trv-teal) !important; }
.trv-mobile-toggle {
  width: 100%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.92) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 11px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: transparent !important;
  text-align: left;
  cursor: pointer;
}
.trv-mobile-toggle .fa {
  transition: transform .18s ease;
}
.trv-mobile-toggle[aria-expanded="true"] .fa {
  transform: rotate(180deg);
}
.trv-mobile-submenu {
  padding: 4px 0 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.trv-mobile-submenu .nav-link {
  color: rgba(255,255,255,.68) !important;
  font-size: 13px !important;
  padding: 8px 0 !important;
  border-bottom: 0;
}
.trv-mobile-meta,
.trv-mobile-actions,
.trv-mobile-contact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trv-mobile-meta a,
.trv-mobile-contact a {
  color: rgba(255,255,255,.76) !important;
  text-decoration: none !important;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
}
.trv-mobile-contact a {
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Eski tema elemanlarını gizle */
.main-nav { display: none !important; }
.btn-toggle-nav { display: none !important; }
.page-header__top { display: none !important; }

/* Scroll stilleri .page-header.trv-scrolled ile yukarıda tanımlı */

/* Aktif nav linki (ana sayfa gibi) */
.trv-nav-links .nav-link.active {
  color: var(--trv-teal) !important;
}

/* ---------- SCROLL DAVRANIŞI ---------- */

/* Header transparan ve hero'nun üstüne biniyor — padding yok */
body.load { padding-top: 0 !important; }

/* Hero section header yüksekliği kadar min-height ile tam ekran */
.intro { min-height: 100vh !important; }

/* Hero overlay — transparent header nedeniyle header alanında metin okunabilirliği */
.intro__bg .over {
  background: rgba(5, 12, 25, 0.50) !important;
}

/* ---------- HERO SECTION ---------- */
.intro__caption {
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85) !important;
}
.intro__title {
  font-size: clamp(2.4rem, 6vw, 5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.08 !important;
}

/* Intro desc & content */
.intro__desc {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  padding: 41vh 0;
  font-size: 1.25rem;
  color: #fff;
  font-family: Poppins, sans-serif;
  opacity: 1;
  transition: opacity 1s ease 1s;
}
.intro__content {
  width: 100%;
  padding-top: 43rem;
  opacity: 1;
  z-index: 1;
  transition: opacity 1s ease 1s;
}

/* Search box */
.search-hotels {
  border-radius: var(--trv-radius-lg) !important;
  overflow: hidden;
  box-shadow: var(--trv-shadow-lg) !important;
}
.search-hotels__tabs .nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 10px 20px !important;
}

/* ---------- SECTION HEADERS ---------- */
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  font-weight: 800 !important;
  color: var(--trv-navy) !important;
}
.section-header p em {
  color: var(--trv-gray-500) !important;
  font-style: normal;
  font-weight: 500;
}
.section-header__stars .fa-star {
  color: var(--trv-orange) !important;
}

/* ---------- CARDS ---------- */
.card-hotel {
  border: none !important;
  border-radius: var(--trv-radius-lg) !important;
  box-shadow: var(--trv-shadow) !important;
  transition: var(--trv-transition);
  overflow: hidden;
}
.card-hotel:hover {
  box-shadow: var(--trv-shadow-lg) !important;
  transform: translateY(-4px);
}

.card-service {
  border: 1.5px solid var(--trv-gray-200) !important;
  border-radius: var(--trv-radius-lg) !important;
  box-shadow: none !important;
  transition: var(--trv-transition);
}
.card-service:hover {
  border-color: var(--trv-teal) !important;
  box-shadow: 0 4px 20px rgba(29,198,200,.12) !important;
  transform: translateY(-2px);
}
.card-service .card-header {
  background: none !important;
  border: none !important;
  padding: 20px 20px 0 !important;
}
.card-service .card-header h4 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--trv-navy) !important;
}
.card-service .card-body { padding: 12px 20px 20px !important; color: var(--trv-gray-500); font-size: 14px; }

/* Section daha fazla göster butonu — flex row'dan kayma önleme */
.page-section__more {
  align-self: flex-start !important;
  padding-top: 16px !important;
  padding-bottom: 40px !important;
  width: 100%;
}

/* ---------- BUTTONS ---------- */
.btn--round { border-radius: 50px !important; }
.btn-secondary {
  font-weight: 700 !important;
  letter-spacing: .03em;
  font-size: 14px;
  background: linear-gradient(135deg, var(--trv-cta-start), var(--trv-cta-end)) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(16, 138, 160, .22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: linear-gradient(135deg, #24ddd8, #0b7188) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(16, 138, 160, .28);
  transform: translateY(-1px);
}
.btn-load {
  position: relative;
  width: 15em;
  height: 40px;
  padding: 0;
  transition: all .2s ease-out;
}

/* ============================================================
   FOOTER — Üst Footer + Alt Footer
   ============================================================ */

/* Tüm footer wrapper */
.page-footer {
  background-color: transparent !important;
  padding: 0 !important;
}
.page-footer__cover:before {
  background-color: rgba(7,18,36,.92) !important;
}

/* --- ÜST FOOTER: ana içerik kolonları --- */
.trv-footer-upper {
  background: var(--trv-navy);
  padding: 60px 0 48px;
  position: relative;
  z-index: 1;
}
.trv-footer-upper h3 {
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4) !important;
  margin-bottom: 18px !important;
}
.trv-footer-upper a { color: rgba(255,255,255,.72) !important; text-decoration: none !important; transition: var(--trv-transition); }
.trv-footer-upper a:hover { color: var(--trv-teal) !important; }
.trv-footer-upper p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; }
.trv-footer-upper .page-footer__address li { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.85; list-style: none; }
.trv-footer-upper .page-footer__support a { font-size: 14px; display: block; margin-bottom: 8px; }
.trv-footer-upper .footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.trv-footer-upper .footer-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  border-radius: 50% !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.7) !important;
  transition: var(--trv-transition) !important;
}
.trv-footer-upper .footer-social a:hover {
  background: var(--trv-teal) !important;
  border-color: var(--trv-teal) !important;
  color: #fff !important;
}

/* Subscribe form */
.trv-footer-upper .subscribe-form .form-control {
  background: rgba(255,255,255,.07) !important;
  border: 1.5px solid rgba(255,255,255,.18) !important;
  border-right: none !important;
  border-radius: 8px 0 0 8px !important;
  color: #fff !important;
  font-size: 14px;
}
.trv-footer-upper .subscribe-form .form-control::placeholder { color: rgba(255,255,255,.4) !important; }
.trv-footer-upper .subscribe-form .form-control:focus {
  background: rgba(255,255,255,.12) !important;
  border-color: var(--trv-teal) !important;
  box-shadow: none !important;
}
.trv-footer-upper .subscribe-form .btn {
  background: var(--trv-teal) !important;
  border-color: var(--trv-teal) !important;
  color: #fff !important;
  border-radius: 0 8px 8px 0 !important;
  padding: 0 18px !important;
}
.trv-footer-upper .subscribe-form .btn:hover { background: var(--trv-teal-dark) !important; }

/* --- İNCE AYIRICI ÇİZGİ --- */
.trv-footer-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 0;
}

/* --- ALT FOOTER: copyright + linkler --- */
.trv-footer-lower {
  background: #060f1e;    /* üst footer'dan biraz daha koyu */
  padding: 16px 0;
  position: relative;
  z-index: 1;
}
.trv-footer-lower,
.trv-footer-lower a { color: rgba(255,255,255,.38) !important; font-size: 13px; text-decoration: none !important; transition: var(--trv-transition); }
.trv-footer-lower a:hover { color: var(--trv-teal) !important; }
.trv-footer-lower .trv-footer-lower__links { display: flex; gap: 20px; flex-wrap: wrap; }

/* Eski copyright bloğu gizle (yeni yapı kullanılıyor) */
.page-footer__copyright { display: none !important; }
/* Eski container/row gizle — yeni yapı index.html'deki trv-footer-upper/lower kullanıyor */
.page-footer > .container { display: none !important; }

/* ---------- PAGE CONTENT BORDER ---------- */
.page-content { border-bottom-color: var(--trv-teal) !important; }

/* ---------- SCROLL UP BUTTON ---------- */
.btn-nav--up {
  background: var(--trv-teal) !important;
  border-color: var(--trv-teal) !important;
}

/* ---------- PROGRESS BAR ---------- */
.progress-load { background: var(--trv-teal) !important; }

/* ---------- CARD HOVER OVERLAY ---------- */
.card-hover {
  background: rgba(11,29,53,.88) !important;
  box-shadow: none !important;
}
.card-hover h3 { color: #fff; }
.card-hover .btn-light {
  background: var(--trv-teal) !important;
  border-color: var(--trv-teal) !important;
  color: #fff !important;
  font-weight: 700;
}
.card-hover .btn-light:hover {
  background: var(--trv-teal-dark) !important;
}

/* ---------- CARD PRICE BADGE ---------- */
.card-price { background: var(--trv-navy) !important; color: #fff !important; border-radius: 0 0 0 var(--trv-radius) !important; }
.card-price .count { color: var(--trv-teal) !important; font-weight: 800 !important; }

/* ---------- INTRO HOTELS CARD FOOTER ---------- */
.card-intro__footer { background: rgba(11,29,53,.88) !important; }

/* ---------- RATING STARS ---------- */
.br-theme-fontawesome-stars-o .br-widget {
  display: inline-flex !important;
  align-items: center;
  height: 20px;
  line-height: 1;
}
.br-theme-fontawesome-stars-o .br-widget a {
  display: inline-block;
  width: 16px;
  height: 18px;
  margin-right: 2px;
  font-family: FontAwesome !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: normal !important;
  line-height: 1 !important;
  text-decoration: none !important;
}
.br-theme-fontawesome-stars-o .br-widget a:after {
  content: "\f006" !important;
  color: rgba(255,255,255,.55) !important;
  font-family: FontAwesome !important;
}
.br-theme-fontawesome-stars-o .br-widget a.br-active:after,
.br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
  content: "\f005" !important;
  color: var(--trv-orange) !important;
}
.br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
  content: "\f123" !important;
  color: var(--trv-orange) !important;
}
.br-theme-fontawesome-stars-o .br-widget.br-readonly a {
  cursor: default;
  pointer-events: none;
}

/* ---------- FLAT STYLE OVERRIDES ---------- */
.main-nav__container { border-top: none !important; }

/* Panel fixed - tema orijinal nav'ını gizle */
.panel-fixed { display: none !important; }

/* ---------- LANG DROPDOWN (FRONTEND) ---------- */
.trv-topbar__lang { position: relative; }
.trv-topbar .trv-topbar-drop {
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  padding: 6px 0;
  background: rgba(247, 251, 255, .98) !important;
  border: 1px solid rgba(203, 213, 225, .9) !important;
  border-radius: 10px !important;
  box-shadow: 0 14px 28px rgba(3, 14, 28, .22) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.trv-topbar .trv-topbar-drop::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: rgba(247, 251, 255, .98);
  border-top: 1px solid rgba(203, 213, 225, .9);
  border-left: 1px solid rgba(203, 213, 225, .9);
  transform: rotate(45deg);
}
.trv-topbar .trv-topbar-drop__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: var(--trv-navy) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.35;
  text-shadow: none !important;
  white-space: nowrap;
  background: transparent !important;
}
.trv-topbar .trv-topbar-drop__item:hover {
  background: rgba(29,198,200,.08) !important;
  color: var(--trv-teal-dark) !important;
}
.trv-topbar .trv-dropdown-trigger.open > .trv-topbar__lang,
.trv-topbar .trv-dropdown-trigger.open.trv-topbar__lang,
.trv-topbar .trv-dropdown-trigger.open {
  color: var(--trv-teal) !important;
}
.trv-topbar-drop {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 10001;
}
.trv-dropdown-trigger {
  position: relative;
  cursor: pointer;
}
.trv-dropdown-trigger.open .trv-topbar-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.trv-topbar-drop__item {
  display: block;
  padding: 8px 16px;
  color: #1e293b !important;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.trv-topbar-drop__item:hover {
  background: #f8fafc;
  color: #0fa3b1 !important;
}

/* ---------- HEADER LANGUAGE / CURRENCY SWITCHERS ---------- */
.trv-topbar .trv-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.trv-topbar .trv-switcher__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,.98);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--trv-transition);
}
.trv-topbar .trv-switcher__trigger:hover,
.trv-topbar .trv-dropdown-trigger.open .trv-switcher__trigger {
  color: #fff;
  background: rgba(255,255,255,.09);
}
.trv-topbar .trv-switcher__flag,
.trv-topbar .trv-switcher__symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  min-width: 18px;
  font-size: 14px;
  line-height: 1;
}
.trv-topbar img.trv-switcher__flag,
.trv-mobile-flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  min-width: 18px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15,35,64,.10);
  vertical-align: -1px;
}
.trv-topbar .trv-switcher__symbol {
  font-size: 13px;
  font-weight: 900;
}
.trv-topbar .trv-switcher__label {
  max-width: 82px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trv-topbar .trv-switcher__menu.trv-topbar-drop {
  top: calc(100% + 11px);
  right: auto;
  left: 0;
  min-width: 168px;
  padding: 7px;
  border: 1px solid rgba(203, 213, 225, .72) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 18px 36px rgba(8, 22, 42, .20) !important;
  overflow: visible;
}
.trv-topbar .trv-switcher--currency .trv-switcher__menu.trv-topbar-drop {
  min-width: 150px;
}
.trv-topbar .trv-switcher__menu.trv-topbar-drop::before {
  display: none;
}
.trv-topbar .trv-switcher__item.trv-topbar-drop__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--trv-navy) !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2;
  text-shadow: none !important;
}
.trv-topbar .trv-switcher__item.trv-topbar-drop__item:hover {
  background: rgba(29,198,200,.10) !important;
  color: var(--trv-navy) !important;
}
.trv-topbar .trv-switcher__item.is-active {
  background: #eaf5e9 !important;
}
.trv-topbar .trv-switcher__name {
  flex: 1 1 auto;
  min-width: 0;
}
.trv-topbar .trv-switcher__check {
  margin-left: auto;
  color: #175f48;
  font-size: 12px;
}
.trv-topbar .trv-dropdown-trigger.open .trv-switcher__trigger .fa-angle-down {
  transform: rotate(180deg);
}
.trv-topbar .trv-switcher__trigger .fa-angle-down {
  transition: transform .16s ease;
}

.trv-mobile-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}
.trv-mobile-switcher-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.trv-mobile-meta .trv-mobile-switcher-group a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid rgba(203,213,225,.82);
  border-radius: 8px;
  color: var(--trv-navy) !important;
  background: #fff;
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: none !important;
}
.trv-mobile-meta .trv-mobile-switcher-group a.is-active {
  background: #eaf5e9;
  border-color: rgba(23,95,72,.16);
}
.trv-topbar__rates {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255,255,255,.75);
  padding: 0 6px;
  border-left: 1px solid rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.12);
  margin: 0 2px;
  height: 100%;
  white-space: nowrap;
}
.trv-rate-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 2px 5px;
}
.trv-rate-code {
  font-weight: 700;
  font-size: 10px;
  color: rgba(255,255,255,.85);
}
.trv-rate-val {
  font-size: 10px;
  color: #1dc6c8;
  font-weight: 600;
}
.trv-rates-drop {
  min-width: 210px;
  padding: 0 !important;
}
.trv-rates-drop__head,
.trv-rates-drop__foot {
  padding: 10px 14px 8px;
  font-size: 10px;
  color: #94a3b8;
}
.trv-rates-drop__head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  border-bottom: 1px solid #f1f5f9;
}
.trv-rates-drop__foot {
  border-top: 1px solid #f1f5f9;
}
.trv-rates-drop__row {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  gap: 8px;
  border-bottom: 1px solid #f8fafc;
  font-size: 11px;
}
.trv-rates-drop__row:hover {
  background: #f8fafc;
}
.trv-rates-drop__code {
  font-weight: 700;
  color: #0f2d4a;
  width: 34px;
  flex-shrink: 0;
}
.trv-rates-drop__name {
  flex: 1;
  color: #64748b;
  font-size: 11px;
}
.trv-rates-drop__price {
  font-weight: 700;
  color: #1dc6c8;
  white-space: nowrap;
}
#trvCurMenu { min-width: 190px; }
#trvLangMenu { min-width: 160px; }
#trvLangMenu a:hover { background: rgba(29,198,200,.08); color: var(--trv-teal-dark) !important; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199px) {
  .trv-mainnav .navbar-logo {
    margin-right: clamp(28px, 5vw, 72px) !important;
  }
  .navbar-logo img {
    max-height: 46px;
  }
  .trv-nav-links .nav-link {
    font-size: 15px !important;
    padding: 10px 6px !important;
  }
  .trv-nav-cta {
    min-height: 46px;
    padding: 12px 18px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .trv-header-search {
    min-width: 150px;
    max-width: 170px;
  }
  .trv-topbar__contact {
    gap: 12px;
    padding-left: 10px;
  }
  .trv-topbar__actions {
    gap: 8px;
  }
  .trv-nav-links .nav-link {
    font-size: 15px !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}

@media (max-width: 991px) {
  .trv-topbar__row {
    min-height: 52px;
  }
  .trv-topbar__contact {
    display: none !important;
  }
  .trv-mainnav__row {
    min-height: 74px;
  }
  .navbar-logo img {
    max-height: 44px;
  }
  .trv-mobile-nav.show {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .trv-mobile-nav,
  .trv-mobile-nav.show {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .trv-topbar__contact { display: none !important; }
  .trv-topbar__actions .trv-topbar__btn span { display: none; }
  .trv-topbar__actions .trv-topbar__btn { padding: 4px 8px; }
}

@media (max-width: 575px) {
  .page-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .navbar-logo img {
    max-height: 38px;
  }
}

/* ============================================================
   FIXED HEADER OFFSET — non-home pages
   Topbar: 58px + Mainnav: 92px = 150px desktop
   Mobile/tablet values follow the visible header stack
   ============================================================ */
.trv-page-inner,
.page-main:not(.page-main--home),
main.page-main:not(.page-main--home) {
  padding-top: 150px !important;
}
@media (max-width: 991px) {
  .trv-page-inner,
  .page-main:not(.page-main--home),
  main.page-main:not(.page-main--home) {
    padding-top: 126px !important;
  }
}
@media (max-width: 767px) {
  .trv-page-inner,
  .page-main:not(.page-main--home),
  main.page-main:not(.page-main--home) {
    padding-top: 74px !important;
  }
}

/* ============================================================
   SIDEBAR — sticky offset respects fixed header
   ============================================================ */
.sidebar-filter.card {
  position: relative;
  z-index: 100;
}
.sidebar__content.js-sticky-top,
.sidebar__content .js-sticky-top,
.trv-sidebar-sticky {
  top: 160px !important; /* header height + small gap */
  max-height: calc(100vh - 184px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  padding-right: 2px;
  overscroll-behavior: contain;
}
.sidebar__content.js-sticky-top.is_stuck,
.sidebar__content.js-sticky-top[style*="position: fixed"] {
  max-height: calc(100vh - 184px) !important;
}
.trv-sidebar-sticky {
  position: sticky;
  max-height: calc(100vh - 184px) !important;
}
.sidebar__content.js-sticky-top .sidebar-filter.card,
.trv-sidebar-sticky .sidebar-filter.card {
  max-height: inherit;
  overflow: visible;
}
@media (max-width: 991px) {
  .sidebar__content.js-sticky-top,
  .sidebar__content .js-sticky-top,
  .trv-sidebar-sticky {
    top: 136px !important;
    max-height: calc(100vh - 156px);
    overflow-y: auto;
  }
}
@media (max-width: 767px) {
  .sidebar__content.js-sticky-top,
  .sidebar__content .js-sticky-top,
  .trv-sidebar-sticky {
    top: 84px !important;
    max-height: none;
    overflow-y: visible;
  }
}

/* ============================================================
   STICKY FOOTER — içerik kısa olsa bile footer her zaman altta
   body → flex-column  |  .page-main → flex:1  |  footer → alt
   ============================================================ */
body.load {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 0 !important;
}

/* Fixed konumdaki elemanlar flex akışını etkilemez;
   sadece <main> ve <footer> akış içinde kalır */
.page-main,
main.page-main {
  flex: 1 0 auto;
  margin-bottom: 0 !important;
}

.trv-filter-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.trv-filter-actions .btn {
  min-width: 0;
  white-space: nowrap;
}

.trv-catalog-summary--actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.trv-catalog-summary__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product {
  position: relative;
}

.trv-product-media {
  position: relative;
  min-height: 200px;
  margin: 0 -1rem 1rem;
  overflow: hidden;
  z-index: 1;
}

.trv-product-media .product__img-top {
  min-height: inherit;
  height: 100%;
  margin: 0;
  overflow: visible;
}

.product--list .trv-product-media {
  min-width: 31.25%;
  margin: -1rem 0;
}

.product--list .trv-product-media .product__img-top {
  min-width: 0;
  margin: 0;
}

.trv-favorite-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 24, 43, 0.86);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.trv-favorite-btn:hover,
.trv-favorite-btn:focus {
  background: linear-gradient(135deg, var(--trv-cta-start), var(--trv-cta-end));
  color: #fff;
}

.trv-favorite-btn.is-active {
  background: linear-gradient(135deg, var(--trv-coral), #ffb347);
  color: #fff;
}

.trv-favorite-btn--card {
  position: absolute;
  top: auto;
  right: 14px;
  bottom: 14px;
  z-index: 5;
}

.trv-product-media .trv-favorite-btn--card {
  bottom: 14px;
}

.flight-card {
  position: relative;
}

.trv-flight-favorite {
  position: absolute;
  top: auto;
  right: 14px;
  bottom: 14px;
  z-index: 6;
  margin: 0 !important;
}

.flight-card__total .total {
  padding-right: 0;
  padding-bottom: 46px;
}

@media (max-width: 767px) {
  .trv-flight-favorite {
    right: 12px;
    bottom: 12px;
  }

  .flight-card__total .total {
    padding-bottom: 42px;
  }
}

.trv-favorite-count {
  min-width: 20px;
  height: 20px;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(25, 194, 209, 0.18);
  color: #19c2d1;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trv-cart-count {
  min-width: 20px;
  height: 20px;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--trv-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trv-cart-add-form {
  display: flex;
  flex: 1 1 180px;
  margin: 0;
}

.trv-cart-add-form .btn {
  width: 100%;
}

.trv-cart-page .page-content {
  padding: 32px 0 64px;
}

.trv-cart-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b1d35 0%, #12385f 62%, #159fa4 100%);
  color: #fff;
  box-shadow: var(--trv-shadow);
}

.trv-cart-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #9ff4f2;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.trv-cart-hero h1 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 2rem;
}

.trv-cart-hero p {
  margin: 0;
  color: rgba(255,255,255,.82);
}

.trv-cart-empty {
  padding: 48px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--trv-shadow);
  text-align: center;
}

.trv-cart-empty > i {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(29,198,200,.12);
  color: var(--trv-teal-dark);
  font-size: 30px;
}

.trv-cart-empty h2 {
  color: var(--trv-navy);
}

.trv-cart-empty p {
  color: #64748b;
}

.trv-cart-list {
  display: grid;
  gap: 14px;
}

.trv-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) 42px;
  gap: 16px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--trv-shadow);
}

.trv-cart-item__media {
  min-height: 112px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--trv-gray-100);
}

.trv-cart-item__media img,
.trv-cart-item__media span {
  width: 100%;
  height: 100%;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  color: var(--trv-gray-500);
}

.trv-cart-type {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(29,198,200,.12);
  color: var(--trv-teal-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.trv-cart-item h2 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.trv-cart-item h2 a {
  color: var(--trv-navy);
  text-decoration: none;
}

.trv-cart-item p {
  margin: 0 0 12px;
  color: #64748b;
}

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

.trv-cart-item__controls label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.trv-cart-item__controls input {
  width: 72px;
  min-height: 40px;
  border: 1px solid var(--trv-gray-200);
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
}

.trv-cart-item__controls span {
  color: var(--trv-teal-dark);
  font-size: 1.1rem;
  font-weight: 900;
  white-space: nowrap;
}

.trv-cart-remove {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff1f2;
  color: #e11d48;
  cursor: pointer;
}

.trv-cart-list__actions {
  display: flex;
  justify-content: flex-end;
}

.trv-cart-summary {
  position: sticky;
  top: 160px;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--trv-shadow);
}

.trv-cart-summary h2 {
  margin: 0 0 16px;
  color: var(--trv-navy);
  font-size: 1.25rem;
}

.trv-cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--trv-gray-200);
}

.trv-cart-summary__row strong {
  color: var(--trv-navy);
  font-size: 1.08rem;
}

.trv-cart-summary p {
  margin: 14px 0;
  color: #64748b;
  font-size: .9rem;
}

@media (max-width: 767px) {
  .trv-cart-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .trv-cart-item {
    grid-template-columns: 104px minmax(0, 1fr);
    padding-right: 52px;
  }

  .trv-cart-remove {
    position: absolute;
    top: 14px;
    right: 14px;
  }

  .trv-cart-item__controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .trv-cart-summary {
    position: static;
    margin-top: 18px;
  }
}

.trv-favorites-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--trv-coral), #ffb347);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(11, 29, 53, 0.22);
}

.trv-favorites-fab span {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #0b1d35;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trv-favorite-card {
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(11, 29, 53, 0.08);
}

.trv-favorite-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.trv-favorite-card__img--empty {
  background: linear-gradient(135deg, #0b1d35, #19c2d1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.trv-favorite-card__body {
  padding: 22px;
}

.trv-favorite-card__body h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b1d35;
}

.trv-favorite-card__type {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #19c2d1;
}

.trv-contact-map {
  overflow: hidden;
}

.trv-contact-map iframe {
  min-height: 320px;
}

@media (max-width: 991px) {
  .trv-catalog-summary--actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .trv-favorites-fab {
    right: 14px;
    bottom: 14px;
  }
}

.page-footer {
  flex-shrink: 0;
  position: relative;  /* jarallax cover'ı footer içinde hapseder */
}

/* jarallax cover'ın footer dışına taşmasını engelle */
.page-footer__cover {
  position: absolute !important;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* cover üstündeki içerik katmanları kesinlikle öne çıksın */
.trv-footer-upper,
.trv-footer-divider,
.trv-footer-lower {
  position: relative;
  z-index: 1;
}

/* ============================================================
   HOMEPAGE GORDIOS SECTIONS
   ============================================================ */
.trv-home-section { overflow: hidden; }
.trv-home-band {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.trv-home-band--alt {
  background: linear-gradient(180deg, #f7fbfc 0%, #eff6f8 100%);
}

.trv-home-band--catalog {
  background: #f5f1e9;
}

.trv-home-band__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 32px;
}

.trv-home-band__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.trv-home-band__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(29, 198, 200, 0.12);
  color: var(--trv-teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trv-home-band__text {
  margin: 0;
  max-width: 640px;
  color: var(--trv-gray-500);
  font-size: 14px;
}

.trv-home-band__header {
  margin-bottom: 42px;
}

.trv-home-band__header--center {
  text-align: center;
}

.trv-home-band__title {
  margin: 0;
  color: var(--trv-navy);
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
}

.trv-home-band__intro {
  max-width: 640px;
  margin: 22px auto 0;
  color: #90a0b7;
  font-size: 16px;
  line-height: 1.7;
}

.trv-home-band__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  color: var(--trv-orange);
}

.trv-home-band__stars::before,
.trv-home-band__stars::after {
  content: "";
  width: 72px;
  max-width: 14vw;
  height: 1px;
  background: rgba(11, 29, 53, 0.16);
}

.trv-home-band__stars span {
  display: inline-flex;
  gap: 10px;
  font-size: 16px;
}

.trv-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--trv-navy);
  letter-spacing: -.02em;
}

.trv-home-slider {
  overflow: visible;
  padding: 6px 2px 10px;
}

.trv-home-slider .swiper-slide {
  height: auto;
}

.trv-home-grid {
  justify-content: center;
}

.trv-home-slider__nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trv-home-slider__nav .btn-nav {
  position: static;
  transform: none;
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(11, 29, 53, 0.14);
}

.trv-home-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(11, 29, 53, 0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(11, 29, 53, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.trv-home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(11, 29, 53, 0.14);
}

.trv-home-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: #dfe7ee;
  overflow: hidden;
}

.trv-home-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.trv-home-card:hover .trv-home-card__media img {
  transform: scale(1.06);
}

.trv-home-card__badge {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 29, 53, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trv-home-card__tag {
  position: absolute;
  right: 0;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px 0 0 12px;
  background: rgba(11, 29, 53, 0.88);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.trv-home-card__tag strong,
.trv-home-card__tag b {
  color: var(--trv-teal);
}

.trv-home-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px;
}

.trv-home-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 12px;
  color: var(--trv-gray-500);
  font-size: 12px;
  font-weight: 700;
}

.trv-home-card__stars {
  display: inline-flex;
  gap: 3px;
  color: #f6b91a;
}

.trv-home-card__location,
.trv-home-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trv-home-card__title {
  margin-bottom: 10px;
  color: var(--trv-navy);
  font-size: 1.2rem;
  line-height: 1.35;
}

.trv-home-card__title a {
  color: inherit;
  text-decoration: none;
}

.trv-home-card__title a:hover {
  color: var(--trv-teal-dark);
}

.trv-home-card__summary {
  margin-bottom: 22px;
  color: var(--trv-gray-500);
  font-size: 14px;
  line-height: 1.75;
}

.trv-home-card--catalog {
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(11, 29, 53, 0.08);
}

.trv-home-card--catalog .trv-home-card__body {
  padding: 18px 20px 16px;
}

.trv-home-card__meta--catalog {
  margin-bottom: 0;
  color: #8b93a3;
  font-size: 14px;
  font-weight: 500;
  gap: 10px 22px;
}

.trv-home-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 29, 53, 0.08);
}

.trv-home-card__price {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trv-home-card__price small {
  color: var(--trv-gray-500);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.trv-home-card__price strong {
  color: var(--trv-teal-dark);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.trv-home-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(29, 198, 200, 0.28);
  border-radius: 999px;
  background: rgba(29, 198, 200, 0.08);
  color: var(--trv-teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s ease;
}

.trv-home-card__link:hover {
  background: var(--trv-teal);
  border-color: var(--trv-teal);
  color: #fff;
  text-decoration: none;
}

.trv-gordios-widget .card {
  border-radius: var(--trv-radius-lg);
  overflow: hidden;
  transition: var(--trv-transition);
  border: none;
}
.trv-gordios-widget .card:hover {
  box-shadow: var(--trv-shadow-lg);
  transform: translateY(-3px);
}
.trv-gordios-widget .card-img-top {
  border-radius: var(--trv-radius-lg) var(--trv-radius-lg) 0 0;
}
.trv-gordios-widget .btn-outline-primary {
  color: var(--trv-teal) !important;
  border-color: var(--trv-teal) !important;
  font-size: 13px;
  font-weight: 700;
}
.trv-gordios-widget .btn-outline-primary:hover {
  background: var(--trv-teal) !important;
  color: #fff !important;
}

/* Sidebar filter actions */
.sidebar-filter .modal-body {
  overflow-x: hidden;
}
.trv-filter-actions {
  gap: 10px;
  align-items: stretch;
}
.trv-filter-actions .btn {
  min-width: 0;
  height: 40px;
  padding: 0 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .01em;
  white-space: nowrap;
}
.trv-filter-actions .btn-secondary {
  background: linear-gradient(135deg, var(--trv-cta-start), var(--trv-cta-end)) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(16, 138, 160, .20);
}
.trv-filter-actions .btn-secondary:hover {
  background: linear-gradient(135deg, #24ddd8, #0b7188) !important;
  border-color: transparent !important;
  box-shadow: 0 14px 28px rgba(16, 138, 160, .26);
}
.trv-filter-actions .btn-outline-secondary {
  background: #fff !important;
  border: 1.5px solid rgba(16, 138, 160, .35) !important;
  color: #0b7188 !important;
}
.trv-filter-actions .btn-outline-secondary:hover {
  background: rgba(29,198,200,.10) !important;
  border-color: rgba(16, 138, 160, .55) !important;
  color: #075d70 !important;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .trv-filter-actions {
    flex-direction: column;
  }
  .trv-filter-actions .btn {
    width: 100%;
  }
}

/* Search results */
.trv-search-page-form {
  background: #fff;
  border: 1px solid var(--trv-gray-200);
  border-radius: var(--trv-radius);
  padding: 18px;
  box-shadow: var(--trv-shadow);
}
.trv-search-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: var(--trv-radius);
  border: 1px solid var(--trv-gray-200);
  box-shadow: var(--trv-shadow);
}
.trv-search-card__img,
.trv-search-card__placeholder {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.trv-search-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--trv-navy), var(--trv-teal));
  color: rgba(255,255,255,.55);
  font-size: 28px;
}
.trv-search-card__body {
  padding: 16px;
}
.trv-search-card__type {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(29,198,200,.1);
  color: var(--trv-teal-dark);
  font-size: 11px;
  font-weight: 800;
}
.trv-search-card h2 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--trv-navy);
}
.trv-search-card p {
  color: var(--trv-gray-500);
  font-size: 13px;
}
.trv-search-card__price {
  color: var(--trv-teal-dark);
  font-size: 14px;
}

/* Category pages: keep async Gordios cards and footer in normal page flow. */
main.page-main,
.page-main {
  margin-bottom: 0 !important;
  overflow: visible !important;
}

.page-content,
.category-content {
  overflow: visible !important;
}

.category-content {
  padding-bottom: 48px;
}

.category-content__items.trv-gordios-widget {
  display: block !important;
  position: relative !important;
  width: 100%;
  height: auto !important;
  min-height: 420px;
  margin-bottom: 48px !important;
  clear: both;
  overflow: visible !important;
}

.category-content__items.trv-gordios-widget::after {
  content: "";
  display: block;
  clear: both;
}

.category-content__items.trv-gordios-widget > .row {
  display: flex !important;
  flex-wrap: wrap !important;
  position: relative !important;
  height: auto !important;
  overflow: visible !important;
}

.page-footer,
.page-footer.sticky {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  z-index: 1 !important;
  clear: both;
}

.trv-filter-actions {
  flex-wrap: nowrap;
}

.trv-filter-actions .btn {
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 991px) {
  .trv-home-band {
    padding: 70px 0;
  }

  .trv-home-band__head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 26px;
  }

  .trv-home-band__actions {
    width: 100%;
    justify-content: space-between;
  }
}

/* ============================================================
   FINAL HEADER / HERO / SEO LAYOUT OVERRIDES
   ============================================================ */
html,
body {
  min-height: 100%;
}

body {
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-main,
main.page-main {
  flex: 1 0 auto;
}

.trv-topbar__row {
  justify-content: flex-start;
  gap: 16px;
}

.trv-topbar__contact {
  padding-left: 0;
  gap: 14px;
}

.trv-topbar__rates {
  margin: 0;
  padding: 0 10px;
}

.trv-topbar__rates .trv-topbar-drop {
  left: 0;
  right: auto;
}

.trv-topbar__rates .trv-topbar-drop::before {
  left: 18px;
  right: auto;
}

.trv-header-search--topbar {
  min-width: 250px;
  max-width: 250px;
  margin: 0;
}

.trv-topbar__actions {
  margin-left: auto;
  gap: 12px;
}

.trv-topbar__actions .trv-header-search--topbar {
  order: 0;
  margin-right: 2px;
}

.trv-topbar__actions .trv-topbar__lang {
  order: 1;
}

.trv-topbar__actions .trv-sep,
.trv-topbar__actions .trv-topbar__btn {
  order: 2;
}

.trv-mainnav__row {
  justify-content: flex-start;
  gap: 18px;
}

.trv-nav-links {
  flex: 0 1 auto;
  margin-right: auto;
}

.intro {
  position: relative;
  height: 455px;
  min-height: 455px !important;
  padding: 0;
  margin-bottom: 175px;
  overflow: visible;
  background: #0b1d35;
}

.intro__bg {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100% !important;
}

.intro__bg.sticky {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100% !important;
  transform: none !important;
}

.intro__bg .swiper-container,
.intro__bg .swiper-wrapper,
.intro__bg .swiper-slide,
.intro__bg .img-cover {
  width: 100%;
  height: 100%;
}

.intro__bg .over {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 18, 36, 0.26) 0%, rgba(7, 18, 36, 0.08) 45%, rgba(7, 18, 36, 0.36) 100%) !important;
}

.intro__desc {
  display: none !important;
}

.intro__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -128px;
  z-index: 3;
  width: 100%;
  padding: 0 !important;
  opacity: 1;
}

.intro__hotels {
  padding-top: 0;
  overflow: visible;
}

.intro__hotels .swiper-container {
  overflow: visible;
}

.intro__hotels .swiper-slide {
  height: auto;
}

.intro__hotels-controls {
  z-index: 4;
}

.trv-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trv-filter-actions .btn {
  flex: 1 1 140px;
  justify-content: center;
}

.trv-contact-hero {
  padding: 72px 0 40px;
  background: linear-gradient(135deg, #0b1d35 0%, #13365d 45%, #1aa9b0 100%);
}

.trv-contact-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trv-contact-hero__title {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
}

.trv-contact-hero__text {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.8;
}

.trv-contact-card {
  height: 100%;
  padding: 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(11, 29, 53, 0.10);
}

.trv-contact-card--info {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.trv-contact-card__title {
  margin-bottom: 22px;
  color: var(--trv-navy);
  font-size: 1.5rem;
  font-weight: 800;
}

.trv-contact-card__item + .trv-contact-card__item {
  margin-top: 18px;
}

.trv-contact-card__item span,
.trv-contact-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--trv-gray-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trv-contact-card--info .trv-contact-card__item span {
  color: rgba(255, 255, 255, 0.56);
}

.trv-contact-card__item a,
.trv-contact-card__item strong {
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.trv-contact-list > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--trv-gray-200);
}

.trv-contact-list > div:last-child {
  border-bottom: 0;
}

.trv-contact-list strong {
  color: var(--trv-navy);
}

.trv-form-label {
  margin-bottom: 8px;
  color: var(--trv-navy);
  font-size: 13px;
  font-weight: 700;
}

.trv-form-control {
  min-height: 48px;
  border: 1px solid var(--trv-gray-200);
  border-radius: 12px;
  box-shadow: none;
}

.trv-form-control:focus {
  border-color: rgba(29, 198, 200, 0.55);
  box-shadow: 0 0 0 4px rgba(29, 198, 200, 0.10);
}

.trv-contact-map {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(11, 29, 53, 0.10);
}

.trv-contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 1399px) {
  .trv-header-search--topbar {
    min-width: 220px;
    max-width: 220px;
  }
}

@media (max-width: 1199px) {
  .trv-topbar__row {
    gap: 12px;
  }

  .trv-header-search--topbar {
    min-width: 190px;
    max-width: 190px;
  }
}

@media (max-width: 991px) {
  .intro {
    height: 400px;
    min-height: 400px !important;
    margin-bottom: 155px;
  }

  .intro__content {
    bottom: -112px;
  }
}

@media (max-width: 767px) {
  .intro {
    height: 320px;
    min-height: 320px !important;
    margin-bottom: 125px;
  }

  .intro__content {
    bottom: -92px;
  }

  .intro__hotels .swiper-container {
    overflow: hidden;
  }

  .trv-filter-actions .btn {
    flex-basis: 100%;
  }

  .trv-contact-card,
  .trv-contact-card--info {
    padding: 22px;
  }

  .trv-contact-map iframe {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .trv-home-card__body {
    padding: 20px;
  }

  .trv-home-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .trv-home-card__link {
    width: 100%;
  }

  .trv-home-slider__nav {
    display: none;
  }
}

/* ============================================================
   HOME PAGE RESET TO MATCH index.html LAYOUT
   ============================================================ */
body {
  margin: 0 !important;
}

.page-main--home .intro {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 100vh !important;
  min-height: 100svh !important;
  margin: 0;
  overflow: hidden;
  background: #0b1d35;
}

.page-main--home .intro__bg,
.page-main--home .intro__bg.sticky {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-main--home .intro__bg .swiper-container,
.page-main--home .intro__bg .swiper-wrapper,
.page-main--home .intro__bg .swiper-slide {
  height: 100%;
}

.page-main--home .intro__bg .over {
  background: linear-gradient(180deg, rgba(7, 18, 36, 0.58) 0%, rgba(7, 18, 36, 0.30) 42%, rgba(7, 18, 36, 0.56) 100%) !important;
}

.page-main--home .intro__desc {
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 1;
}

.page-main--home .intro__desc .swiper-wrapper,
.page-main--home .intro__desc .swiper-slide {
  height: 100%;
}

.page-main--home .intro__desc .swiper-slide {
  display: flex;
  align-items: center;
}

.page-main--home .intro__desc .container {
  padding-top: 150px;
}

.page-main--home .intro__caption {
  margin-bottom: 12px;
}

.page-main--home .intro__title {
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 5.4rem) !important;
}

.page-main--home .intro__desc p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.7;
}

.page-main--home .intro__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  padding: 0 !important;
  opacity: 1;
}

.page-main--home .intro__hotels {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.page-main--home .intro__hotels .swiper-container {
  overflow: hidden;
  padding: 0 60px;
}

.page-main--home .intro__hotels .swiper-slide {
  width: 360px;
  height: auto;
}

.page-main--home .card-intro {
  height: 182px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(11, 29, 53, .18);
}

.page-main--home .card-intro__footer {
  border-radius: 0 0 16px 16px;
  background: rgba(11, 29, 53, 0.84) !important;
}

.page-main--home .card-hover {
  border-radius: inherit;
  background: rgba(11, 29, 53, 0.88) !important;
  box-shadow: none !important;
}

.page-main--home .card-intro .card-price {
  border-radius: 0 0 0 12px !important;
}

.page-main--home .intro__hotels-controls {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.page-main--home .intro__hotels-controls .btn-nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  pointer-events: auto;
}

.page-main--home .intro__hotels-controls .btn-nav--left {
  left: 0;
}

.page-main--home .intro__hotels-controls .btn-nav--right {
  right: 0;
}

.page-main--home .page-content--home {
  padding: 78px 0 34px;
  background: #e8e5df;
}

.page-main--home .section-header {
  margin-bottom: 34px;
}

.page-main--home .section-header + .col-12,
.page-main--home .section-header + [class*="col-"] {
  margin-top: 0;
}

.page-main--home .page-section__more {
  padding-top: 8px !important;
  padding-bottom: 56px !important;
}

.trv-home-quicklinks {
  margin: 0 0 34px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(15, 35, 64, .08);
  box-shadow: 0 14px 34px rgba(15, 35, 64, .08);
}

.trv-home-quicklinks__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.trv-home-quicklinks__head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #071d3a;
}

.trv-home-quicklinks__head p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
}

.trv-home-quicklinks__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.trv-home-quicklinks__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 35, 64, .08);
  color: #0f2340;
  font-weight: 800;
  background: #f8fafc;
  text-decoration: none;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.trv-home-quicklinks__item:hover {
  color: #0f2340;
  border-color: rgba(29, 198, 200, .38);
  background: #eefbfb;
  transform: translateY(-1px);
  text-decoration: none;
}

.trv-home-quicklinks__item i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #18b8bf;
  border-radius: 50%;
  flex: 0 0 28px;
}

@media (max-width: 991px) {
  .trv-home-quicklinks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .trv-home-quicklinks__head {
    display: block;
  }

  .trv-home-quicklinks__head p {
    margin-top: 4px;
  }

  .trv-home-quicklinks__grid {
    grid-template-columns: 1fr;
  }
}

.page-main--home .btn-load {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 210px;
  padding: 0.95rem 2rem;
}

@media (max-width: 1199px) {
  .page-main--home .intro {
    height: 100vh;
    height: 100svh;
    min-height: 100vh !important;
    min-height: 100svh !important;
  }

  .page-main--home .intro__hotels .swiper-slide {
    width: 320px;
  }
}

@media (max-width: 991px) {
  .page-main--home .intro {
    height: 100vh;
    height: 100svh;
    min-height: 100vh !important;
    min-height: 100svh !important;
  }

  .page-main--home .intro__desc .container {
    padding-top: 124px;
  }

  .page-main--home .intro__hotels .swiper-container {
    padding: 0 48px;
  }

  .page-main--home .intro__hotels .swiper-slide {
    width: 280px;
  }
}

@media (max-width: 767px) {
  .page-main--home .intro {
    height: 100vh;
    height: 100svh;
    min-height: 100vh !important;
    min-height: 100svh !important;
  }

  .page-main--home .intro__desc .container {
    padding-top: 94px;
  }

  .page-main--home .intro__title {
    font-size: clamp(2.2rem, 9vw, 3.1rem) !important;
  }

  .page-main--home .intro__desc p {
    font-size: 14px;
  }

  .page-main--home .intro__content {
    bottom: 0;
  }

  .page-main--home .intro__hotels .swiper-container {
    padding: 0 44px;
  }

  .page-main--home .intro__hotels .swiper-slide {
    width: 240px;
  }

  .page-main--home .card-intro {
    height: 168px;
  }

  .page-main--home .page-content--home {
    padding-top: 54px;
  }
}

/* ============================================================
   FINAL CATALOG TOOLBAR / FILTER FIXES
   ============================================================ */
.trv-catalog-page .sortbar {
  padding: 0;
  border: 1px solid var(--trv-gray-200);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.trv-catalog-page .sortbar__title,
.trv-catalog-page .sortbar__sort,
.trv-catalog-page .sortbar__grid,
.trv-catalog-page .trv-catalog-toolbar {
  min-height: 72px;
}

.trv-catalog-page .sortbar__title .navbar-brand {
  height: 100%;
  margin: 0;
  padding: 0 22px;
  color: var(--trv-navy);
  font-weight: 800;
}

.trv-catalog-page .sortbar__sort,
.trv-catalog-page .trv-catalog-toolbar {
  flex: 1 1 auto;
  align-content: center;
}

.trv-catalog-page .sortbar__grid {
  margin-left: auto;
  border-left: 1px solid var(--trv-gray-200);
  align-self: stretch;
}

.trv-catalog-page .sortbar__grid .nav-link {
  width: 56px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7c8ba1;
}

.trv-catalog-page .sortbar__grid .nav-link.active,
.trv-catalog-page .sortbar__grid .nav-link:hover {
  color: var(--trv-teal-dark);
  background: rgba(29, 198, 200, 0.08);
}

.trv-catalog-toolbar__btn {
  flex: 0 0 auto;
  min-width: 140px;
  height: 44px;
  padding: 0 24px !important;
}

.trv-filter-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.trv-filter-actions .btn {
  width: 100%;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .trv-filter-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .trv-catalog-page .sortbar__grid {
    width: 100%;
    margin-left: 0;
    border-left: 0;
    border-top: 1px solid var(--trv-gray-200);
    justify-content: flex-end;
  }

  .trv-catalog-toolbar__btn {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 575px) {
  .trv-filter-actions {
    grid-template-columns: 1fr;
  }
}

.trv-transfer-placeholder {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--trv-navy), var(--trv-teal));
  color: rgba(255, 255, 255, 0.72);
  font-size: 46px;
}

.trv-transfer-placeholder--hero {
  min-height: 420px;
}

.trv-transfer-meta {
  height: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--trv-gray-200);
  background: #f8fbfd;
}

.trv-transfer-meta__label {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   ACCOUNT MODAL / MEMBER BAR
   ============================================================ */
.modal-account .modal-dialog {
  max-width: 460px;
}

.modal-account .modal-content {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .28);
}

.modal-account .modal-header {
  padding: 0;
  background: linear-gradient(135deg, #0f2340, #17355e);
  border-bottom: 0;
}

.modal-account .modal-body {
  padding: 28px;
  background: #fff;
}

.modal-account__tabs {
  flex: 1 1 auto;
  border-bottom: 0;
}

.modal-account__tabs .nav-link {
  margin: 0;
  border: 0;
  border-radius: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  font-weight: 800;
  background: transparent;
}

.modal-account__tabs .nav-link.active,
.modal-account__tabs .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.modal-account .close {
  width: 52px;
  min-width: 52px;
  height: 52px;
  margin: 10px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  opacity: 1;
  box-shadow: none;
}

.modal-account .close:hover {
  background: rgba(255, 255, 255, .2);
}

.modal-account__form .form-group {
  margin-bottom: 14px;
}

.modal-account__form .form-control {
  min-height: 54px;
  border: 1px solid #d7e1ee;
  border-radius: 14px;
  padding: 0 16px;
  font-size: 14px;
  color: #0f172a;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.modal-account__form .form-control:focus {
  border-color: var(--trv-teal);
  box-shadow: 0 0 0 4px rgba(29, 198, 200, .12);
  transform: translateY(-1px);
}

.modal-account__form .help-block {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
}

.modal-account__form .btn.btn-secondary {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: linear-gradient(135deg, #fd962c, #ffad45);
  color: #fff;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 14px 30px rgba(253, 150, 44, .22);
}

.modal-account__form .btn.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(253, 150, 44, .28);
}

.trv-account-alert {
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.55;
}

.trv-account-note {
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: #f8fbfd;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
}

.trv-topbar__btn--member {
  border-style: solid;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.trv-topbar__btn--member:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

/* Homepage enrichment */
.trv-home-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(29, 198, 200, .12);
  color: #0b8c95;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trv-home-command {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 18px;
  margin: 0 0 42px;
}

.trv-home-command__panel,
.trv-home-stats,
.trv-home-destinations,
.trv-home-steps {
  border: 1px solid rgba(15, 35, 64, .08);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 38px rgba(15, 35, 64, .08);
}

.trv-home-command__panel {
  padding: 28px;
}

.trv-home-command__panel h2,
.trv-home-section-head h2,
.trv-home-steps h2,
.trv-home-cta-band h2 {
  margin: 0;
  color: var(--trv-navy);
  font-weight: 900;
  letter-spacing: -.02em;
}

.trv-home-command__panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.trv-home-command__panel p,
.trv-home-section-head p {
  max-width: 720px;
  margin: 12px 0 0;
  color: #64748b;
  line-height: 1.7;
}

.trv-home-command__search {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px;
  border: 1px solid rgba(15, 35, 64, .10);
  background: #f8fbfd;
}

.trv-home-command__search .fa {
  color: var(--trv-teal-dark);
  text-align: center;
}

.trv-home-command__search input {
  width: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--trv-navy);
  font-weight: 700;
  outline: none;
}

.trv-home-command__search .btn {
  min-width: 112px;
  min-height: 44px;
}

.trv-home-command__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.trv-home-command__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(29, 198, 200, .24);
  color: #0b7188;
  background: rgba(29, 198, 200, .07);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.trv-home-command__links a:hover {
  transform: translateY(-2px);
  background: var(--trv-teal);
  color: #fff;
  text-decoration: none;
}

.trv-home-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(15, 35, 64, .08);
}

.trv-home-stat {
  min-height: 128px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trv-home-stat .fa {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--trv-cta-start), var(--trv-cta-end));
  color: #fff;
}

.trv-home-stat strong {
  color: var(--trv-navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.trv-home-stat span {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.trv-home-destinations,
.trv-home-steps,
.trv-home-cta-band {
  margin: 0 0 54px;
}

.trv-home-destinations,
.trv-home-steps {
  padding: 28px;
}

.trv-home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.trv-home-section-head h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.trv-home-section-head > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--trv-teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.trv-home-section-head > a:hover {
  color: var(--trv-orange);
  text-decoration: none;
}

.trv-home-section-head--center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trv-home-section-head--center p {
  margin-left: auto;
  margin-right: auto;
}

.trv-home-destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trv-home-destination-card {
  position: relative;
  min-height: 210px;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background: var(--trv-navy);
  text-decoration: none;
}

.trv-home-destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 36, .08) 0%, rgba(7, 18, 36, .18) 42%, rgba(7, 18, 36, .82) 100%);
}

.trv-home-destination-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: inherit;
  transition: transform .45s ease;
}

.trv-home-destination-card:hover img {
  transform: scale(1.07);
}

.trv-home-destination-card:hover {
  color: #fff;
  text-decoration: none;
}

.trv-home-destination-card__label,
.trv-home-destination-card__body {
  position: absolute;
  z-index: 2;
}

.trv-home-destination-card__label {
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--trv-navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.trv-home-destination-card__body {
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trv-home-destination-card__body strong {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
}

.trv-home-destination-card__body small {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.4;
}

.trv-home-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trv-home-step {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(15, 35, 64, .08);
  background: #f8fbfd;
  overflow: hidden;
}

.trv-home-step > span {
  position: absolute;
  right: 18px;
  top: 12px;
  color: rgba(11, 29, 53, .08);
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.trv-home-step .fa {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #fff;
  color: var(--trv-orange);
  box-shadow: 0 10px 24px rgba(15, 35, 64, .10);
}

.trv-home-step h3 {
  margin: 0 0 10px;
  color: var(--trv-navy);
  font-size: 18px;
  font-weight: 900;
}

.trv-home-step p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.65;
}

.trv-home-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px;
  background: linear-gradient(135deg, #0b1d35 0%, #14355a 48%, #0f8c98 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(11, 29, 53, .16);
}

.trv-home-cta-band .trv-home-eyebrow {
  background: rgba(255, 255, 255, .12);
  color: #9ff4f2;
}

.trv-home-cta-band h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.35;
}

.trv-home-cta-band__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.trv-home-cta-band__actions .btn {
  min-width: 150px;
}

.page-main--home .card-hotel,
.page-main--home .card-service {
  border: 1px solid rgba(15, 35, 64, .08);
  box-shadow: 0 14px 34px rgba(15, 35, 64, .08);
}

.page-main--home .card-hotel__img img {
  transition: transform .45s ease;
}

.page-main--home .card-hotel:hover .card-hotel__img img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .trv-home-command {
    grid-template-columns: 1fr;
  }

  .trv-home-destination-grid,
  .trv-home-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trv-home-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .trv-home-cta-band__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .trv-home-command__panel,
  .trv-home-destinations,
  .trv-home-steps,
  .trv-home-cta-band {
    padding: 20px;
  }

  .trv-home-command__search {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .trv-home-command__search .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .trv-home-command__links,
  .trv-home-stats,
  .trv-home-destination-grid,
  .trv-home-step-grid {
    grid-template-columns: 1fr;
  }

  .trv-home-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .trv-home-section-head--center {
    align-items: center;
  }

  .trv-home-destination-card,
  .trv-home-destination-card img {
    min-height: 190px;
  }
}

/* Clean site background override */
html,
body {
  background: #ffffff !important;
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 38%, #f4fbfb 72%, #eef8f7 100%) fixed !important;
}

.page-main,
main.page-main,
.trv-page-inner,
.page-content,
.category-content,
.page-main--home .page-content--home {
  background: transparent !important;
}

.sidebar-filter,
.product,
.hotel-card,
.trv-card,
.trv-form-card,
.trv-info-card,
.trv-cart-item,
.trv-cart-summary,
.trv-cart-empty,
.trv-home-card,
.trv-home-quicklinks,
.trv-search-card {
  background-color: #fff !important;
}

/* Final catalog polish: cards, filters and micro interactions */
.trv-catalog-page .category-content__items {
  row-gap: 24px;
}

.trv-catalog-page .category-content__items > [class*="col-"] {
  margin-bottom: 0 !important;
}

/* Homepage motion and richer merchandising */
.page-main--home .intro__desc {
  z-index: 4;
}

.page-main--home .intro__caption {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trv-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trv-hero-actions .btn {
  min-width: 170px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

.trv-hero-actions .btn-secondary {
  background: linear-gradient(135deg, var(--trv-orange), #ffb14c) !important;
}

.trv-hero-actions .btn-secondary:hover {
  box-shadow: 0 22px 46px rgba(253, 150, 44, .34);
}

.trv-hero-badges {
  position: absolute;
  left: 50%;
  top: min(72vh, 650px);
  z-index: 6;
  width: min(880px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  transform: translateX(-50%);
  pointer-events: none;
}

.trv-hero-badge {
  min-height: 78px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 12px;
  background: rgba(7, 18, 36, .56);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: trvHeroBadgeFloat 4.4s ease-in-out infinite;
  animation-delay: calc(var(--trv-delay, 0) * .35s);
}

.trv-hero-badge .fa {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--trv-cta-start), var(--trv-cta-end));
  color: #fff;
}

.trv-hero-badge span {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.trv-hero-badge small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
}

.trv-home-ticker {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0;
  margin: -24px 0 30px;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 35, 64, .10);
  overflow: hidden;
}

.trv-home-ticker__label {
  height: 100%;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--trv-navy), #14355a);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.trv-home-ticker__label .fa {
  color: #ffd166;
}

.trv-home-ticker__viewport {
  min-width: 0;
  overflow: hidden;
}

.trv-home-ticker__track {
  width: max-content;
  display: flex;
  align-items: stretch;
  animation: trvTickerMove 34s linear infinite;
}

.trv-home-ticker:hover .trv-home-ticker__track {
  animation-play-state: paused;
}

.trv-home-ticker__item {
  min-width: 330px;
  display: grid;
  grid-template-columns: 30px auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-right: 1px solid rgba(15, 35, 64, .08);
  color: var(--trv-navy);
  text-decoration: none;
}

.trv-home-ticker__item:hover {
  color: var(--trv-navy);
  background: #f7fbfd;
  text-decoration: none;
}

.trv-home-ticker__item .fa {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(29, 198, 200, .12);
  color: var(--trv-teal-dark);
}

.trv-home-ticker__item span {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(253, 150, 44, .12);
  color: #bd6414;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.trv-home-ticker__item strong,
.trv-home-ticker__item small,
.trv-home-ticker__item b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trv-home-ticker__item strong {
  font-size: 13px;
  font-weight: 900;
}

.trv-home-ticker__item small {
  color: #64748b;
  font-size: 11px;
}

.trv-home-ticker__item b {
  color: var(--trv-teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.trv-home-spotlight {
  margin: 0 0 54px;
  padding: 28px;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  box-shadow: 0 18px 44px rgba(15, 35, 64, .08);
}

.trv-home-spotlight__grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 16px;
}

.trv-home-spotlight-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 230px minmax(0, 1fr);
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 35, 64, .07);
  transition: transform .22s ease, box-shadow .22s ease;
}

.trv-home-spotlight-card:first-child {
  grid-template-rows: 280px minmax(0, 1fr);
}

.trv-home-spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(15, 35, 64, .14);
}

.trv-home-spotlight-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  background: var(--trv-navy);
}

.trv-home-spotlight-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 36, .02) 0%, rgba(7, 18, 36, .12) 46%, rgba(7, 18, 36, .60) 100%);
}

.trv-home-spotlight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.trv-home-spotlight-card:hover .trv-home-spotlight-card__image img {
  transform: scale(1.06);
}

.trv-home-spotlight-card__image span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--trv-navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.trv-home-spotlight-card__body {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.trv-home-spotlight-card__body small {
  min-height: 18px;
  color: var(--trv-teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.trv-home-spotlight-card__body h3 {
  margin: 6px 0 8px;
  color: var(--trv-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.trv-home-spotlight-card__body p {
  flex: 1 1 auto;
  margin: 0 0 16px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.62;
}

.trv-home-spotlight-card__body div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 35, 64, .08);
}

.trv-home-spotlight-card__body strong {
  color: var(--trv-teal-dark);
  font-size: 17px;
  font-weight: 900;
}

.trv-home-spotlight-card__body .btn {
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-main--home .trv-home-quicklinks,
.page-main--home .trv-home-command__panel,
.page-main--home .trv-home-stats,
.page-main--home .trv-home-destinations,
.page-main--home .trv-home-steps,
.page-main--home .trv-home-cta-band,
.page-main--home .card-hotel,
.page-main--home .card-service {
  border-radius: 12px;
}

.page-main--home .card-hotel,
.page-main--home .card-service,
.trv-home-quicklinks__item,
.trv-home-command__links a,
.trv-home-step,
.trv-home-destination-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.page-main--home .card-hotel:hover,
.page-main--home .card-service:hover,
.trv-home-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(15, 35, 64, .12);
}

@keyframes trvTickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes trvHeroBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1199px) {
  .trv-hero-badges {
    top: auto;
    bottom: 230px;
  }
}

@media (max-width: 991px) {
  .trv-hero-badges {
    display: none;
  }

  .trv-home-ticker {
    margin-top: -10px;
    grid-template-columns: 1fr;
  }

  .trv-home-ticker__label {
    min-height: 46px;
    justify-content: center;
  }

  .trv-home-spotlight__grid {
    grid-template-columns: 1fr;
  }

  .trv-home-spotlight-card,
  .trv-home-spotlight-card:first-child {
    grid-template-rows: 240px minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .trv-hero-actions {
    margin-top: 18px;
  }

  .trv-hero-actions .btn {
    min-width: 145px;
    min-height: 44px;
    padding-left: 18px !important;
    padding-right: 18px !important;
    font-size: 12px;
  }

  .trv-home-ticker__item {
    min-width: 280px;
    grid-template-columns: 30px auto minmax(0, 1fr);
  }

  .trv-home-ticker__item small {
    display: none;
  }

  .trv-home-ticker__item b {
    grid-column: 3;
  }

  .trv-home-spotlight {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trv-home-ticker__track,
  .trv-hero-badge {
    animation: none !important;
  }
}

/* Homepage content flow: keep hero clean, add motion inside page content */
.page-main--home .intro__caption {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.trv-hero-actions,
.trv-hero-badges,
.trv-home-ticker {
  display: none !important;
}

.trv-home-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 24px;
  margin: 0 0 42px;
  padding: 30px;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(248, 252, 253, .96) 52%, rgba(238, 250, 250, .92) 100%);
  box-shadow: 0 18px 44px rgba(15, 35, 64, .08);
  overflow: hidden;
}

.trv-home-flow::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29, 198, 200, .10), rgba(253, 150, 44, .10));
  pointer-events: none;
}

.trv-home-flow__copy,
.trv-home-flow__side {
  position: relative;
  z-index: 1;
}

.trv-home-flow__copy {
  align-self: center;
}

.trv-home-flow__copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--trv-navy);
  font-size: clamp(2rem, 3.4vw, 3.05rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.08;
}

.trv-home-flow__copy p {
  max-width: 610px;
  margin: 16px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

.trv-home-flow__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.trv-home-flow__actions .btn {
  min-width: 156px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 14px 28px rgba(16, 138, 160, .14);
}

.trv-home-flow__actions .btn-light {
  border: 1px solid rgba(15, 35, 64, .08);
  color: var(--trv-navy);
}

.trv-home-flow__mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.trv-home-flow__mini div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 10px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 10px 24px rgba(15, 35, 64, .05);
}

.trv-home-flow__mini .fa {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  border-radius: 50%;
  background: rgba(29, 198, 200, .12);
  color: var(--trv-teal-dark);
}

.trv-home-flow__mini strong {
  display: block;
  color: var(--trv-navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.trv-home-flow__mini span {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.trv-home-flow__side {
  min-height: 390px;
  overflow: hidden;
}

.trv-home-flow__rail {
  position: absolute;
  inset: 0 -28px 0 0;
}

.trv-home-flow-card {
  position: absolute;
  right: calc(var(--trv-flow-step, 0) * 46px);
  top: calc(var(--trv-flow-step, 0) * 72px);
  width: min(330px, 78%);
  height: 176px;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background: var(--trv-navy);
  box-shadow: 0 22px 52px rgba(15, 35, 64, .22);
  text-decoration: none;
  transform: translateX(calc(var(--trv-flow-step, 0) * -14px));
  animation: trvFlowSideDrift 5.4s ease-in-out infinite;
  animation-delay: calc(var(--trv-flow-step, 0) * .45s);
}

.trv-home-flow-card:nth-child(2n) {
  right: auto;
  left: calc(var(--trv-flow-step, 0) * 18px);
}

.trv-home-flow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 36, .02) 0%, rgba(7, 18, 36, .28) 42%, rgba(7, 18, 36, .84) 100%);
}

.trv-home-flow-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform .55s ease, filter .55s ease;
}

.trv-home-flow-card:hover {
  color: #fff;
  text-decoration: none;
}

.trv-home-flow-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.trv-home-flow-card span,
.trv-home-flow-card strong,
.trv-home-flow-card small {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
}

.trv-home-flow-card span {
  top: 14px;
  right: auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .90);
  color: var(--trv-navy);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.trv-home-flow-card strong {
  bottom: 38px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.18;
}

.trv-home-flow-card small {
  bottom: 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes trvFlowSideDrift {
  0%, 100% { transform: translateX(calc(var(--trv-flow-step, 0) * -14px)); }
  50% { transform: translateX(calc((var(--trv-flow-step, 0) * -14px) - 18px)); }
}

@media (max-width: 991px) {
  .trv-home-flow {
    grid-template-columns: 1fr;
  }

  .trv-home-flow__side {
    min-height: 320px;
  }

  .trv-home-flow-card {
    width: min(310px, 82%);
    height: 158px;
  }
}

@media (max-width: 767px) {
  .trv-home-flow {
    padding: 22px;
  }

  .trv-home-flow__mini {
    grid-template-columns: 1fr;
  }

  .trv-home-flow__side {
    min-height: 0;
    overflow: visible;
  }

  .trv-home-flow__rail {
    position: static;
    display: grid;
    gap: 12px;
  }

  .trv-home-flow-card,
  .trv-home-flow-card:nth-child(2n) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    height: 170px;
    transform: none;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trv-home-flow-card {
    animation: none !important;
  }
}

.page-main--home .section-header {
  position: relative;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.page-main--home .section-header::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--trv-teal), var(--trv-orange));
}

.page-main--home .section-header__stars {
  display: none !important;
}

.trv-home-assurance {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 24px;
  margin: 6px 0 60px;
  padding: 30px;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fcfd 54%, #eefafa 100%);
  box-shadow: 0 20px 50px rgba(15, 35, 64, .08);
  overflow: hidden;
}

.trv-home-assurance__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 310px;
  padding: 4px 8px 4px 0;
}

.trv-home-assurance__intro h2 {
  margin: 0;
  color: var(--trv-navy);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.12;
}

.trv-home-assurance__intro p {
  margin: 16px 0 22px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

.trv-home-assurance__intro .btn {
  width: max-content;
  min-width: 166px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.trv-home-assurance__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trv-home-assurance-card {
  min-height: 146px;
  padding: 20px;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 30px rgba(15, 35, 64, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.trv-home-assurance-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 198, 200, .32);
  box-shadow: 0 22px 48px rgba(15, 35, 64, .12);
}

.trv-home-assurance-card .fa {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(29, 198, 200, .12);
  color: var(--trv-teal-dark);
}

.trv-home-assurance-card h3 {
  margin: 0 0 8px;
  color: var(--trv-navy);
  font-size: 17px;
  font-weight: 900;
}

.trv-home-assurance-card p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.65;
}

.trv-home-assurance-card--wide {
  grid-column: 1 / -1;
  min-height: 130px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  background: #fff;
}

.trv-home-assurance-card--wide .fa {
  width: 54px;
  height: 54px;
  margin: 0;
  background: linear-gradient(135deg, var(--trv-cta-start), var(--trv-cta-end));
  color: #fff;
}

.trv-home-assurance-card--accent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--trv-navy), #143a64);
  color: #fff;
}

.trv-home-assurance-card--accent strong {
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.trv-home-assurance-card--accent span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 991px) {
  .trv-home-assurance {
    grid-template-columns: 1fr;
  }

  .trv-home-assurance__intro {
    min-height: 0;
  }
}

@media (max-width: 575px) {
  .trv-home-assurance {
    padding: 22px;
  }

  .trv-home-assurance__grid {
    grid-template-columns: 1fr;
  }

  .trv-home-assurance-card--wide {
    grid-template-columns: 1fr;
  }
}

.trv-catalog-page .product {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 35, 64, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.trv-catalog-page .product:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 198, 200, .34);
  box-shadow: 0 20px 46px rgba(15, 35, 64, .13);
}

.trv-catalog-page .product__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 12px;
}

.trv-catalog-page .product__desc {
  margin-top: auto;
}

.trv-catalog-page .product__title {
  min-height: 48px;
  font-size: 1.08rem !important;
  line-height: 1.35;
}

.trv-catalog-page .product__title a {
  color: var(--trv-navy);
  text-decoration: none;
}

.trv-catalog-page .product__title a:hover {
  color: var(--trv-teal-dark);
}

.trv-product-media,
.trv-catalog-page .product__img-top {
  position: relative;
  overflow: hidden;
  background: #eef5f7;
}

.trv-catalog-page .trv-product-media {
  min-height: 0;
  margin: 0 0 12px;
}

.trv-catalog-page .product__img-top {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.trv-catalog-page .product__img-top img,
.trv-catalog-page .trv-transfer-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.trv-catalog-page .product:hover .product__img-top img {
  transform: scale(1.055);
  filter: saturate(1.06);
}

.trv-catalog-page .product__special {
  z-index: 4;
  max-width: calc(100% - 76px);
  border-radius: 0 0 8px 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .03em;
}

.trv-favorite-btn {
  box-shadow: 0 12px 26px rgba(11, 29, 53, .18);
}

.trv-favorite-btn--card,
.trv-flight-favorite {
  top: auto !important;
  right: 14px !important;
  bottom: 14px !important;
}

.trv-catalog-page .product__footer,
.trv-detail-page .product__footer {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding: 0 18px 18px;
}

.trv-catalog-page .product__footer > .product__price,
.trv-detail-page .product__footer > .product__price {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 0;
}

.trv-catalog-page .product__footer > .trv-cart-add-form,
.trv-detail-page .product__footer > .trv-cart-add-form,
.trv-catalog-page .product__footer > .product__btn-book,
.trv-detail-page .product__footer > .product__btn-book {
  flex: none !important;
  max-width: none !important;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.trv-cart-add-form {
  display: block;
}

.trv-catalog-page .product__footer .btn,
.trv-detail-page .product__footer .btn {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 12px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(16, 138, 160, .16);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.trv-catalog-page--hotel .product__footer > .trv-cart-add-form,
.trv-catalog-page--hotel .product__footer > .product__btn-book {
  align-self: stretch;
}

.trv-catalog-page--hotel .product__footer > .trv-cart-add-form {
  display: flex;
}

.trv-catalog-page--hotel .product__footer > .trv-cart-add-form .btn,
.trv-catalog-page--hotel .product__footer > .product__btn-book {
  height: 44px;
}

.trv-catalog-page .product__footer .btn:hover,
.trv-detail-page .product__footer .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(16, 138, 160, .22);
}

.trv-catalog-page .product__footer .btn-outline-secondary,
.trv-detail-page .product__footer .btn-outline-secondary {
  background: #fff !important;
  border-color: rgba(253, 150, 44, .52) !important;
  color: var(--trv-orange) !important;
  box-shadow: 0 10px 22px rgba(253, 150, 44, .12);
}

.trv-catalog-page .product__footer .btn-outline-secondary:hover,
.trv-detail-page .product__footer .btn-outline-secondary:hover {
  background: var(--trv-orange) !important;
  border-color: var(--trv-orange) !important;
  color: #fff !important;
}

.trv-icon-action {
  min-width: 0 !important;
}

.trv-icon-action .fa {
  pointer-events: none;
}

.trv-catalog-page .product__price .cost {
  color: var(--trv-teal-dark);
  font-size: 17px;
  font-weight: 900;
}

@media (min-width: 992px) {
  .trv-catalog-page .sidebar__content.js-sticky-top,
  .trv-catalog-page .sidebar__content .js-sticky-top,
  .trv-catalog-page .trv-sidebar-sticky {
    position: sticky !important;
    top: 160px !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    max-height: calc(100vh - 184px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    transform: none !important;
    padding-right: 4px;
    scrollbar-gutter: stable;
    overscroll-behavior: contain;
  }

  .trv-catalog-page .sidebar__content.js-sticky-top::-webkit-scrollbar,
  .trv-catalog-page .trv-sidebar-sticky::-webkit-scrollbar {
    width: 7px;
  }

  .trv-catalog-page .sidebar__content.js-sticky-top::-webkit-scrollbar-track,
  .trv-catalog-page .trv-sidebar-sticky::-webkit-scrollbar-track {
    background: rgba(15, 35, 64, .06);
    border-radius: 999px;
  }

  .trv-catalog-page .sidebar__content.js-sticky-top::-webkit-scrollbar-thumb,
  .trv-catalog-page .trv-sidebar-sticky::-webkit-scrollbar-thumb {
    background: rgba(20, 160, 162, .55);
    border-radius: 999px;
  }
}

.trv-catalog-page .sidebar-filter.card {
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 35, 64, .08);
}

.trv-catalog-page .sidebar__content.is-filter-scrolled .sidebar-filter.card,
.trv-catalog-page .trv-sidebar-sticky.is-filter-scrolled .sidebar-filter.card {
  box-shadow: 0 18px 38px rgba(15, 35, 64, .14);
}

.trv-catalog-page .sidebar-filter .modal-header {
  border-bottom: 1px solid rgba(15, 35, 64, .08);
}

.trv-catalog-page .sidebar-filter .modal-title {
  font-size: 20px;
  font-weight: 900;
}

.trv-catalog-page .sidebar-filter__title a {
  color: var(--trv-navy);
  font-weight: 850;
  text-decoration: none;
}

.trv-catalog-page .sidebar-filter__content {
  padding-top: 8px;
}

.trv-catalog-page .sidebar-filter .form-control {
  min-height: 42px;
  border-radius: 8px;
  border-color: #d7e1ee;
  font-size: 13px;
  box-shadow: none;
}

.trv-catalog-page .sidebar-filter .form-control:focus {
  border-color: rgba(29, 198, 200, .64);
  box-shadow: 0 0 0 4px rgba(29, 198, 200, .10);
}

.trv-destination-filter {
  display: grid;
  gap: 8px;
}

.trv-filter-label {
  display: block;
  margin: 4px 0 -3px;
  color: #627188;
  font-size: 11px;
  font-weight: 800;
}

.trv-filter-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100%;
  flex-wrap: nowrap !important;
}

.trv-filter-actions .btn {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 40px;
  margin: 0 !important;
}

.trv-filter-actions .btn-outline-secondary {
  background: #fff !important;
}

.trv-catalog-summary {
  padding: 18px 20px;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 10px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 12px 28px rgba(15, 35, 64, .06);
}

.trv-catalog-summary__title {
  letter-spacing: -.02em;
}

.flight-card {
  border: 1px solid rgba(15, 35, 64, .08) !important;
  border-radius: 10px !important;
  box-shadow: 0 14px 34px rgba(15, 35, 64, .08) !important;
  transition: transform .22s ease, box-shadow .22s ease;
}

.flight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(15, 35, 64, .13) !important;
}

.flight-card__total .btn {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(16, 138, 160, .16);
}

.trv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.trv-reveal.trv-inview {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .52s ease, transform .52s ease;
}

.trv-just-added {
  animation: trvActionPulse .48s ease;
}

@keyframes trvActionPulse {
  0% { transform: scale(1); }
  45% { transform: scale(.94); }
  100% { transform: scale(1); }
}

@media (max-width: 991px) {
  .trv-catalog-page .sidebar__content.js-sticky-top,
  .trv-catalog-page .sidebar__content .js-sticky-top,
  .trv-catalog-page .trv-sidebar-sticky {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0;
  }

  .trv-catalog-summary {
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .trv-catalog-page .product__footer,
  .trv-detail-page .product__footer,
  .trv-filter-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .trv-catalog-page .product__footer {
    padding-left: 14px;
    padding-right: 14px;
  }

.trv-catalog-page .product__title {
    min-height: 0;
  }
}

/* Header live search */
.trv-header-search {
  position: relative;
  overflow: visible !important;
  z-index: 10020;
}

.trv-header-search.is-search-open {
  z-index: 10040;
}

.trv-live-search {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  min-width: 360px;
  max-height: min(460px, calc(100vh - 150px));
  overflow: auto;
  display: none;
  padding: 8px;
  border: 1px solid rgba(15, 35, 64, .10);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(7, 18, 36, .24);
}

.trv-live-search.is-open {
  display: block;
  animation: trvLiveSearchIn .16s ease;
}

.trv-live-search__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 8px 10px;
  border-bottom: 1px solid rgba(15, 35, 64, .08);
}

.trv-live-search__head span {
  color: var(--trv-navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trv-live-search__head a {
  color: var(--trv-teal-dark) !important;
  font-size: 12px !important;
  font-weight: 900;
  text-decoration: none !important;
}

.trv-live-search__item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 8px;
  border-radius: 10px;
  color: var(--trv-navy) !important;
  text-decoration: none !important;
  transition: background .16s ease, transform .16s ease;
}

.trv-live-search__item:hover {
  background: #f3fbfb;
  transform: translateX(2px);
}

.trv-live-search__item img,
.trv-live-search__icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  background: #eef5f7;
}

.trv-live-search__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--trv-teal-dark);
}

.trv-live-search__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trv-live-search__body small {
  color: var(--trv-orange);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.trv-live-search__body strong {
  overflow: hidden;
  color: var(--trv-navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trv-live-search__body em {
  overflow: hidden;
  color: #64748b;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trv-live-search__item b {
  color: var(--trv-teal-dark);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.trv-live-search__loading,
.trv-live-search__empty {
  padding: 18px;
  color: #64748b;
  font-size: 13px;
  text-align: center;
}

.trv-live-search__empty strong {
  display: block;
  margin-bottom: 4px;
  color: var(--trv-navy);
  font-size: 14px;
  font-weight: 900;
}

.trv-live-search__empty span {
  display: block;
}

.trv-header-search--mobile .trv-live-search {
  min-width: 0;
  width: 100%;
  max-height: 360px;
}

@keyframes trvLiveSearchIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 575px) {
  .trv-live-search__item {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .trv-live-search__item img,
  .trv-live-search__icon {
    width: 46px;
    height: 46px;
  }

  .trv-live-search__item b {
    grid-column: 2;
    justify-self: start;
  }
}

/* Final filter and flight request polish */
.sidebar__content.js-sticky-top,
.sidebar__content .js-sticky-top,
.trv-sidebar-sticky,
.trv-filter-static {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: auto !important;
  max-height: none !important;
  overflow: visible !important;
  transform: none !important;
  padding-right: 0 !important;
}

.sidebar__content.js-sticky-top[style],
.sidebar__content.js-sticky-top.is_stuck {
  position: static !important;
  top: auto !important;
  width: auto !important;
}

.sidebar-filter.card,
.trv-catalog-page .sidebar-filter.card {
  overflow: visible !important;
}

.flight-card {
  overflow: visible;
}

.flight-card > .row {
  margin-right: 0;
}

.flight-card__total {
  min-width: 218px;
  padding-right: 16px;
}

.flight-card__total .list-group-item {
  width: 100%;
}

.flight-card__total .total {
  padding: 0 !important;
  color: var(--trv-navy);
  font-weight: 900;
}

.trv-flight-actions {
  display: grid;
  grid-template-columns: 46px minmax(86px, 1fr) minmax(72px, .75fr);
  align-items: center;
  gap: 10px;
  width: 100%;
}

.trv-flight-buy-form {
  margin: 0;
  min-width: 0;
}

.trv-flight-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  font-size: 12px;
}

.trv-flight-favorite {
  position: static !important;
  width: 46px;
  height: 46px;
  margin: 0 !important;
  flex: 0 0 46px;
  box-shadow: 0 12px 28px rgba(11, 29, 53, .16);
}

.trv-flight-request-modal .modal-content {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .28);
}

.trv-flight-request-modal .modal-header {
  align-items: flex-start;
  border: 0;
  padding: 22px 24px;
  background: linear-gradient(135deg, var(--trv-navy), #12345a);
  color: #fff;
}

.trv-flight-request-modal .modal-title {
  margin: 2px 0 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.trv-flight-request-modal__eyebrow {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trv-flight-request-modal .close {
  width: 42px;
  height: 42px;
  margin: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  opacity: 1;
  text-shadow: none;
}

.trv-flight-request-modal .modal-body {
  padding: 24px;
}

.trv-flight-request-modal .modal-footer {
  border-top: 1px solid rgba(15, 35, 64, .08);
  padding: 16px 24px 22px;
}

.trv-flight-request-summary {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 12px;
  background: #f8fbfd;
}

.trv-flight-request-summary .fa {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--trv-cta-start), var(--trv-cta-end));
  color: #fff;
}

.trv-flight-request-summary strong,
.trv-flight-request-summary span {
  display: block;
  min-width: 0;
}

.trv-flight-request-summary strong {
  color: var(--trv-navy);
  font-size: 16px;
  font-weight: 900;
}

.trv-flight-request-summary span {
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}

.trv-flight-request-summary b {
  color: var(--trv-teal-dark);
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.trv-flight-request-modal .form-control {
  min-height: 44px;
  border-radius: 10px;
  border-color: #d7e1ee;
  box-shadow: none;
}

.trv-flight-request-modal textarea.form-control {
  min-height: 96px;
}

@media (max-width: 767px) {
  .flight-card__total {
    min-width: 0;
    padding: 12px 18px 18px;
  }

  .trv-flight-actions {
    grid-template-columns: 46px minmax(92px, 1fr) minmax(74px, .8fr);
  }

  .trv-flight-request-summary {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .trv-flight-request-summary b {
    grid-column: 2;
  }
}

/* Shared catalog sort controls */
.trv-catalog-summary--actions {
  align-items: center;
  gap: 18px;
}

.trv-catalog-summary__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.trv-catalog-sort-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.trv-catalog-sort-form label {
  margin: 0;
  color: #607086;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trv-catalog-sort-form .form-control {
  width: auto;
  min-width: 176px;
  height: 40px;
  padding: 0 38px 0 16px;
  border: 1px solid rgba(15, 35, 64, .13);
  border-radius: 999px;
  background-color: #fff;
  color: var(--trv-navy);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(15, 35, 64, .06);
}

.trv-catalog-sort-form .form-control:focus {
  border-color: var(--trv-teal);
  box-shadow: 0 0 0 3px rgba(28, 196, 201, .18);
}

@media (max-width: 767px) {
  .trv-catalog-summary--actions {
    align-items: stretch;
  }

  .trv-catalog-summary__actions,
  .trv-catalog-sort-form {
    width: 100%;
    justify-content: space-between;
  }

  .trv-catalog-sort-form .form-control {
    min-width: 0;
    flex: 1 1 auto;
  }
}

/* Catalog card/list standardization */
.trv-catalog-page .sortbar__grid {
  gap: 6px;
  padding: 3px;
  border: 0 solid rgba(15, 35, 64, .10);
  border-radius: 999px;
  background: #ffffff00;
  box-shadow: 0 10px 24px rgb(15 35 64 / 0%);
}

.trv-catalog-page .sortbar__grid .nav-link {
  width: 38px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border-radius: 999px;
  color: #64748b;
  transition: background .16s ease, color .16s ease, box-shadow .16s ease;
}

.trv-catalog-page .sortbar__grid .nav-link.active,
.trv-catalog-page .sortbar__grid .nav-link:hover {
  background: linear-gradient(135deg, var(--trv-cta-start), var(--trv-cta-end));
  color: #fff;
  box-shadow: 0 8px 18px rgba(16, 138, 160, .18);
}

.trv-catalog-page .trv-product-media {
  height: 214px;
  min-height: 214px;
  flex: 0 0 auto;
  margin: 0 0 12px !important;
  overflow: hidden;
  background: #eef5f7;
}

.trv-catalog-page .product__img-top {
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
}

.trv-catalog-page .product__img-top img,
.trv-catalog-page .trv-transfer-placeholder {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.trv-catalog-page .trv-product-media .trv-favorite-btn--card {
  position: absolute !important;
  top: auto !important;
  right: 14px !important;
  bottom: 14px !important;
  z-index: 6;
}

.trv-catalog-page .trv-product-media .product__special {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}

.trv-catalog-page .product--list {
  display: grid !important;
  grid-template-columns: minmax(230px, 31%) minmax(0, 1fr) minmax(190px, 220px);
  grid-template-rows: auto;
  align-items: stretch;
  min-height: 236px;
}

.trv-catalog-page .product--list:hover {
  transform: translateY(-2px);
}

.trv-catalog-page .product--list .trv-product-media {
  grid-column: 1;
  grid-row: 1 / -1;
  width: 100%;
  height: auto;
  min-height: 236px;
  margin: 0 !important;
}

.trv-catalog-page .product--list .product__img-top {
  min-height: 236px !important;
}

.trv-catalog-page .product--list .product__body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  padding: 18px 20px !important;
}

.trv-catalog-page .product--list > hr {
  display: none !important;
}

.trv-catalog-page .product--list .product__title {
  min-height: 0;
  margin-bottom: 8px;
}

.trv-catalog-page .product--list .product__desc {
  margin-top: 0;
}

.trv-catalog-page .product--list .product__footer {
  grid-column: 3;
  grid-row: 1;
  align-content: center;
  align-self: stretch;
  margin: 0;
  padding: 18px !important;
  border-left: 1px solid rgba(15, 35, 64, .08);
}

.trv-catalog-page .product--list .product__footer .btn {
  height: 44px;
}

@media (max-width: 991px) {
  .trv-catalog-page .product--list {
    grid-template-columns: minmax(190px, 38%) minmax(0, 1fr);
  }

  .trv-catalog-page .product--list .product__footer {
    grid-column: 2;
    grid-row: 2;
    border-left: 0;
    border-top: 1px solid rgba(15, 35, 64, .08);
  }
}

@media (max-width: 767px) {
  .trv-catalog-page .trv-product-media {
    height: 220px;
    min-height: 220px;
  }

  .trv-catalog-page .product--list {
    display: flex !important;
    min-height: 0;
  }

  .trv-catalog-page .product--list .trv-product-media,
  .trv-catalog-page .product--list .product__img-top {
    min-height: 220px !important;
    height: 220px !important;
  }

  .trv-catalog-page .product--list .product__footer {
    border-top: 0;
  }
}

/* Header and catalog final layout tweaks */
.trv-topbar__social {
  order: 0 !important;
  margin-left: 0 !important;
  margin-right: 12px !important;
}

.trv-topbar__actions {
  align-items: center !important;
}

.trv-topbar-quicklinks {
  align-items: center;
  gap: 10px;
  line-height: 1;
  white-space: nowrap;
}

.trv-topbar-quicklinks .trv-topbar__btn {
  min-height: 34px;
  align-items: center;
  justify-content: center;
}

.trv-topbar-quicklinks .trv-favorite-count,
.trv-topbar-quicklinks .trv-cart-count {
  min-width: 18px;
  height: 18px;
  margin-left: 3px;
  font-size: 10px;
  line-height: 18px;
}

.trv-catalog-page .sortbar__grid {
  gap: 6px;
  padding: 3px;
  border: 0 solid rgba(15, 35, 64, .10) !important;
  border-radius: 999px;
  background: #ffffff00 !important;
  box-shadow: 0 10px 24px rgb(15 35 64 / 0%) !important;
  display: inline-flex !important;
  align-items: center !important;
  align-self: center !important;
}

.trv-catalog-page .sortbar__grid .nav-link,
.trv-catalog-page .sortbar__grid .nav-link i,
.trv-catalog-summary__actions,
.trv-catalog-sort-form {
  align-items: center !important;
}

.trv-catalog-page .sortbar__grid .nav-link {
  display: inline-flex !important;
  justify-content: center !important;
  line-height: 1 !important;
}
/* Gordios catalog repair polish */
.trv-catalog-page .sortbar__grid {
  gap: 6px;
  padding: 3px;
  border: 0 solid rgba(15, 35, 64, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 10px 24px rgba(15, 35, 64, 0);
}

.trv-catalog-page .sortbar__grid .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trv-catalog-page .product__footer {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(44px, 52px) minmax(44px, 52px);
  align-items: center;
  gap: 10px;
}

.trv-catalog-page .product__footer > .trv-cart-add-form,
.trv-catalog-page .product__footer > .product__btn-book {
  width: 100%;
  min-width: 0;
}

.trv-catalog-page .product__footer .btn,
.trv-catalog-page .product__footer .trv-icon-action {
  width: 100% !important;
  min-width: 44px;
  height: 44px;
  padding-left: 0;
  padding-right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trv-catalog-page .product__price {
  min-width: 0;
}

.trv-catalog-page .product__price .cost {
  white-space: normal;
  word-break: break-word;
}

@media (min-width: 992px) {
  .trv-catalog-page .sidebar__content.js-sticky-top,
  .trv-catalog-page .sidebar__content .js-sticky-top,
  .trv-catalog-page .trv-sidebar-sticky,
  .trv-filter-static {
    position: sticky !important;
    top: 104px !important;
    max-height: calc(100vh - 128px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

.trv-tour-calendar {
  padding: 22px;
  overflow: hidden;
}

.trv-tour-calendar__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.trv-tour-calendar__head h3 {
  font-size: 22px;
  line-height: 1.25;
}

.trv-tour-calendar__head p {
  color: #6f7d90;
  font-size: 13px;
}

.trv-tour-calendar__count {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(25, 191, 196, .12);
  color: #08a5ad;
  font-weight: 700;
  padding: 7px 12px;
}

.trv-tour-calendar__months {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.trv-tour-calendar__month {
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f7fbfc);
  padding: 14px;
}

.trv-tour-calendar__title {
  color: #0b2038;
  font-weight: 800;
  margin-bottom: 12px;
}

.trv-tour-calendar__weekdays,
.trv-tour-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.trv-tour-calendar__weekdays span {
  color: #8794a6;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.trv-tour-calendar__days::before {
  content: "";
  grid-column: span var(--start-offset);
}

.trv-tour-calendar__day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9aa5b4;
  font-size: 12px;
  background: #eef3f6;
}

.trv-tour-calendar__day.is-active {
  background: linear-gradient(135deg, #23c4c7, #0d98aa);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(13, 152, 170, .22);
}

.trv-tour-calendar--picker {
  overflow: visible;
}

.trv-tour-calendar__picker-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(180px, 1fr);
  align-items: end;
  gap: 14px;
}

.trv-tour-calendar__label {
  display: block;
  grid-column: 1 / -1;
  margin: 0 0 -4px;
  color: #0b2038;
  font-size: 13px;
  font-weight: 800;
}

.trv-tour-calendar__input {
  position: relative;
}

.trv-tour-calendar__input .fa {
  position: absolute;
  left: 16px;
  top: 50%;
  z-index: 2;
  color: #12aeb7;
  transform: translateY(-50%);
}

.trv-tour-calendar__input .form-control,
.trv-tour-calendar__input .flatpickr-input {
  height: 50px;
  border-radius: 999px;
  padding-left: 44px;
  color: #0b2038;
  font-weight: 800;
  background: #fff;
  border: 1px solid rgba(15, 35, 64, .12);
}

.trv-tour-calendar__selected {
  min-height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #0b2038;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(25, 196, 199, .12), rgba(255, 139, 38, .10));
}

.trv-detail-page--tour .trv-tour-side-summary {
  display: block !important;
  padding: 20px;
  overflow: hidden;
}

.trv-detail-page--tour .trv-tour-side-summary > .fw-bold {
  margin: 0 0 12px;
  color: #0b2038;
  font-size: 15px;
  line-height: 1.45;
}

.trv-detail-page--tour .trv-tour-side-summary .count {
  color: #0aaeb5;
  font-size: 22px;
  font-weight: 800;
}

.trv-detail-page--tour .trv-tour-side-summary .guests-room {
  display: none !important;
}

.trv-detail-page--tour .hotel__intro,
.trv-detail-page--tour .hotel-stats,
.trv-detail-page--tour .hotel-items {
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .trv-catalog-page .product__footer {
    grid-template-columns: minmax(0, 1fr) 46px 46px;
    gap: 8px;
  }

  .trv-tour-calendar {
    padding: 16px;
  }

  .trv-tour-calendar__head {
    flex-direction: column;
  }

  .trv-tour-calendar__picker-wrap {
    grid-template-columns: 1fr;
  }
}

/* Final filter action sizing */
.trv-catalog-page .trv-filter-actions,
.sidebar-filter .trv-filter-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
}

.trv-catalog-page .trv-filter-actions .btn,
.sidebar-filter .trv-filter-actions .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 42px !important;
  padding: 0 10px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Catalog card actions: cart, detail, favorite */
.trv-catalog-page .product__footer {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(42px, 1fr)) !important;
  align-items: stretch !important;
  gap: 8px !important;
}

.trv-catalog-page .product__footer > .product__price {
  grid-column: 1 / -1 !important;
}

.trv-catalog-page .product__footer > .trv-cart-add-form,
.trv-catalog-page .product__footer > .product__btn-book,
.trv-catalog-page .product__footer > .trv-favorite-btn--footer {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}

.trv-catalog-page .product__footer .trv-icon-action,
.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  min-width: 42px !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: 0 12px 24px rgba(16, 138, 160, .16) !important;
}

.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  background: #fff !important;
  color: #0b1d35 !important;
  border-color: rgba(253, 150, 44, .58) !important;
}

.trv-catalog-page .product__footer .trv-favorite-btn--footer:hover,
.trv-catalog-page .product__footer .trv-favorite-btn--footer:focus {
  background: rgba(253, 150, 44, .10) !important;
  color: #fd7e14 !important;
}

.trv-catalog-page .product__footer .trv-favorite-btn--footer.is-active {
  background: linear-gradient(135deg, var(--trv-coral), #ffb347) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.trv-catalog-page .trv-product-media .trv-favorite-btn--card {
  display: none !important;
}

/* Mobile detail and catalog polish */
@media (max-width: 991.98px) {
  .trv-hotel-detail-page .page-content {
    padding-top: 18px;
  }

  .trv-hotel-detail-page .sidebar {
    margin-bottom: 18px;
  }

  .trv-hotel-detail-page .sidebar__content.js-sticky-top,
  .trv-hotel-detail-page .sidebar__content .js-sticky-top,
  .trv-hotel-detail-page .hotel-items__check > .js-sticky-top {
    position: static !important;
    top: auto !important;
    width: 100% !important;
  }

  .trv-detail-page .hotel-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    margin-bottom: 14px;
    border-radius: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 35, 64, .10);
  }

  .trv-detail-page .hotel-nav__menu {
    flex-wrap: nowrap !important;
    min-width: max-content;
  }

  .trv-detail-page .hotel-nav__menu .nav-item {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
  }

  .trv-detail-page .hotel-nav__menu .nav-link {
    min-height: 48px;
    padding: 0 16px;
    white-space: nowrap;
  }

  .trv-detail-page .hotel-gallery__carousel {
    border-radius: 16px;
    overflow: hidden;
  }

  .trv-detail-page .hotel-gallery__carousel .swiper-slide,
  .trv-detail-page .hotel-gallery__carousel img {
    height: 320px;
  }

  .trv-detail-page .hotel-gallery__thumbs {
    overflow: hidden;
  }

  .trv-detail-page .hotel-gallery__thumb img {
    height: 74px;
  }

  .trv-hotel-overview,
  .trv-hotel-story-panel,
  .trv-hotel-video {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trv-hotel-facts,
  .trv-hotel-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .trv-hotel-detail-page .page-content .container,
  .trv-catalog-page .page-content .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .trv-hotel-detail-page h1.fw-md {
    font-size: 26px;
    line-height: 1.2;
  }

  .trv-hotel-detail-page .hotel-title,
  .trv-hotel-detail-page .text-accent-1 {
    font-size: 13px;
    line-height: 1.45;
  }

  .trv-detail-page .hotel-gallery__carousel .swiper-slide,
  .trv-detail-page .hotel-gallery__carousel img {
    height: 260px !important;
  }

  .trv-detail-page .hotel-gallery__controls {
    display: none;
  }

  .trv-detail-page .hotel-gallery__thumbs {
    margin-top: 8px;
  }

  .trv-detail-page .hotel-gallery__thumb img {
    height: 62px;
  }

  .trv-hotel-overview__copy,
  .trv-hotel-overview__highlights,
  .trv-hotel-story-panel {
    padding: 18px;
    border-radius: 14px;
  }

  .trv-hotel-overview__copy h2,
  .trv-hotel-story-panel h2,
  .trv-hotel-video__copy h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .trv-hotel-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px;
  }

  .trv-hotel-fact {
    min-height: 86px;
    padding: 12px 10px;
  }

  .trv-hotel-mini-gallery {
    grid-auto-rows: 72px;
    gap: 7px;
  }

  .trv-hotel-amenity-cloud span {
    max-width: 100%;
    font-size: 11px;
  }

  .trv-hotel-story-panel p,
  .trv-hotel-video__copy p {
    font-size: 14px;
    line-height: 1.68;
  }

  .trv-hotel-detail-page .hotel-items {
    border-radius: 14px;
    overflow: hidden;
  }

  .trv-hotel-detail-page .hotel-package__row {
    margin-bottom: 14px !important;
  }

  .trv-hotel-detail-page .hotel-package__row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .trv-detail-page .hotel-package__img img {
    height: 190px;
    margin-bottom: 14px;
  }

  .trv-hotel-detail-page .hotel-items__check {
    margin-top: 10px;
    border-left: 0;
    border-top: 1px solid rgba(15, 35, 64, .10);
  }

  .trv-hotel-detail-page .hotel-items__check form,
  .trv-hotel-detail-page .hotel-items__check .btn-order {
    max-width: none;
  }

  .trv-hotel-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .trv-hotel-video {
    padding: 16px;
    border-radius: 14px;
  }

  .trv-hotel-request-modal .modal-dialog {
    align-items: flex-start;
    min-height: calc(100vh - 16px);
    margin: 8px;
  }

  .trv-hotel-request-modal .modal-content {
    max-height: calc(100vh - 16px);
    overflow-y: auto;
    border-radius: 18px;
  }

  .trv-hotel-request-modal__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  .trv-hotel-request-modal__grid {
    display: block;
    min-height: 0;
  }

  .trv-hotel-request-modal__media,
  .trv-hotel-request-modal__media img {
    min-height: 250px !important;
    max-height: 250px;
  }

  .trv-hotel-request-modal__summary {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .trv-hotel-request-modal__summary h3 {
    font-size: 22px;
    line-height: 1.2;
  }

  .trv-hotel-request-modal__badges strong {
    min-height: 32px;
    font-size: 12px;
  }

  .trv-hotel-request-modal__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 12px;
  }

  .trv-hotel-request-modal__body {
    padding: 22px 16px 18px !important;
  }

  .trv-hotel-request-modal__body h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .trv-hotel-request-modal__body > p {
    font-size: 13px;
  }

  .trv-hotel-request-modal__quickfacts {
    grid-template-columns: 1fr !important;
    gap: 7px;
  }

  .trv-hotel-request-form .form-group {
    margin-bottom: 12px;
  }

  .trv-hotel-request-form .form-control {
    min-height: 42px;
    border-radius: 10px;
  }

  .trv-catalog-page .trv-catalog-summary--actions {
    align-items: flex-start;
  }

  .trv-catalog-summary__actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .trv-catalog-sort-form,
  .trv-catalog-sort-form .form-control {
    width: 100%;
  }

  .trv-catalog-page .sortbar__grid {
    justify-self: start;
  }

  .trv-catalog-page .product {
    border-radius: 14px;
  }

  .trv-catalog-page .product__body {
    padding: 16px !important;
  }

  .trv-catalog-page .product__title {
    min-height: 0;
    font-size: 18px;
    line-height: 1.25;
  }

  .trv-catalog-page .product__desc p {
    font-size: 13px;
    line-height: 1.55;
  }

  .trv-catalog-page .product__footer {
    grid-template-columns: repeat(3, minmax(40px, 1fr)) !important;
    gap: 8px !important;
    padding: 14px 16px 16px !important;
  }

  .trv-catalog-page .product__footer .trv-icon-action {
    height: 42px !important;
    min-height: 42px !important;
  }

  .trv-catalog-page .product__price {
    margin-bottom: 0;
  }
}

@media (max-width: 420px) {
  .trv-detail-page .hotel-nav__menu .nav-link {
    padding: 0 13px;
    font-size: 12px;
  }

  .trv-detail-page .hotel-gallery__carousel .swiper-slide,
  .trv-detail-page .hotel-gallery__carousel img {
    height: 220px !important;
  }

  .trv-hotel-facts,
  .trv-hotel-media-grid {
    grid-template-columns: 1fr !important;
  }

  .trv-hotel-mini-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 66px;
  }

  .trv-hotel-request-modal__media,
  .trv-hotel-request-modal__media img {
    min-height: 220px !important;
    max-height: 220px;
  }

  .trv-hotel-request-modal__thumbs {
    display: none;
  }

  .trv-catalog-page .product__footer {
    grid-template-columns: repeat(3, minmax(38px, 1fr)) !important;
  }
}

/* Detail page refinement: hotel accommodation and tour program */
.trv-detail-page--tour .sidebar__finder {
  border: 0;
  border-radius: 16px;
  background: linear-gradient(145deg, #0e2948, #18b8bd) !important;
  box-shadow: 0 18px 38px rgba(11, 29, 53, .14);
}

.trv-tour-alternatives {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(11, 29, 53, .08);
}

.trv-tour-alternatives__head {
  margin-bottom: 12px;
}

.trv-tour-alternatives__head span,
.trv-tour-day-kicker {
  display: block;
  color: var(--trv-teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.trv-tour-alternatives__head strong {
  display: block;
  color: var(--trv-navy);
  font-size: 17px;
  line-height: 1.25;
}

.trv-tour-alt-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 13px;
  color: var(--trv-navy);
  text-decoration: none !important;
  transition: background .2s ease, transform .2s ease;
}

.trv-tour-alt-card + .trv-tour-alt-card {
  margin-top: 6px;
}

.trv-tour-alt-card:hover {
  background: #f3fbfc;
  transform: translateY(-1px);
}

.trv-tour-alt-card img {
  width: 66px;
  height: 64px;
  border-radius: 11px;
  object-fit: cover;
  background: #eef5f7;
}

.trv-tour-alt-card span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trv-tour-alt-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--trv-navy);
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.trv-tour-alt-card small {
  margin-top: 3px;
  color: #6b7b8e;
  font-size: 11px;
}

.trv-tour-alt-card em {
  margin-top: 4px;
  color: var(--trv-orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.trv-detail-page--tour .trv-tour-side-summary {
  max-height: none !important;
  min-height: 0 !important;
  padding: 18px !important;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7fbfc);
  box-shadow: 0 16px 34px rgba(11, 29, 53, .08);
}

.trv-detail-page--tour .trv-tour-side-summary .guests-room__desc {
  display: -webkit-box;
  max-height: 96px;
  overflow: hidden;
  color: #51647a;
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.trv-tour-intro-card,
.trv-tour-quick-card,
.trv-tour-program-card,
.trv-hotel-accommodation-card {
  border: 1px solid rgba(15, 35, 64, .08);
  background: linear-gradient(180deg, #fff, #f8fcfd);
}

.trv-tour-intro-card {
  position: relative;
  overflow: hidden;
}

.trv-tour-intro-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--trv-teal), var(--trv-orange));
}

.trv-tour-intro-card p {
  color: #42556d;
  font-size: 14px;
  line-height: 1.75;
}

.trv-tour-quick-card {
  align-self: flex-start;
  min-height: 0 !important;
  padding: 22px !important;
}

.trv-tour-quick-card .hotel-stats__view {
  display: grid;
  gap: 10px;
}

.trv-tour-quick-card .hotel-stats__view .item {
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 13px;
  background: #f4fbfc;
  border: 1px solid rgba(29, 198, 200, .13);
}

.trv-tour-quick-card .hotel-stats__view .media-object .icon {
  color: var(--trv-teal-dark);
}

.trv-tour-quick-card .amount {
  color: #65778d;
  font-size: 13px;
}

.trv-tour-program-card {
  padding: 24px;
}

.trv-tour-program-day {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(15, 35, 64, .08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 29, 53, .07);
}

.trv-tour-program-day .hotel-package__title {
  margin: 4px 0 8px;
  color: var(--trv-navy);
  font-size: 20px;
  line-height: 1.25;
}

.trv-tour-program-day p {
  color: #42556d;
  font-size: 14px;
  line-height: 1.72;
}

.trv-tour-day-image {
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(11, 29, 53, .12);
}

.trv-tour-program-section {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 35, 64, .08);
}

.trv-tour-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0 0 13px;
  border-bottom: 1px solid rgba(15, 35, 64, .08);
  color: var(--trv-navy);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
}

.trv-tour-section-title i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--trv-teal), var(--trv-teal-dark));
  box-shadow: 0 10px 24px rgba(20, 160, 162, .22);
}

.trv-tour-subsection-title,
.trv-tour-content-heading {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--trv-navy);
  background: #f3fbfc;
  border: 1px solid rgba(29, 198, 200, .18);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.trv-tour-subsection-title--included {
  color: #087a7d;
  background: rgba(29, 198, 200, .10);
}

.trv-tour-subsection-title--excluded {
  color: #b45309;
  background: rgba(253, 150, 44, .12);
  border-color: rgba(253, 150, 44, .24);
}

.trv-tour-rich-text p {
  margin: 0 0 10px;
  color: #42556d;
  font-size: 14px;
  line-height: 1.75;
}

.trv-tour-rich-text p:last-child {
  margin-bottom: 0;
}

.trv-detail-page .hotel-service__list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(15, 35, 64, .06);
}

.trv-detail-page .hotel-service__list li:last-child {
  border-bottom: 0;
}

.trv-hotel-accommodation-card {
  overflow: hidden;
  padding: 0 !important;
}

.trv-hotel-accommodation-card__hero {
  padding: 24px;
  background: linear-gradient(135deg, rgba(29, 198, 200, .16), rgba(253, 150, 44, .10));
}

.trv-hotel-accommodation-card__hero h4 {
  margin: 0 0 8px;
  color: var(--trv-navy);
  font-size: 24px;
  letter-spacing: 0;
}

.trv-hotel-accommodation-card__hero p {
  max-width: 680px;
  margin: 0;
  color: #53657a;
  line-height: 1.65;
}

.trv-hotel-accommodation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 24px 10px;
}

.trv-hotel-accommodation-item {
  min-height: 112px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 35, 64, .08);
}

.trv-hotel-accommodation-item i {
  color: var(--trv-orange);
  margin-bottom: 10px;
}

.trv-hotel-accommodation-item span,
.trv-hotel-accommodation-item strong {
  display: block;
}

.trv-hotel-accommodation-item span {
  color: #78889b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trv-hotel-accommodation-item strong {
  margin-top: 5px;
  color: var(--trv-navy);
  font-size: 13px;
  line-height: 1.35;
}

.trv-hotel-accommodation-copy {
  padding: 12px 24px 24px;
}

.trv-hotel-accommodation-copy h5 {
  color: var(--trv-navy);
  font-size: 18px;
}

.trv-hotel-accommodation-copy p {
  color: #42556d;
  font-size: 14px;
  line-height: 1.76;
}

@media (max-width: 991.98px) {
  .trv-tour-alternatives {
    margin-bottom: 18px;
  }

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

@media (max-width: 575.98px) {
  .trv-tour-program-card,
  .trv-tour-program-day,
  .trv-tour-program-section,
  .trv-hotel-accommodation-card__hero,
  .trv-hotel-accommodation-copy {
    padding: 16px !important;
  }

  .trv-hotel-accommodation-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .trv-tour-alt-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .trv-tour-alt-card img {
    width: 58px;
    height: 58px;
  }
}

/* Callback request modal */
.trv-callback-modal .modal-dialog {
  max-width: 620px;
}

.trv-callback-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(11, 29, 53, .28);
}

.trv-callback-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--trv-navy);
  background: rgba(255, 255, 255, .86);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.trv-callback-modal__head {
  padding: 28px 30px 22px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(253, 150, 44, .34), transparent 34%),
    linear-gradient(135deg, #0b1d35 0%, #12365a 48%, #12a8ad 100%);
}

.trv-callback-modal__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trv-callback-modal__title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
}

.trv-callback-modal__text {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  line-height: 1.65;
}

.trv-callback-modal__form {
  padding: 26px 30px 30px;
  background: #fff;
}

.trv-callback-modal label {
  color: var(--trv-navy);
  font-size: 12px;
  font-weight: 900;
}

.trv-callback-modal .form-control {
  height: 46px;
  border-radius: 12px;
  border-color: rgba(15, 35, 64, .14);
  color: var(--trv-navy);
  font-weight: 700;
}

.trv-callback-modal textarea.form-control {
  height: auto;
  min-height: 92px;
  resize: vertical;
}

.trv-callback-modal__service {
  margin: 4px 0 18px;
}

.trv-callback-modal__service > span {
  display: block;
  margin-bottom: 10px;
  color: var(--trv-navy);
  font-size: 12px;
  font-weight: 900;
}

.trv-callback-modal__choices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.trv-callback-modal__choices label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0;
  border: 1px solid rgba(15, 35, 64, .12);
  border-radius: 14px;
  background: #f8fbfd;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.trv-callback-modal__choices input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trv-callback-modal__choices strong {
  color: #465a72;
  font-size: 13px;
  font-weight: 900;
}

.trv-callback-modal__choices label:has(input:checked) {
  border-color: rgba(29, 198, 200, .55);
  background: rgba(29, 198, 200, .11);
  box-shadow: 0 12px 26px rgba(29, 198, 200, .14);
}

.trv-callback-modal__choices label:has(input:checked) strong {
  color: var(--trv-teal-dark);
}

.trv-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

/* Legal documents and consent links */
.trv-legal-consents {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(15, 35, 64, .10);
  border-radius: 14px;
  background: #f8fbfd;
}

.trv-legal-consents label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  margin: 0;
  color: #5d6f84;
  font-size: 12.5px;
  line-height: 1.55;
  cursor: pointer;
}

.trv-legal-consents input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--trv-teal);
}

.trv-legal-consents a {
  color: var(--trv-teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trv-legal-consents--payment {
  background: #fff;
}

.trv-legal-consents--compact {
  padding: 12px;
  border-radius: 12px;
  background: #f7fbfc;
}

.trv-legal-consents--compact label {
  font-size: 12px;
}

.trv-legal-page .page-content {
  background:
    linear-gradient(180deg, rgba(29, 198, 200, .08), transparent 240px),
    #fff;
}

.trv-legal-document {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(15, 35, 64, .10);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(11, 29, 53, .10);
}

.trv-legal-document__head {
  padding: 34px 38px 28px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(253, 150, 44, .30), transparent 34%),
    linear-gradient(135deg, #0b1d35, #12365a 56%, #14a0a2);
}

.trv-legal-document__head span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trv-legal-document__head h1 {
  max-width: 760px;
  margin: 0 0 10px;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.trv-legal-document__head p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  line-height: 1.65;
}

.trv-legal-document__body {
  padding: 34px 38px 42px;
}

.trv-legal-document__body h2,
.trv-legal-document__body h3 {
  color: var(--trv-navy);
  letter-spacing: 0;
}

.trv-legal-document__body h2 {
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 900;
}

.trv-legal-document__body h3 {
  margin: 26px 0 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 35, 64, .08);
  font-size: 18px;
  font-weight: 900;
}

.trv-legal-document__body p {
  margin: 0 0 12px;
  color: #42556d;
  font-size: 14px;
  line-height: 1.78;
}

.trv-legal-document__bullet {
  position: relative;
  padding-left: 20px;
}

.trv-legal-document__bullet::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--trv-teal);
}

@media (max-width: 575.98px) {
  .trv-callback-modal .modal-dialog {
    margin: 12px;
  }

  .trv-callback-modal__head,
  .trv-callback-modal__form {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .trv-legal-document__head,
  .trv-legal-document__body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .trv-legal-document__head h1 {
    font-size: 26px;
  }
}

/* Header and breadcrumb polish */
.page-header {
  background:
    radial-gradient(circle at 42% 20%, rgba(79, 214, 207, .22), transparent 33%),
    linear-gradient(90deg, rgba(7, 19, 35, .94) 0%, rgba(15, 37, 55, .90) 42%, rgba(7, 17, 31, .96) 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  box-shadow: 0 18px 42px rgba(5, 16, 30, .18) !important;
}

.page-header.trv-scrolled {
  background: rgba(7, 18, 36, .97) !important;
  box-shadow: 0 12px 34px rgba(5, 16, 30, .34) !important;
}

.trv-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, .10) !important;
}

.trv-topbar__row {
  min-height: 56px;
}

.trv-mainnav__row {
  min-height: 88px;
}

.trv-topbar a,
.trv-nav-links .nav-link,
.trv-switcher__trigger,
.trv-topbar__btn {
  text-shadow: none !important;
}

.trv-topbar__contact a,
.trv-topbar__btn,
.trv-switcher__trigger {
  color: rgba(255, 255, 255, .90) !important;
}

.trv-header-search {
  border-color: rgba(255, 255, 255, .24) !important;
  background: rgba(255, 255, 255, .10) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.trv-header-search input {
  color: #fff !important;
}

.trv-header-search input::placeholder {
  color: rgba(255, 255, 255, .66) !important;
}

.trv-topbar-quicklinks .trv-topbar__btn,
.trv-switcher__trigger {
  min-height: 34px;
  padding: 0 9px !important;
  border-radius: 999px;
}

.trv-topbar-quicklinks .trv-topbar__btn:hover,
.trv-switcher__trigger:hover,
.trv-dropdown-trigger.open .trv-switcher__trigger {
  background: rgba(255, 255, 255, .10) !important;
}

.trv-nav-links {
  gap: 4px;
}

.trv-nav-links .nav-link {
  padding: 10px 8px !important;
  border-radius: 999px;
}

.trv-nav-links .nav-link:hover,
.trv-nav-links .nav-item.show > .nav-link,
.trv-nav-links .nav-item.is-open > .nav-link,
.trv-nav-links .nav-item:focus-within > .nav-link {
  color: #fff !important;
  background: rgba(29, 198, 200, .18) !important;
}

.trv-nav-cta {
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(16, 138, 160, .24);
}

.breadcrumb-nav {
  position: relative;
  min-height: 58px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #f8fcfd 48%, #eef9f9 100%) !important;
  border-bottom: 1px solid rgba(15, 35, 64, .07);
  box-shadow: 0 12px 32px rgba(15, 35, 64, .06);
}

.breadcrumb-nav::before {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - 1320px) / 2 + 20px));
  right: max(20px, calc((100vw - 1320px) / 2 + 20px));
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--trv-teal), rgba(253, 150, 44, .72), transparent 72%);
  opacity: .86;
}

.breadcrumb-nav .container {
  position: relative;
  max-width: 1320px;
}

.breadcrumb {
  min-height: 58px;
  margin: 0;
  padding: 0;
  background: transparent;
  align-items: center;
}

.breadcrumb-item {
  color: #76869a;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb-item a {
  color: #53667e !important;
  text-decoration: none !important;
}

.breadcrumb-item a:hover {
  color: var(--trv-teal) !important;
}

.breadcrumb-item.active,
.breadcrumb-item.active span {
  color: var(--trv-navy) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(15, 35, 64, .32);
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .page-header {
    background: rgba(7, 18, 36, .97) !important;
  }

  .trv-mainnav__row {
    min-height: 76px;
  }

  .breadcrumb-nav,
  .breadcrumb {
    min-height: 50px;
  }
}

/* Header bottom band refinement */
.breadcrumb-nav {
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(248, 252, 253, .98) 48%, rgba(236, 249, 249, .98) 100%),
    radial-gradient(circle at 78% 50%, rgba(29, 198, 200, .16), transparent 34%) !important;
}

.breadcrumb-nav::after {
  content: "";
  position: absolute;
  top: -42px;
  right: max(22px, calc((100vw - 1320px) / 2 + 22px));
  width: min(38vw, 520px);
  height: 150px;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(29, 198, 200, .13) 34% 36%, transparent 36% 48%, rgba(253, 150, 44, .12) 48% 50%, transparent 50%),
    linear-gradient(135deg, rgba(15, 35, 64, .045), transparent 58%);
  transform: skewX(-18deg);
  opacity: .9;
}

.breadcrumb-nav .breadcrumb {
  gap: 8px;
}

.breadcrumb-nav .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}

.breadcrumb-nav .breadcrumb-item a,
.breadcrumb-nav .breadcrumb-item.active span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
}

.breadcrumb-nav .breadcrumb-item a {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(15, 35, 64, .07);
  box-shadow: 0 6px 16px rgba(15, 35, 64, .045);
}

.breadcrumb-nav .breadcrumb-item a:hover {
  background: rgba(29, 198, 200, .10);
  border-color: rgba(29, 198, 200, .24);
}

.breadcrumb-nav .breadcrumb-item.active span {
  background: rgba(11, 29, 53, .06);
  border: 1px solid rgba(11, 29, 53, .07);
  font-weight: 800;
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  padding: 0;
  margin-right: 0;
  color: rgba(15, 35, 64, .35);
  font: normal normal normal 14px/1 FontAwesome;
}

@media (max-width: 575.98px) {
  .breadcrumb-nav::after {
    width: 58vw;
    opacity: .55;
  }

  .breadcrumb-nav .breadcrumb {
    gap: 5px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

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

  .breadcrumb-nav .breadcrumb-item {
    flex: 0 0 auto;
    font-size: 12px;
  }

  .breadcrumb-nav .breadcrumb-item a,
  .breadcrumb-nav .breadcrumb-item.active span {
    min-height: 28px;
    padding: 0 10px;
  }
}

/* Modern product cards without star rows */
.card-intro__rating,
.product__rating,
.trv-catalog-page--hotel .product__stat li:last-child {
  display: none !important;
}

.page-main--home .card-intro {
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(9, 24, 42, .20);
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.page-main--home .card-intro::before {
  background: linear-gradient(180deg, rgba(7, 18, 36, .02) 0%, rgba(7, 18, 36, .76) 100%) !important;
}

.page-main--home .card-intro:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(9, 24, 42, .28);
  filter: saturate(1.06);
}

.page-main--home .card-intro__footer {
  padding: 18px 18px 17px !important;
  background: linear-gradient(180deg, rgba(11, 29, 53, .18), rgba(11, 29, 53, .88)) !important;
}

.page-main--home .card-intro__footer h4 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.page-main--home .card-intro__local {
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 750;
}

.page-main--home .card-intro .card-price {
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: rgba(7, 18, 36, .88) !important;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 10px 24px rgba(5, 16, 30, .24);
}

.trv-catalog-page .product {
  border: 1px solid rgba(15, 35, 64, .08) !important;
  border-radius: 8px !important;
  overflow: hidden;
  background: #fff !important;
  box-shadow: 0 14px 34px rgba(15, 35, 64, .08) !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.trv-catalog-page .product:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 198, 200, .28) !important;
  box-shadow: 0 24px 54px rgba(15, 35, 64, .14) !important;
}

.trv-catalog-page .trv-product-media {
  margin: 0 !important;
}

.trv-catalog-page .product__img-top {
  border-radius: 0 !important;
}

.trv-catalog-page .product__img-top::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 18, 36, 0) 45%, rgba(7, 18, 36, .22) 100%);
}

.trv-catalog-page .product__body {
  padding: 18px 18px 12px !important;
}

.trv-catalog-page .product__title {
  margin: 0 0 10px !important;
  font-size: 19px !important;
  line-height: 1.22 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.trv-catalog-page .product__title a {
  color: var(--trv-navy) !important;
  text-decoration: none !important;
}

.trv-catalog-page .product__title a:hover {
  color: var(--trv-teal-dark) !important;
}

.trv-catalog-page .product__stat {
  min-height: 28px;
  justify-content: flex-start !important;
  gap: 8px;
  margin-bottom: 12px;
  color: #6b7b8f;
  font-size: 12.5px;
  font-weight: 700;
}

.trv-catalog-page .product__stat a {
  color: var(--trv-teal-dark) !important;
  font-weight: 850;
  text-decoration: none !important;
}

.trv-catalog-page .product__body > hr {
  margin: 13px 0;
  border-top-color: rgba(15, 35, 64, .08);
}

.trv-catalog-page .product__desc p {
  min-height: 58px;
  margin-bottom: 7px;
  color: #42556d;
  font-size: 13px;
  line-height: 1.55;
}

.trv-catalog-page .product__link-more {
  color: var(--trv-teal-dark) !important;
  font-size: 12.5px;
  font-weight: 900;
  text-decoration: none !important;
}

.trv-catalog-page .product__footer {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 9px !important;
  padding: 0 18px 18px !important;
}

.trv-catalog-page .product__footer > .product__price {
  grid-column: 1 / -1 !important;
  padding: 12px 0 0 !important;
  border-top: 1px solid rgba(15, 35, 64, .08);
}

.trv-catalog-page .product__footer .trv-icon-action,
.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  width: 100% !important;
  height: 42px !important;
  min-height: 42px !important;
  border-radius: 999px !important;
}

.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  background: #fff !important;
  color: var(--trv-navy) !important;
  border-color: rgba(15, 35, 64, .14) !important;
  box-shadow: 0 10px 22px rgba(15, 35, 64, .09) !important;
}

.trv-catalog-page .product__footer .trv-favorite-btn--footer:hover,
.trv-catalog-page .product__footer .trv-favorite-btn--footer.is-active {
  background: var(--trv-navy) !important;
  color: #fff !important;
  border-color: var(--trv-navy) !important;
}

@media (max-width: 575.98px) {
  .trv-catalog-page .product__title {
    font-size: 17px !important;
  }

  .trv-catalog-page .product__footer {
    gap: 8px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

/* Catalog card visual refresh */
.trv-catalog-page .product {
  position: relative;
  border: 1px solid rgba(15, 35, 64, .08) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 252, 253, .98)) !important;
  box-shadow: 0 18px 42px rgba(15, 35, 64, .10) !important;
  overflow: hidden;
}

.trv-catalog-page .product:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 193, 199, .34) !important;
  box-shadow: 0 26px 58px rgba(15, 35, 64, .16) !important;
}

.trv-catalog-page .product::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(32, 193, 199, .10), rgba(255, 255, 255, 0) 34%);
  opacity: 0;
  transition: opacity .24s ease;
}

.trv-catalog-page .product:hover::after {
  opacity: 1;
}

.trv-catalog-page .trv-product-media {
  height: 232px !important;
  min-height: 232px !important;
  margin: 14px 14px 0 !important;
  border-radius: 8px !important;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf6f7, #f8fbfd);
}

.trv-catalog-page .product__img-top {
  height: 100% !important;
  min-height: 100% !important;
  border-radius: 8px !important;
}

.trv-catalog-page .product__img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .36s ease, filter .36s ease;
}

.trv-catalog-page .product:hover .product__img-top img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.02);
}

.trv-catalog-page .product__img-top::after {
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(7, 18, 36, 0) 48%, rgba(7, 18, 36, .26) 100%),
    linear-gradient(135deg, rgba(7, 18, 36, .10), rgba(32, 193, 199, .08)) !important;
}

.trv-catalog-page .product__special {
  top: 28px !important;
  right: 0 !important;
  left: auto !important;
  border-radius: 8px 0 0 8px !important;
  padding: 10px 16px !important;
  min-height: 0 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .02em !important;
  line-height: 1 !important;
  text-transform: uppercase;
  background: linear-gradient(135deg, #5c35a7, #7c4dd7) !important;
  box-shadow: 0 14px 28px rgba(44, 25, 94, .24);
  z-index: 7;
}

.trv-catalog-page .product__body {
  position: relative;
  z-index: 2;
  padding: 19px 22px 12px !important;
}

.trv-catalog-page .product__title {
  min-height: 48px !important;
  margin-bottom: 12px !important;
  font-size: 19px !important;
  line-height: 1.24 !important;
}

.trv-catalog-page .product__stat {
  min-height: 34px !important;
  gap: 7px 10px !important;
  color: #6d7d91 !important;
  font-size: 12px !important;
  font-weight: 750 !important;
}

.trv-catalog-page .product__stat li {
  min-width: 0;
}

.trv-catalog-page .product__stat a,
.trv-catalog-page .product__link-more {
  color: #0aa6b2 !important;
  font-weight: 900 !important;
}

.trv-catalog-page .product__body > hr,
.trv-catalog-page .product > hr {
  border-top: 1px solid rgba(15, 35, 64, .08) !important;
}

.trv-catalog-page .product__body > hr {
  margin: 15px 0 !important;
}

.trv-catalog-page .product__price {
  color: #6d7d91;
  font-size: 12px;
  font-weight: 750;
}

.trv-catalog-page .product__price .cost {
  color: #079fab !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  letter-spacing: .01em;
}

.trv-catalog-page .product__desc p {
  color: #4f6077;
  font-size: 13px;
  line-height: 1.55;
}

.trv-catalog-page .product__footer {
  position: relative;
  z-index: 2;
  padding: 0 22px 22px !important;
}

.trv-catalog-page .product__footer > .product__price {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 44px;
  margin-bottom: 2px !important;
  padding: 13px 0 10px !important;
}

.trv-catalog-page .product__footer .trv-icon-action,
.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  height: 46px !important;
  min-height: 46px !important;
  border-radius: 999px !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.trv-catalog-page .product__footer .btn-secondary.trv-icon-action {
  background: linear-gradient(135deg, #20c1c7, #0b9fb0) !important;
  border-color: transparent !important;
  box-shadow: 0 14px 28px rgba(9, 159, 176, .22) !important;
}

.trv-catalog-page .product__footer .btn-outline-secondary.trv-icon-action {
  background: #fff !important;
  border-color: rgba(253, 150, 44, .46) !important;
  color: #fd8d21 !important;
  box-shadow: 0 12px 24px rgba(253, 150, 44, .10) !important;
}

.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  background: #fff !important;
  border-color: rgba(15, 35, 64, .10) !important;
  color: #0b1d35 !important;
  box-shadow: 0 12px 24px rgba(15, 35, 64, .08) !important;
}

.trv-catalog-page .product__footer .trv-favorite-btn--footer:hover,
.trv-catalog-page .product__footer .trv-favorite-btn--footer.is-active {
  background: #0b1d35 !important;
  color: #fff !important;
}

@media (max-width: 575.98px) {
  .trv-catalog-page .trv-product-media {
    height: 218px !important;
    min-height: 218px !important;
    margin: 12px 12px 0 !important;
  }

  .trv-catalog-page .product__body {
    padding: 17px 18px 10px !important;
  }

  .trv-catalog-page .product__footer {
    padding: 0 18px 18px !important;
  }

  .trv-catalog-page .product__special {
    top: 24px !important;
    padding: 9px 13px !important;
  }
}

.trv-catalog-page .product--list .trv-product-media {
  height: auto !important;
  min-height: 232px !important;
  margin: 14px 0 14px 14px !important;
}

.trv-catalog-page .product--list .product__img-top {
  min-height: 232px !important;
}

.trv-catalog-page .product--list .product__body {
  padding-top: 22px !important;
}

.trv-catalog-page .product--list .product__footer {
  padding: 22px !important;
}

@media (max-width: 767.98px) {
  .trv-catalog-page .product--list .trv-product-media {
    height: 220px !important;
    min-height: 220px !important;
    margin: 12px 12px 0 !important;
  }

  .trv-catalog-page .product--list .product__img-top {
    min-height: 220px !important;
  }
}

/* Catalog card compact correction */
.trv-catalog-page .product {
  border-radius: 8px !important;
  box-shadow: 0 14px 34px rgba(15, 35, 64, .11) !important;
}

.trv-catalog-page .product:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(15, 35, 64, .15) !important;
}

.trv-catalog-page .trv-product-media {
  height: 214px !important;
  min-height: 214px !important;
  margin: 0 !important;
  border-radius: 8px 8px 0 0 !important;
}

.trv-catalog-page .product__img-top,
.trv-catalog-page .product__img-top::after {
  border-radius: 8px 8px 0 0 !important;
}

.trv-catalog-page .product__body {
  padding: 18px 18px 10px !important;
}

.trv-catalog-page .product__title {
  min-height: 0 !important;
  margin-bottom: 10px !important;
  font-size: 18px !important;
  line-height: 1.24 !important;
}

.trv-catalog-page .product__stat {
  min-height: 28px !important;
}

.trv-catalog-page .product__body > hr {
  margin: 13px 0 !important;
}

.trv-catalog-page .product__desc p {
  min-height: 48px !important;
  margin-bottom: 4px !important;
  font-size: 13px;
  line-height: 1.46;
}

.trv-catalog-page .product__footer {
  padding: 0 18px 18px !important;
}

.trv-catalog-page .product__footer > .product__price {
  min-height: 40px;
  padding: 10px 0 8px !important;
}

.trv-catalog-page .product__footer .trv-icon-action,
.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  height: 44px !important;
  min-height: 44px !important;
}

.trv-catalog-page .product__special {
  top: 16px !important;
  right: 0 !important;
  border-radius: 8px 0 0 8px !important;
}

.trv-catalog-page .product--list .trv-product-media {
  min-height: 236px !important;
  margin: 0 !important;
  border-radius: 8px 0 0 8px !important;
}

.trv-catalog-page .product--list .product__img-top,
.trv-catalog-page .product--list .product__img-top::after {
  border-radius: 8px 0 0 8px !important;
}

.trv-catalog-page .product--list .product__footer {
  padding: 18px !important;
}

@media (max-width: 767.98px) {
  .trv-catalog-page .trv-product-media,
  .trv-catalog-page .product--list .trv-product-media {
    height: 220px !important;
    min-height: 220px !important;
    margin: 0 !important;
    border-radius: 8px 8px 0 0 !important;
  }

  .trv-catalog-page .product__img-top,
  .trv-catalog-page .product__img-top::after,
  .trv-catalog-page .product--list .product__img-top,
  .trv-catalog-page .product--list .product__img-top::after {
    border-radius: 8px 8px 0 0 !important;
  }
}

/* Catalog card final compact refresh */
.trv-catalog-page .product {
  border: 1px solid rgba(15, 35, 64, .07) !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: 0 16px 38px rgba(15, 35, 64, .10) !important;
}

.trv-catalog-page .product:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 188, 195, .35) !important;
  box-shadow: 0 24px 54px rgba(15, 35, 64, .15) !important;
}

.trv-catalog-page .trv-product-media {
  height: 232px !important;
  min-height: 232px !important;
}

.trv-catalog-page .product__img-top,
.trv-catalog-page .product__img-top::after {
  border-radius: 10px 10px 0 0 !important;
}

.trv-catalog-page .product__body {
  padding: 17px 18px 8px !important;
}

.trv-catalog-page .product__title {
  margin-bottom: 11px !important;
  font-size: 18px !important;
  line-height: 1.28 !important;
}

.trv-catalog-page .trv-card-meta {
  min-height: 30px !important;
  gap: 8px !important;
  margin-bottom: 0 !important;
  color: #667790 !important;
}

.trv-catalog-page .trv-card-meta__main {
  display: inline-flex !important;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  font-size: 12.5px;
  font-weight: 750;
}

.trv-catalog-page .trv-card-meta__main span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trv-catalog-page .trv-card-meta__main .fa {
  color: #18b8bf;
}

.trv-catalog-page .trv-card-meta__pill {
  display: inline-flex !important;
  align-items: center;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(24, 184, 191, .10);
  color: #087f8f;
  font-size: 11.5px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.trv-catalog-page .product__price {
  margin-bottom: 0 !important;
}

.trv-catalog-page .product__price .cost {
  font-size: 18px !important;
}

.trv-catalog-page .trv-card-desc p {
  display: -webkit-box;
  min-height: 42px !important;
  margin-bottom: 0 !important;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.trv-catalog-page .product__footer {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  padding: 8px 18px 18px !important;
}

.trv-catalog-page .product__footer .trv-icon-action,
.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  height: 44px !important;
  min-height: 44px !important;
  border-radius: 999px !important;
}

.trv-catalog-page .product__footer .trv-cart-add-form {
  display: flex;
}

.trv-catalog-page .product__footer .btn-secondary.trv-icon-action {
  background: linear-gradient(135deg, #20c1c7, #079fab) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 14px 26px rgba(8, 159, 171, .20) !important;
}

.trv-catalog-page .product__footer .btn-outline-secondary.trv-icon-action {
  background: #fff !important;
  border-color: rgba(253, 150, 44, .42) !important;
  color: #f58220 !important;
}

.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  background: #f7f9fc !important;
  border-color: rgba(15, 35, 64, .08) !important;
  color: #0b1d35 !important;
}

.trv-catalog-page .product__footer .trv-favorite-btn--footer:hover,
.trv-catalog-page .product__footer .trv-favorite-btn--footer.is-active {
  background: #0b1d35 !important;
  color: #fff !important;
}

.trv-catalog-page .product--list .trv-product-media {
  min-height: 232px !important;
}

@media (max-width: 575.98px) {
  .trv-catalog-page .trv-product-media,
  .trv-catalog-page .product--list .trv-product-media {
    height: 220px !important;
    min-height: 220px !important;
  }

  .trv-catalog-page .product__body {
    padding: 16px 16px 8px !important;
  }

  .trv-catalog-page .product__footer {
    padding: 8px 16px 16px !important;
  }
}

/* Keep Bootstrap modals above the fixed site header and live-search layers. */
body.modal-open .modal {
  z-index: 10120 !important;
}

body.modal-open .modal-backdrop {
  z-index: 10110 !important;
}

body.modal-open .page-header {
  z-index: 10000 !important;
}

.trv-callback-modal,
.trv-hotel-request-modal,
.trv-flight-request-modal,
.modal-account {
  z-index: 10120 !important;
}

/* Catalog cards: stronger image fit and motion */
.trv-catalog-page .product {
  isolation: isolate;
  overflow: hidden !important;
  border: 1px solid rgba(15, 35, 64, .08) !important;
  border-radius: 12px !important;
  background:
    linear-gradient(180deg, #fff 0%, #fff 72%, #f7fbfc 100%) !important;
  box-shadow: 0 14px 34px rgba(15, 35, 64, .10) !important;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease !important;
}

.trv-catalog-page .product::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(29, 198, 200, .13), transparent 34%),
    linear-gradient(315deg, rgba(253, 150, 44, .10), transparent 38%);
  opacity: 0;
  transition: opacity .24s ease;
}

.trv-catalog-page .product:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(29, 198, 200, .38) !important;
  box-shadow: 0 28px 64px rgba(15, 35, 64, .17) !important;
}

.trv-catalog-page .product:hover::before {
  opacity: 1;
}

.trv-catalog-page .trv-product-media {
  position: relative !important;
  z-index: 1;
  width: 100% !important;
  height: 246px !important;
  min-height: 246px !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 12px 12px 0 0 !important;
  background: #dfeaf0 !important;
}

.trv-catalog-page .product__img-top {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  overflow: hidden !important;
  border-radius: 12px 12px 0 0 !important;
  background: #dfeaf0 !important;
}

.trv-catalog-page .product__img-top img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: scale(1.01);
  transition: transform .42s ease, filter .42s ease !important;
}

.trv-catalog-page .product__img-top::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 12px 12px 0 0 !important;
  background:
    linear-gradient(180deg, rgba(7, 18, 36, 0) 42%, rgba(7, 18, 36, .42) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .20), transparent 34%);
  opacity: .72;
  transition: opacity .24s ease;
}

.trv-catalog-page .product:hover .product__img-top img {
  transform: scale(1.075);
  filter: saturate(1.12) contrast(1.04);
}

.trv-catalog-page .product:hover .product__img-top::after {
  opacity: .88;
}

.trv-catalog-page .product__special {
  top: 16px !important;
  right: 14px !important;
  z-index: 4 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #5b35a8, #352069) !important;
  box-shadow: 0 14px 28px rgba(44, 25, 94, .28) !important;
}

.trv-catalog-page .product__body,
.trv-catalog-page .product__footer {
  position: relative;
  z-index: 1;
}

.trv-catalog-page .product__body {
  padding: 18px 18px 9px !important;
}

.trv-catalog-page .product__title {
  font-size: 18px !important;
  line-height: 1.25 !important;
}

.trv-catalog-page .product__title a {
  transition: color .18s ease;
}

.trv-catalog-page .product:hover .product__title a {
  color: #079fab !important;
}

.trv-catalog-page .product__body > hr {
  margin: 12px 0 !important;
  border-top-color: rgba(15, 35, 64, .075) !important;
}

.trv-catalog-page .trv-card-meta__pill {
  box-shadow: inset 0 0 0 1px rgba(24, 184, 191, .10);
}

.trv-catalog-page .product__footer {
  gap: 10px !important;
  padding: 10px 18px 18px !important;
}

.trv-catalog-page .product__footer .trv-icon-action,
.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  height: 46px !important;
  min-height: 46px !important;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease !important;
}

.trv-catalog-page .product__footer .trv-icon-action:hover,
.trv-catalog-page .product__footer .trv-favorite-btn--footer:hover {
  transform: translateY(-2px) !important;
}

.trv-catalog-page .product--list {
  min-height: 246px;
}

.trv-catalog-page .product--list .trv-product-media {
  height: auto !important;
  min-height: 246px !important;
  border-radius: 12px 0 0 12px !important;
}

.trv-catalog-page .product--list .product__img-top,
.trv-catalog-page .product--list .product__img-top::after {
  border-radius: 12px 0 0 12px !important;
}

@media (max-width: 767.98px) {
  .trv-catalog-page .trv-product-media,
  .trv-catalog-page .product--list .trv-product-media {
    height: 230px !important;
    min-height: 230px !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .trv-catalog-page .product__img-top,
  .trv-catalog-page .product__img-top::after,
  .trv-catalog-page .product--list .product__img-top,
  .trv-catalog-page .product--list .product__img-top::after {
    border-radius: 12px 12px 0 0 !important;
  }
}

/* Catalog cards flush image final pass */
.trv-catalog-page .product,
.trv-catalog-page .product.bg-white {
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  border: 1px solid rgba(15, 35, 64, .08) !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 66%, #f1fbfc 100%) !important;
  box-shadow:
    0 18px 46px rgba(15, 35, 64, .13),
    0 1px 0 rgba(255, 255, 255, .78) inset !important;
}

.trv-catalog-page .product::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(31, 196, 203, .18), transparent 34%),
    linear-gradient(315deg, rgba(253, 150, 44, .12), transparent 38%);
  opacity: .65;
  transition: opacity .24s ease;
}

.trv-catalog-page .product:hover::before {
  opacity: 1;
}

.trv-catalog-page .product > .trv-product-media,
.trv-catalog-page .product .trv-product-media {
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 248px !important;
  min-height: 248px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 14px 14px 0 0 !important;
  background: #dbe9ef !important;
}

.trv-catalog-page .product__img-top {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 14px 14px 0 0 !important;
}

.trv-catalog-page .product__img-top img,
.trv-catalog-page .product__img-top .img-fluid {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.trv-catalog-page .product__img-top::after {
  border-radius: 14px 14px 0 0 !important;
  background:
    linear-gradient(180deg, rgba(7, 18, 36, 0) 42%, rgba(7, 18, 36, .48) 100%),
    linear-gradient(135deg, rgba(31, 196, 203, .14), transparent 36%) !important;
}

.trv-catalog-page .product__special {
  top: 16px !important;
  right: 16px !important;
  padding: 11px 18px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #6d36c7 0%, #3c1c78 100%) !important;
}

.trv-catalog-page .product__body {
  padding: 19px 20px 10px !important;
}

.trv-catalog-page .product__title {
  margin-bottom: 10px !important;
  color: #0b1d35 !important;
  letter-spacing: 0 !important;
}

.trv-catalog-page .product__title a {
  color: inherit !important;
}

.trv-catalog-page .product:hover .product__title a {
  color: #079fab !important;
}

.trv-catalog-page .trv-card-meta {
  color: #738197 !important;
  font-weight: 650 !important;
}

.trv-catalog-page .product__price {
  align-items: center !important;
  padding: 11px 12px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, rgba(31, 196, 203, .10), rgba(253, 150, 44, .07)) !important;
}

.trv-catalog-page .product__footer {
  position: relative !important;
  z-index: 1 !important;
  padding: 10px 20px 20px !important;
}

.trv-catalog-page .product__footer .trv-icon-action,
.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  height: 45px !important;
  min-height: 45px !important;
  border-radius: 999px !important;
}

.trv-catalog-page .product__footer .btn-secondary.trv-icon-action {
  background: linear-gradient(135deg, #22c4ca, #079fab) !important;
  box-shadow: 0 14px 28px rgba(9, 159, 176, .24) !important;
}

.trv-catalog-page .product__footer .btn-outline-secondary.trv-icon-action {
  background: #fff7ef !important;
  border-color: rgba(253, 150, 44, .48) !important;
  color: #f58220 !important;
}

.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  background: #f7f9fc !important;
  border-color: rgba(15, 35, 64, .08) !important;
  color: #0b1d35 !important;
}

.trv-catalog-page .product__footer .trv-favorite-btn--footer:hover,
.trv-catalog-page .product__footer .trv-favorite-btn--footer.is-active {
  background: #0b1d35 !important;
  color: #fff !important;
}

.trv-catalog-page .product--list > .trv-product-media,
.trv-catalog-page .product--list .trv-product-media {
  height: auto !important;
  min-height: 248px !important;
  margin: 0 !important;
  border-radius: 14px 0 0 14px !important;
}

.trv-catalog-page .product--list .product__img-top,
.trv-catalog-page .product--list .product__img-top::after {
  border-radius: 14px 0 0 14px !important;
}

@media (max-width: 767.98px) {
  .trv-catalog-page .product > .trv-product-media,
  .trv-catalog-page .product .trv-product-media,
  .trv-catalog-page .product--list > .trv-product-media,
  .trv-catalog-page .product--list .trv-product-media {
    height: 225px !important;
    min-height: 225px !important;
    border-radius: 14px 14px 0 0 !important;
  }

  .trv-catalog-page .product__img-top,
  .trv-catalog-page .product__img-top::after,
  .trv-catalog-page .product--list .product__img-top,
  .trv-catalog-page .product--list .product__img-top::after {
    border-radius: 14px 14px 0 0 !important;
  }

  .trv-catalog-page .product__body {
    padding: 17px 17px 9px !important;
  }

  .trv-catalog-page .product__footer {
    padding: 9px 17px 17px !important;
  }
}

/* Visual refinement pass: header + catalog cards */
.page-header {
  background:
    radial-gradient(circle at 18% 18%, rgba(34, 196, 202, .20), transparent 30%),
    radial-gradient(circle at 76% 0%, rgba(253, 150, 44, .13), transparent 28%),
    linear-gradient(100deg, rgba(6, 18, 34, .98) 0%, rgba(13, 35, 55, .96) 48%, rgba(5, 14, 27, .99) 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .085) !important;
  box-shadow: 0 18px 46px rgba(5, 16, 30, .24) !important;
}

.page-header.trv-scrolled {
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 196, 202, .13), transparent 34%),
    rgba(6, 18, 34, .985) !important;
  box-shadow: 0 14px 36px rgba(5, 16, 30, .38) !important;
}

.trv-topbar {
  border-bottom-color: rgba(255, 255, 255, .08) !important;
}

.trv-topbar__row {
  min-height: 54px !important;
}

.trv-mainnav__row {
  min-height: 84px !important;
}

.trv-topbar__contact a,
.trv-topbar__btn,
.trv-switcher__trigger {
  color: rgba(255, 255, 255, .92) !important;
}

.trv-topbar__contact a i,
.trv-topbar__btn i,
.trv-switcher__trigger i {
  color: rgba(34, 196, 202, .95) !important;
}

.trv-header-search {
  min-height: 38px !important;
  border: 1px solid rgba(255, 255, 255, .20) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .095) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .11),
    0 12px 28px rgba(0, 0, 0, .12) !important;
}

.trv-header-search:focus-within {
  border-color: rgba(34, 196, 202, .68) !important;
  background: rgba(255, 255, 255, .13) !important;
  box-shadow:
    0 0 0 3px rgba(34, 196, 202, .12),
    0 14px 30px rgba(0, 0, 0, .15) !important;
}

.trv-topbar-quicklinks .trv-topbar__btn,
.trv-switcher__trigger {
  min-height: 34px !important;
  padding: 0 10px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
}

.trv-topbar-quicklinks .trv-topbar__btn:hover,
.trv-switcher__trigger:hover,
.trv-dropdown-trigger.open .trv-switcher__trigger {
  border-color: rgba(255, 255, 255, .16) !important;
  background: rgba(255, 255, 255, .105) !important;
}

.trv-favorite-count,
.trv-cart-count {
  box-shadow: 0 7px 16px rgba(0, 0, 0, .16) !important;
}

.trv-nav-links {
  gap: 3px !important;
}

.trv-nav-links .nav-link {
  position: relative !important;
  padding: 10px 9px !important;
  border-radius: 999px !important;
  color: rgba(255, 255, 255, .94) !important;
  background: transparent !important;
}

.trv-nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--trv-teal), var(--trv-orange));
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity .2s ease, transform .2s ease;
}

.trv-nav-links .nav-link:hover,
.trv-nav-links .nav-item.show > .nav-link,
.trv-nav-links .nav-item.is-open > .nav-link,
.trv-nav-links .nav-item:focus-within > .nav-link {
  color: #fff !important;
  background: rgba(255, 255, 255, .075) !important;
}

.trv-nav-links .nav-link:hover::after,
.trv-nav-links .nav-item.show > .nav-link::after,
.trv-nav-links .nav-item.is-open > .nav-link::after,
.trv-nav-links .nav-item:focus-within > .nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.trv-nav-links .dropdown-menu {
  border-radius: 12px !important;
  border-color: rgba(15, 35, 64, .08) !important;
  box-shadow: 0 22px 56px rgba(5, 16, 30, .18) !important;
}

.trv-nav-cta {
  min-height: 50px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #25ced1 0%, #079fab 100%) !important;
  box-shadow: 0 16px 36px rgba(9, 159, 176, .28) !important;
}

.trv-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(9, 159, 176, .34) !important;
}

.breadcrumb-nav {
  min-height: 64px !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(247, 252, 253, .98) 50%, rgba(236, 249, 249, .98) 100%),
    radial-gradient(circle at 78% 42%, rgba(34, 196, 202, .18), transparent 32%) !important;
  border-bottom: 1px solid rgba(15, 35, 64, .065) !important;
  box-shadow: 0 14px 34px rgba(15, 35, 64, .06) !important;
}

.breadcrumb {
  min-height: 64px !important;
}

.breadcrumb-nav .breadcrumb-item a,
.breadcrumb-nav .breadcrumb-item.active span {
  min-height: 32px !important;
  padding: 0 13px !important;
  background: rgba(255, 255, 255, .76) !important;
  border: 1px solid rgba(15, 35, 64, .065) !important;
  box-shadow: 0 8px 18px rgba(15, 35, 64, .045) !important;
}

.breadcrumb-nav .breadcrumb-item.active span {
  color: #0b1d35 !important;
  background: rgba(34, 196, 202, .095) !important;
}

.trv-catalog-page .product,
.trv-catalog-page .product.bg-white {
  border-radius: 16px !important;
  border-color: rgba(15, 35, 64, .075) !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #f5fbfc 100%) !important;
  box-shadow:
    0 16px 36px rgba(15, 35, 64, .105),
    0 1px 0 rgba(255, 255, 255, .85) inset !important;
  transform: translateZ(0);
}

.trv-catalog-page .product:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(34, 196, 202, .36) !important;
  box-shadow:
    0 26px 58px rgba(15, 35, 64, .16),
    0 0 0 1px rgba(34, 196, 202, .08) inset !important;
}

.trv-catalog-page .product::before {
  background:
    linear-gradient(135deg, rgba(34, 196, 202, .16), transparent 31%),
    linear-gradient(315deg, rgba(253, 150, 44, .10), transparent 36%) !important;
}

.trv-catalog-page .product > .trv-product-media,
.trv-catalog-page .product .trv-product-media {
  height: 258px !important;
  min-height: 258px !important;
  border-radius: 16px 16px 0 0 !important;
}

.trv-catalog-page .product__img-top,
.trv-catalog-page .product__img-top::after {
  border-radius: 16px 16px 0 0 !important;
}

.trv-catalog-page .product__img-top::after {
  background:
    linear-gradient(180deg, rgba(7, 18, 36, 0) 42%, rgba(7, 18, 36, .36) 100%),
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, .22), transparent 33%) !important;
}

.trv-catalog-page .product__img-top img,
.trv-catalog-page .product__img-top .img-fluid {
  transform: scale(1.01);
  transition: transform .44s ease, filter .44s ease !important;
}

.trv-catalog-page .product:hover .product__img-top img,
.trv-catalog-page .product:hover .product__img-top .img-fluid {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.04);
}

.trv-catalog-page .product__special {
  top: 17px !important;
  right: 17px !important;
  padding: 10px 17px !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  background: linear-gradient(135deg, #6830bb 0%, #35176d 100%) !important;
  box-shadow: 0 14px 30px rgba(41, 22, 85, .32) !important;
}

.trv-catalog-page .product__body {
  padding: 17px 19px 8px !important;
}

.trv-catalog-page .product__title {
  margin-bottom: 9px !important;
  font-size: 18px !important;
  line-height: 1.22 !important;
}

.trv-catalog-page .trv-card-meta {
  min-height: 28px;
  gap: 7px;
  margin-bottom: 8px !important;
  color: #6d7d91 !important;
}

.trv-catalog-page .trv-card-meta__main {
  min-width: 0;
}

.trv-catalog-page .trv-card-meta__main span {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.trv-catalog-page .trv-card-meta__pill {
  padding: 6px 9px !important;
  border-radius: 999px !important;
  color: #087f8b !important;
  background: rgba(34, 196, 202, .10) !important;
}

.trv-catalog-page .product__body > hr,
.trv-catalog-page .product > hr {
  margin: 9px 0 !important;
}

.trv-catalog-page .product__price {
  min-height: 42px !important;
  padding: 9px 11px !important;
  border: 1px solid rgba(34, 196, 202, .12);
  background:
    linear-gradient(135deg, rgba(34, 196, 202, .12), rgba(253, 150, 44, .075)) !important;
}

.trv-catalog-page .product__price span:first-child {
  color: #687990;
  font-size: 12px;
  font-weight: 800;
}

.trv-catalog-page .product__price .cost {
  color: #079fab !important;
  font-size: 18px !important;
  font-weight: 950 !important;
}

.trv-catalog-page .trv-card-desc p {
  display: -webkit-box;
  min-height: 40px;
  max-height: 40px;
  margin-bottom: 0 !important;
  overflow: hidden;
  color: #4b5f78 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.trv-catalog-page .product__footer {
  gap: 10px !important;
  padding: 10px 19px 19px !important;
}

.trv-catalog-page .product__footer .trv-icon-action,
.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  height: 44px !important;
  min-height: 44px !important;
  border-radius: 14px !important;
}

.trv-catalog-page .product__footer .btn-secondary.trv-icon-action {
  background: linear-gradient(135deg, #23c7cc, #0694a8) !important;
}

.trv-catalog-page .product__footer .btn-outline-secondary.trv-icon-action {
  background: linear-gradient(135deg, #fffaf6, #fff1e5) !important;
}

.trv-catalog-page .product__footer .trv-favorite-btn--footer {
  background: linear-gradient(135deg, #f9fbff, #edf3f9) !important;
}

.trv-catalog-page .product--list > .trv-product-media,
.trv-catalog-page .product--list .trv-product-media {
  min-height: 258px !important;
  border-radius: 16px 0 0 16px !important;
}

.trv-catalog-page .product--list .product__img-top,
.trv-catalog-page .product--list .product__img-top::after {
  border-radius: 16px 0 0 16px !important;
}

@media (max-width: 991.98px) {
  .trv-topbar__row {
    min-height: 50px !important;
  }

  .trv-mainnav__row {
    min-height: 76px !important;
  }
}

@media (max-width: 767.98px) {
  .breadcrumb-nav,
  .breadcrumb {
    min-height: 54px !important;
  }

  .trv-catalog-page .product > .trv-product-media,
  .trv-catalog-page .product .trv-product-media,
  .trv-catalog-page .product--list > .trv-product-media,
  .trv-catalog-page .product--list .trv-product-media {
    height: 232px !important;
    min-height: 232px !important;
    border-radius: 16px 16px 0 0 !important;
  }

  .trv-catalog-page .product__img-top,
  .trv-catalog-page .product__img-top::after,
  .trv-catalog-page .product--list .product__img-top,
  .trv-catalog-page .product--list .product__img-top::after {
    border-radius: 16px 16px 0 0 !important;
  }

  .trv-catalog-page .product__body {
    padding: 16px 16px 8px !important;
  }

  .trv-catalog-page .product__footer {
    padding: 9px 16px 16px !important;
  }
}
