@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
  scroll-behavior: smooth !important;
}

:root {
  --vmb-navy: #111a42;
  --vmb-text: #24304f;
  --vmb-muted: #68728e;
  --vmb-blue: #2f6eea;
  --vmb-purple: #1d4ed8;
  --vmb-pink: #3b82f6;
  --vmb-coral: #ff5c72;
  --vmb-line: #e7ecf6;
  --vmb-bg: #f8fbff;
  --vmb-gradient: linear-gradient(135deg, #3b82f6, #1d4ed8);
  --vmb-accent: linear-gradient(135deg, #3b82f6, #1d4ed8);
  --vmb-shadow-sm: 0 2px 8px rgba(37, 55, 99, .06);
  --vmb-shadow-md: 0 10px 24px rgba(42, 62, 98, .08);
  --vmb-shadow-lg: 0 18px 45px rgba(37, 55, 99, .12);
  --vmb-shadow-xl: 0 25px 60px rgba(37, 55, 99, .16);
  --vmb-font: "Roboto", Arial, Helvetica, sans-serif;
  --vmb-serif: var(--vmb-font);
}

body.vmb-refresh {
  color: var(--vmb-text);
  background:
    radial-gradient(circle at 10% 3%, #eef7ff 0 12%, transparent 28%),
    radial-gradient(circle at 84% 9%, #e9f8ff 0 16%, transparent 34%),
    linear-gradient(180deg, #fbfdff 0%, #fff 46%, #f8fbff 100%);
  font-family: var(--vmb-font);
  overflow-x: hidden;
  height: auto !important;
  min-height: 100vh;
}

body.vmb-refresh h1,
body.vmb-refresh h2,
body.vmb-refresh h3,
body.vmb-refresh h4,
body.vmb-refresh h5,
body.vmb-refresh h6,
body.vmb-refresh .nav-link,
body.vmb-refresh .nav-link-custom,
body.vmb-refresh .btn,
body.vmb-refresh button,
body.vmb-refresh .title-tour,
body.vmb-refresh .news-title,
body.vmb-refresh .suggestion-title,
body.vmb-refresh .featured-title {
  font-family: var(--vmb-font) !important;
  letter-spacing: 0;
}

body.vmb-refresh input,
body.vmb-refresh select,
body.vmb-refresh textarea,
body.vmb-refresh .tour-detail-page,
body.vmb-refresh .tour-detail-page *,
body.vmb-refresh .tour-list-page,
body.vmb-refresh .tour-list-page *,
body.vmb-refresh .tour-highlight-card,
body.vmb-refresh .tour-highlight-card * {
  font-family: var(--vmb-font) !important;
}

body.vmb-refresh > header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 72px;
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(231, 236, 246, .72);
  box-shadow: none;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: box-shadow .25s ease, background .25s ease;
}

body.vmb-refresh > header.vmb-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 32px rgba(24, 42, 90, .08);
}

body.vmb-refresh > header.vmb-scrolled::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #3b82f6, #1d4ed8);
  opacity: .55;
}

body.vmb-refresh .notify-top {
  display: none !important;
}

body.vmb-refresh .desktop-header {
  position: relative;
  max-width: 1180px;
  min-height: 72px;
  padding-top: 0 !important;
  padding-right: 28px;
  padding-left: 28px;
  z-index: 2;
}

body.vmb-refresh .desktop-header .header-logo img {
  width: auto;
  max-width: 280px;
  max-height: 54px;
  object-fit: contain;
}

body.vmb-refresh header > nav.navbar.container {
  position: absolute;
  top: 0;
  left: calc(50% - 82px);
  z-index: 3;
  width: min(560px, 43vw);
  height: 100%;
  padding: 0;
  transform: translateX(-50%);
}

body.vmb-refresh header > nav.navbar .container-fluid,
body.vmb-refresh header > nav.navbar .navbar-collapse,
body.vmb-refresh header > nav.navbar .navbar-nav {
  height: 100%;
}

body.vmb-refresh header > nav.navbar .navbar-collapse {
  display: flex !important;
  justify-content: center;
}

body.vmb-refresh header > nav.navbar .navbar-nav {
  align-items: center;
  justify-content: center;
  gap: 28px !important;
  flex-wrap: nowrap;
}

body.vmb-refresh header .nav-link-custom {
  position: relative;
  padding: 26px 0 !important;
  color: #142044 !important;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: color .2s ease;
}

body.vmb-refresh header .nav-link-custom::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 16px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  transform: translateX(50%);
  transition: width .25s ease;
}

body.vmb-refresh header .nav-link-custom:hover,
body.vmb-refresh header .nav-link-custom.active {
  color: var(--vmb-purple) !important;
}

body.vmb-refresh header .nav-link-custom:hover::after,
body.vmb-refresh header .nav-link-custom.active::after {
  width: 100%;
}

body.vmb-refresh header .desktop-header > .d-flex:last-child {
  gap: 10px !important;
}

body.vmb-refresh header .desktop-header > .d-flex:last-child > a:first-of-type {
  display: none !important;
}

body.vmb-refresh header .desktop-header > .d-flex:last-child > a,
body.vmb-refresh header .dropdown {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--vmb-line);
  border-radius: 999px;
  background: #fff;
  color: #142044 !important;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--vmb-shadow-sm);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

body.vmb-refresh header .desktop-header > .d-flex:last-child > a:hover,
body.vmb-refresh header .dropdown:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: var(--vmb-purple) !important;
}

body.vmb-refresh header .desktop-header > .d-flex:last-child > a:last-of-type {
  min-width: 112px;
  border: 0;
  border-radius: 14px;
  background: var(--vmb-gradient);
  color: #fff !important;
  box-shadow: 0 14px 26px rgba(70, 103, 240, .22);
}

body.vmb-refresh header .desktop-header > .d-flex:last-child > a:last-of-type:hover {
  transform: translateY(-1px);
}

body.vmb-refresh header .desktop-header > .d-flex:last-child > a i {
  display: none;
}

body.vmb-refresh .language-dropdown .selected,
body.vmb-refresh .currency-dropdown .selected {
  gap: 7px;
}

body.vmb-refresh header .dropdown .options {
  top: 100%;
  min-width: 150px;
  border: 1px solid var(--vmb-line);
  border-radius: 16px;
  box-shadow: var(--vmb-shadow-lg);
  overflow: hidden;
}

body.vmb-refresh header .language-dropdown,
body.vmb-refresh header .currency-dropdown,
body.vmb-refresh .mobile-menu .language-dropdown,
body.vmb-refresh .mobile-menu .currency-dropdown {
  position: relative;
  z-index: 1200;
}

body.vmb-refresh .language-dropdown .selected,
body.vmb-refresh .currency-dropdown .selected {
  cursor: pointer;
}

body.vmb-refresh header .language-dropdown.open .options,
body.vmb-refresh header .currency-dropdown.open .options,
body.vmb-refresh .mobile-menu .language-dropdown.open .options,
body.vmb-refresh .mobile-menu .currency-dropdown.open .options {
  display: block !important;
}

body.vmb-refresh header .language-dropdown .options,
body.vmb-refresh header .currency-dropdown .options,
body.vmb-refresh .mobile-menu .language-dropdown .options,
body.vmb-refresh .mobile-menu .currency-dropdown .options {
  z-index: 1300;
}

body.vmb-refresh .language-dropdown .selected .arrow,
body.vmb-refresh .currency-dropdown .selected .arrow {
  transition: transform .2s ease;
}

body.vmb-refresh .language-dropdown.open .selected .arrow,
body.vmb-refresh .currency-dropdown.open .selected .arrow {
  transform: rotate(180deg);
}

body.vmb-refresh .main-content {
  overflow: visible;
}

body.vmb-refresh .banner-slider {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, .95) 0 8%, transparent 18%),
    radial-gradient(circle at 92% 78%, rgba(96, 165, 250, .22) 0 0, transparent 18%),
    linear-gradient(135deg, #fff 0%, #eef8ff 52%, #dff1ff 100%);
}

body.vmb-refresh .banner-slider::before,
body.vmb-refresh .banner-slider::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

body.vmb-refresh .banner-slider::before {
  top: 28%;
  right: 12%;
  width: 360px;
  height: 180px;
  background: linear-gradient(180deg, rgba(96, 142, 214, .25), rgba(96, 142, 214, .10));
  clip-path: polygon(0 58%, 10% 50%, 20% 46%, 32% 54%, 44% 38%, 54% 49%, 66% 36%, 78% 52%, 90% 44%, 100% 58%, 100% 100%, 0 100%);
}

body.vmb-refresh .banner-slider::after {
  top: 18%;
  right: 6%;
  width: 76px;
  height: 245px;
  background:
    linear-gradient(#6b91cc 0 100%) center / 12px 100% no-repeat,
    radial-gradient(circle at 50% 28%, transparent 0 34px, #89b6e9 35px 39px, transparent 40px),
    linear-gradient(135deg, transparent 48%, #60a5fa 49% 74%, transparent 75%);
  opacity: .9;
}

body.vmb-refresh .banner-slider .carousel-item {
  min-height: 560px;
  background: transparent;
}

body.vmb-refresh .banner-slider .carousel-item .image-bg {
  position: absolute;
  inset: 0;
  opacity: .10;
}

body.vmb-refresh .banner-slider .carousel-item .image-bg img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  filter: saturate(1.05);
}

body.vmb-refresh .banner-slider .carousel-item .title-content,
body.vmb-refresh .banner-slider .carousel-item .title-flights {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  min-height: 560px;
  padding: 60px 0 180px;
  color: var(--vmb-text);
  transform: none;
  display: flex;
  align-items: flex-start;
}

body.vmb-refresh .banner-item__content {
  position: relative;
  max-width: 1180px;
  padding-right: 28px;
  padding-left: 28px;
}

body.vmb-refresh .banner-item__content::before {
  content: "Kh\0000E1m ph\0000E1\20 H\0000E0n Qu\001ED1c";
  display: block;
  margin-bottom: 14px;
  color: #8794d4;
  font-family: var(--vmb-serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
}

body.vmb-refresh .banner-slider .title-content h2,
body.vmb-refresh .banner-slider .title-flights h2 {
  max-width: 610px;
  margin: 0 0 22px;
  color: #4c557b;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: .98;
  text-align: left;
}

body.vmb-refresh .banner-slider .title-content p,
body.vmb-refresh .banner-slider .title-flights p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(76, 85, 123, .72);
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
}

body.vmb-refresh .banner-slider .btn-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 154px;
  width: auto;
  height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 16px;
  background: var(--vmb-gradient);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(73, 107, 244, .26);
}

body.vmb-refresh .banner-slider .btn-view i {
  margin-left: 0;
}

body.vmb-refresh .banner-controls-wrapper {
  position: absolute;
  right: 0;
  bottom: 116px;
  left: 0;
}

body.vmb-refresh .banner-controls {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  max-width: 1180px;
  padding-right: 28px;
  padding-left: 28px;
}

body.vmb-refresh .banner-count {
  color: #6c7294;
  font-size: 18px;
  font-weight: 900;
}

body.vmb-refresh .banner-action {
  display: flex;
  gap: 10px;
}

body.vmb-refresh .banner-action button,
body.vmb-refresh .slick-arrow,
body.vmb-refresh .control-prev,
body.vmb-refresh .control-next {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--vmb-navy);
  box-shadow: var(--vmb-shadow-lg);
}

body.vmb-refresh .vmb-search-shell {
  position: relative;
  z-index: 10;
  margin-top: -130px;
  margin-bottom: 82px;
  padding-right: 20px;
  padding-left: 20px;
}

body.vmb-refresh .vmb-search-shell .flight-search-container {
  max-width: 100%;
  margin: 0 !important;
  font-family: inherit !important;
}

body.vmb-refresh .vmb-search-shell #root {
  height: auto !important;
  min-height: 0 !important;
}

body.vmb-refresh .vmb-search-shell,
body.vmb-refresh .vmb-search-shell #root,
body.vmb-refresh .vmb-search-shell .ant-app,
body.vmb-refresh .vmb-search-shell .ant-picker,
body.vmb-refresh .vmb-search-shell .ant-select,
body.vmb-refresh .vmb-search-shell .ant-typography,
body.vmb-refresh .vmb-search-shell input,
body.vmb-refresh .vmb-search-shell button,
body.vmb-refresh .vmb-search-shell select,
body.vmb-refresh .vmb-search-shell [class*="trip-"],
body.vmb-refresh .vmb-search-shell #root#root,
body.vmb-refresh .vmb-search-shell #root#root .ant-app,
body.vmb-refresh .vmb-search-shell #root#root input,
body.vmb-refresh .vmb-search-shell #root#root button,
body.vmb-refresh .vmb-search-shell #root#root select,
body.vmb-refresh .vmb-search-shell #root#root [class*="trip-"] {
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  font-kerning: normal;
}

body.vmb-refresh .vmb-search-shell .flight-search-card,
body.vmb-refresh .vmb-search-shell #search-flight,
body.vmb-refresh .vmb-search-shell .home > div:last-child {
  border: 1px solid rgba(231, 236, 246, .76) !important;
  border-radius: 26px !important;
  background: rgba(255, 255, 255, .88) !important;
  box-shadow: 0 28px 80px rgba(41, 62, 105, .11) !important;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

body.vmb-refresh .vmb-search-shell .flight-search-card {
  padding: 24px !important;
}

body.vmb-refresh .vmb-search-shell input,
body.vmb-refresh .vmb-search-shell select,
body.vmb-refresh .vmb-search-shell .custom-select-toggle,
body.vmb-refresh .vmb-search-shell .selected-passenger,
body.vmb-refresh .vmb-search-shell .ant-select-selector,
body.vmb-refresh .vmb-search-shell .ant-picker,
body.vmb-refresh .vmb-search-shell .ant-input {
  min-height: 50px !important;
  border-color: #dfe7f4 !important;
  border-radius: 14px !important;
  color: #2f365b !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

body.vmb-refresh .vmb-search-shell label,
body.vmb-refresh .vmb-search-shell .form-label,
body.vmb-refresh .vmb-search-shell .ant-typography {
  color: #5b6683;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
}

body.vmb-refresh .vmb-search-shell [class*="trip-airport-select__title"],
body.vmb-refresh .vmb-search-shell [class*="trip-airport-select__value"],
body.vmb-refresh .vmb-search-shell [class*="trip-date-picker__value"],
body.vmb-refresh .vmb-search-shell [class*="trip-passenger-select__value"] {
  color: #1c2750 !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

body.vmb-refresh .vmb-search-shell [class*="trip-search__control-text"] {
  color: #1d4ed8 !important;
  font-weight: 600 !important;
}

body.vmb-refresh .vmb-search-shell button[type="submit"],
body.vmb-refresh .vmb-search-shell .ant-btn-primary,
body.vmb-refresh .vmb-search-shell .search-button,
body.vmb-refresh .vmb-search-shell #root#root button[type="submit"],
body.vmb-refresh .vmb-search-shell #root#root .ant-btn-primary,
body.vmb-refresh .vmb-search-shell #root#root .search-button,
body.vmb-refresh .vmb-search-shell #root#root [class*="trip-search__search-button"] {
  min-height: 52px !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: var(--vmb-accent) !important;
  color: #fff !important;
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  box-shadow: 0 18px 34px rgba(37, 99, 235, .24) !important;
}

body.vmb-refresh .vmb-search-shell button[type="submit"] *,
body.vmb-refresh .vmb-search-shell .ant-btn-primary *,
body.vmb-refresh .vmb-search-shell .search-button *,
body.vmb-refresh .vmb-search-shell #root#root button[type="submit"] *,
body.vmb-refresh .vmb-search-shell #root#root .ant-btn-primary *,
body.vmb-refresh .vmb-search-shell #root#root .search-button *,
body.vmb-refresh .vmb-search-shell #root#root [class*="trip-search__search-button"] * {
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  font-kerning: normal;
}

body.vmb-refresh [class*="trip-airport-select__content"][class*="trip-airport-select__content"],
body.vmb-refresh [class*="trip-airport-select__content"][class*="trip-airport-select__content"] *,
body.vmb-refresh [class*="trip-airport-select__search"][class*="trip-airport-select__search"],
body.vmb-refresh [class*="trip-airport-select__search"][class*="trip-airport-select__search"] *,
body.vmb-refresh [class*="trip-airport-select__results"][class*="trip-airport-select__results"],
body.vmb-refresh [class*="trip-airport-select__results"][class*="trip-airport-select__results"] *,
body.vmb-refresh [class*="trip-airport-select__result"][class*="trip-airport-select__result"],
body.vmb-refresh [class*="trip-airport-select__result"][class*="trip-airport-select__result"] *,
body.vmb-refresh [class*="trip-airport-select__empty"][class*="trip-airport-select__empty"],
body.vmb-refresh [class*="trip-airport-select__empty"][class*="trip-airport-select__empty"] * {
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  font-kerning: normal;
  text-transform: none !important;
}

body.vmb-refresh [class*="trip-airport-select__content"][class*="trip-airport-select__content"] input,
body.vmb-refresh [class*="trip-airport-select__search"][class*="trip-airport-select__search"] input {
  color: #1c2750 !important;
  font-weight: 500 !important;
}

body.vmb-refresh [class*="trip-airport-select__content"][class*="trip-airport-select__content"] .ant-typography,
body.vmb-refresh [class*="trip-airport-select__result"][class*="trip-airport-select__result"] .ant-typography {
  color: #1f2a4d !important;
  font-weight: 500 !important;
}

body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"],
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] *,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup *,
body.vmb-refresh [class*="date-picker__"][class*="date-picker__"],
body.vmb-refresh [class*="date-picker__"][class*="date-picker__"] * {
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  font-kerning: normal;
}

