:root {
  --vi-accent: #2379bb;
  --vi-accent-2: #22c55e;
  --vi-dark: #0f172a;
  --vi-muted: #64748b;
  --vi-border: rgba(15, 23, 42, 0.12);
  --vi-surface: rgba(255, 255, 255, 0.92);

  --glass-bg: rgba(255, 255, 255, 0.14);
  --glass-bg-strong: rgba(255, 255, 255, 0.18);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 10px 35px rgba(2, 8, 20, 0.15);
  --glass-radius: 18px;
  --glass-blur: 16px;

  --glass-dark: rgba(22, 25, 28, 0.35);
  --glass-dark-strong: rgba(22, 25, 28, 0.45);
  --glass-dark-border: rgba(255, 255, 255, 0.18);
}

html,
body {
  height: 100%;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  color: var(--vi-dark);
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(179, 215, 255, 0.20), transparent 60%),
    radial-gradient(1000px 700px at 110% 10%, rgba(35, 121, 187, 0.12), transparent 60%),
    linear-gradient(180deg, #f6f7f9 0%, #eef1f6 100%);
}

body,
button,
input,
select,
textarea {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Glass helpers */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow);
}

.glass-strong {
  background: var(--glass-bg-strong);
}

.glass-dark {
  background: var(--glass-dark);
  border-color: var(--glass-dark-border);
}

.glass-dark-strong {
  background: var(--glass-dark-strong);
  border-color: var(--glass-dark-border);
}

.glass-panel {
  padding: 24px;
  border-radius: var(--glass-radius);
}