body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell .ant-picker-cell-inner {
  color: #111827 !important;
}

body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-content tbody tr td:nth-child(6) .ant-picker-cell-inner,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-content tbody tr td:nth-child(7) .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-content tbody tr td:nth-child(6) .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-content tbody tr td:nth-child(7) .ant-picker-cell-inner {
  color: #1d4ed8 !important;
}

body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell:hover .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell:hover .ant-picker-cell-inner,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-in-range .ant-picker-cell-inner,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-hover .ant-picker-cell-inner,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-hover-start .ant-picker-cell-inner,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-hover-end .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-in-range .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-hover .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-hover-start .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-hover-end .ant-picker-cell-inner {
  background: #eff6ff !important;
  color: #111827 !important;
}

body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-in-range:before,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-hover:before,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:before,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:before,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-start:before,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-end:before,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-in-range:before,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-hover:before,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:before,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:before,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-start:before,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-end:before {
  background: #eff6ff !important;
}

body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-selected:hover .ant-picker-cell-inner,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-start:hover .ant-picker-cell-inner,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-end:hover .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-selected:hover .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-start:hover .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-end:hover .ant-picker-cell-inner {
  background: #2563eb !important;
  color: #fff !important;
}

body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-disabled .ant-picker-cell-inner,
body.vmb-refresh .core-date-picker-popup.core-date-picker-popup .ant-picker-cell-disabled:hover .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-disabled .ant-picker-cell-inner,
body.vmb-refresh [class*="trip-calendar-popup"][class*="trip-calendar-popup"] .ant-picker-cell-disabled:hover .ant-picker-cell-inner {
  background: transparent !important;
  color: #cbd5e1 !important;
}

body.vmb-refresh:has(#root) [class*="trip-airport-select__content"],
body.vmb-refresh:has(#root) [class*="trip-airport-select__content"] *,
body.vmb-refresh:has(#root) [class*="trip-airport-select__search"],
body.vmb-refresh:has(#root) [class*="trip-airport-select__search"] *,
body.vmb-refresh:has(#root) [class*="trip-airport-select__results"],
body.vmb-refresh:has(#root) [class*="trip-airport-select__results"] *,
body.vmb-refresh:has(#root) [class*="trip-airport-select__result"],
body.vmb-refresh:has(#root) [class*="trip-airport-select__result"] *,
body.vmb-refresh:has(#root) [class*="trip-airport-select__empty"],
body.vmb-refresh:has(#root) [class*="trip-airport-select__empty"] *,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"],
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] *,
body.vmb-refresh:has(#root) .core-date-picker-popup,
body.vmb-refresh:has(#root) .core-date-picker-popup *,
body.vmb-refresh:has(#root) [class*="date-picker__"],
body.vmb-refresh:has(#root) [class*="date-picker__"] * {
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  text-transform: none !important;
  font-kerning: normal;
}

body.vmb-refresh:has(#root) [class*="trip-airport-select__content"] input::placeholder,
body.vmb-refresh:has(#root) [class*="trip-airport-select__search"] input::placeholder {
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  color: #94a3b8 !important;
}

body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell .ant-picker-cell-inner {
  color: #111827 !important;
}

body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell:hover .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell:hover .ant-picker-cell-inner,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-in-range .ant-picker-cell-inner,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-hover .ant-picker-cell-inner,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-hover-start .ant-picker-cell-inner,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-hover-end .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-in-range .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-hover .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-hover-start .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-hover-end .ant-picker-cell-inner {
  background: #eff6ff !important;
  color: #111827 !important;
}

body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-in-range:before,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-hover:before,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:before,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:before,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-start:before,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-end:before,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-in-range:before,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-hover:before,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:before,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:before,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-start:before,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-end:before {
  background: #eff6ff !important;
}

body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-selected:hover .ant-picker-cell-inner,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-start:hover .ant-picker-cell-inner,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-end:hover .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-selected:hover .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-start:hover .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-in-view.ant-picker-cell-range-end:hover .ant-picker-cell-inner {
  background: #2563eb !important;
  color: #fff !important;
}

body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-disabled .ant-picker-cell-inner,
body.vmb-refresh:has(#root) .core-date-picker-popup .ant-picker-cell-disabled:hover .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-disabled .ant-picker-cell-inner,
body.vmb-refresh:has(#root) [class*="trip-calendar-popup"] .ant-picker-cell-disabled:hover .ant-picker-cell-inner {
  background: transparent !important;
  color: #cbd5e1 !important;
}

body.vmb-refresh .service-hightlight,
body.vmb-refresh .cheap-flight,
body.vmb-refresh .popular-destinations,
body.vmb-refresh .promotion-banner,
body.vmb-refresh .tour-section,
body.vmb-refresh .news-section,
body.vmb-refresh .suggestion-section,
body.vmb-refresh .tips-section {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 28px;
  padding-left: 28px;
}

body.vmb-refresh .service-hightlight {
  margin-top: 0;
  background: transparent;
}

body.vmb-refresh .service-hightlight-header h2,
body.vmb-refresh .cheap-flight .small-title,
body.vmb-refresh .popular-destinations-header h2,
body.vmb-refresh .title-tour,
body.vmb-refresh .news-title,
body.vmb-refresh .suggestion-title {
  margin-bottom: 12px;
  color: var(--vmb-navy);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
}

body.vmb-refresh .cheap-flight {
  margin-top: 30px;
  padding-top: 24px;
  max-width: 1180px !important;
}

body.vmb-refresh .cheap-flight .container {
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}

body.vmb-refresh .service-hightlight.container,
body.vmb-refresh .popular-destinations.container,
body.vmb-refresh .tour-section.container,
body.vmb-refresh .news-section.container {
  max-width: 1180px;
  padding-right: 28px;
  padding-left: 28px;
}

body.vmb-refresh .cheap-flight .small-title::before {
  content: "\f072";
  margin-right: 10px;
  color: var(--vmb-navy);
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
  font-size: .78em;
}

body.vmb-refresh .cheap-flight .main-title,
body.vmb-refresh .popular-destinations-header p,
body.vmb-refresh .tour-section .text-muted,
body.vmb-refresh .news-kicker,
body.vmb-refresh .suggestion-subtitle {
  color: var(--vmb-muted) !important;
  font-size: 16px;
  line-height: 1.7;
}

body.vmb-refresh .service-hightlight-cards,
body.vmb-refresh .destination-grid,
body.vmb-refresh .news-cards-wrapper {
  margin-top: 28px;
}

body.vmb-refresh .service-item,
body.vmb-refresh .flight-card,
body.vmb-refresh .destination-item,
body.vmb-refresh .booking-card,
body.vmb-refresh .tour-card,
body.vmb-refresh .tips-wrapper {
  overflow: hidden;
  border: 1px solid rgba(231, 236, 246, .88) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, .86) !important;
  box-shadow: var(--vmb-shadow-md);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

body.vmb-refresh .service-item:hover,
body.vmb-refresh .flight-card:hover,
body.vmb-refresh .destination-item:hover,
body.vmb-refresh .booking-card:hover,
body.vmb-refresh .tour-card:hover {
  border-color: #bfdbfe !important;
  box-shadow: var(--vmb-shadow-xl);
  transform: translateY(-5px);
}

body.vmb-refresh .service-item {
  min-height: 210px;
  padding: 24px !important;
}

body.vmb-refresh .service-icon {
  width: 58px !important;
  height: 58px !important;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .74);
  object-fit: contain;
}

body.vmb-refresh .service-title {
  color: var(--vmb-navy);
  font-size: 18px;
  font-weight: 900;
}

body.vmb-refresh .service-description,
body.vmb-refresh .description,
body.vmb-refresh .destination-item h3 {
  color: var(--vmb-muted);
  font-size: 14px;
  line-height: 1.6;
}

body.vmb-refresh .cheap-flight .flight-slider {
  margin-top: 22px;
}

body.vmb-refresh .cheap-flight .slick-list {
  margin: 0 -8px;
  padding: 8px 0 22px;
}

body.vmb-refresh .cheap-flight .slick-track {
  display: flex;
  align-items: stretch;
}

body.vmb-refresh .cheap-flight .slick-slide {
  height: auto;
  padding: 0 8px;
}

body.vmb-refresh .cheap-flight .slick-slide > div,
body.vmb-refresh .cheap-flight .flight-card {
  height: 100%;
}

body.vmb-refresh .flight-card {
  width: 100%;
  max-width: 166px;
  min-height: 255px;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px !important;
  background: #fff !important;
  text-align: left;
}

body.vmb-refresh .flight-card .image-link {
  display: block;
  min-height: 0;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

body.vmb-refresh .flight-card .card-img {
  width: 100%;
  height: 112px;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
}

body.vmb-refresh .flight-card .content {
  padding: 12px 13px 14px !important;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

body.vmb-refresh .flight-card .flight-route-link {
  display: block;
  color: inherit !important;
  text-decoration: none !important;
}

body.vmb-refresh .flight-card .flight-route-cities {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
  color: #7d879f;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
}

body.vmb-refresh .flight-card .flight-route-cities span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.vmb-refresh .flight-card .flight-route-airports {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr);
  align-items: center;
  gap: 4px;
  color: var(--vmb-navy);
}

body.vmb-refresh .flight-card .flight-route-airports strong {
  min-width: 0;
  overflow: hidden;
  font-size: clamp(24px, 1.9vw, 28px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.vmb-refresh .flight-card .flight-route-airports strong:last-child {
  text-align: right;
}

body.vmb-refresh .flight-card .route-arrow {
  color: var(--vmb-navy);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

body.vmb-refresh .flight-card .price,
body.vmb-refresh .destination-item .price {
  color: #ff4267;
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
}

body.vmb-refresh .flight-card p {
  margin: 10px 0 9px;
  color: #8490aa;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.vmb-refresh .discount-badge {
  top: 12px !important;
  left: 12px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #60a5fa, #1d4ed8) !important;
  box-shadow: 0 10px 20px rgba(37, 99, 235, .22);
}

body.vmb-refresh .flight-card .btn,
body.vmb-refresh .cta-button,
body.vmb-refresh .news-see-all {
  border: 0 !important;
  border-radius: 14px !important;
  background: #eef4ff !important;
  color: var(--vmb-blue) !important;
  font-weight: 900 !important;
}

body.vmb-refresh .flight-card .btn:hover,
body.vmb-refresh .cta-button:hover {
  background: var(--vmb-gradient) !important;
  color: #fff !important;
}

body.vmb-refresh .flight-card .btn {
  display: none !important;
}

body.vmb-refresh .popular-destinations {
  margin-top: 32px;
}

body.vmb-refresh .destination-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body.vmb-refresh .destination-item {
  width: auto !important;
}

body.vmb-refresh .destination-image {
  height: 230px;
  object-fit: cover;
}

body.vmb-refresh .destination-title {
  border-radius: 999px;
  background: rgba(17, 26, 66, .76);
  color: #fff !important;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

body.vmb-refresh .description-container {
  padding: 20px !important;
}

body.vmb-refresh .promotion-banner {
  margin-top: 32px;
}

body.vmb-refresh .featured-promotion-banner {
  min-height: 360px;
  border-radius: 28px;
  box-shadow: var(--vmb-shadow-xl);
}

body.vmb-refresh .tour-section {
  margin-top: 86px !important;
  margin-bottom: 64px !important;
}

body.vmb-refresh .tour-card {
  border-radius: 24px !important;
}

body.vmb-refresh .tour-card img {
  transform: scale(1);
  transition: transform .4s ease;
}

body.vmb-refresh .tour-card:hover img {
  transform: scale(1.04);
}

body.vmb-refresh .tour-overlay {
  background: linear-gradient(180deg, transparent 15%, rgba(17, 26, 66, .84) 100%) !important;
}

body.vmb-refresh .news-section {
  margin-top: 32px !important;
  position: relative !important;
}

body.vmb-refresh .news-section .slick-arrow {
  position: absolute !important;
  top: -54px !important;
  z-index: 99 !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: var(--vmb-navy) !important;
  box-shadow: var(--vmb-shadow-sm) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  border: 1px solid rgba(231, 236, 246, .88) !important;
  transition: all 0.2s ease !important;
}

body.vmb-refresh .news-section .slick-arrow:hover {
  background: var(--vmb-navy) !important;
  color: #fff !important;
  box-shadow: var(--vmb-shadow-md) !important;
}

body.vmb-refresh .news-section .slick-prev {
  right: 76px !important;
  left: auto !important;
}

body.vmb-refresh .news-section .slick-next {
  right: 20px !important;
}

body.vmb-refresh .booking-card {
  display: grid !important;
  grid-template-columns: 145px 1fr !important;
  gap: 16px !important;
  padding: 14px !important;
  align-items: center !important;
  background: rgba(255, 255, 255, .86) !important;
}

body.vmb-refresh .booking-card .card-image {
  height: 122px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

body.vmb-refresh .booking-card .castle-image,
body.vmb-refresh .booking-card .castle-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 14px !important;
  transition: transform 0.4s ease !important;
}

body.vmb-refresh .booking-card:hover .castle-image img {
  transform: scale(1.08) !important;
}

body.vmb-refresh .booking-card .card-content {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

body.vmb-refresh .booking-card .publish-date {
  font-size: 12px !important;
  color: #5064a8 !important;
  font-weight: 900 !important;
  margin-bottom: 4px !important;
}

body.vmb-refresh .booking-card .title {
  color: var(--vmb-navy) !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  margin: 0 0 6px 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.vmb-refresh .booking-card .description {
  color: var(--vmb-muted) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  margin-bottom: 10px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.vmb-refresh .booking-card .cta-button {
  color: var(--vmb-blue) !important;
  background: transparent !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  transition: gap 0.2s ease, color 0.2s ease !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: 0 !important;
}

body.vmb-refresh .booking-card:hover .cta-button {
  color: #1d4ed8 !important;
  gap: 8px !important;
  background: transparent !important;
}

body.vmb-refresh .news-cards-wrapper .slick-slide {
  padding: 0 10px;
}

body.vmb-refresh .suggestion-section,
body.vmb-refresh .tips-section {
  margin-top: 32px;
}

body.vmb-refresh footer.footer {
  margin-top: 54px;
  background: linear-gradient(180deg, #f8faff, #fff) !important;
  border-top: 1px solid #e6edf7 !important;
  border-radius: 32px 32px 0 0 !important;
  padding: 48px 0 20px !important;
  box-shadow: 0 -10px 30px rgba(29, 48, 92, 0.04) !important;
  color: #5b6683 !important;
  position: relative;
}

body.vmb-refresh footer.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  border-radius: 999px;
  background: var(--vmb-accent) !important;
  opacity: .5;
}

body.vmb-refresh footer.footer h3 {
  color: #18234f !important;
  font-family: var(--vmb-serif) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin: 0 0 14px 0 !important;
}

body.vmb-refresh footer.footer .description {
  color: #5b6683 !important;
  font-size: 13px !important;
}

body.vmb-refresh footer.footer .contact-info,
body.vmb-refresh footer.footer a {
  color: #5b6683 !important;
  transition: color 0.2s ease !important;
}

body.vmb-refresh footer.footer a:hover {
  color: var(--vmb-purple) !important;
}

body.vmb-refresh footer.footer .info {
  color: #5b6683 !important;
}

body.vmb-refresh footer.footer hr {
  border-color: #eef2f9 !important;
}

@media (max-width: 1199px) {
  body.vmb-refresh header > nav.navbar.container {
    left: calc(50% - 96px);
    width: min(520px, 45vw);
  }

  body.vmb-refresh header > nav.navbar .navbar-nav {
    gap: 18px !important;
  }

  body.vmb-refresh header .nav-link-custom {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  body.vmb-refresh > header {
    min-height: 82px;
  }

  body.vmb-refresh .mobile-header {
    display: block;
  }

  body.vmb-refresh .mobile-header .header-top {
    min-height: 82px;
    padding: 12px 24px;
  }

  body.vmb-refresh .mobile-header .header-logo img.logo {
    width: 158px;
    max-width: 46vw;
  }

  body.vmb-refresh .mobile-header .header-actions {
    gap: 12px !important;
  }

  body.vmb-refresh .mobile-header .header-actions a {
    width: 48px;
    height: 48px;
    border: 1px solid var(--vmb-line);
    border-radius: 18px;
    background: #fff;
    color: var(--vmb-navy) !important;
    box-shadow: var(--vmb-shadow-sm);
  }

  body.vmb-refresh .mobile-header .menu-toggle {
    width: 54px;
    height: 54px;
    border: 1px solid var(--vmb-line) !important;
    border-radius: 22px;
    background: #fff !important;
    color: var(--vmb-navy);
    box-shadow: var(--vmb-shadow-sm);
  }

  body.vmb-refresh .mobile-menu {
    top: 0 !important;
    bottom: 0 !important;
    left: -100% !important;
    z-index: 1100;
    width: min(86vw, 380px);
    height: 100vh !important;
    height: 100dvh !important;
    max-height: none !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #fff !important;
    border-radius: 0 26px 26px 0;
    box-shadow: 18px 0 40px rgba(17, 26, 66, .18);
  }

  body.vmb-refresh .mobile-menu.open {
    left: 0 !important;
  }

  body.vmb-refresh .mobile-menu .menu-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 2;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid rgba(231, 236, 246, .8);
  }

  body.vmb-refresh .mobile-menu .menu-header .menu-close {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #f4f6fb !important;
    color: var(--vmb-navy);
  }

  body.vmb-refresh .mobile-menu .menu-list.vmb-mobile-links {
    margin: 0 !important;
    padding: 8px 0 22px !important;
  }

  body.vmb-refresh .menu-overlay.show {
    z-index: 1090;
    background: rgba(17, 26, 66, .42);
    backdrop-filter: blur(5px);
  }

  body.vmb-refresh .banner-slider .carousel-item,
  body.vmb-refresh .banner-slider .carousel-item .title-content,
  body.vmb-refresh .banner-slider .carousel-item .title-flights {
    min-height: 680px;
  }

  body.vmb-refresh .banner-slider::before,
  body.vmb-refresh .banner-slider::after,
  body.vmb-refresh .banner-controls-wrapper,
  body.vmb-refresh .banner-slider .carousel-item .image-bg {
    display: none;
  }

  body.vmb-refresh .banner-slider .carousel-item .title-content,
  body.vmb-refresh .banner-slider .carousel-item .title-flights {
    padding: 62px 0 310px;
  }

  body.vmb-refresh .banner-item__content::before {
    font-size: 28px;
  }

  body.vmb-refresh .banner-slider .title-content h2,
  body.vmb-refresh .banner-slider .title-flights h2 {
    max-width: 100%;
    font-size: clamp(42px, 12vw, 64px);
  }

  body.vmb-refresh .banner-slider .title-content p,
  body.vmb-refresh .banner-slider .title-flights p,
  body.vmb-refresh .banner-slider .btn-view {
    display: none;
  }

  body.vmb-refresh .vmb-search-shell {
    margin-top: -350px;
    margin-bottom: 76px;
    padding-right: 20px;
    padding-left: 20px;
  }

  body.vmb-refresh .vmb-search-shell .flight-search-card,
  body.vmb-refresh .vmb-search-shell #search-flight,
  body.vmb-refresh .vmb-search-shell .home > div:last-child {
    border-radius: 24px !important;
  }

  body.vmb-refresh .destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  body.vmb-refresh .desktop-header,
  body.vmb-refresh header > nav.navbar.container {
    display: none !important;
  }

  body.vmb-refresh .banner-item__content,
  body.vmb-refresh .service-hightlight,
  body.vmb-refresh .cheap-flight,
  body.vmb-refresh .popular-destinations,
  body.vmb-refresh .promotion-banner,
  body.vmb-refresh .tour-section,
  body.vmb-refresh .news-section,
  body.vmb-refresh .suggestion-section,
  body.vmb-refresh .tips-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  body.vmb-refresh .service-hightlight.container,
  body.vmb-refresh .popular-destinations.container,
  body.vmb-refresh .tour-section.container,
  body.vmb-refresh .news-section.container {
    padding-right: 18px;
    padding-left: 18px;
  }

  body.vmb-refresh .mobile-header .header-top {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.vmb-refresh .mobile-header .header-actions a:first-child {
    display: none !important;
  }

  body.vmb-refresh .mobile-header .header-actions a {
    width: 52px;
    height: 52px;
  }

  body.vmb-refresh .banner-slider .carousel-item,
  body.vmb-refresh .banner-slider .carousel-item .title-content,
  body.vmb-refresh .banner-slider .carousel-item .title-flights {
    min-height: 760px;
  }

  body.vmb-refresh .banner-slider .carousel-item .title-content,
  body.vmb-refresh .banner-slider .carousel-item .title-flights {
    padding-top: 58px;
  }

  body.vmb-refresh .banner-item__content::before {
    margin-bottom: 18px;
    font-size: 28px;
  }

  body.vmb-refresh .banner-slider .title-content h2,
  body.vmb-refresh .banner-slider .title-flights h2 {
    font-size: clamp(40px, 13vw, 56px);
  }

  body.vmb-refresh .vmb-search-shell {
    margin-top: -438px;
    padding-right: 16px;
    padding-left: 16px;
  }

  body.vmb-refresh .vmb-search-shell .flight-search-card {
    padding: 18px !important;
  }

  body.vmb-refresh .service-hightlight-header h2,
  body.vmb-refresh .cheap-flight .small-title,
  body.vmb-refresh .popular-destinations-header h2,
  body.vmb-refresh .title-tour,
  body.vmb-refresh .news-title,
  body.vmb-refresh .suggestion-title {
    font-size: 30px;
  }

  body.vmb-refresh .destination-grid {
    grid-template-columns: 1fr;
  }

  body.vmb-refresh .promotion-banner-list {
    display: none;
  }
}

/* Preserve the original CMS hero slider images and overlay behavior. */
body.vmb-refresh .banner-slider {
  overflow: unset;
  margin-bottom: 0;
  background: transparent;
}

body.vmb-refresh .banner-slider::before,
body.vmb-refresh .banner-slider::after,
body.vmb-refresh .banner-item__content::before {
  display: none !important;
  content: none !important;
}

body.vmb-refresh .banner-slider .carousel-item {
  min-height: 0;
  overflow: hidden;
  background: transparent;
}

body.vmb-refresh .banner-slider .carousel-item .image-bg {
  position: static;
  inset: auto;
  display: block !important;
  opacity: 1;
}

body.vmb-refresh .banner-slider .carousel-item .image-bg img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

body.vmb-refresh .banner-slider .carousel-item .title-content {
  position: absolute;
  top: 40%;
  left: auto;
  width: auto;
  min-height: 0;
  padding: 0;
  display: block;
  color: #fff;
  transform: none;
}

body.vmb-refresh .banner-slider .carousel-item .title-flights {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-height: 0;
  padding: 0;
  display: block;
  color: #fff;
  transform: translate(-50%, -50%);
}

body.vmb-refresh .banner-slider .title-content h2,
body.vmb-refresh .banner-slider .title-flights h2 {
  max-width: none;
  margin-bottom: 15px;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 66px;
}

body.vmb-refresh .banner-slider .title-content p,
body.vmb-refresh .banner-slider .title-flights p {
  max-width: none;
  margin-bottom: 35px;
  color: #fff;
  font-size: 24px;
  line-height: 36px;
}

body.vmb-refresh .banner-slider .title-flights h2,
body.vmb-refresh .banner-slider .title-flights p {
  text-align: center;
}

body.vmb-refresh .banner-slider .btn-view {
  width: auto;
  height: auto;
  padding: 18px 40px;
  border-radius: 10px;
  background: #1f3d59;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: none;
}

body.vmb-refresh .banner-slider .btn-view i {
  margin-left: 30px;
}

body.vmb-refresh .banner-controls-wrapper {
  position: absolute;
  right: 0;
  bottom: 80px;
  left: 0;
  display: block !important;
}

body.vmb-refresh .banner-controls {
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
}

body.vmb-refresh .banner-count {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}

body.vmb-refresh .banner-action {
  gap: 5px;
}

body.vmb-refresh .banner-action button,
body.vmb-refresh .control-prev,
body.vmb-refresh .control-next {
  width: 38px;
  height: 38px;
  background: #1f3d59;
  color: #fff;
  box-shadow: none;
}

@media (max-width: 992px) {
  body.vmb-refresh .banner-slider .carousel-item .image-bg img {
    height: 450px;
  }

  body.vmb-refresh .banner-slider .carousel-item .title-content {
    top: 15%;
  }

  body.vmb-refresh .banner-slider .title-content h2 {
    margin-right: 15px;
    font-size: 32px;
    line-height: 40px;
  }

  body.vmb-refresh .banner-slider .title-content p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 25px;
  }

  body.vmb-refresh .banner-slider .title-content .btn-view {
    width: 200px;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 16px;
  }

  body.vmb-refresh .banner-slider .title-flights {
    width: 100%;
    padding: 0 15px;
  }

  body.vmb-refresh .banner-slider .title-flights h2 {
    font-size: 34px;
    line-height: 44px;
  }

  body.vmb-refresh .banner-slider .title-flights p {
    font-size: 16px;
  }

  body.vmb-refresh .banner-slider .banner-controls-wrapper {
    bottom: 80px;
  }

  body.vmb-refresh .banner-count {
    font-size: 20px;
  }

  body.vmb-refresh .banner-action button,
  body.vmb-refresh .control-prev,
  body.vmb-refresh .control-next {
    width: 32px;
    height: 32px;
  }

  body.vmb-refresh .vmb-search-shell {
    margin-top: -76px;
    margin-bottom: 68px;
  }
}

@media (max-width: 575px) {
  body.vmb-refresh .banner-slider > div {
    margin-top: -40px;
  }

  body.vmb-refresh .banner-slider .title-content p,
  body.vmb-refresh .banner-slider .title-flights p,
  body.vmb-refresh .banner-slider .btn-view {
    display: block;
  }

  body.vmb-refresh .vmb-search-shell {
    margin-top: -64px;
    margin-bottom: 54px;
  }
}

/* Final hero composition: keep legacy slide images, but align content cleanly. */
body.vmb-refresh .banner-slider {
  margin-bottom: 0;
}

body.vmb-refresh .banner-slider .carousel-item {
  position: relative;
}

body.vmb-refresh .banner-slider .carousel-item > .col-12 {
  padding-right: 0;
  padding-left: 0;
}

body.vmb-refresh .banner-slider .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 20, 44, .58) 0%, rgba(8, 20, 44, .34) 44%, rgba(8, 20, 44, .08) 100%);
  pointer-events: none;
}

body.vmb-refresh .banner-slider .carousel-item .image-bg img {
  height: 560px;
}

body.vmb-refresh .banner-slider .carousel-item .title-content,
body.vmb-refresh .banner-slider .carousel-item .title-flights {
  position: absolute;
  top: 118px;
  right: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  min-height: 0;
  padding: 0;
  transform: none;
}

body.vmb-refresh .banner-slider .banner-item__content {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 28px;
  padding-left: 28px;
}

body.vmb-refresh .banner-slider .title-content h2,
body.vmb-refresh .banner-slider .title-flights h2 {
  max-width: 780px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(42px, 4.3vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: left;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .34);
}

body.vmb-refresh .banner-slider .title-content p,
body.vmb-refresh .banner-slider .title-flights p {
  max-width: 820px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .94);
  font-size: 19px;
  line-height: 1.6;
  text-align: left;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .34);
}

body.vmb-refresh .banner-slider .btn-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 176px;
  height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  background: #1f3d59;
  color: #fff;
  font-weight: 900;
}

body.vmb-refresh .banner-slider .btn-view i {
  margin-left: 0;
}

body.vmb-refresh .banner-controls-wrapper {
  display: none !important;
}

body.vmb-refresh .vmb-search-shell {
  margin-top: -160px;
  margin-bottom: 72px;
}

@media (max-width: 992px) {
  body.vmb-refresh .banner-slider .carousel-item .image-bg img {
    height: 500px;
  }

  body.vmb-refresh .banner-slider .carousel-item .title-content,
  body.vmb-refresh .banner-slider .carousel-item .title-flights {
    top: 92px;
  }

  body.vmb-refresh .banner-slider .title-content h2,
  body.vmb-refresh .banner-slider .title-flights h2 {
    max-width: 720px;
    font-size: clamp(34px, 8vw, 50px);
  }

  body.vmb-refresh .banner-slider .title-content p,
  body.vmb-refresh .banner-slider .title-flights p {
    max-width: 650px;
    font-size: 16px;
  }

  body.vmb-refresh .vmb-search-shell {
    margin-top: -132px;
  }
}

@media (max-width: 575px) {
  body.vmb-refresh .banner-slider > div {
    margin-top: 0;
  }

  body.vmb-refresh .banner-slider .carousel-item .image-bg img {
    height: 520px;
  }

  body.vmb-refresh .banner-slider .carousel-item::after {
    background: linear-gradient(180deg, rgba(8, 20, 44, .62) 0%, rgba(8, 20, 44, .28) 70%, rgba(8, 20, 44, .12) 100%);
  }

  body.vmb-refresh .banner-slider .carousel-item .title-content,
  body.vmb-refresh .banner-slider .carousel-item .title-flights {
    top: 72px;
  }

  body.vmb-refresh .banner-slider .banner-item__content {
    padding-right: 18px;
    padding-left: 18px;
  }

  body.vmb-refresh .banner-slider .title-content h2,
  body.vmb-refresh .banner-slider .title-flights h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  body.vmb-refresh .banner-slider .title-content p,
  body.vmb-refresh .banner-slider .title-flights p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
  }

  body.vmb-refresh .banner-slider .btn-view {
    min-width: 150px;
    height: 48px;
    padding: 0 22px;
  }

  body.vmb-refresh .vmb-search-shell {
    margin-top: -104px;
    margin-bottom: 56px;
  }
}

body.vmb-refresh .banner-slider .btn-view,
body.vmb-refresh .banner-slider .title-content .btn-view {
  display: inline-flex !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: fit-content !important;
  min-width: 178px;
  max-width: 100%;
  height: 54px;
  padding: 0 28px !important;
  line-height: 1 !important;
  white-space: nowrap;
}

body.vmb-refresh .banner-slider .btn-view i {
  flex: 0 0 auto;
  margin-left: 0 !important;
}

@media (max-width: 575px) {
  body.vmb-refresh .banner-slider .btn-view,
  body.vmb-refresh .banner-slider .title-content .btn-view {
    min-width: 160px;
    height: 48px;
    padding-right: 22px !important;
    padding-left: 22px !important;
  }
}

/* Final vertical rhythm for the refreshed homepage hero. */
body.vmb-refresh .banner-slider .carousel-item .title-content,
body.vmb-refresh .banner-slider .carousel-item .title-flights {
  top: 28px !important;
}

body.vmb-refresh .banner-slider .title-content h2,
body.vmb-refresh .banner-slider .title-flights h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(40px, 3.8vw, 56px);
  line-height: 1.06;
}

body.vmb-refresh .banner-slider .title-content p,
body.vmb-refresh .banner-slider .title-flights p {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.55;
}

body.vmb-refresh .banner-slider .btn-view,
body.vmb-refresh .banner-slider .title-content .btn-view {
  height: 52px;
}

body.vmb-refresh .vmb-search-shell {
  margin-top: -208px !important;
  margin-bottom: 92px;
}

@media (max-width: 992px) {
  body.vmb-refresh .banner-slider .carousel-item .image-bg img {
    height: 520px;
  }

  body.vmb-refresh .banner-slider .carousel-item .title-content,
  body.vmb-refresh .banner-slider .carousel-item .title-flights {
    top: 32px !important;
  }

  body.vmb-refresh .banner-slider .title-content h2,
  body.vmb-refresh .banner-slider .title-flights h2 {
    max-width: 620px;
    font-size: clamp(34px, 7vw, 48px);
  }

  body.vmb-refresh .vmb-search-shell {
    margin-top: -168px !important;
    margin-bottom: 72px;
  }
}

@media (max-width: 575px) {
  body.vmb-refresh .banner-slider .carousel-item .image-bg img {
    height: 540px;
  }

  body.vmb-refresh .banner-slider .carousel-item .title-content,
  body.vmb-refresh .banner-slider .carousel-item .title-flights {
    top: 32px !important;
  }

  body.vmb-refresh .banner-slider .title-content h2,
  body.vmb-refresh .banner-slider .title-flights h2 {
    margin-bottom: 12px;
    font-size: clamp(30px, 9.5vw, 40px);
  }

  body.vmb-refresh .banner-slider .title-content p,
  body.vmb-refresh .banner-slider .title-flights p {
    margin-bottom: 18px;
    font-size: 14px;
  }

  body.vmb-refresh .vmb-search-shell {
    margin-top: -126px !important;
    margin-bottom: 60px;
  }
}

/* Final header and hero polish aligned with the VMB mockup. */
body.vmb-refresh [id] {
  scroll-margin-top: 108px;
}

body.vmb-refresh .desktop-header {
  min-height: 78px;
  padding-right: 32px;
  padding-left: 32px;
}

body.vmb-refresh .desktop-header .header-logo img {
  max-width: 280px;
  max-height: 54px;
}

body.vmb-refresh header > nav.navbar.container {
  top: 0;
  left: 50% !important;
  width: auto !important;
  max-width: calc(100% - 420px);
  transform: translateX(-50%);
}

body.vmb-refresh header > nav.navbar .navbar-collapse {
  justify-content: center;
}

body.vmb-refresh header > nav.navbar .navbar-nav {
  gap: 34px !important;
}

body.vmb-refresh header > nav.navbar .navbar-nav > li {
  display: list-item !important;
}

body.vmb-refresh header .nav-link-custom {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  font-weight: 800;
}

body.vmb-refresh header .nav-link-custom::after {
  bottom: 18px;
}

body.vmb-refresh header .desktop-header > .d-flex:last-child {
  gap: 12px !important;
}

body.vmb-refresh header .desktop-header > .d-flex:last-child > a {
  display: none !important;
}

body.vmb-refresh header .dropdown {
  min-height: 40px;
  padding: 0 14px;
  box-shadow: none;
}

body.vmb-refresh .language-dropdown .selected,
body.vmb-refresh .currency-dropdown .selected {
  min-height: 40px;
}

body.vmb-refresh .banner-slider .carousel-item::after {
  background:
    linear-gradient(90deg, rgba(9, 19, 45, .60) 0%, rgba(9, 19, 45, .40) 38%, rgba(9, 19, 45, .10) 68%, rgba(9, 19, 45, 0) 100%);
}

body.vmb-refresh .banner-slider .carousel-item .title-content,
body.vmb-refresh .banner-slider .carousel-item .title-flights {
  top: 32px !important;
}

body.vmb-refresh .banner-slider .banner-item__content {
  max-width: 1180px;
  padding-right: 32px;
  padding-left: 32px;
}

body.vmb-refresh .banner-slider .title-content .banner-item__content {
  display: grid;
  grid-template-columns: minmax(0, 410px) auto;
  column-gap: 12px;
  align-items: start;
}

body.vmb-refresh .banner-slider .title-content h2,
body.vmb-refresh .banner-slider .title-flights h2 {
  max-width: 560px;
  margin-bottom: 8px;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.12;
}

body.vmb-refresh .banner-slider .title-content h2 {
  grid-column: 1 / -1;
}

body.vmb-refresh .banner-slider .title-content p,
body.vmb-refresh .banner-slider .title-flights p {
  max-width: 410px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.45;
}

body.vmb-refresh .banner-slider .title-content p {
  margin-bottom: 0;
}

body.vmb-refresh .banner-slider .btn-view,
body.vmb-refresh .banner-slider .title-content .btn-view {
  position: relative;
  gap: 10px;
  min-width: 146px;
  height: 44px;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(47, 115, 246, .24);
  overflow: hidden;
}

body.vmb-refresh .banner-slider .title-content .btn-view {
  grid-column: 2;
  grid-row: 2;
}

body.vmb-refresh .banner-slider .btn-view::before,
body.vmb-refresh .banner-slider .title-content .btn-view::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .24), transparent);
  transition: left .45s ease;
}

body.vmb-refresh .banner-slider .btn-view:hover::before,
body.vmb-refresh .banner-slider .title-content .btn-view:hover::before {
  left: 100%;
}

body.vmb-refresh .banner-slider .btn-view:hover,
body.vmb-refresh .banner-slider .title-content .btn-view:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(47, 115, 246, .30);
}

body.vmb-refresh .banner-slider .btn-view i {
  font-size: 16px;
}

body.vmb-refresh .vmb-search-shell {
  margin-top: -160px !important;
  margin-bottom: 40px !important;
  transform: translateY(-170px);
}

body.vmb-refresh .mobile-menu .menu-list.vmb-mobile-links li {
  border-bottom: 1px solid rgba(231, 236, 246, .72);
}

body.vmb-refresh .mobile-menu .menu-list.vmb-mobile-links li:last-child {
  border-bottom: 0;
}

@media (max-width: 1200px) {
  body.vmb-refresh header > nav.navbar.container {
    max-width: calc(100% - 360px);
  }

  body.vmb-refresh header > nav.navbar .navbar-nav {
    gap: 26px !important;
  }
}

@media (max-width: 992px) {
  body.vmb-refresh .banner-slider .title-content .banner-item__content {
    display: block;
  }

  body.vmb-refresh .banner-slider .carousel-item .title-content,
  body.vmb-refresh .banner-slider .carousel-item .title-flights {
    top: 24px !important;
  }

  body.vmb-refresh .banner-slider .title-content h2,
  body.vmb-refresh .banner-slider .title-flights h2 {
    max-width: 520px;
    font-size: clamp(26px, 5.6vw, 36px);
  }

  body.vmb-refresh .banner-slider .title-content p,
  body.vmb-refresh .banner-slider .title-flights p {
    max-width: 500px;
    font-size: 13px;
  }

  body.vmb-refresh .banner-slider .title-content p {
    margin-bottom: 12px;
  }

  body.vmb-refresh .vmb-search-shell {
    margin-top: -150px !important;
    margin-bottom: 36px !important;
    transform: translateY(-140px);
  }
}

@media (max-width: 575px) {
  body.vmb-refresh .banner-slider .carousel-item .title-content,
  body.vmb-refresh .banner-slider .carousel-item .title-flights {
    top: 22px !important;
  }

  body.vmb-refresh .banner-slider .title-content h2,
  body.vmb-refresh .banner-slider .title-flights h2 {
    max-width: 100%;
    font-size: clamp(24px, 7.2vw, 32px);
    margin-bottom: 8px;
  }

  body.vmb-refresh .banner-slider .title-content p,
  body.vmb-refresh .banner-slider .title-flights p {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: 12px;
  }

  body.vmb-refresh .banner-slider .btn-view,
  body.vmb-refresh .banner-slider .title-content .btn-view {
    min-width: 136px;
    height: 40px;
  }

  body.vmb-refresh .vmb-search-shell {
    margin-top: -120px !important;
    margin-bottom: 28px !important;
    transform: translateY(-110px);
  }
}

/* Custom Overrides for Cheap Flight Section Slider Controls and Badges */
body.vmb-refresh .cheap-flight .slick-arrow i {
  color: var(--vmb-navy) !important;
}

body.vmb-refresh .flight-card .discount-badge {
  top: 12px !important;
  left: 12px !important;
  transform: none !important;
  width: 58px !important;
  height: 40px !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  padding: 0 !important;
}

body.vmb-refresh .flight-card .discount-badge span {
  display: none !important;
}

body.vmb-refresh .cheap-flight .slick-arrow:hover {
  background: var(--vmb-navy) !important;
  box-shadow: 0 12px 28px rgba(41, 62, 105, 0.28) !important;
}

body.vmb-refresh .cheap-flight .slick-arrow:hover i {
  color: #fff !important;
}

body.vmb-refresh .cheap-flight {
  padding-bottom: 0px !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card {
  width: 100%;
  max-width: 166px;
  min-height: 255px;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  border-radius: 16px !important;
  background: #fff !important;
  text-align: left;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .image-link,
body.vmb-refresh .cheap-flight .flight-slider .flight-card .card-img {
  border-radius: 16px 16px 0 0 !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .card-img {
  width: 100% !important;
  height: 112px !important;
  object-fit: cover !important;
  transform: none !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .content {
  padding: 12px 13px 14px !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .content .price {
  margin: 0 !important;
  color: #ff4267 !important;
  font-size: 19px !important;
  font-weight: 950 !important;
  line-height: 1.15 !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .content p.flight-date {
  margin: 10px 0 9px !important;
  color: #8490aa !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .content .btn {
  display: none !important;
}

body.vmb-refresh .cheap-flight .slick-arrow.slick-disabled {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto;
}

@media (max-width: 576px) {
  body.vmb-refresh .cheap-flight {
    margin-top: 18px;
    overflow: hidden;
  }

  body.vmb-refresh .cheap-flight .container {
    padding-right: 0;
    padding-left: 0;
  }

  body.vmb-refresh .cheap-flight .d-flex.justify-content-between {
    padding-right: 0;
    padding-left: 0;
  }

  body.vmb-refresh .cheap-flight .small-title {
    margin-bottom: 6px !important;
    font-size: 26px !important;
    line-height: 1.15;
  }

  body.vmb-refresh .cheap-flight .main-title {
    max-width: 300px;
    font-size: 14px !important;
    line-height: 1.45;
  }

  body.vmb-refresh .cheap-flight .view {
    display: none;
  }

  body.vmb-refresh .cheap-flight .flight-slider {
    margin-top: 18px;
  }

  body.vmb-refresh .cheap-flight .slick-list {
    margin-right: -10px;
    margin-left: -6px;
    padding: 6px 0 22px 6px !important;
    overflow: visible;
  }

  body.vmb-refresh .cheap-flight .slick-slide {
    padding-right: 7px;
    padding-left: 7px;
  }

  body.vmb-refresh .flight-card {
    min-height: 258px;
    border-radius: 16px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card {
    min-height: 255px;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .card-img {
    height: 104px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .content {
    padding: 12px 13px 14px !important;
  }

  body.vmb-refresh .flight-card .flight-route-cities {
    font-size: 11px;
  }

  body.vmb-refresh .flight-card .flight-route-airports {
    grid-template-columns: minmax(0, 1fr) 16px minmax(0, 1fr);
    gap: 2px;
  }

  body.vmb-refresh .flight-card .flight-route-airports strong {
    font-size: 25px;
  }

  body.vmb-refresh .flight-card .route-arrow {
    font-size: 13px;
  }

  body.vmb-refresh .flight-card p {
    margin-top: 9px;
    font-size: 11px;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .content .price {
    margin-top: auto;
    margin-bottom: 0;
    font-size: 18px !important;
  }

  body.vmb-refresh .cheap-flight .slick-arrow {
    top: 52px !important;
    width: 42px !important;
    height: 42px !important;
    background: #fff !important;
    box-shadow: 0 12px 26px rgba(17, 26, 66, .15) !important;
  }

  body.vmb-refresh .cheap-flight .slick-prev {
    left: -3px !important;
  }

  body.vmb-refresh .cheap-flight .slick-next {
    right: -3px !important;
  }
}

body.vmb-refresh .tour-section.my-5 {
  margin-top: 16px !important;
  margin-bottom: 24px !important;
}

/* Spacing and styles for the new "Why Choose Us" section */
body.vmb-refresh .why-choose-us {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 28px;
  padding-left: 28px;
  margin-top: 16px !important;
  margin-bottom: 24px !important;
}

body.vmb-refresh .features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

body.vmb-refresh .mini-card {
  text-align: center;
  padding: 24px 12px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #eef7ff);
  border: 1px solid rgba(231, 236, 246, .88) !important;
  border-radius: 22px !important;
  box-shadow: var(--vmb-shadow-md);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

body.vmb-refresh .mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(96, 165, 250, .32), rgba(29, 78, 216, .32));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.vmb-refresh .mini-card:hover::before {
  opacity: 1;
}

body.vmb-refresh .mini-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vmb-shadow-xl);
  border-color: rgba(37, 99, 235, .22) !important;
}

body.vmb-refresh .mini-card:nth-child(2) { background: linear-gradient(180deg, #fff, #eff6ff); }
body.vmb-refresh .mini-card:nth-child(3) { background: linear-gradient(180deg, #fff, #eef6ff); }
body.vmb-refresh .mini-card:nth-child(4) { background: linear-gradient(180deg, #fff, #effbf7); }
body.vmb-refresh .mini-card:nth-child(5) { background: linear-gradient(180deg, #fff, #fff5ec); }
body.vmb-refresh .mini-card:nth-child(6) { background: linear-gradient(180deg, #fff, #f3f8ff); }

body.vmb-refresh .mini-card h3 {
  font-size: 14px;
  font-weight: 900;
  color: var(--vmb-navy);
  margin: 0 0 8px;
}

body.vmb-refresh .mini-card .desc {
  color: var(--vmb-muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

body.vmb-refresh .mini-card .ico {
  font-size: 28px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .08);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, box-shadow 0.3s ease;
}

body.vmb-refresh .mini-card:hover .ico {
  transform: scale(1.16) rotate(-5deg);
  background: rgba(37, 99, 235, .14);
  box-shadow: 0 8px 20px rgba(37, 99, 235, .15);
}

@media (max-width: 1200px) {
  body.vmb-refresh .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  body.vmb-refresh .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  body.vmb-refresh .features {
    grid-template-columns: 1fr;
  }
}

/* Custom "Dịch vụ Visa & Fast Track" Section */
body.vmb-refresh .fasttrack-section {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 28px;
  padding-left: 28px;
  margin-top: 16px !important;
  margin-bottom: 24px !important;
}

body.vmb-refresh .fasttrack-view-all {
  color: var(--vmb-purple);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

body.vmb-refresh .fasttrack-view-all:hover {
  color: var(--vmb-blue);
}

body.vmb-refresh .services {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}

body.vmb-refresh .service {
  padding: 24px;
  min-height: 158px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(231, 236, 246, .88) !important;
  border-radius: 22px !important;
  box-shadow: var(--vmb-shadow-md);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

body.vmb-refresh .service::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(96, 165, 250, .42), rgba(29, 78, 216, .42));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.vmb-refresh .service:hover::before {
  opacity: 1;
}

body.vmb-refresh .service:hover {
  transform: translateY(-6px);
  box-shadow: var(--vmb-shadow-xl);
  border-color: rgba(37, 99, 235, .22) !important;
}

body.vmb-refresh .service.hero-card {
  background: linear-gradient(135deg, #eef7ff, #f5fbff) !important;
  border-color: transparent !important;
}

body.vmb-refresh .service h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--vmb-navy);
  margin: 0 0 10px;
}

body.vmb-refresh .service .desc {
  color: var(--vmb-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

body.vmb-refresh .service .price2 {
  margin-top: 16px;
  color: var(--vmb-purple);
  font-weight: 800;
  font-size: 15px;
  transition: color 0.2s ease;
}

body.vmb-refresh .service:hover .price2 {
  color: var(--vmb-blue);
}

@media (max-width: 992px) {
  body.vmb-refresh .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body.vmb-refresh .services {
    grid-template-columns: 1fr;
  }
}

/* Custom FAQ Section - Câu hỏi thường gặp */
body.vmb-refresh .faq-section {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 28px;
  padding-left: 28px;
  margin-top: 24px !important;
  margin-bottom: 40px !important;
}

body.vmb-refresh .faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 20px;
}

body.vmb-refresh .faq {
  align-self: start;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 1px solid rgba(231, 236, 246, 0.8) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 24px rgba(37, 55, 99, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.vmb-refresh .faq:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 55, 99, 0.08);
  border-color: rgba(37, 99, 235, 0.28) !important;
}

/* Left border indicator for open state */
body.vmb-refresh .faq::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--vmb-gradient);
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.vmb-refresh .faq.open::before {
  opacity: 1;
}

body.vmb-refresh .faq.open {
  background: linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%) !important;
  border-color: rgba(37, 99, 235, 0.36) !important;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.08);
}

body.vmb-refresh .faq-q {
  min-height: 60px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--vmb-navy);
  cursor: pointer;
  transition: color 0.2s ease;
}

body.vmb-refresh .faq-q:hover {
  color: var(--vmb-purple);
}

body.vmb-refresh .plus {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--vmb-navy);
  flex-shrink: 0;
  margin-left: 16px;
  font-weight: normal;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

body.vmb-refresh .faq:hover .plus {
  background: #dbeafe;
  color: var(--vmb-purple);
}

body.vmb-refresh .faq.open .plus {
  transform: rotate(45deg);
  color: #fff;
  background: var(--vmb-gradient);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.22);
}

body.vmb-refresh .faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--vmb-muted);
  line-height: 1.7;
  font-size: 14.5px;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

body.vmb-refresh .faq-a p {
  margin: 0;
  margin-bottom: 12px;
}

body.vmb-refresh .faq-a p:last-child {
  margin-bottom: 0;
}

body.vmb-refresh .faq.open .faq-a {
  max-height: 1000px;
  padding: 0 20px 20px;
  border-top: 1px dashed rgba(231, 236, 246, 0.8);
  padding-top: 16px;
}

@media (max-width: 768px) {
  body.vmb-refresh .faq-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Custom Overrides to widen content sections */
@media (min-width: 1200px) {
  body.vmb-refresh .desktop-header,
  body.vmb-refresh .banner-item__content,
  body.vmb-refresh .banner-controls,
  body.vmb-refresh .cheap-flight,
  body.vmb-refresh .popular-destinations,
  body.vmb-refresh .promotion-banner,
  body.vmb-refresh .tour-section,
  body.vmb-refresh .news-section,
  body.vmb-refresh .suggestion-section,
  body.vmb-refresh .tips-section,
  body.vmb-refresh .why-choose-us,
  body.vmb-refresh .fasttrack-section,
  body.vmb-refresh .faq-section,
  body.vmb-refresh .popular-destinations.container,
  body.vmb-refresh .tour-section.container,
  body.vmb-refresh .why-choose-us.container,
  body.vmb-refresh .fasttrack-section.container,
  body.vmb-refresh .faq-section.container,
  body.vmb-refresh .news-section.container,
  body.vmb-refresh .offers-section.container {
    max-width: 1320px !important;
  }

  body.vmb-refresh .vmb-search-shell {
    max-width: 1260px !important;
  }
}

/* --- Offers Section --- */
body.vmb-refresh .offers-section { padding-top: 8px; overflow: hidden; }
body.vmb-refresh .offers-section .section-head { align-items: center !important; }
body.vmb-refresh .offer-slider-wrap { position: relative; overflow: hidden; }
body.vmb-refresh .offer-slider { --offer-gap: 18px; display: flex; gap: var(--offer-gap); overflow-x: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; overscroll-behavior-x: contain; padding: 4px 0 18px; }
body.vmb-refresh .offer-slider::-webkit-scrollbar { display: none; }
body.vmb-refresh .offer-nav { position: relative; width: 44px; height: 44px; border: 1px solid rgba(231, 236, 246, .88); border-radius: 50%; background: #fff; box-shadow: 0 2px 8px rgba(37, 55, 99, .06); cursor: pointer; color: #111a42; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; z-index: 5; }
body.vmb-refresh .offer-nav:hover { background: #111a42; color: #fff; box-shadow: 0 10px 24px rgba(42, 62, 98, .12); }
body.vmb-refresh .offer-nav:disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }
body.vmb-refresh .offer-card { flex: 0 0 calc((100% - (var(--offer-gap) * 2)) / 3); width: calc((100% - (var(--offer-gap) * 2)) / 3); max-width: calc((100% - (var(--offer-gap) * 2)) / 3); min-width: 0; height: 188px; border-radius: 18px; overflow: hidden; position: relative; isolation: isolate; scroll-snap-align: start; box-shadow: 0 18px 40px rgba(26,43,95,.16); cursor: pointer; transition: .25s; color: #fff; display: flex; align-items: stretch; padding: 22px 22px; }
body.vmb-refresh .offer-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(26,43,95,.22); }
body.vmb-refresh .offer-card.green { background: linear-gradient(125deg,#17a400 0%,#0ba53d 48%,#10c6a0 100%); }
body.vmb-refresh .offer-card.blue { background: linear-gradient(125deg,#2237d7 0%,#2359e8 48%,#64b8ff 100%); }
body.vmb-refresh .offer-card.deepblue { background: linear-gradient(125deg,#1426d9 0%,#0757ff 54%,#1685ff 100%); }
body.vmb-refresh .offer-content { position: relative; z-index: 2; width: 62%; height: 100%; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; padding-right: 6px; }
body.vmb-refresh .offer-content br { display: none; }
body.vmb-refresh .offer-brand { max-width: 170px; font-weight: 900; font-size: 16px; line-height: 1.15; margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body.vmb-refresh .offer-title { min-height: 60px; max-height: 60px; font-size: 28px; font-weight: 950; line-height: 1.08; margin: 0 0 10px; letter-spacing: 0; color: #fff !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; overflow-wrap: anywhere; }
body.vmb-refresh .offer-note { max-width: 150px; min-height: 34px; display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 7px 10px; font-size: 13px; line-height: 1.15; font-weight: 850; margin-bottom: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body.vmb-refresh .offer-btn { min-height: 38px; border: 0; border-radius: 999px; background: #ffd94d; color: #17305f; font-weight: 950; padding: 9px 20px; cursor: pointer; font-size: 14px; line-height: 1; margin-top: auto; display: inline-flex !important; align-items: center; justify-content: center; white-space: nowrap; }
body.vmb-refresh .offer-visual { position: absolute; right: 12px; bottom: 0; top: 10px; width: 44%; min-width: 140px; z-index: 1; border-radius: 18px; background-size: cover; background-position: center; clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%); }
body.vmb-refresh .offer-card.green .offer-visual,
body.vmb-refresh .offer-card.blue .offer-visual,
body.vmb-refresh .offer-card.deepblue .offer-visual { clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%); }
body.vmb-refresh .offer-badge { position: absolute; right: 20px; top: 16px; z-index: 3; max-width: 96px; background: #fff; color: #1357df; border-radius: 999px; padding: 7px 11px; font-size: 12px; line-height: 1; font-weight: 950; box-shadow: 0 8px 20px rgba(0,0,0,.12); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media(max-width:640px){
  body.vmb-refresh .offers-section .section-head { align-items: flex-start !important; }
  body.vmb-refresh .offer-slider { --offer-gap: 14px; gap: var(--offer-gap); overflow-x: hidden; padding-right: 0; }
  body.vmb-refresh .offer-card { flex-basis: 100%; width: 100%; max-width: 100%; height: 190px; padding: 20px; }
  body.vmb-refresh .offer-title { font-size: 23px; }
  body.vmb-refresh .offer-content { width: 68%; }
  body.vmb-refresh .offer-note { max-width: 132px; font-size: 12px; }
  body.vmb-refresh .offer-visual { width: 42%; min-width: 118px; right: 10px; }
  body.vmb-refresh .offer-nav { display: none; }
}

/* --- Tour Noi Bat (Highlight) Section --- */
body.vmb-refresh .tour-highlight-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.04); }
body.vmb-refresh .tour-highlight-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
body.vmb-refresh .tour-highlight-card .card-img-wrap { position: relative; height: 200px; padding: 12px; }
body.vmb-refresh .tour-highlight-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
body.vmb-refresh .tour-highlight-card .tour-badge { position: absolute; top: 22px; left: 22px; background: #fff; color: #111a42; font-weight: 800; font-size: 13px; padding: 6px 14px; border-radius: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 2; }
body.vmb-refresh .tour-highlight-card .card-body-content { padding: 15px 20px 20px; display: flex; flex-direction: column; flex-grow: 1; }
body.vmb-refresh .tour-highlight-card .tour-title { font-size: 20px; font-weight: 800; color: #212529; margin-bottom: 10px; }
body.vmb-refresh .tour-highlight-card .tour-locations { font-size: 14px; color: #88929b; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.5; }
body.vmb-refresh .tour-highlight-card .tour-departure { font-size: 14px; color: #88929b; margin-bottom: auto; }
body.vmb-refresh .tour-highlight-card .tour-price { font-size: 20px; font-weight: 800; color: #f73859; }
body.vmb-refresh .tour-highlight-card .tour-btn-arrow { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28); }

/* --- Feature Cards (Why choose us) --- */
body.vmb-refresh .feature-card { padding: 30px 24px; border-radius: 20px; color: #fff; text-align: left; display: flex; flex-direction: column; height: 100%; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
body.vmb-refresh .feature-card .ico { font-size: 48px; margin-bottom: 24px; }
body.vmb-refresh .feature-card .ico img { width: 56px; height: 56px; object-fit: contain; display: block; }
body.vmb-refresh .feature-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 12px; color: #fff !important; line-height: 1.3; }
body.vmb-refresh .feature-card .desc { font-size: 15px; opacity: 0.95; line-height: 1.5; margin-bottom: 0; font-weight: 600; }
body.vmb-refresh .feature-card.color-1 { background: linear-gradient(135deg, #fec13c, #f7a32b); }
body.vmb-refresh .feature-card.color-2 { background: linear-gradient(135deg, #fb4a76, #f0335e); }
body.vmb-refresh .feature-card.color-3 { background: linear-gradient(135deg, #427ceb, #2b5fdb); }
body.vmb-refresh .feature-card.color-4 { background: linear-gradient(135deg, #fdb534, #f09722); }
body.vmb-refresh .feature-card.color-5 { background: linear-gradient(135deg, #38b8d9, #209abb); }

/* --- Fasttrack section --- */
body.vmb-refresh .fasttrack-card { background: #fff; border: 1px solid #edf1f7; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
body.vmb-refresh .fasttrack-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
body.vmb-refresh .fasttrack-card.pink-card { background: linear-gradient(180deg, #fff 0%, #eef7ff 100%); border: 1px solid #dbeafe; }
body.vmb-refresh .fasttrack-card .ft-img-wrap { padding: 12px; height: 160px; }
body.vmb-refresh .fasttrack-card .ft-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
body.vmb-refresh .fasttrack-card .ft-content { padding: 10px 20px 25px; flex-grow: 1; }
body.vmb-refresh .fasttrack-card h3 { font-size: 18px; font-weight: 800; color: #111a42; margin-bottom: 12px; line-height: 1.4; }
body.vmb-refresh .fasttrack-card .desc { font-size: 14px; color: #88929b; line-height: 1.5; margin-bottom: 15px; }
body.vmb-refresh .fasttrack-card .price-link { font-size: 15px; font-weight: 800; color: var(--vmb-blue); cursor: pointer; }
body.vmb-refresh .fasttrack-card .price-link:hover { color: #1d4ed8; text-decoration: underline; }

/* --- Cheap flight section: match VMB-DM reference card rhythm --- */
body.vmb-refresh .cheap-flight {
  margin-top: 24px !important;
  padding-top: 40px !important;
  padding-bottom: 24px !important;
  overflow: hidden;
}

body.vmb-refresh .cheap-flight .d-flex.justify-content-between {
  margin-bottom: 24px !important;
}

body.vmb-refresh .cheap-flight .small-title {
  margin: 0 !important;
  color: #14204a !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
}

body.vmb-refresh .cheap-flight .small-title::before {
  margin-right: 10px !important;
  font-size: .82em !important;
}

body.vmb-refresh .cheap-flight .main-title {
  margin-top: 6px !important;
  color: var(--vmb-muted) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}

body.vmb-refresh .cheap-flight .flight-slider {
  margin-top: 0 !important;
}

body.vmb-refresh .cheap-flight .slick-list {
  margin: 0 !important;
  padding: 4px 0 22px !important;
  overflow: hidden !important;
}

body.vmb-refresh .cheap-flight .slick-slide {
  height: auto !important;
  padding: 0 !important;
}

body.vmb-refresh .cheap-flight .slick-slide > div {
  height: 100% !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card {
  width: calc(100% - 18px) !important;
  max-width: none !important;
  min-height: 0 !important;
  height: 100% !important;
  margin: 0 9px !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border: 1px solid #e5ebf6 !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: var(--vmb-shadow-md) !important;
  text-align: left !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card:hover {
  border-color: rgba(37, 99, 235, .22) !important;
  box-shadow: var(--vmb-shadow-xl) !important;
  transform: translateY(-6px) !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .image-link {
  display: block !important;
  overflow: hidden !important;
  border-radius: 18px 18px 0 0 !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .card-img {
  width: 100% !important;
  height: 140px !important;
  border-radius: 18px 18px 0 0 !important;
  object-fit: cover !important;
  transform: none !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .content {
  padding: 16px !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  min-width: 0 !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .discount-badge {
  top: 10px !important;
  left: 10px !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #60a5fa, #1d4ed8) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, .26) !important;
  transform: none !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .flight-route-link {
  display: block !important;
  color: inherit !important;
  text-decoration: none !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .flight-route-cities {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin-bottom: 4px !important;
  color: #68728e !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .flight-route-cities span {
  min-width: 0 !important;
  max-width: 48% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .flight-route-cities span:last-child {
  text-align: right !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .flight-route-airports {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  color: #12214c !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .flight-route-airports strong {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  max-width: none !important;
  overflow: visible !important;
  color: #12214c !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .route-arrow {
  flex: 0 0 auto !important;
  color: #12214c !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .content p.flight-date {
  margin: 12px 0 !important;
  color: #78839b !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .content .price {
  margin: auto 0 0 !important;
  color: #ff4264 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

body.vmb-refresh .cheap-flight .flight-slider .flight-card .content .btn {
  display: none !important;
}

body.vmb-refresh .cheap-flight .slick-arrow {
  top: 96px !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: var(--vmb-shadow-lg) !important;
  color: #14204a !important;
  cursor: pointer !important;
  z-index: 6 !important;
}

body.vmb-refresh .cheap-flight .slick-prev {
  left: -4px !important;
}

body.vmb-refresh .cheap-flight .slick-next {
  right: -4px !important;
}

@media (max-width: 576px) {
  body.vmb-refresh .cheap-flight {
    margin-top: 18px !important;
    padding-top: 24px !important;
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  body.vmb-refresh .cheap-flight .small-title {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }

  body.vmb-refresh .cheap-flight .main-title {
    max-width: none !important;
    font-size: 14px !important;
  }

  body.vmb-refresh .cheap-flight .slick-list {
    margin: 0 -18px 0 0 !important;
    padding: 4px 18px 20px 0 !important;
    overflow: visible !important;
  }

  body.vmb-refresh .cheap-flight .slick-slide {
    padding: 0 !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card {
    width: calc(100% - 14px) !important;
    margin: 0 7px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .card-img {
    height: 118px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .content {
    padding: 13px 14px 15px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .flight-route-cities {
    font-size: 11px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .flight-route-airports strong {
    font-size: 23px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .route-arrow {
    font-size: 14px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .content p.flight-date {
    font-size: 11px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .content .price {
    font-size: 18px !important;
  }

  body.vmb-refresh .cheap-flight .slick-arrow {
    top: 80px !important;
    width: 42px !important;
    height: 42px !important;
  }

  body.vmb-refresh .cheap-flight .slick-prev {
    left: 2px !important;
  }

  body.vmb-refresh .cheap-flight .slick-next {
    right: 2px !important;
  }
}

/* --- Unified section slider controls --- */
body.vmb-refresh .cheap-flight > .container > .d-flex:first-child,
body.vmb-refresh .offers-section .section-head,
body.vmb-refresh .tour-section > .d-flex:first-child,
body.vmb-refresh .fasttrack-section .fasttrack-header,
body.vmb-refresh .news-section .news-header,
body.vmb-refresh .why-choose-us > .mb-4 {
  position: relative !important;
  padding-top: 58px !important;
}

body.vmb-refresh .vmb-section-nav,
body.vmb-refresh .offer-nav-buttons,
body.vmb-refresh .tour-nav-buttons {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  z-index: 20 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.vmb-refresh .vmb-section-nav .slick-arrow,
body.vmb-refresh .vmb-section-nav .vmb-slider-arrow,
body.vmb-refresh .offer-nav-buttons .offer-nav,
body.vmb-refresh .tour-nav-buttons .offer-nav {
  position: static !important;
  inset: auto !important;
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(231, 236, 246, .92) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #111a42 !important;
  box-shadow: 0 10px 24px rgba(42, 62, 98, .10) !important;
  font-size: 16px !important;
  line-height: 1 !important;
  text-align: center !important;
  transform: none !important;
  cursor: pointer !important;
  opacity: 1 !important;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease !important;
}

body.vmb-refresh .vmb-section-nav .slick-arrow::before,
body.vmb-refresh .offer-nav-buttons .offer-nav::before,
body.vmb-refresh .tour-nav-buttons .offer-nav::before {
  display: none !important;
}

body.vmb-refresh .vmb-section-nav .slick-arrow i,
body.vmb-refresh .vmb-section-nav .vmb-slider-arrow i,
body.vmb-refresh .offer-nav-buttons .offer-nav i,
body.vmb-refresh .tour-nav-buttons .offer-nav i {
  margin: 0 !important;
  color: currentColor !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

body.vmb-refresh .vmb-section-nav .slick-arrow:hover,
body.vmb-refresh .vmb-section-nav .vmb-slider-arrow:hover,
body.vmb-refresh .offer-nav-buttons .offer-nav:hover,
body.vmb-refresh .tour-nav-buttons .offer-nav:hover {
  background: #fff !important;
  color: var(--vmb-blue) !important;
  box-shadow: 0 14px 30px rgba(42, 62, 98, .16) !important;
  transform: translateY(-1px) !important;
}

body.vmb-refresh .vmb-section-nav .slick-disabled,
body.vmb-refresh .vmb-section-nav .vmb-slider-arrow:disabled,
body.vmb-refresh .offer-nav-buttons .offer-nav.slick-disabled,
body.vmb-refresh .offer-nav-buttons .offer-nav:disabled,
body.vmb-refresh .tour-nav-buttons .offer-nav.slick-disabled,
body.vmb-refresh .tour-nav-buttons .offer-nav:disabled {
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  transform: none !important;
}

body.vmb-refresh .vmb-section-nav .slick-arrow,
body.vmb-refresh .vmb-section-nav .vmb-slider-arrow,
body.vmb-refresh .offer-nav-buttons .offer-nav,
body.vmb-refresh .tour-nav-buttons .offer-nav {
  cursor: pointer !important;
}

body.vmb-refresh .service-nav-buttons,
body.vmb-refresh .fasttrack-nav-buttons,
body.vmb-refresh .news-nav-buttons,
body.vmb-refresh .flight-nav-buttons {
  min-height: 44px !important;
}

body.vmb-refresh .service-hightlight-cards.slider .slick-list,
body.vmb-refresh .fasttrack-slider .slick-list,
body.vmb-refresh .tour-slider .slick-list,
body.vmb-refresh .news-cards-wrapper.slider .slick-list {
  overflow: hidden !important;
}

@media (max-width: 640px) {
  body.vmb-refresh .cheap-flight > .container > .d-flex:first-child,
  body.vmb-refresh .offers-section .section-head,
  body.vmb-refresh .tour-section > .d-flex:first-child,
  body.vmb-refresh .fasttrack-section .fasttrack-header,
  body.vmb-refresh .news-section .news-header,
  body.vmb-refresh .why-choose-us > .mb-4 {
    padding-top: 52px !important;
  }

  body.vmb-refresh .vmb-section-nav,
  body.vmb-refresh .offer-nav-buttons,
  body.vmb-refresh .tour-nav-buttons {
    right: auto !important;
    left: 0 !important;
    justify-content: flex-start !important;
    gap: 9px !important;
  }

  body.vmb-refresh .vmb-section-nav .slick-arrow,
  body.vmb-refresh .vmb-section-nav .vmb-slider-arrow,
  body.vmb-refresh .offer-nav-buttons .offer-nav,
  body.vmb-refresh .tour-nav-buttons .offer-nav {
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
  }

  body.vmb-refresh .vmb-section-nav .slick-arrow i,
  body.vmb-refresh .vmb-section-nav .vmb-slider-arrow i,
  body.vmb-refresh .offer-nav-buttons .offer-nav i,
  body.vmb-refresh .tour-nav-buttons .offer-nav i {
    font-size: 15px !important;
  }

  body.vmb-refresh .offers-section .section-head > .d-flex:last-child,
  body.vmb-refresh .tour-section > .d-flex:first-child > .d-flex:last-child {
    width: 100%;
    justify-content: flex-start !important;
  }
}

/* --- Tighten vertical rhythm between homepage sections --- */
body.vmb-refresh .offers-section,
body.vmb-refresh .cheap-flight,
body.vmb-refresh .tour-section,
body.vmb-refresh .why-choose-us,
body.vmb-refresh .promotion-banner,
body.vmb-refresh .fasttrack-section,
body.vmb-refresh .news-section,
body.vmb-refresh .faq-section {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}

body.vmb-refresh .cheap-flight {
  padding-top: 24px !important;
  padding-bottom: 12px !important;
}

body.vmb-refresh .service-hightlight-cards,
body.vmb-refresh .tour-slider,
body.vmb-refresh .fasttrack-slider,
body.vmb-refresh .news-cards-wrapper,
body.vmb-refresh .offer-slider {
  margin-top: 0 !important;
}

@media (max-width: 640px) {
  body.vmb-refresh .offers-section,
  body.vmb-refresh .cheap-flight,
  body.vmb-refresh .tour-section,
  body.vmb-refresh .why-choose-us,
  body.vmb-refresh .promotion-banner,
  body.vmb-refresh .fasttrack-section,
  body.vmb-refresh .news-section,
  body.vmb-refresh .faq-section {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }

  body.vmb-refresh .cheap-flight {
    padding-top: 16px !important;
    padding-bottom: 8px !important;
  }

  body.vmb-refresh .cheap-flight > .container > .d-flex:first-child,
  body.vmb-refresh .offers-section .section-head,
  body.vmb-refresh .tour-section > .d-flex:first-child,
  body.vmb-refresh .fasttrack-section .fasttrack-header,
  body.vmb-refresh .news-section .news-header,
  body.vmb-refresh .why-choose-us > .mb-4 {
    padding-top: 44px !important;
    margin-bottom: 14px !important;
  }

  body.vmb-refresh .vmb-section-nav .slick-arrow,
  body.vmb-refresh .vmb-section-nav .vmb-slider-arrow,
  body.vmb-refresh .offer-nav-buttons .offer-nav,
  body.vmb-refresh .tour-nav-buttons .offer-nav {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
  }
}

/* --- Keep view links and section nav buttons on one line --- */
body.vmb-refresh .cheap-flight > .container > .d-flex:first-child,
body.vmb-refresh .offers-section .section-head,
body.vmb-refresh .tour-section > .d-flex:first-child,
body.vmb-refresh .fasttrack-section .fasttrack-header,
body.vmb-refresh .news-section .news-header,
body.vmb-refresh .why-choose-us > .mb-4 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex-wrap: nowrap !important;
  padding-top: 0 !important;
  margin-bottom: 16px !important;
}

body.vmb-refresh .vmb-section-nav,
body.vmb-refresh .offer-nav-buttons,
body.vmb-refresh .tour-nav-buttons {
  position: static !important;
  inset: auto !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  min-height: 0 !important;
  margin: 0 !important;
}

body.vmb-refresh .cheap-flight > .container > .d-flex:first-child > .view,
body.vmb-refresh .fasttrack-section .fasttrack-header > .view {
  margin-left: auto !important;
  order: 2 !important;
}

body.vmb-refresh .cheap-flight .flight-nav-buttons,
body.vmb-refresh .fasttrack-section .fasttrack-nav-buttons,
body.vmb-refresh .news-section .news-nav-buttons,
body.vmb-refresh .why-choose-us .service-nav-buttons {
  order: 3 !important;
  margin-left: auto !important;
}

body.vmb-refresh .cheap-flight > .container > .d-flex:first-child > .view + .flight-nav-buttons,
body.vmb-refresh .fasttrack-section .fasttrack-header > .view + .fasttrack-nav-buttons {
  margin-left: 2px !important;
}

body.vmb-refresh .offers-section .section-head > .d-flex:last-child,
body.vmb-refresh .tour-section > .d-flex:first-child > .d-flex:last-child {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex: 0 0 auto !important;
  gap: 12px !important;
  width: auto !important;
  margin-left: auto !important;
}

body.vmb-refresh .offers-section .section-head .view,
body.vmb-refresh .tour-section .view {
  order: 1 !important;
}

body.vmb-refresh .offers-section .offer-nav-buttons,
body.vmb-refresh .tour-section .tour-nav-buttons {
  order: 2 !important;
}

@media (max-width: 640px) {
  body.vmb-refresh .cheap-flight > .container > .d-flex:first-child,
  body.vmb-refresh .offers-section .section-head,
  body.vmb-refresh .tour-section > .d-flex:first-child,
  body.vmb-refresh .fasttrack-section .fasttrack-header,
  body.vmb-refresh .news-section .news-header,
  body.vmb-refresh .why-choose-us > .mb-4 {
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 8px 12px !important;
    padding-top: 0 !important;
    margin-bottom: 12px !important;
  }

  body.vmb-refresh .cheap-flight > .container > .d-flex:first-child > div:first-child,
  body.vmb-refresh .offers-section .section-head > h2,
  body.vmb-refresh .tour-section > .d-flex:first-child > .d-flex:first-child,
  body.vmb-refresh .fasttrack-section .fasttrack-header > h2,
  body.vmb-refresh .news-section .news-header > .news-header-left,
  body.vmb-refresh .why-choose-us > .mb-4 > h2 {
    flex: 0 0 100% !important;
    width: 100% !important;
  }

  body.vmb-refresh .offers-section .section-head > .d-flex:last-child,
  body.vmb-refresh .tour-section > .d-flex:first-child > .d-flex:last-child {
    flex: 0 0 100% !important;
    width: 100% !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  body.vmb-refresh .cheap-flight > .container > .d-flex:first-child > .view,
  body.vmb-refresh .fasttrack-section .fasttrack-header > .view {
    margin-left: 0 !important;
  }

  body.vmb-refresh .cheap-flight .flight-nav-buttons,
  body.vmb-refresh .fasttrack-section .fasttrack-nav-buttons,
  body.vmb-refresh .news-section .news-nav-buttons,
  body.vmb-refresh .why-choose-us .service-nav-buttons {
    margin-left: 0 !important;
  }

  body.vmb-refresh .vmb-section-nav,
  body.vmb-refresh .offer-nav-buttons,
  body.vmb-refresh .tour-nav-buttons {
    gap: 8px !important;
  }
}

/* --- Mobile section headers: tighter title + controls --- */
@media (max-width: 640px) {
  body.vmb-refresh .cheap-flight > .container > .d-flex:first-child,
  body.vmb-refresh .offers-section .section-head,
  body.vmb-refresh .tour-section > .d-flex:first-child,
  body.vmb-refresh .fasttrack-section .fasttrack-header,
  body.vmb-refresh .news-section .news-header,
  body.vmb-refresh .why-choose-us > .mb-4 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    column-gap: 10px !important;
    row-gap: 4px !important;
  }

  body.vmb-refresh .cheap-flight .small-title,
  body.vmb-refresh .offers-section .title-tour,
  body.vmb-refresh .tour-section .title-tour,
  body.vmb-refresh .fasttrack-section .title-tour,
  body.vmb-refresh .news-section .title-tour,
  body.vmb-refresh .why-choose-us .title-tour {
    font-size: 21px !important;
    line-height: 1.22 !important;
    letter-spacing: 0 !important;
  }

  body.vmb-refresh .cheap-flight > .container > .d-flex:first-child > div:first-child,
  body.vmb-refresh .offers-section .section-head > h2,
  body.vmb-refresh .tour-section > .d-flex:first-child > .d-flex:first-child,
  body.vmb-refresh .fasttrack-section .fasttrack-header > h2,
  body.vmb-refresh .news-section .news-header > .news-header-left,
  body.vmb-refresh .why-choose-us > .mb-4 > h2 {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: auto !important;
    min-width: 0 !important;
  }

  body.vmb-refresh .cheap-flight .flight-nav-buttons,
  body.vmb-refresh .fasttrack-section .fasttrack-nav-buttons,
  body.vmb-refresh .news-section .news-nav-buttons,
  body.vmb-refresh .why-choose-us .service-nav-buttons {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
  }

  body.vmb-refresh .offers-section .section-head > .d-flex:last-child,
  body.vmb-refresh .tour-section > .d-flex:first-child > .d-flex:last-child {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  body.vmb-refresh .cheap-flight > .container > .d-flex:first-child > .view,
  body.vmb-refresh .fasttrack-section .fasttrack-header > .view {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: start !important;
  }

  body.vmb-refresh .offers-section .offer-nav-buttons,
  body.vmb-refresh .tour-section .tour-nav-buttons {
    margin-left: auto !important;
  }

  body.vmb-refresh .main-title {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }
}

/* --- Final section header alignment pass --- */
body.vmb-refresh .cheap-flight .view,
body.vmb-refresh .offers-section .view,
body.vmb-refresh .tour-section .view,
body.vmb-refresh .fasttrack-section .view {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  white-space: nowrap !important;
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  font-kerning: normal;
}

body.vmb-refresh .tour-section.my-5,
body.vmb-refresh .why-choose-us.mt-5,
body.vmb-refresh .fasttrack-section.mt-5,
body.vmb-refresh .news-section.mt-5 {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}

@media (max-width: 640px) {
  body.vmb-refresh .tour-section.my-5,
  body.vmb-refresh .why-choose-us.mt-5,
  body.vmb-refresh .fasttrack-section.mt-5,
  body.vmb-refresh .news-section.mt-5 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }

  body.vmb-refresh .cheap-flight .view,
  body.vmb-refresh .offers-section .view,
  body.vmb-refresh .tour-section .view,
  body.vmb-refresh .fasttrack-section .view {
    min-height: 38px !important;
  }
}

/* --- Fast Track card balance --- */
body.vmb-refresh .fasttrack-section {
  padding-top: 28px !important;
}

body.vmb-refresh .fasttrack-slider .slick-track {
  display: flex !important;
  align-items: stretch !important;
}

body.vmb-refresh .fasttrack-slider .slick-slide {
  height: auto !important;
}

body.vmb-refresh .fasttrack-slider .slick-slide > div,
body.vmb-refresh .fasttrack-slider .px-2 {
  display: flex !important;
  height: 100% !important;
}

body.vmb-refresh .fasttrack-slider .px-2 {
  margin-bottom: 0 !important;
}

body.vmb-refresh .fasttrack-slider .fasttrack-card {
  width: 100% !important;
  border-color: #edf1f7 !important;
  background: #fff !important;
  min-height: 338px !important;
  height: 338px !important;
  max-height: 338px !important;
  cursor: pointer !important;
}

body.vmb-refresh .fasttrack-slider .fasttrack-card.pink-card {
  border-color: #edf1f7 !important;
  background: #fff !important;
}

body.vmb-refresh .fasttrack-slider .fasttrack-card:hover,
body.vmb-refresh .fasttrack-slider .fasttrack-card.pink-card:hover {
  border-color: #bfdbfe !important;
  background: linear-gradient(180deg, #fff 0%, #eef7ff 100%) !important;
}

body.vmb-refresh .fasttrack-card .ft-content {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
}

body.vmb-refresh .fasttrack-card .price-link {
  margin-top: auto !important;
}

body.vmb-refresh .fasttrack-card,
body.vmb-refresh .fasttrack-card img,
body.vmb-refresh .fasttrack-card h3,
body.vmb-refresh .fasttrack-card .desc,
body.vmb-refresh .fasttrack-card .price-link {
  cursor: pointer !important;
}

@media (max-width: 640px) {
  body.vmb-refresh .fasttrack-section {
    padding-top: 20px !important;
  }

  body.vmb-refresh .fasttrack-slider .fasttrack-card {
    min-height: 322px !important;
    height: 322px !important;
    max-height: 322px !important;
  }
}

/* --- Serif font for CMS tour pages; React-synced widgets stay sans above --- */
body.vmb-refresh .tour-list-page,
body.vmb-refresh .tour-detail-page,
body.vmb-refresh .tour-list-page :where(h1, h2, h3, h4, h5, h6, p, span, a, button, input, select, textarea, label, small, strong, em, div),
body.vmb-refresh .tour-detail-page :where(h1, h2, h3, h4, h5, h6, p, span, a, button, input, select, textarea, label, small, strong, em, div) {
  font-family: var(--vmb-serif) !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  font-kerning: normal;
}

body.vmb-refresh .tour-list-page .fa,
body.vmb-refresh .tour-list-page .far,
body.vmb-refresh .tour-list-page .fas,
body.vmb-refresh .tour-list-page .fal,
body.vmb-refresh .tour-list-page .fad,
body.vmb-refresh .tour-detail-page .fa,
body.vmb-refresh .tour-detail-page .far,
body.vmb-refresh .tour-detail-page .fas,
body.vmb-refresh .tour-detail-page .fal,
body.vmb-refresh .tour-detail-page .fad {
  font-family: var(--fa-style-family, "Font Awesome 5 Pro") !important;
}

/* --- Blue palette enforcement for tour detail cache/inline styles --- */
body.vmb-refresh .tour-detail-page {
  --td-blue: #1d4ed8 !important;
  --td-blue-soft: #60a5fa !important;
}

body.vmb-refresh .tour-detail-page .eyebrow,
body.vmb-refresh .tour-detail-page .breadcrumb a,
body.vmb-refresh .tour-detail-page .time-marker,
body.vmb-refresh .tour-detail-page .tabs a.active,
body.vmb-refresh .tour-detail-page .tabs a:hover,
body.vmb-refresh .tour-detail-page .date-chip.active,
body.vmb-refresh .tour-detail-page .date-chip:hover,
body.vmb-refresh .tour-detail-page .day-tag {
  color: #1d4ed8 !important;
}

body.vmb-refresh .tour-detail-page .td-primary,
body.vmb-refresh .tour-detail-page .book-btn,
body.vmb-refresh .tour-detail-page .btn.btn-primary.promo-btn,
body.vmb-refresh .tour-detail-page #tdCmsContactBody .promo-btn,
body.vmb-refresh .tour-detail-page #tdCmsContactBody button[type="submit"],
body.vmb-refresh .td-cms-contact-modal .tour-cms-body .promo-btn,
body.vmb-refresh .td-cms-contact-modal .tour-cms-body button[type="submit"],
body.vmb-refresh .td-request-form .book-btn,
body.vmb-refresh .mobile-sticky-cta .book-btn {
  color: #fff !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
  background-image: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
  box-shadow: 0 12px 28px rgba(37, 99, 235, .24) !important;
}

body.vmb-refresh .tour-detail-page .td-primary:hover,
body.vmb-refresh .tour-detail-page .book-btn:hover,
body.vmb-refresh .tour-detail-page .btn.btn-primary.promo-btn:hover,
body.vmb-refresh .tour-detail-page #tdCmsContactBody .promo-btn:hover,
body.vmb-refresh .tour-detail-page #tdCmsContactBody button[type="submit"]:hover,
body.vmb-refresh .td-cms-contact-modal .tour-cms-body .promo-btn:hover,
body.vmb-refresh .td-cms-contact-modal .tour-cms-body button[type="submit"]:hover,
body.vmb-refresh .td-request-form .book-btn:hover,
body.vmb-refresh .mobile-sticky-cta .book-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
  background-image: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
  box-shadow: 0 16px 30px rgba(37, 99, 235, .3) !important;
}

body.vmb-refresh .tour-detail-page .booking-price,
body.vmb-refresh .tour-detail-page .date-chip.active,
body.vmb-refresh .tour-detail-page .date-chip:hover,
body.vmb-refresh .tour-detail-page .tabs a.active,
body.vmb-refresh .tour-detail-page .tabs a:hover,
body.vmb-refresh .tour-detail-page .day-tag {
  background: #eff6ff !important;
  background-image: none !important;
}

body.vmb-refresh .tour-detail-page .date-chip.active,
body.vmb-refresh .tour-detail-page .date-chip:hover,
body.vmb-refresh .tour-detail-page .day-card.open,
body.vmb-refresh .tour-detail-page .day-card:hover {
  border-color: #93c5fd !important;
}

body.vmb-refresh .tour-detail-page .timeline:before,
body.vmb-refresh .tour-detail-page .avatar {
  background: linear-gradient(135deg, #60a5fa 0%, #1d4ed8 100%) !important;
  background-image: linear-gradient(135deg, #60a5fa 0%, #1d4ed8 100%) !important;
}

body.vmb-refresh .tour-detail-page .day-card:before {
  border-color: #2563eb !important;
}

body.vmb-refresh .tour-detail-page .day-detail {
  cursor: pointer !important;
}

/* --- Tour detail image modal slider --- */
body.vmb-refresh .td-modal .td-gallery-viewer {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #eef4ff;
}

body.vmb-refresh .td-modal .modal-img {
  height: 420px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  transition: opacity .18s ease;
}

body.vmb-refresh .td-modal .td-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .94);
  color: #111a42;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .16);
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
  transition: .18s ease;
}

body.vmb-refresh .td-modal .td-gallery-nav:hover {
  background: #fff;
  color: #1d4ed8;
  transform: translateY(-50%) scale(1.04);
}

body.vmb-refresh .td-modal .td-gallery-nav.prev {
  left: 14px;
}

body.vmb-refresh .td-modal .td-gallery-nav.next {
  right: 14px;
}

body.vmb-refresh .td-modal .td-gallery-counter {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  min-width: 58px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 26, 66, .82);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

body.vmb-refresh .td-modal .td-gallery-thumbs {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 12px 2px 2px;
  scrollbar-width: none;
}

body.vmb-refresh .td-modal .td-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

body.vmb-refresh .td-modal .td-gallery-thumb {
  flex: 0 0 82px;
  width: 82px;
  height: 58px;
  border: 2px solid transparent;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: .58;
  transition: .18s ease;
}

body.vmb-refresh .td-modal .td-gallery-thumb:hover,
body.vmb-refresh .td-modal .td-gallery-thumb.active {
  border-color: #2563eb;
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 680px) {
  body.vmb-refresh .td-modal .modal-img {
    height: min(52vh, 360px);
  }

  body.vmb-refresh .td-modal .td-gallery-nav {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  body.vmb-refresh .td-modal .td-gallery-nav.prev {
    left: 10px;
  }

  body.vmb-refresh .td-modal .td-gallery-nav.next {
    right: 10px;
  }

  body.vmb-refresh .td-modal .td-gallery-thumb {
    flex-basis: 68px;
    width: 68px;
    height: 48px;
    border-radius: 10px;
  }
}

/* --- Compact CMS contact submit button on tour detail --- */
body.vmb-refresh .tour-detail-page #tdCmsContactBody .promo-btn,
body.vmb-refresh .tour-detail-page #tdCmsContactBody button[type="submit"] {
  width: auto !important;
  min-width: 142px !important;
  max-width: none !important;
  height: 42px !important;
  padding: 0 16px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body.vmb-refresh .td-cms-contact-modal .tour-cms-body .promo-btn,
body.vmb-refresh .td-cms-contact-modal .tour-cms-body button[type="submit"] {
  width: 100% !important;
  min-width: 0 !important;
  height: 42px !important;
  padding: 0 14px !important;
  font-size: 14px !important;
}

/* --- Shared homepage card hover language --- */
body.vmb-refresh .offer-card,
body.vmb-refresh .tour-highlight-card,
body.vmb-refresh .fasttrack-card,
body.vmb-refresh .flight-card,
body.vmb-refresh .booking-card {
  cursor: pointer !important;
}

body.vmb-refresh .tour-highlight-card,
body.vmb-refresh .fasttrack-card,
body.vmb-refresh .cheap-flight .flight-slider .flight-card,
body.vmb-refresh .news-cards-wrapper .booking-card {
  position: relative !important;
  overflow: hidden !important;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease,
    background-position .55s ease !important;
}

body.vmb-refresh .tour-highlight-card::before,
body.vmb-refresh .fasttrack-card::before,
body.vmb-refresh .cheap-flight .flight-slider .flight-card::before,
body.vmb-refresh .news-cards-wrapper .booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.38) 42%, transparent 70%);
  transform: translateX(-130%) skewX(-16deg);
  transition: transform .68s ease;
}

body.vmb-refresh .tour-highlight-card:hover,
body.vmb-refresh .fasttrack-card:hover,
body.vmb-refresh .cheap-flight .flight-slider .flight-card:hover,
body.vmb-refresh .news-cards-wrapper .booking-card:hover,
body.vmb-refresh .booking-card:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(37, 99, 235, .24) !important;
  box-shadow: 0 22px 48px rgba(17, 26, 66, .16) !important;
}

body.vmb-refresh .tour-highlight-card:hover::before,
body.vmb-refresh .fasttrack-card:hover::before,
body.vmb-refresh .cheap-flight .flight-slider .flight-card:hover::before,
body.vmb-refresh .news-cards-wrapper .booking-card:hover::before,
body.vmb-refresh .booking-card:hover::before {
  transform: translateX(130%) skewX(-16deg);
}

body.vmb-refresh .tour-highlight-card:active,
body.vmb-refresh .fasttrack-card:active,
body.vmb-refresh .cheap-flight .flight-slider .flight-card:active,
body.vmb-refresh .news-cards-wrapper .booking-card:active,
body.vmb-refresh .booking-card:active {
  transform: translateY(-3px) scale(.99) !important;
}

body.vmb-refresh .tour-highlight-card img,
body.vmb-refresh .fasttrack-card img,
body.vmb-refresh .cheap-flight .flight-slider .flight-card img,
body.vmb-refresh .news-cards-wrapper .booking-card img,
body.vmb-refresh .booking-card .castle-image img {
  transition: transform .55s ease, filter .55s ease !important;
}

body.vmb-refresh .tour-highlight-card:hover img,
body.vmb-refresh .fasttrack-card:hover img,
body.vmb-refresh .cheap-flight .flight-slider .flight-card:hover img,
body.vmb-refresh .news-cards-wrapper .booking-card:hover img,
body.vmb-refresh .booking-card:hover .castle-image img {
  transform: scale(1.055) !important;
  filter: saturate(1.08) contrast(1.03);
}

body.vmb-refresh .offer-card {
  background-size: 220% auto !important;
  background-position: left center !important;
  transition:
    background-position .55s ease,
    transform .3s ease,
    box-shadow .3s ease,
    filter .3s ease !important;
}

body.vmb-refresh .offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.28) 42%, transparent 70%);
  transform: translateX(-130%) skewX(-16deg);
  transition: transform .68s ease;
}

body.vmb-refresh .offer-card:hover {
  background-position: right center !important;
  transform: translateY(-7px) !important;
  filter: saturate(1.08);
  box-shadow: 0 24px 52px rgba(26,43,95,.24) !important;
}

body.vmb-refresh .offer-card:hover::before {
  transform: translateX(130%) skewX(-16deg);
}

body.vmb-refresh .offer-card:active {
  transform: translateY(-3px) scale(.99) !important;
}

body.vmb-refresh .offer-card.green {
  background-image: linear-gradient(125deg, #17a400 0%, #0ba53d 42%, #10c6a0 54%, #17a400 100%) !important;
}

body.vmb-refresh .offer-card.blue {
  background-image: linear-gradient(125deg, #2237d7 0%, #2359e8 42%, #64b8ff 54%, #2237d7 100%) !important;
}

body.vmb-refresh .offer-card.deepblue {
  background-image: linear-gradient(125deg, #1426d9 0%, #0757ff 42%, #1685ff 54%, #1426d9 100%) !important;
}

body.vmb-refresh .tour-highlight-card .card-link-wrapper,
body.vmb-refresh .fasttrack-card a,
body.vmb-refresh .fasttrack-card .price-link,
body.vmb-refresh .flight-card a,
body.vmb-refresh .flight-card .btn,
body.vmb-refresh .booking-card a,
body.vmb-refresh .booking-card .cta-button,
body.vmb-refresh .offer-card button,
body.vmb-refresh .offer-card a,
body.vmb-refresh .cheap-flight .slick-arrow,
body.vmb-refresh .fasttrack-section .fasttrack-nav-buttons button,
body.vmb-refresh .news-section .news-nav-buttons button,
body.vmb-refresh .tour-section .tour-nav-buttons button,
body.vmb-refresh .offer-nav-buttons button {
  cursor: pointer !important;
}

/* --- Gradient hover motion for "Vi sao chon chung toi" cards --- */
body.vmb-refresh .why-choose-us .feature-card {
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
  background-size: 220% auto !important;
  background-position: left center !important;
  transition:
    background-position .55s ease,
    transform .28s ease,
    box-shadow .28s ease,
    filter .28s ease !important;
}

body.vmb-refresh .why-choose-us .feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.34) 42%, transparent 70%);
  transform: translateX(-125%) skewX(-16deg);
  transition: transform .62s ease;
}

body.vmb-refresh .why-choose-us .feature-card > * {
  position: relative;
  z-index: 1;
}

body.vmb-refresh .why-choose-us .feature-card:hover {
  background-position: right center !important;
  transform: translateY(-7px) !important;
  filter: saturate(1.08);
  box-shadow: 0 20px 44px rgba(17, 26, 66, .18) !important;
}

body.vmb-refresh .why-choose-us .feature-card:hover::before {
  transform: translateX(125%) skewX(-16deg);
}

body.vmb-refresh .why-choose-us .feature-card:active {
  transform: translateY(-3px) scale(.99) !important;
}

body.vmb-refresh .why-choose-us .feature-card.color-1 {
  background-image: linear-gradient(135deg, #fec13c 0%, #f7a32b 45%, #ffd166 55%, #f7a32b 100%) !important;
}

body.vmb-refresh .why-choose-us .feature-card.color-2 {
  background-image: linear-gradient(135deg, #fb4a76 0%, #f0335e 45%, #ff7394 55%, #f0335e 100%) !important;
}

body.vmb-refresh .why-choose-us .feature-card.color-3 {
  background-image: linear-gradient(135deg, #427ceb 0%, #2b5fdb 45%, #5aa7ff 55%, #2b5fdb 100%) !important;
}

body.vmb-refresh .why-choose-us .feature-card.color-4 {
  background-image: linear-gradient(135deg, #fdb534 0%, #f09722 45%, #ffd166 55%, #f09722 100%) !important;
}

body.vmb-refresh .why-choose-us .feature-card.color-5 {
  background-image: linear-gradient(135deg, #38b8d9 0%, #209abb 45%, #67d7ee 55%, #209abb 100%) !important;
}

body.vmb-refresh .why-choose-us .service-nav-buttons button,
body.vmb-refresh .why-choose-us .service-nav-buttons .slick-arrow,
body.vmb-refresh .why-choose-us .service-nav-buttons .vmb-slider-arrow {
  cursor: pointer !important;
}

/* --- Equal height cards for homepage featured tours --- */
body.vmb-refresh .tour-slider:not(.slick-initialized) {
  display: flex !important;
  align-items: stretch !important;
}

body.vmb-refresh .tour-slider .slick-track {
  display: flex !important;
  align-items: stretch !important;
}

body.vmb-refresh .tour-slider .slick-slide {
  height: auto !important;
}

body.vmb-refresh .tour-slider .slick-slide > div,
body.vmb-refresh .tour-slider > .px-2 {
  display: flex !important;
  height: 100% !important;
}

body.vmb-refresh .tour-slider .px-2.mb-4 {
  display: flex !important;
  height: auto !important;
  margin-bottom: 0 !important;
}

body.vmb-refresh .tour-highlight-card {
  width: 100% !important;
  min-height: 398px !important;
}

body.vmb-refresh .tour-highlight-card .card-link-wrapper {
  height: 100% !important;
  min-height: 398px !important;
}

body.vmb-refresh .tour-highlight-card .card-img-wrap {
  flex: 0 0 188px !important;
  height: 188px !important;
  min-height: 188px !important;
}

body.vmb-refresh .tour-highlight-card .tour-badge {
  max-width: calc(100% - 44px) !important;
  white-space: normal !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden !important;
  line-height: 1.2 !important;
}

body.vmb-refresh .tour-highlight-card .card-body-content {
  min-height: 210px !important;
  padding: 18px 20px 20px !important;
}

body.vmb-refresh .tour-highlight-card .tour-title {
  min-height: 58px !important;
  margin-bottom: 8px !important;
  line-height: 1.28 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden !important;
}

body.vmb-refresh .tour-highlight-card .tour-locations {
  min-height: 42px !important;
  margin-bottom: 8px !important;
}

body.vmb-refresh .tour-highlight-card .tour-departure {
  min-height: 22px !important;
  margin-bottom: 16px !important;
}

body.vmb-refresh .tour-highlight-card .card-body-content > .d-flex:last-child {
  margin-top: auto !important;
  min-height: 44px !important;
}

@media (max-width: 640px) {
  body.vmb-refresh .tour-highlight-card,
  body.vmb-refresh .tour-highlight-card .card-link-wrapper {
    min-height: 376px !important;
  }

  body.vmb-refresh .tour-highlight-card .card-img-wrap {
    flex-basis: 172px !important;
    height: 172px !important;
    min-height: 172px !important;
  }

  body.vmb-refresh .tour-highlight-card .card-body-content {
    min-height: 204px !important;
    padding: 16px 16px 18px !important;
  }

  body.vmb-refresh .tour-highlight-card .tour-title {
    min-height: 50px !important;
    font-size: 18px !important;
  }
}

/* --- Tour listing/detail hover motion --- */
body.vmb-refresh .tour-list-page .tour-card,
body.vmb-refresh .tour-list-page .tour-row,
body.vmb-refresh .tour-detail-page .overview-item,
body.vmb-refresh .tour-detail-page .include-item,
body.vmb-refresh .tour-detail-page .suggest-card {
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease,
    filter .3s ease !important;
}

body.vmb-refresh .tour-list-page .tour-card::before,
body.vmb-refresh .tour-list-page .tour-row::before,
body.vmb-refresh .tour-detail-page .overview-item::before,
body.vmb-refresh .tour-detail-page .include-item::before,
body.vmb-refresh .tour-detail-page .suggest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.46) 45%, transparent 68%);
  transform: translateX(-130%) skewX(-16deg);
  transition: transform .68s ease;
}

body.vmb-refresh .tour-list-page .tour-card:hover,
body.vmb-refresh .tour-list-page .tour-card.vmb-touch-active,
body.vmb-refresh .tour-list-page .tour-row:hover,
body.vmb-refresh .tour-list-page .tour-row.vmb-touch-active,
body.vmb-refresh .tour-detail-page .overview-item:hover,
body.vmb-refresh .tour-detail-page .overview-item.vmb-touch-active,
body.vmb-refresh .tour-detail-page .include-item:hover,
body.vmb-refresh .tour-detail-page .include-item.vmb-touch-active,
body.vmb-refresh .tour-detail-page .suggest-card:hover,
body.vmb-refresh .tour-detail-page .suggest-card.vmb-touch-active {
  border-color: rgba(37, 99, 235, .28) !important;
  box-shadow: 0 24px 52px rgba(17, 26, 66, .16) !important;
  transform: translateY(-7px) !important;
  filter: saturate(1.04);
}

body.vmb-refresh .tour-list-page .tour-card:hover::before,
body.vmb-refresh .tour-list-page .tour-card.vmb-touch-active::before,
body.vmb-refresh .tour-list-page .tour-row:hover::before,
body.vmb-refresh .tour-list-page .tour-row.vmb-touch-active::before,
body.vmb-refresh .tour-detail-page .overview-item:hover::before,
body.vmb-refresh .tour-detail-page .overview-item.vmb-touch-active::before,
body.vmb-refresh .tour-detail-page .include-item:hover::before,
body.vmb-refresh .tour-detail-page .include-item.vmb-touch-active::before,
body.vmb-refresh .tour-detail-page .suggest-card:hover::before,
body.vmb-refresh .tour-detail-page .suggest-card.vmb-touch-active::before {
  transform: translateX(130%) skewX(-16deg);
}

body.vmb-refresh .tour-list-page .tour-card:active,
body.vmb-refresh .tour-list-page .tour-row:active,
body.vmb-refresh .tour-detail-page .overview-item:active,
body.vmb-refresh .tour-detail-page .include-item:active,
body.vmb-refresh .tour-detail-page .suggest-card:active {
  transform: translateY(-3px) scale(.99) !important;
}

body.vmb-refresh .tour-list-page .tour-img,
body.vmb-refresh .tour-list-page .row-img {
  transform: scale(1);
  transform-origin: center;
  transition: transform .48s ease, filter .48s ease !important;
}

body.vmb-refresh .tour-list-page .tour-card:hover .tour-img,
body.vmb-refresh .tour-list-page .tour-card.vmb-touch-active .tour-img,
body.vmb-refresh .tour-list-page .tour-row:hover .row-img,
body.vmb-refresh .tour-list-page .tour-row.vmb-touch-active .row-img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

body.vmb-refresh .tour-detail-page .gallery-img {
  cursor: pointer !important;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease,
    filter .3s ease !important;
}

body.vmb-refresh .tour-detail-page .gallery-img:hover,
body.vmb-refresh .tour-detail-page .gallery-img.vmb-touch-active {
  border-color: rgba(37, 99, 235, .25) !important;
  box-shadow: 0 24px 52px rgba(17, 26, 66, .16) !important;
  transform: translateY(-7px) scale(1.012) !important;
  filter: saturate(1.08);
}

body.vmb-refresh .tour-detail-page .day-card {
  cursor: pointer !important;
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease !important;
}

body.vmb-refresh .tour-detail-page .day-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, rgba(37,99,235,.08) 45%, transparent 72%);
  opacity: 0;
  transform: translateX(-26%);
  transition: opacity .28s ease, transform .45s ease;
}

body.vmb-refresh .tour-detail-page .day-card > * {
  position: relative;
  z-index: 1;
}

body.vmb-refresh .tour-detail-page .day-card:hover,
body.vmb-refresh .tour-detail-page .day-card.vmb-touch-active {
  background: linear-gradient(180deg, #fff, #f8fbff) !important;
  box-shadow: 0 18px 40px rgba(37, 99, 235, .12) !important;
  transform: translateY(-3px) !important;
}

body.vmb-refresh .tour-detail-page .day-card:hover::after,
body.vmb-refresh .tour-detail-page .day-card.vmb-touch-active::after {
  opacity: 1;
  transform: translateX(16%);
}

body.vmb-refresh .tour-list-page .searchbtn,
body.vmb-refresh .tour-list-page .book,
body.vmb-refresh .tour-list-page .fav,
body.vmb-refresh .tour-list-page .ghost-btn,
body.vmb-refresh .tour-list-page .chip,
body.vmb-refresh .tour-list-page .page-btn,
body.vmb-refresh .tour-detail-page .td-primary,
body.vmb-refresh .tour-detail-page .book-btn,
body.vmb-refresh .tour-detail-page .date-chip,
body.vmb-refresh .tour-detail-page .tabs a,
body.vmb-refresh .tour-detail-page .td-modal .modal-close,
body.vmb-refresh .tour-detail-page .td-gallery-nav,
body.vmb-refresh .td-cms-contact-modal .tour-cms-body button {
  cursor: pointer !important;
}

body.vmb-refresh .tour-list-page .searchbtn,
body.vmb-refresh .tour-list-page .book,
body.vmb-refresh .tour-detail-page .td-primary,
body.vmb-refresh .tour-detail-page .book-btn {
  background-size: 220% auto !important;
  background-position: left center !important;
  transition:
    background-position .55s ease,
    transform .24s ease,
    box-shadow .24s ease !important;
}

body.vmb-refresh .tour-list-page .searchbtn:hover,
body.vmb-refresh .tour-list-page .searchbtn.vmb-touch-active,
body.vmb-refresh .tour-list-page .book:hover,
body.vmb-refresh .tour-list-page .book.vmb-touch-active,
body.vmb-refresh .tour-detail-page .td-primary:hover,
body.vmb-refresh .tour-detail-page .td-primary.vmb-touch-active,
body.vmb-refresh .tour-detail-page .book-btn:hover,
body.vmb-refresh .tour-detail-page .book-btn.vmb-touch-active {
  background-position: right center !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 18px 34px rgba(37, 99, 235, .28) !important;
}

@media (max-width: 640px) {
  body.vmb-refresh .tour-list-page .tour-card:hover,
  body.vmb-refresh .tour-list-page .tour-card.vmb-touch-active,
  body.vmb-refresh .tour-list-page .tour-row:hover,
  body.vmb-refresh .tour-list-page .tour-row.vmb-touch-active,
  body.vmb-refresh .tour-detail-page .overview-item:hover,
  body.vmb-refresh .tour-detail-page .overview-item.vmb-touch-active,
  body.vmb-refresh .tour-detail-page .include-item:hover,
  body.vmb-refresh .tour-detail-page .include-item.vmb-touch-active,
  body.vmb-refresh .tour-detail-page .suggest-card:hover,
  body.vmb-refresh .tour-detail-page .suggest-card.vmb-touch-active,
  body.vmb-refresh .tour-detail-page .gallery-img:hover,
  body.vmb-refresh .tour-detail-page .gallery-img.vmb-touch-active {
    transform: translateY(-4px) !important;
  }

  body.vmb-refresh .tour-detail-page .day-card:hover,
  body.vmb-refresh .tour-detail-page .day-card.vmb-touch-active {
    transform: translateY(-2px) !important;
  }
}

/* --- Mobile two-up sliders for cheap flights and why choose us --- */
@media (max-width: 640px) {
  body.vmb-refresh .cheap-flight .slick-list,
  body.vmb-refresh .service-hightlight-cards.slider .slick-list {
    overflow: hidden !important;
  }

  body.vmb-refresh .cheap-flight .slick-track,
  body.vmb-refresh .service-hightlight-cards.slider .slick-track {
    display: flex !important;
    align-items: stretch !important;
  }

  body.vmb-refresh .cheap-flight .slick-slide,
  body.vmb-refresh .service-hightlight-cards.slider .slick-slide {
    height: auto !important;
  }

  body.vmb-refresh .cheap-flight .slick-slide > div,
  body.vmb-refresh .service-hightlight-cards.slider .slick-slide > div {
    height: 100% !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card {
    width: calc(100% - 10px) !important;
    min-height: 238px !important;
    margin: 0 5px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .card-img {
    height: 94px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .content {
    padding: 10px 10px 12px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .flight-route-cities {
    gap: 6px !important;
    font-size: 10px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .flight-route-airports {
    gap: 5px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .flight-route-airports strong {
    font-size: 20px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .route-arrow {
    font-size: 12px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .content p.flight-date {
    margin: 9px 0 !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .content .price {
    font-size: 15px !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card .discount-badge {
    top: 8px !important;
    left: 8px !important;
    padding: 5px 9px !important;
    font-size: 10px !important;
  }

  body.vmb-refresh .why-choose-us .slick-slide {
    padding: 0 5px !important;
  }

  body.vmb-refresh .why-choose-us .feature-card {
    min-height: 210px !important;
    padding: 18px 14px !important;
    border-radius: 16px !important;
  }

  body.vmb-refresh .why-choose-us .feature-card .ico {
    margin-bottom: 14px !important;
    font-size: 32px !important;
  }

  body.vmb-refresh .why-choose-us .feature-card h3 {
    margin-bottom: 8px !important;
    font-size: 16px !important;
    line-height: 1.22 !important;
  }

  body.vmb-refresh .why-choose-us .feature-card .desc {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }
}

/* --- Center tour gallery modal on mobile --- */
@media (max-width: 680px) {
  body.vmb-refresh #tdModalBackdrop.td-modal {
    inset: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    width: 100vw !important;
    min-width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    padding: 14px !important;
  }

  body.vmb-refresh #tdModalBackdrop.td-modal.open {
    display: flex !important;
  }

  body.vmb-refresh #tdModalBackdrop.td-modal .modal {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    box-sizing: border-box !important;
    width: min(100%, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px) !important;
    max-height: calc(100dvh - 28px) !important;
    margin: 0 auto !important;
    overflow: auto !important;
  }

  body.vmb-refresh #tdModalBackdrop .td-gallery-viewer,
  body.vmb-refresh #tdModalBackdrop .modal-img {
    width: 100% !important;
  }

  body.vmb-refresh #tdModalBackdrop .modal-img {
    height: min(50dvh, 330px) !important;
  }

  body.vmb-refresh #tdModalBackdrop .td-gallery-thumbs {
    justify-content: flex-start !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

/* --- Tour detail gallery image motion --- */
body.vmb-refresh .tour-detail-page .gallery-img {
  isolation: isolate !important;
  will-change: transform, filter, box-shadow;
}

body.vmb-refresh .tour-detail-page .gallery-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.48) 43%, transparent 68%);
  opacity: 0;
  transform: translateX(-135%) skewX(-16deg);
  transition: opacity .28s ease, transform .7s ease;
}

body.vmb-refresh .tour-detail-page .gallery-img::after {
  z-index: 1 !important;
  background:
    linear-gradient(180deg, rgba(15,23,42,0) 42%, rgba(15,23,42,.34) 100%) !important;
  transition: background .28s ease, opacity .28s ease !important;
}

body.vmb-refresh .tour-detail-page .gallery-img:hover,
body.vmb-refresh .tour-detail-page .gallery-img.vmb-touch-active {
  border-color: rgba(37, 99, 235, .34) !important;
  box-shadow: 0 28px 58px rgba(17, 26, 66, .2) !important;
  filter: saturate(1.12) contrast(1.04);
  transform: translateY(-8px) scale(1.018) !important;
}

body.vmb-refresh .tour-detail-page .gallery-img:hover::before,
body.vmb-refresh .tour-detail-page .gallery-img.vmb-touch-active::before {
  opacity: 1;
  transform: translateX(135%) skewX(-16deg);
}

body.vmb-refresh .tour-detail-page .gallery-img:hover::after,
body.vmb-refresh .tour-detail-page .gallery-img.vmb-touch-active::after {
  background:
    linear-gradient(180deg, rgba(37,99,235,.03) 20%, rgba(15,23,42,.42) 100%) !important;
}

body.vmb-refresh .tour-detail-page .more-badge {
  z-index: 4 !important;
  transition:
    background .24s ease,
    color .24s ease,
    transform .24s ease,
    box-shadow .24s ease !important;
}

body.vmb-refresh .tour-detail-page .gallery-img:hover .more-badge,
body.vmb-refresh .tour-detail-page .gallery-img.vmb-touch-active .more-badge {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(37, 99, 235, .28) !important;
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  body.vmb-refresh .offers-section {
    margin-top: 8px !important;
    margin-bottom: 14px !important;
  }

  body.vmb-refresh .offers-section .section-head {
    padding-top: 0 !important;
    margin-bottom: 8px !important;
  }

  body.vmb-refresh .offer-slider-wrap {
    overflow: hidden !important;
  }

  body.vmb-refresh .offer-slider {
    --offer-gap: 0px;
    gap: 0 !important;
    overflow-x: hidden !important;
    padding: 0 0 12px !important;
  }

  body.vmb-refresh .offer-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.vmb-refresh .cheap-flight {
    margin-top: 10px !important;
    margin-bottom: 14px !important;
    padding-top: 10px !important;
  }

  body.vmb-refresh .cheap-flight > .container > .d-flex:first-child {
    padding-top: 0 !important;
    margin-bottom: 8px !important;
  }

  body.vmb-refresh .cheap-flight .slick-list {
    margin: 0 !important;
    padding: 0 0 14px !important;
    overflow: hidden !important;
  }

  body.vmb-refresh .cheap-flight .slick-slide {
    padding: 0 !important;
  }

  body.vmb-refresh .cheap-flight .flight-slider .flight-card {
    width: 100% !important;
    margin: 0 !important;
  }

  body.vmb-refresh .news-section {
    margin-top: 10px !important;
    margin-bottom: 14px !important;
  }

  body.vmb-refresh .news-section .news-header {
    padding-top: 0 !important;
    margin-bottom: 8px !important;
  }

  body.vmb-refresh .news-cards-wrapper.slider .slick-list {
    margin: 0 !important;
    padding: 0 0 14px !important;
    overflow: hidden !important;
  }

  body.vmb-refresh .news-cards-wrapper.slider .slick-slide {
    padding: 0 !important;
  }

  body.vmb-refresh .news-cards-wrapper.slider .slick-slide > div,
  body.vmb-refresh .news-cards-wrapper.slider .px-2 {
    width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body.vmb-refresh .news-cards-wrapper.slider .booking-card {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 12px !important;
  }

  body.vmb-refresh .news-cards-wrapper.slider .booking-card .card-image,
  body.vmb-refresh .news-cards-wrapper.slider .booking-card .castle-image {
    width: 100% !important;
    height: 128px !important;
  }

  body.vmb-refresh .news-cards-wrapper.slider .booking-card .card-content {
    width: 100% !important;
    padding-top: 10px !important;
  }

  body.vmb-refresh .news-cards-wrapper.slider .booking-card .title {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }

  body.vmb-refresh .news-cards-wrapper.slider .booking-card .description {
    font-size: 12px !important;
    -webkit-line-clamp: 2;
  }
}

/* Keep the second hero line on a single row for desktop/tablet. */
body.vmb-refresh .banner-slider .title-content .banner-item__content {
  grid-template-columns: minmax(0, 1fr) auto !important;
  column-gap: 20px !important;
}

body.vmb-refresh .banner-slider .title-content p {
  max-width: 100% !important;
  white-space: nowrap;
  font-size: 15px !important;
}

@media (max-width: 992px) {
  body.vmb-refresh .banner-slider .title-content p {
    max-width: 100% !important;
    white-space: nowrap;
    font-size: 13px !important;
  }
}

@media (max-width: 575px) {
  body.vmb-refresh .banner-slider .title-content p {
    white-space: normal;
    font-size: 12px !important;
  }
}