/* Navbar */
.nav-bar-modern {
  background: rgba(9, 31, 35, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.scrolled {
  background: rgba(8, 24, 29, 0.9) !important;
  border-bottom: 1px solid var(--glass-dark-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.logo-text {
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  color: #f8f9fa !important;
}

.logo-accent {
  color: #e8ecf2;
  font-weight: 800;
}

.logo-image {
  margin-left: 10px;
  height: 60px;
}

.pagination-style .nav-link {
  color: #f3f6fa !important;
  font-weight: 600;
  text-align: center;
  border-radius: 999px;
  transition: all 0.25s;
  padding: 0.45rem 0.9rem;
}

.pagination-style .nav-link.active,
.pagination-style .nav-link:hover {
  background: var(--glass-bg-strong);
  color: #fff !important;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

/* Dropdown -> glass */
.dropdown-menu {
  border-radius: 14px;
  box-shadow: var(--glass-shadow);
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@supports (backdrop-filter: blur(1px)) {
  .dropdown-menu {
    background: var(--glass-dark-strong);
    border: 1px solid var(--glass-dark-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}

.dropdown-menu .active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
}

.dropdown-item {
  color: #fff !important;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.45);
}

.dropdown-menu.dropdown-solid {
  background: rgba(17, 24, 39, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.dropdown-menu.dropdown-solid .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.dropdown-menu.dropdown-solid .dropdown-item.active {
  background: rgba(255, 255, 255, 0.18) !important;
}

/* Search -> glass pill */
.search-box {
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.search-input {
  border: none;
  outline: none;
  padding-left: 14px;
  background: transparent;
  color: #e7ecf3;
}

.search-input::placeholder {
  color: rgba(231, 236, 243, 0.75);
}

.btn-search {
  background: transparent;
  border: none;
  color: #e7ecf3;
  padding: 0 12px;
}

.btn-search:hover {
  color: #fff;
}

/* Navbar search dropdown */
.vi-nav-search {
  position: relative;
  width: min(440px, 42vw);
}

@media (max-width: 991.98px) {
  .vi-nav-search {
    width: min(360px, 70vw);
  }
}

.vi-nav-search__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 2100;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.vi-nav-search__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.vi-nav-search__item:hover {
  background: rgba(34, 197, 94, 0.10);
}

.vi-nav-search__item--muted {
  color: rgba(15, 23, 42, 0.65);
  font-weight: 700;
}

.vi-nav-search__thumb {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(15, 23, 42, 0.10);
}

.vi-nav-search__thumb--empty {
  background: rgba(15, 23, 42, 0.06);
}

.vi-nav-search__text {
  min-width: 0;
}

.vi-nav-search__title {
  font-weight: 900;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vi-nav-search__meta {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.65);
  font-weight: 700;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vi-nav-search__viewall {
  font-weight: 900;
  justify-content: center;
  border-bottom: 0;
  color: #0b3b6f;
}

.nav-profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--glass-border);
  transition: 0.25s;
  box-shadow: var(--glass-shadow);
}

.nav-profile-img:hover {
  transform: scale(1.06);
}

.nav-icon {
  font-size: 1.4rem;
}

/* Cards */
.image-container {
  overflow: hidden;
}

.package-img {
  transition: transform 0.3s ease;
}

.package-card:hover .package-img {
  transform: scale(1.08);
}

.package-card {
  cursor: pointer;
}

/* Primary glass CTA button */
.btn-gradient {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  color: #0f172a;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.14) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  filter: brightness(1.02);
}

.btn-gradient:hover::before {
  opacity: 0.7;
}

.btn-gradient:active {
  transform: scale(0.99);
}

.btn-gradient i {
  transition: transform 0.2s ease;
}

.btn-gradient:hover i {
  transform: translateX(3px);
}

.pkg-card-container {
  border-radius: 0;
}

@media (max-width: 768px) {
  .pkg-card-container {
    margin-bottom: 15px !important;
  }
}

/* Headings + sections */
.section-spacing {
  padding: 42px 0;
}

.section-title {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  font-weight: 800;
  text-align: left;
  padding-left: 10px;
  border-left: 5px solid rgba(255, 255, 255, 0.75);
  color: #0f172a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.44);
}

.page-title {
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.vi-breadcrumb a {
  color: var(--vi-muted);
}

.vi-breadcrumb a:hover {
  color: var(--vi-dark);
}

/* Better focus rings */
.btn:focus,
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(35, 121, 187, 0.18) !important;
}

/* Tour list bits (shared) */
.vi-sticky {
  position: sticky !important;
  top: 90px;
}

/* .vi-sticky-lg {
  position: static;
} */

@media (min-width: 992px) {
  .vi-sticky-lg {
    position: sticky !important;
    top: 90px;
  }
}

.vi-filter-card {
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border-radius: 16px;
}

.vi-filters-count {
  font-size: 12px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.65);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Mobile: collapsible filters */
.vi-filters-collapsible {
  overflow: visible;
}

@media (max-width: 991.98px) {
  .vi-filters-collapsible {
    overflow: hidden;
    transition: max-height 260ms ease;
  }

  .vi-filters-collapsible.is-collapsed {
    max-height: 0;
  }

  .vi-filters-collapsible.is-open {
    max-height: 1400px;
  }
}

@media (min-width: 992px) {
  .vi-filter-card .card-body {
    max-height: calc(100vh - 140px);
    overflow: auto;
    overscroll-behavior: contain;
    padding-right: 14px; /* space for scrollbar */
  }

  .vi-filter-card .card-body::-webkit-scrollbar {
    width: 10px;
  }

  .vi-filter-card .card-body::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.18);
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.7);
  }
}

@media (max-width: 575.98px) {
  /* Extra side breathing room on small screens */
  .vi-filter-card {
    margin-left: 8px;
    margin-right: 8px;
  }

  .vi-filter-card .card-body {
    padding: 18px;
  }
}

.input-group-text {
  border-top-left-radius: 999px !important;
  border-bottom-left-radius: 999px !important;
  border-color: rgba(15, 23, 42, 0.10);
}

.form-control,
.form-select {
  border-color: rgba(15, 23, 42, 0.10);
  border-top-right-radius: 999px !important;
  border-bottom-right-radius: 999px !important;
}

.vi-chip {
  background: #f5f7ff;
  color: #274c77;
  border: 1px solid #e6edff;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  cursor: default;
}

.vi-chip i {
  cursor: pointer;
}

/* Footer */
.vi-footer {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.vi-footer__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.05);
}

.vi-footer__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 20%, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.55)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.72));
}

.vi-footer__content {
  padding-top: 70px;
  padding-bottom: 34px;
}

.vi-footer__topbtn {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.vi-top-circle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.vi-top-circle:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.vi-footer__nav {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.92;
}

.vi-nav-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
  transition: 0.2s ease;
}

.vi-nav-link:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.vi-footer__text {
  opacity: 0.92;
  line-height: 1.55;
}

.vi-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vi-footer__links a {
  text-decoration: none;
  opacity: 0.9;
  transition: 0.2s ease;
  width: fit-content;
  border-bottom: 1px solid transparent;
}

.vi-footer__links a:hover {
  opacity: 1;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.vi-footer__icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vi-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.70);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.20);
  transition: 0.2s ease;
  font-size: 18px;
}

.vi-icon-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.vi-footer__line {
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  width: 100%;
}

@media (max-width: 576px) {
  .vi-footer {
    min-height: 620px;
  }

  .vi-footer__content {
    padding-top: 52px;
  }

  .vi-footer__nav {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .body-wrapper {
    overflow-x: hidden;
  }
}

/* Tour cards (React) */
.vi-tour-card__link {
  color: inherit;
  display: block;
}

.vi-tour-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vi-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.16);
}

.vi-tour-card__media {
  position: relative;
  height: 182px;
  overflow: hidden;
}

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

.vi-tour-card__location {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  max-width: calc(100% - 70px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vi-tour-card__location .bi {
  color: #ffffff;
  font-size: 12px;
}

.vi-tour-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8b95a7;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease,
    background 0.18s ease;
  padding: 0;
  outline: 0;
}

.vi-tour-card__wishlist:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.vi-tour-card__wishlist[aria-pressed="true"] {
  color: #e25570;
  background: rgba(255, 245, 247, 0.96);
}

.vi-tour-card__wishlist .bi {
  font-size: 18px;
}

.vi-tour-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vi-tour-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px 16px;
}

.vi-tour-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #324054;
  line-height: 1.38;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.05rem * 1.38 * 2);
}

.vi-tour-card__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 22px;
}

.vi-tour-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #97a3b3;
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 0;
}

.vi-tour-card__duration .bi {
  font-size: 12px;
  color: #758196;
}

.vi-tour-card__pickup {
  color: #97a3b3;
  font-weight: 800;
}

.vi-tour-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.vi-tour-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.vi-tour-card__stars .bi {
  font-size: 12px;
  line-height: 1;
}

.vi-tour-card__stars .bi-star-fill,
.vi-tour-card__stars .bi-star-half {
  color: #0d9488;
}

.vi-tour-card__stars .bi-star {
  color: rgba(13, 148, 136, 0.28);
}

.vi-tour-card__rating-count {
  color: #a4afbe;
  font-size: 13px;
  font-weight: 700;
}

.vi-tour-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.vi-tour-card__footer-left {
  min-width: 0;
}

.vi-tour-card__price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  margin-left: auto;
  white-space: nowrap;
}

.vi-tour-card__price-from {
  font-size: 14px;
  color: #97a3b3;
  font-weight: 700;
}

.vi-tour-card__price-old {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 800;
}

.vi-tour-card__price-new {
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
  color: #0d9488 !important;
  letter-spacing: -0.04em;
}

.vi-tour-card__price-request {
  font-size: 14px;
  color: #324054;
  font-weight: 800;
}

/* React: modal/bottom-sheet helpers */
.vi-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2050;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.vi-modal {
  width: min(520px, 100%);
  max-height: 85vh;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.vi-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.vi-modal__body {
  padding: 14px 14px 18px;
  overflow: auto;
  max-height: calc(85vh - 56px);
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767.98px) {
  .vi-modal-backdrop {
    align-items: flex-end;
    padding: 12px;
  }

  .vi-modal {
    border-radius: 18px 18px 16px 16px;
    width: 100%;
  }
}

/* Better alignment when custom selects are inside input-group */
.input-group .flex-grow-1 .form-select,
.input-group .flex-grow-1 .form-control {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* React: destination combobox */
.vi-combobox {
  position: relative;
}

.vi-combobox__field {
  position: relative;
}

.vi-combobox__input {
  padding-right: 56px;
}

.input-group .flex-grow-1 .vi-combobox__input {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.vi-combobox__caret {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: rgba(15, 23, 42, 0.65);
  pointer-events: none;
}

.vi-combobox__clear {
  position: absolute;
  top: 50%;
  right: 36px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(15, 23, 42, 0.6);
  padding: 4px;
  line-height: 1;
}

.vi-combobox__clear:hover {
  color: rgba(15, 23, 42, 0.95);
}

.vi-combobox__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1100;
  border-radius: 16px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-height: 320px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.vi-combobox__option {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 10px 10px;
  border-radius: 12px;
  color: #0f172a;
  font-weight: 700;
}

.vi-combobox__option:hover {
  background: rgba(34, 197, 94, 0.12);
}

.vi-combobox__option.active {
  background: rgba(34, 197, 94, 0.18);
  outline: 1px solid rgba(34, 197, 94, 0.35);
}

/* Tour list page: filters + header */
.vi-filter-section-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.55);
  margin-bottom: 8px;
}

.vi-radio-group .form-check {
  margin: 0;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vi-radio-group .form-check + .form-check {
  margin-top: 8px;
}

.vi-destination-field {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.vi-destination-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.75);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.vi-destination-field .vi-combobox {
  flex: 1;
  min-width: 0;
}

.vi-destination-field .vi-combobox__input {
  height: 44px;
  border-radius: 999px !important;
  padding-left: 14px;
  min-width: 0;
}

.vi-results-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vi-results-bar__heading {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.vi-results-bar__sub {
  font-size: 13px;
  font-weight: 700;
}

.vi-view-toggle {
  display: inline-flex;
  gap: 8px;
  white-space: nowrap;
}

.vi-view-toggle .btn {
  border-radius: 12px;
  font-weight: 800;
}

@media (max-width: 767.98px) {
  .vi-results-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .vi-view-toggle {
    justify-content: flex-end;
  }
}

/* Tour card list layout */
.vi-tour-card--list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.vi-tour-card--list .vi-tour-card__media {
  width: 36%;
  min-width: 220px;
  height: auto;
}

.vi-tour-card--list .vi-tour-card__img {
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.vi-tour-card--list .vi-tour-card__body {
  width: 64%;
  padding: 18px 20px;
}

@media (max-width: 767.98px) {
  .vi-tour-card--list {
    flex-direction: column;
  }

  .vi-tour-card--list .vi-tour-card__media,
  .vi-tour-card--list .vi-tour-card__body {
    width: 100%;
    min-width: auto;
  }
}

/* Single tour: related carousel items */
.vi-related-wrap .vi-related-item {
  flex: 0 0 auto;
  /* width: clamp(240px, 32vw, 320px); */
}
