:root {
  --blue: #006be0;
  --blue-600: #0064d2;
  --blue-soft: #1383ff;
  --blue-100: #e8f1fc;
  --blue-50: #e6f0fc;
  --orange: #ff5e1f;
  --navy: #0d182b;
  --navy-deep: #0a2b50;
  --muted: #5a6b85;
  --disabled: #8d97a7;
  --stroke: #e4e9f0;
  --bg-soft: #f6fafb;
  --white: #fff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 2px 8px rgba(26, 43, 73, 0.15);
  --shadow-search: 0 18px 48px rgba(26, 43, 73, 0.16);
  --container: 1232px;
  --font: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container-hl {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}

/* ?? Shared ?? */
.txt {
  margin: 0;
}

.section-title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  color: var(--navy);
}

.section-title--inter {
  font-family: Inter, var(--font);
}

.section-sub {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--muted);
}

.link-more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--blue);
}

.link-more img {
  width: 16px;
  height: 16px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  color: inherit;
}

.btn--primary {
  height: 40px;
  border-radius: 80px;
  background: var(--blue-soft);
  color: var(--white);
}

.btn--primary.btn--lg {
  height: 48px;
  border-radius: 48px;
  background: var(--blue);
}

.btn--orange {
  height: 56px;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(255, 94, 31, 0.32);
}

.btn--orange .icon {
  width: 20px;
  height: 20px;
}

.btn--outline {
  height: 48px;
  border-radius: 48px;
  border: 1px solid var(--blue);
  background: var(--white);
  color: var(--blue);
}

.btn--white {
  height: 48px;
  border-radius: 48px;
  background: var(--white);
  color: var(--blue);
}

.btn--glass {
  gap: 4px;
  height: 48px;
  padding: 0 16px;
  border-radius: 30px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
}

.btn--glass img {
  width: 16px;
  height: 16px;
}

.btn--book {
  height: 48px;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 8px rgba(0, 107, 224, 0.25);
}

.btn--lift {
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.32);
}

.tag {
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--white);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
}

.pill-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.pill-tab {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 36px;
  padding: 0 24px;
  border-radius: 40px;
  background: #f8f8f8;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.pill-tab:hover {
  background: #E6F0FC;
}

.pill-tab--active {
  background: var(--blue);
  color: var(--white);
}

.nav-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 76, 159, 0.15);
  border: 0;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-circle img {
  width: 16px;
  height: 16px;
}

.nav-circle--next img {
  transform: scaleX(-1);
}

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

.dots span,
.dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: #b0d1f5;
  opacity: 1;
  cursor: pointer;
  flex: 0 0 10px;
}

.dots .active,
.dots .is-active {
  background: var(--blue);
}

.dots--light span,
.dots--light button {
  background: rgba(255, 255, 255, 0.45);
}

.dots--light .active,
.dots--light .is-active {
  background: var(--white);
}

.cruise-owl .owl-stage-outer,
.hotel-owl .owl-stage-outer,
.review-owl .owl-stage-outer {
  margin: -4px -4px 0;
  padding: 4px 4px 16px;
}

.cruise-owl .owl-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.cruise-owl button.owl-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b0d1f5;
  opacity: 0.3;
}

.cruise-owl .owl-dot span {
  display: none;
}

.cruise-owl button.owl-dot.active {
  background: var(--blue);
  opacity: 1;
}

.cruise-owl .product-card,
.hotel-owl .product-card,
.review-owl .review-card {
  height: 100%;
}

.combo-owl {
  position: relative;
}

.combo-owl .owl-item {
  display: flex;
}

.combo-owl .combo {
  width: 100%;
}

.combo-owl .owl-dots {
  position: absolute;
  left: 50%;
  right: 0;
  bottom: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 2;
  margin: 0;
}

.combo-owl button.owl-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.combo-owl .owl-dot span {
  display: none;
}

.combo-owl button.owl-dot.active {
  background: var(--white);
}

.price {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--orange);
}

.price--lg {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.price--old {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--disabled);
  text-decoration: line-through;
}

.price-label {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: var(--muted);
}

.icon,
.icon--xs,
.icon--sm,
.icon--md,
.icon--lg,
.icon--xl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon {
  width: 20px !important;
  height: 20px !important;
}

.icon--xs {
  width: 12px !important;
  height: 12px !important;
}

.icon--sm {
  width: 16px !important;
  height: 16px !important;
}

.icon--md {
  width: 24px !important;
  height: 24px !important;
}

.icon--lg {
  width: 32px !important;
  height: 32px !important;
}

.icon--xl {
  width: 56px !important;
  height: 56px !important;
}

.icon img,
.icon--xs img,
.icon--sm img,
.icon--md img,
.icon--lg img,
.icon--xl img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.icon>i,
.icon--xs>i,
.icon--sm>i,
.icon--md>i,
.icon--lg>i,
.icon--xl>i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: inherit;
  line-height: 1;
}

.icon>.fa-clock,
.icon--xs>.fa-clock,
.icon--sm>.fa-clock,
.icon--md>.fa-clock,
.icon--lg>.fa-clock,
.icon--xl>.fa-clock {
  color: var(--blue);
}

/* ?? Header / Hero (Figma 19:543 ? 1920?688) ?? */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.site-header--solid {
  position: relative;
  z-index: 99;
  background: var(--white);
  box-shadow: none;
}

.site-header--solid .site-header__top {
  border-bottom-color: #f0f0f0;
}

.site-header--solid .header-meta,
.site-header--solid .lang {
  color: var(--navy);
}

.site-header--solid .nav-menu a {
  color: #2b374d;
}

.site-header--solid .header-meta__divider {
  background: var(--stroke);
}

.site-header--solid .nav-menu a.is-active,
.site-header--solid .nav-menu>li>a:hover,
.site-header--solid .nav-menu__item--has-sub:hover>a,
.site-header--solid .nav-menu__item--has-sub:focus-within>a {
  color: var(--blue);
}

.site-header--solid .nav-menu a.is-active::after,
.site-header--solid .nav-menu>li>a:hover::after,
.site-header--solid .nav-menu__item--has-sub:hover>a::after,
.site-header--solid .nav-menu__item--has-sub:focus-within>a::after {
  transform: scaleX(0);
}

.site-header--solid .header-search {
  border-color: var(--stroke);
  background: transparent;
}

.site-header--solid .header-search input {
  color: var(--blue);
}

.site-header--solid .header-search input::placeholder {
  color: var(--blue);
  opacity: 0.6;
}

/* Figma 19:543 ? frame 1920?754; ?nh 1920?622; search-card ?? ??y */
.hero {
  position: relative;
  background: #052844;
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(5, 40, 68, 0.95) 0%, rgba(5, 40, 68, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
  box-sizing: border-box;
}

.site-header__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header__top-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  min-height: 64px;
  padding-block: 8px;
}

.logo {
  width: 215px;
  flex-shrink: 0;
}

.header-meta {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.header-meta__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-meta__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.35);
}

.lang {
  position: relative;
  font-weight: 600;
}

.lang__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  line-height: 1;
}

.lang .icon--xs {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.lang.show .icon--xs {
  transform: rotate(-90deg);
}

.lang__menu {
  --bs-dropdown-min-width: 120px;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 6px;
  --bs-dropdown-border-radius: 12px;
  --bs-dropdown-border-color: var(--stroke);
  --bs-dropdown-link-color: var(--navy);
  --bs-dropdown-link-hover-bg: #f3f7fc;
  --bs-dropdown-link-active-color: var(--blue);
  --bs-dropdown-link-active-bg: #eef5ff;
  margin-top: 8px !important;
  box-shadow: 0 8px 24px rgba(13, 24, 43, 0.12);
}

.lang__menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.site-header__nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header__nav-inner {
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.header-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-toggle>span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header:not(.site-header--solid) .header-toggle {
  color: var(--blue);
}

.site-header--solid .header-toggle {
  color: var(--navy);
}

.site-header.is-open .header-toggle>span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .header-toggle>span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .header-toggle>span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-backdrop {
  display: none;
}

.header-nav__cta {
  display: none;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding-bottom: 4px;
}

.nav-menu>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 3px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-menu>li>a.is-active::after,
.nav-menu>li>a:hover::after,
.nav-menu__item--has-sub:hover>a::after,
.nav-menu__item--has-sub:focus-within>a::after {
  transform: scaleX(1);
}

.nav-menu .icon--xs {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.nav-menu__item {
  position: relative;
}

.nav-menu__item--has-sub:hover>a .icon--xs,
.nav-menu__item--has-sub:focus-within>a .icon--xs {
  transform: rotate(-90deg);
}

.nav-sub {
  overflow: hidden;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 180px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(13, 24, 43, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.nav-menu__item--has-sub::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
}

.nav-menu__item--has-sub:hover .nav-sub,
.nav-menu__item--has-sub:focus-within .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu .nav-sub a {
  display: block;
  padding: 10px 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  white-space: nowrap;
}

.nav-menu .nav-sub a:hover {
  background: #f3f7fc;
  color: var(--blue);
}

.nav-menu .nav-sub a::after {
  display: none;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 211px;
  height: 32px;
  padding: 0 16px;
  border-radius: 49px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

.header-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  line-height: 22px;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.header-search button {
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero__main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* ch?a ch? header overlay (~116px) */
  padding-top: 116px;
  padding-bottom: 16px;
}

.hero__content {
  text-align: center;
  color: var(--white);
  max-width: 740px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero__content h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
}

.hero__content .txt {
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.hero__search {
  position: relative;
  z-index: 3;
  /* Figma: search-card ??y frame, n?a d??i tr?n sang block k? */
  margin-bottom: -72px;
}

.search-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-search);
  /* overflow: hidden; */
}

.search-card__tabs {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid #e7f5fe;
  overflow: hidden;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.search-tab {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 24px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 23px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.search-tab:hover {
  background: var(--blue-100);
  color: var(--blue-600);
  text-decoration: none;
}

.search-tab:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--blue-600);
}

.search-tab--active {
  background: var(--blue-100);
  color: var(--blue-600);
}

.search-tab--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--blue-600);
}

.search-card__body {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  padding: 16px;
}

.field {
  flex: 1;
  min-width: 0;
  height: 56px;
  padding: 0 12px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  margin: 0;
  cursor: text;
}

.field>span:first-child {
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  color: var(--muted);
}

.field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  color: #1a2b49;
}

.field-guests {
  position: relative;
  flex: 1;
  min-width: 0;
}

.field-guests__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1a2b49;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
}

.field-guests__btn .icon--xs {
  flex-shrink: 0;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.field-guests.is-open .field-guests__btn .icon--xs {
  transform: rotate(-90deg);
}

.field-guests__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -40px;
  right: -12px;
  z-index: 30;
  display: none;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(13, 24, 43, 0.12);
}

.field-guests.is-open .field-guests__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.field-guests__name {
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  white-space: nowrap;
}

.field-guests .qty {
  width: 120px;
  flex-shrink: 0;
}

/* ?? Experience ?? */
.block {
  padding: 64px 0 72px;
}

/* Chỉ bù padding khi search-card đè xuống block kế tiếp */
.hero:has(.hero__search)+.block {
  padding-top: 136px;
}

.block--soft {
  background: var(--bg-soft);
}

.block--tight {
  padding-bottom: 64px;
}

.block--related {
  padding: 64px 0;
  background: #b0d1f524;
}

.block--related .section-title {
  margin-bottom: 32px;
  font-family: Inter, var(--font);
}

.block--hotels {
  padding-bottom: 56px;
}

.block--hotels .container-hl {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.experience-card {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(26, 43, 73, 0.15);
}

.experience-card__media {
  position: relative;
  color: var(--white);
}

.experience-card__media>img {
  width: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
}

.experience-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 43, 73, 0) 47%, #1a2b49 100%);
  pointer-events: none;
}

.experience-card__body {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 32px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.experience-card__copy {
  max-width: 600px;
}

.experience-card__copy h3 {
  margin: 16px 0 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
}

.experience-card__copy .txt {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
}

.experience-nav {
  border: 0;
  background: var(--white);
}

.experience-nav .nav-item {
  border-right: 1px solid var(--stroke);
}

.experience-nav .nav-item:last-child {
  border-right: 0;
}

.experience-nav .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 72px;
  margin-bottom: 0;
  padding: 16px 20px;
  border: 0;
  border-radius: 0;
  background: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--muted);
  text-align: left;
}

.experience-nav .nav-link .icon--lg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-left: auto;
}

.experience-nav .nav-link .icon--lg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-nav .nav-link.active {
  background: var(--blue-100);
  color: var(--blue);
}

.experience-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--blue-600);
}

/* ?? Product card (cruise / hotel) ?? */
.product-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 4px 15px 0 rgba(26, 43, 73, 0.20);
}

.product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-card__link>img {
  width: 100%;
}

.product-card__thumb {
  position: relative;
  overflow: hidden;
}

.product-card__thumb>img {
  width: 100%;
  display: block;
}

.product-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 28px;
  padding: 0 12px;
  background: var(--white);
  backdrop-filter: blur(2px);
  border-bottom-right-radius: 8px;
  color: #003b7b;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
}

.product-card__top {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.product-card__duration {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.product-card__title {
  margin: 0;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--navy);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 22px;
}

.product-card__rating strong {
  color: var(--blue);
  font-weight: 700;
}

.product-card__rating span {
  color: var(--muted);
  font-weight: 500;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stroke);
  flex-shrink: 0;
}

.product-card__note {
  margin: 0;
  font-size: 12px;
  font-style: italic;
  line-height: 20px;
  color: var(--muted);
}

.carousel-wrap {
  position: relative;
}

.carousel-wrap .nav-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-wrap .nav-circle--prev {
  left: -16px;
}

.carousel-wrap .nav-circle--next {
  right: -16px;
}

/* ?? Combo ?? */
.combo {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 8px 28px rgba(26, 43, 73, 0.1);
  color: var(--white);
}

.combo__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  background: var(--navy-deep) url("../images/combo-map.png") left center / cover no-repeat;
}

.combo__pill {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-weight: 600;
}

.combo__content h2 {
  margin: 20px 0 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
}

.combo__meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
  width: 100%;
}

.combo__price {
  margin: 0;
  flex-shrink: 0;
}

.combo__price .price--old {
  color: rgba(255, 255, 255, 0.6);
}

.combo__price .price-label {
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.feat-list img {
  width: 22px !important;
  height: 22px !important;
}

.combo__cta {
  margin-top: 20px;
  flex-shrink: 0;
  text-decoration: none;
}

.combo__media {
  flex: 1;
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.combo__media>img {
  width: 100%;
  height: 100%;
  flex: 1;
}

.combo__media .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
}

/* ?? About (Figma 74:897) ?? */
.block--about {
  padding-top: 64px;
  padding-bottom: 65px;
}

.about-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.about-content {
  gap: 32px;
  padding-left: 16px;
}

.about-content .section-title {
  max-width: 574px;
  font-family: "Plus Jakarta Sans", var(--font);
  font-weight: 700;
}

.about-img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.quote-bar {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.quote-bar__bar {
  width: 4px;
  border-radius: 8px;
  background: var(--blue);
  flex-shrink: 0;
}

.quote-bar>.txt {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #232c3c;
  text-align: justify;
}

.quote-bar__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.quote-bar__text .txt {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #232c3c;
  text-align: justify;
}

/* ?? About page (Gi?i thi?u) ?? */
.hero--about .hero__image {
  height: 500px;
  object-fit: cover;
}

.hero--about .hero__content-wrap {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero--about .hero__main {
  flex: 0 0 auto;
  width: 100%;
  max-width: 740px;
  margin: 0;
  justify-content: center;
}

.hero--about .hero__content {
  width: 100%;
}

.hero--about .hero__content h1 {
  margin: 0;
}

.hero--about .hero__content .txt {
  display: none;
}

.hero--blog .hero__content .txt {
  display: block;
}

.block--about-page {
  padding: 64px 0;
  background: var(--white);
}

.about-intro__title {
  margin-bottom: 32px;
  max-width: 724px;
  font-family: Inter, var(--font);
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
}

.about-intro__aside {
  width: 412px;
  max-width: 100%;
}

.about-panorama {
  display: block;
  width: 100%;
  margin-top: 32px;
  border-radius: 16px;
}

.about-exp {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.about-exp__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.about-exp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 40, 68, 0.55);
  pointer-events: none;
  z-index: 1;
}

.about-exp__inner {
  position: relative;
  z-index: 2;
  padding: 64px 16px;
  text-align: center;
}

.about-exp__inner>h2 {
  margin: 0;
  font-family: Inter, var(--font);
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
}

.about-exp__lead {
  max-width: 1014px;
  margin: 16px auto 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.about-exp__grid {
  margin-top: 64px;
}

.about-exp__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  height: 100%;
  padding: 16px 0;
}

.about-exp__item+.about-exp__item,
.about-exp__grid>[class*="col-"]+[class*="col-"] .about-exp__item {
  border-left: 0;
}

.about-exp__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.about-exp__icon img {
  width: 80px;
  height: 80px;
}

.about-exp__grid>[class*="col-"]:nth-child(2) .about-exp__icon img,
.about-exp__grid>[class*="col-"]:nth-child(3) .about-exp__icon img {
  filter: brightness(0) invert(1);
}

.about-exp__item h3 {
  margin: 0;
  font-family: Inter, var(--font);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.about-exp__item .txt {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.rating-card {
  width: 226px;
  min-height: 344px;
  background: var(--white);
  border: 1px solid var(--blue-50);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-sizing: border-box;
}

.rating-card__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.rating-card__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.rating-card__score img {
  width: 43px;
  height: 65px;
  display: block;
}

.rating-card__laurel-flip {
  transform: scaleX(-1);
}

.rating-card__score strong {
  font-family: "Plus Jakarta Sans", var(--font);
  font-size: 52px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: -2.08px;
  color: var(--orange);
}

.stars {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.stars img {
  width: 16px !important;
  height: 16px;
}

.rating-card .txt {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #2b374d;
}

.rating-card .btn {
  width: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.feature-item+.feature-item {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--stroke);
}

.feature-item .icon--xl {
  width: 56px !important;
  height: 56px !important;
}

.feature-item h4 {
  margin: 0;
  font-family: "Plus Jakarta Sans", var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #002d5e;
}

.feature-item .txt {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #2b374d;
}

/* ?? Reviews ?? */
.review-card {
  height: 100%;
  padding: 24px;
  border-radius: var(--radius);
  border: 0.5px solid #3686f7;
  box-shadow: 0 2px 4px rgba(6, 21, 86, 0.15);
  background: linear-gradient(126deg, #FFE29D -11.56%, #FFF 16.68%, #FFF 73.72%, #D6E7FF 134.39%);
}

.review-card__user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-card__user img {
  width: 40px !important;
  height: 40px;
  border-radius: 40px;
}

.review-card__user strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.review-card__user span {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: var(--muted);
}

.review-card .stars {
  margin-top: 16px;
  justify-content: flex-start;
}

.review-card__text {
  margin: 16px 0 0;
  height: 144px;
  /* 6 dòng × 24px */
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 16px;
  line-height: 24px;
  color: var(--navy);
  /* Windows vẫn vẽ mũi tên native → ẩn hẳn thanh, vẫn scroll bằng chuột/touch */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.review-card__text::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.stats {
  margin-top: 40px;
  --bs-gutter-x: 0;
}

.stat {
  padding: 0 44px;
  border-right: 1px solid var(--stroke);
}

.stats>.col-md-4:last-child .stat {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: "Plus Jakarta Sans", var(--font);
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  color: #1a85c7;
}

.stat span {
  display: block;
  margin-top: 10px;
  font-family: "Plus Jakarta Sans", var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: var(--navy);
}

.partners-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 64px 0 40px;
}

.partners-label::before,
.partners-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--stroke);
}

.partners-label span {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.partner-owl .partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.partner-owl .partner-item img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  display: block;
}

/* ?? Footer ?? */
.site-footer {
  background: #021526 url("../images/footer-bg.png") center / cover no-repeat;
  color: var(--white);
  padding: 64px 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  width: 287px;
  max-width: 100%;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.footer-contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-contact__item img {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.footer-contact__item small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  opacity: 0.6;
}

.footer-contact__item .txt {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.footer-title {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  font-size: 16px;
  line-height: 24px;
}

.newsletter .txt {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.6;
}

.newsletter-form {
  margin-top: 16px;
  display: flex;
  align-items: center;
  height: 48px;
  padding: 4px 4px 4px 24px;
  border-radius: 64px;
  border: 1px solid #85b0de;
  background: var(--white);
}

.newsletter-form input {
  flex: 1;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--muted);
  background: transparent;
  min-width: 0;
}

.newsletter-form button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 49px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.newsletter-form button img {
  width: 20px;
  height: 20px;
}

.social {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
}

.social img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.site-footer__bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.6;
}

/* ?? List tour ?? */
.list-toolbar {
  margin-bottom: 24px;
}

.list-toolbar__actions {
  flex-shrink: 0;
}

.list-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
}

.list-filter__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.list-toolbar__divider {
  width: 1px;
  height: 24px;
  background: var(--stroke);
}

.list-sort__label {
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--navy);
}

.list-sort {
  appearance: none;
  outline: none;
  border: none;
  height: 36px;
  padding: 4px 36px 4px 16px;
  border: 0;
  border-radius: 32px;
  background-color: #d1f0ff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 12 12' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.97 3.97a.75.75 0 0 1 1.06 0L6 6.94l2.97-2.97a.75.75 0 1 1 1.06 1.06l-3.5 3.5a.75.75 0 0 1-1.06 0l-3.5-3.5a.75.75 0 0 1 0-1.06Z' fill='%23004c9f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  color: #004c9f;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
}



.list-grid {
  margin-bottom: 24px;
}

.list-grid--combo {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 24px;
}

.product-card--combo {
  border-radius: 10px;
}

.product-card--combo .product-card__link>img {
  width: 100%;
  height: auto;
  aspect-ratio: 380 / 264;
  object-fit: cover;
}

.product-card--combo .product-card__body {
  padding: 16px;
  gap: 8px;
}

.detail-head__info--combo {
  max-width: 672px;
}

.detail-head__info--combo h1 {
  margin-bottom: 0;
}

.combo-include {
  margin: 0;
  padding-left: 24px;
  color: #0d182b;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.combo-include li+li {
  margin-top: 8px;
}

.combo-detail__hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid var(--stroke);
}

.combo-detail__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
}

.combo-detail__contact span {
  color: var(--muted);
}

.combo-detail__contact a {
  color: var(--blue);
}

.combo-detail__cta {
  display: inline-flex;
  width: auto;
}

.related-combo-owl,
.related-blog-owl {
  margin-top: 32px;
}

.related-combo-owl .owl-stage-outer,
.related-blog-owl .owl-stage-outer {
  padding-bottom: 4px;
}

.related-combo-owl .owl-dots,
.related-blog-owl .owl-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.related-combo-owl button.owl-dot,
.related-blog-owl button.owl-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d9e2ec;
}

.related-combo-owl button.owl-dot.active,
.related-blog-owl button.owl-dot.active {
  background: var(--blue);
}

.related-combo-owl .product-card,
.related-blog-owl .blog-card {
  height: 100%;
}

.pager {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  max-width: 100%;
  min-width: 0;
}

.pager .pagination {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0;
  max-width: 100%;
  padding: 4px 2px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pager .pagination::-webkit-scrollbar {
  display: none;
}

.pager .page-item {
  margin: 0;
  flex-shrink: 0;
}

.pager .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 100px !important;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 76, 159, 0.15);
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.pager .page-link:hover,
.pager .page-link:focus {
  background: var(--blue-50);
  color: var(--blue);
  box-shadow: 0 0 10px rgba(0, 76, 159, 0.15);
}

.pager .page-item.active .page-link {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 10px rgba(0, 76, 159, 0.15);
}

.pager .page-link img {
  width: 16px;
  height: 16px;
}

.pager .page-link--next img {
  transform: scaleX(-1);
}

/* ?? Filter modal ?? */
.filter-modal {
  max-width: 688px;
}

.filter-modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
}

.filter-modal__title {
  font-family: Inter, var(--font);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--navy);
}

.filter-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #d1f0ff;
  cursor: pointer;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.filter-group__title {
  margin: 0;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--navy);
}

.filter-chip {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 40px;
  background: #f8f8f8;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
}

.filter-chip.is-active {
  background: #d1f0ff;
  border-color: var(--blue);
  color: var(--blue);
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding-bottom: 16px;
}

.price-range__rail {
  position: relative;
  height: 24px;
  margin: 0 2px;
}

.price-range__rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 8px;
  background: var(--blue-50);
}

.price-range__fill {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 8px;
  background: var(--blue);
  z-index: 1;
  pointer-events: none;
}

.price-range__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 24px;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  outline: 0;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  z-index: 2;
}

.price-range__input:focus {
  outline: 0;
}

.price-range__input.is-top {
  z-index: 4;
}

.price-range__input::-webkit-slider-runnable-track {
  height: 8px;
  border: 0;
  background: transparent;
}

.price-range__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 24px;
  height: 24px;
  margin-top: -8px;
  border: 1px solid #0061cc;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.price-range__input::-moz-range-track {
  height: 8px;
  border: 0;
  background: transparent;
}

.price-range__input::-moz-range-thumb {
  pointer-events: auto;
  width: 24px;
  height: 24px;
  border: 1px solid #0061cc;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.price-range__input::-moz-range-progress {
  background: transparent;
}

.price-range__label {
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: var(--navy);
  white-space: nowrap;
}

.filter-modal__footer {
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--stroke);
}

.filter-modal__clear {
  padding: 4px 8px;
  border: 0;
  background: transparent;
  color: var(--orange);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: underline;
  cursor: pointer;
}

.filter-modal__apply {
  width: 146px;
  background: var(--blue);
}

/* ?? Tour detail ?? */
.breadcrumb-bar {
  padding: 15px 0 0;
  background: var(--white);
}

.breadcrumb-bar .breadcrumb {
  --bs-breadcrumb-divider-color: var(--stroke);
  --bs-breadcrumb-item-active-color: #232c3c;
  --bs-breadcrumb-font-size: 14px;
  margin-bottom: 0;
  padding: 0;
  flex-wrap: nowrap;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  font-family: Inter, var(--font);
  line-height: 22px;
}

.breadcrumb-bar .breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb-bar .breadcrumb-item {
  flex-shrink: 0;
  white-space: nowrap;
}

.breadcrumb-bar .breadcrumb-item,
.breadcrumb-bar .breadcrumb-item a {
  color: #232c3c;
}

.breadcrumb-bar .breadcrumb-item a:hover {
  color: var(--blue);
}

.detail-head {
  margin-bottom: 24px;
}

.detail-head__book {
  flex-shrink: 0;
}

.detail-head h1 {
  margin: 0 0 8px;
  font-family: Inter, var(--font);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.detail-stars {
  display: flex;
  gap: 4px;
}

.detail-stars img {
  width: 14px;
  height: 14px;
}

.detail-loc {
  font-size: 14px;
  line-height: 22px;
}

.detail-price .txt {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.detail-gallery {
  margin-bottom: 24px;
}

.detail-gallery__main {
  position: relative;
  height: 376px;
  border-radius: 8px;
  overflow: hidden;
}

.detail-gallery__main>img,
.detail-gallery__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.detail-gallery__main,
.detail-gallery__thumb {
  cursor: pointer;
}

.detail-gallery__thumb {
  height: 184px;
}

/* ?? Gallery lightbox ?? */
.gallery-modal {
  --gallery-slide-h: min(62vh, 560px);
}

.gallery-modal .modal-dialog {
  width: min(1080px, calc(100vw - 2rem));
  max-width: 1080px;
  margin: 1rem auto;
}

.gallery-modal__content {
  position: relative;
  width: 100%;
  padding: 48px 24px 20px;
  border: 0;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(13, 24, 43, 0.18);
  overflow: hidden;
}

.gallery-modal__content:not(.is-ready) .gallery-main-owl,
.gallery-modal__content:not(.is-ready) .gallery-thumbs-owl {
  opacity: 0;
}

.gallery-modal__content.is-ready .gallery-main-owl,
.gallery-modal__content.is-ready .gallery-thumbs-owl {
  opacity: 1;
}

.gallery-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #e8eef5;
  border-radius: 50%;
  background: #f5f7fa;
  cursor: pointer;
}

.gallery-modal__close img {
  width: 20px;
  height: 20px;
}

.gallery-modal__stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: var(--gallery-slide-h);
}

.gallery-main-owl,
.gallery-thumbs-owl {
  display: block !important;
  width: 100%;
}

.gallery-main-owl:not(.owl-loaded) {
  height: var(--gallery-slide-h);
  min-height: var(--gallery-slide-h);
}

/* before owl init: only first slide visible, avoid side-by-side strip */
.gallery-main-owl:not(.owl-loaded)>* {
  display: none;
}

.gallery-main-owl:not(.owl-loaded)>*:first-child {
  display: block;
  height: var(--gallery-slide-h);
}

.gallery-thumbs-owl:not(.owl-loaded)>* {
  display: none;
}

.gallery-main-owl .owl-stage-outer,
.gallery-thumbs-owl .owl-stage-outer {
  width: 100%;
  overflow: hidden;
}

.gallery-main-owl .owl-item {
  float: left;
}

.gallery-main-owl .owl-item,
.gallery-main-owl .owl-stage-outer {
  height: var(--gallery-slide-h);
}

.gallery-modal__slide {
  display: block;
  width: 100%;
  height: var(--gallery-slide-h);
  background: #f5f7fa;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-modal__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-modal__nav img {
  width: 16px;
  height: 16px;
}

.gallery-modal__nav--prev {
  left: 12px;
}

.gallery-modal__nav--next {
  right: 12px;
}

.gallery-modal__nav--next img {
  transform: scaleX(-1);
}

.gallery-modal__meta {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.gallery-modal__count {
  color: #5a6b85;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.gallery-thumbs-owl {
  margin-top: 12px;
}

.gallery-thumbs-owl .owl-item {
  cursor: pointer;
}

.gallery-modal__thumb {
  height: 56px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.55;
}

.gallery-thumbs-owl .owl-item.current .gallery-modal__thumb,
.gallery-modal__thumb.is-active {
  border-color: var(--blue);
  opacity: 1;
}

.gallery-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-gallery__badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 0;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
}

/* ?? Book request modal ?? */
.book-modal {
  max-width: 688px;
}

.book-modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
}

.book-modal__title {
  font-family: Inter, var(--font);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--navy);
}

.book-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #d1f0ff;
  cursor: pointer;
  flex-shrink: 0;
}

.book-modal__close img {
  width: 20px;
  height: 20px;
}

.book-modal__hr {
  margin: 0;
  border: 0;
  border-top: 1px solid #e4e9f0;
  width: 100%;
}

.book-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.book-modal__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.book-modal__label {
  margin: 0;
  color: #262626;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.book-modal__tour {
  display: flex;
  align-items: center;
  gap: 16px;
}

.book-modal__tour>img {
  width: 166px;
  height: 105px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.book-modal__tour h4 {
  margin: 0 0 8px;
  color: #232c3c;
  font-family: Inter, var(--font);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.book-modal__duration {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.book-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  width: 100%;
}

.book-field>span:first-child {
  padding: 0 2px;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.book-field em {
  color: #d00000;
  font-style: normal;
}

.book-field__control {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  background: var(--white);
}

.book-field__control input,
.book-field__control select {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.book-field__control input::placeholder {
  color: var(--disabled);
}

.book-field__control select {
  appearance: none;
  cursor: pointer;
}

.book-field__control select:invalid,
.book-field__control select option[value=""] {
  color: var(--navy);
}

.book-field__chevron {
  flex-shrink: 0;
  transform: rotate(90deg);
  pointer-events: none;
}

.book-field__icon {
  opacity: 0.5;
  flex-shrink: 0;
}

.book-field textarea {
  width: 100%;
  min-height: 88px;
  padding: 8px 12px;
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  outline: 0;
  resize: vertical;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.book-field textarea::placeholder {
  color: var(--disabled);
}

.book-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 4px 12px;
  border-radius: 12px;
  background: #f7f7f7;
}

.book-qty button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.book-qty button img {
  width: 32px;
  height: 32px;
  display: block;
}

.book-qty span {
  flex: 1;
  text-align: center;
  color: #121212;
  font-family: Inter, var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.book-modal__footer {
  display: flex;
  justify-content: center;
}

.book-modal__footer .btn {
  min-width: 200px;
  padding: 0 24px;
}

/* Hotel book modal summary (Figma 258:10248) */
.book-modal__hotel {
  margin: 0;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.book-modal__hotel-img {
  width: 100%;
  border-radius: 8px;
}

.book-modal__dates {
  min-height: 48px;
}

.book-modal__date {
  flex: 1;
  min-width: 0;
}

.book-modal__date span {
  display: block;
  color: #262626;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.book-modal__date strong {
  display: block;
  color: #1b1b1b;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.book-modal__date-arrow {
  flex-shrink: 0;
  width: 16px;
}

.book-modal__date-arrow img {
  width: 12px;
  height: 9px;
}

.book-modal__hr--dash {
  border-top-style: dashed;
}

.book-modal__room-label {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.book-modal__room {
  width: 100%;
  padding: 8px 16px;
  border-radius: 12px;
  background: #e8f1fc;
}

.book-modal__room strong {
  display: block;
  margin: 0;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.book-modal__room>span {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.book-modal__guests {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--blue);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.book-modal__guests>span+span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  margin-right: 6px;
  vertical-align: middle;
  background: var(--blue);
}

.book-modal__total {
  gap: 16px;
}

.book-modal__total>span {
  color: var(--muted);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.book-modal__total strong {
  color: var(--orange);
  font-family: Inter, var(--font);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.detail-tabs {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #f5f7fa 0%, rgba(214, 241, 255, 0.2) 100%);
  border-radius: 16px 16px 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-radius 0.2s ease;
}

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

.detail-tabs.is-stuck {
  border-radius: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 74, 132, 0.12);
}

.detail-tabs .nav {
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  border: 0;
}

.detail-tabs .nav-link {
  padding: 12px 24px;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  color: var(--muted);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  white-space: nowrap;
}

.detail-tabs .nav-link:hover {
  color: var(--blue);
  border-bottom-color: transparent;
}

.detail-tabs .nav-link.active {
  color: var(--blue);
  background: transparent;
  border-bottom-color: var(--blue);
}

.detail-section {
  margin-top: 24px;
}

.detail-section>h2 {
  margin-bottom: 16px;
}

.detail-main {
  min-width: 0;
  border-radius: 0 0 16px 16px;
  background: #FFF;
  box-shadow: 0 0 6px 0 rgba(0, 74, 132, 0.15);
}

.detail-sticky {
  min-width: 0;
}

.detail-sticky > .detail-tabs {
  background: #fff;
  background-image: linear-gradient(90deg, #f5f7fa 0%, rgba(214, 241, 255, 0.2) 100%);
  box-shadow: 0 0 6px 0 rgba(0, 74, 132, 0.15);
}

.detail-sticky > .detail-main {
  box-shadow: 0 4px 6px -2px rgba(0, 74, 132, 0.12);
}

.detail-aside {
  width: 307px;
  max-width: 100%;
}

.detail-panel {
  padding: 16px 24px 24px;
  background: var(--white);
  border-radius: 0 0 12px 12px;
}

.detail-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 0 3px rgba(0, 74, 132, 0.15);
}

.detail-card h2,
.detail-panel h2,
.detail-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #1b1b1b;
}

.detail-card__hr {
  margin: 0;
  border: 0;
  border-top: 1px dashed #d9d9d9;
}

.detail-panel>.txt,
.detail-box>.txt {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 24px;
}

.detail-highlight strong {
  color: #f7a823;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}

.detail-highlight ul {
  margin: 8px 0 0;
  padding-left: 24px;
}

.detail-highlight li {
  font-size: 16px;
  line-height: 24px;
}

.room-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #f5f7fa;
}

.room-search {
  margin: 0;
  padding: 8px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: none;
  flex-wrap: nowrap;
}

.room-search .field {
  min-width: 0;
}

.btn-room-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 56px;
  border: 0;
  border-radius: 12px;
  background: #f16722;
  cursor: pointer;
}

.room-suggest {
  margin: 0;
  color: var(--blue);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.room-card {
  display: flex;
  align-items: stretch;
  margin: 0;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.room-card__media {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
  cursor: pointer;
}

.room-card__media>img:first-child {
  width: 100%;
  height: 100%;
  min-height: 198px;
  object-fit: cover;
  display: block;
}

.room-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border-right: 1px solid #f0f0f0;
}

.room-card__body h3 {
  margin: 0;
  color: #0d182b;
  font-family: Inter, var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.room-card__body>.txt,
.room-card__specs>.txt {
  margin: 0;
  color: #1b1b1b;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.room-card__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.room-card__divider {
  margin: 0;
  border: 0;
  border-top: 1px dashed #d9d9d9;
}

.room-perk {
  color: #2aa662 !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.room-card__action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  width: 250px;
  flex-shrink: 0;
  padding: 16px;
}

.room-card__action .text-end {
  width: 100%;
}

.room-card__action .price--old {
  font-size: 16px;
  line-height: 24px;
  color: #5a6b85;
}

.room-card__action .price {
  color: var(--orange);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.room-card__action .price-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #5a6b85;
}

.room-card__action .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border-radius: 64px;
  background: var(--blue);
  color: var(--white);
  padding: 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 4px;
  border: 1px solid #ececec;
  border-radius: 32px;
  background: #f7f7f7;
}

.qty button {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.qty button img {
  width: 24px;
  height: 24px;
  display: block;
}

.qty span {
  flex: 1;
  text-align: center;
  color: #121212;
  font-family: Inter, var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.itinerary-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--stroke);
  font-size: 14px;
}

.itinerary-tools button {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.itinerary-tools [data-expand-all] .icon--sm {
  transform: rotate(90deg);
}

.itinerary-tools [data-collapse-all] .icon--sm {
  transform: rotate(-90deg);
}

.itinerary-tools .icon--sm img {
  filter: invert(32%) sepia(98%) saturate(1800%) hue-rotate(195deg);
}

.itinerary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.itinerary__day {
  margin: 0;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.itinerary__day[open] {
  border-color: #b0d1f5;
}

.itinerary__day summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  cursor: pointer;
  list-style: none;
  background: var(--white);
}

.itinerary__day[open] summary {
  background: linear-gradient(90deg, #eaf6fe 0%, #fff 100%);
}

.itinerary__day summary::-webkit-details-marker {
  display: none;
}

.itinerary__day summary strong {
  display: block;
  color: #1d2a5c;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}

.itinerary__meals {
  display: flex;
  gap: 20px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.itinerary__meals span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.itinerary__meals img {
  width: 16px;
  height: 16px;
}

.itinerary__day summary::after {
  content: "";
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #d1f0ff url("../images/icon/icon-page-prev.svg") center / 16px no-repeat;
  transform: rotate(-90deg);
}

.itinerary__day[open] summary::after {
  background: var(--blue) url("../images/icon/icon-arrow-white.svg") center / 14px no-repeat;
  transform: rotate(-90deg);
}

.itinerary__body {
  padding: 24px;
}

.itinerary__body .txt {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 24px;
}

.itinerary__body .txt:last-child {
  margin-bottom: 0;
}

.detail-box {
  padding: 16px;
  border: 0;
  border-radius: 8px;
  background: #f5f7fa;
}

.detail-box:not(.is-open)>.txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.detail-box:not(.is-open)>ul {
  display: none;
}

.detail-box__more {
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline;
  cursor: pointer;
}

.detail-box__more.is-hidden {
  display: none;
}

.policy-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #f5f7fa;
}

.policy {
  margin: 0;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--white);
}

.policy[open] {
  border-color: var(--blue);
}

.policy summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  cursor: pointer;
  list-style: none;
}

.policy summary::-webkit-details-marker {
  display: none;
}

.policy summary::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d1f0ff url("../images/icon/icon-page-prev.svg") center / 12px no-repeat;
  transform: rotate(-90deg);
}

.policy[open] summary::after {
  transform: rotate(90deg);
}

.policy ul {
  margin: 0;
  padding: 0 16px 16px 40px;
}

.policy li {
  font-size: 16px;
  line-height: 24px;
}

.book-card {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 307px;
  max-width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 0 5px rgba(4, 124, 219, 0.15);
}

.book-card__img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: 8px;
}

.book-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.book-card hr {
  margin: 0;
  border: 0;
  border-top: 1px solid #d9d9d9;
}

/* ?? Hotel list (Figma 190:1969) ?? */
.topbar-hotel {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.block--list-hotel {
  padding-top: 48px;
}

.filter-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.filter-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--blue);
  background: linear-gradient(90deg, #f5f7fa 0%, rgba(214, 241, 255, 0.2) 100%), #d1f0ff;
  color: var(--blue);
  font-family: Inter, var(--font);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
}

.filter-panel__close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-panel__close img {
  width: 16px;
  height: 16px;
}

.filter-panel__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--stroke);
}

.filter-panel__group:last-child {
  border-bottom: 0;
  padding-bottom: 16px;
}

.filter-panel__title {
  margin: 0;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--navy);
}

.filter-panel__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-panel__list:not(.is-open)>.filter-check:nth-child(n+6) {
  display: none;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--navy);
}

.filter-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-check__box {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  background: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.filter-check input:checked+.filter-check__box {
  border-color: var(--blue);
  background-color: var(--blue);
  background-image: url("../images/icon/icon-check-white.svg");
}

.filter-panel__more {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--orange);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
}

.filter-panel__more.is-hidden {
  display: none;
}

.filter-panel__more img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.filter-panel__list.is-open+.filter-panel__more img {
  transform: rotate(180deg);
}

.hotel-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 0 3px rgba(0, 74, 132, 0.15);
}

.hotel-card__media {
  position: relative;
  flex: 0 0 332px;
  width: 332px;
  max-width: 38%;
  cursor: pointer;
}

.hotel-card__main {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3px;
}

.hotel-card__main img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.hotel-card__thumbs {
  display: flex;
  gap: 3px;
}

.hotel-card__thumbs img {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: auto;
  border-radius: 2px;
  max-width: 100%;
}

.hotel-card__photos {
  position: absolute;
  right: 11px;
  bottom: 11px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.hotel-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
}

.hotel-card__title {
  margin: 0;
  font-family: Inter, var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: var(--navy);
}

.hotel-card__stars {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.hotel-card__stars img {
  width: 14px;
  height: 14px;
}

.hotel-card__addr {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--navy);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotel-card__addr img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hotel-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.hotel-card__tags span {
  padding: 2px 8px;
  border-radius: 24px;
  background: #fef6e9;
  color: #2b374d;
  font-family: Inter, var(--font);
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}

.hotel-card__offer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding: 12px;
  border-radius: 8px;
  background: #f7fafc;
}

.hotel-card__perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.hotel-card__perks .txt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #2aa662;
}

.hotel-card__perks img {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  flex-shrink: 0;
}

.hotel-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.hotel-card__price .price {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.hotel-card__price .price--old {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.hotel-card__price .btn {
  height: 40px;
  padding: 0 16px;
  border-radius: 64px;
  background: var(--blue);
}

/* ?? Hotel detail ?? */
.btn-room-search--label {
  width: auto;
  min-width: 151px;
  padding: 0 24px;
  gap: 8px;
  color: var(--white);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.hotel-overview {
  display: flex;
  gap: 16px;
  padding: 16px;
}

.hotel-ov-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 16px;
  border: 1px solid #f2f3f3;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.hotel-ov-card--intro,
.hotel-ov-card--amenity {
  flex: 1;
}

.hotel-ov-card--map {
  width: 286px;
  flex-shrink: 0;
}

.hotel-ov-card--intro::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -86px;
  width: 424px;
  height: 206px;
  background: url("../images/hotel-intro-wave.jpg") 0 0 / 100% 100% no-repeat;
  transform: rotate(180deg);
  pointer-events: none;
  z-index: 0;
}

.hotel-ov-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #0d182b;
  font-family: Inter, var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.hotel-ov-card--intro>.txt {
  position: relative;
  z-index: 1;
  margin: 0;
  height: 182px;
  overflow: auto;
  color: #0d182b;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) transparent;
}

.hotel-ov-card--intro>.txt::-webkit-scrollbar {
  width: 4px;
}

.hotel-ov-card--intro>.txt::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.hotel-ov-card--intro>.txt::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 10px;
}

.hotel-ov-more {
  color: var(--blue);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  text-decoration: underline;
  white-space: nowrap;
}

.hotel-amenity-grid {
  --bs-gutter-y: 20px;
}

.hotel-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #0d182b;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.hotel-amenity .icon--md {
  width: 24px !important;
  height: 24px !important;
}

.hotel-amenity .icon--md img {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
}

.hotel-amenity>span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotel-ov-map {
  width: 100%;
  height: 156px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8eaef;
}

.hotel-ov-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hotel-ov-addr {
  color: #0d182b;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.hroom-card {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.hroom-card__media {
  position: relative;
  width: 356px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
  cursor: pointer;
}

.hroom-card__media>img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 248px;
  object-fit: cover;
}

/* .hroom-card__media::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 10px;
  background: url("../images/icon/dots-white.svg") center / contain no-repeat;
  pointer-events: none;
} */

.hroom-card__table {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.hroom-card__head,
.hroom-card__row {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.hroom-card__head {
  background: #f7f9fa;
}

.hroom-card__col {
  padding: 16px;
  border-right: 1px solid #f0f0f0;
}

.hroom-card__head .hroom-card__col {
  padding: 10px 16px;
  color: #0d182b;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  border-bottom: 1px solid #f0f0f0;
}

.hroom-card__col--info {
  flex: 1;
  min-width: 0;
}

.hroom-card__col--guests,
.hroom-card__col--price,
.hroom-card__col--book {
  width: 164px;
  flex-shrink: 0;
}

.hroom-card__head .hroom-card__col--guests,
.hroom-card__head .hroom-card__col--price,
.hroom-card__head .hroom-card__col--book {
  text-align: center;
}

.hroom-card__col:last-child {
  border-right: 0;
}

.hroom-card__row .hroom-card__col--info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hroom-card__row .hroom-card__col--info h3 {
  margin: 0;
  color: #0d182b;
  font-family: Inter, var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.hroom-card__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hroom-card__specs .txt {
  margin: 0;
  color: #1b1b1b;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.hroom-card__divider {
  margin: 0;
  border: 0;
  border-top: 1px dashed #d9d9d9;
}

.hroom-card__row .hroom-card__col--guests {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: #1b1b1b;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.hroom-card__row .hroom-card__col--price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.hroom-card__row .hroom-card__col--price .price--old {
  font-size: 16px;
  line-height: 24px;
  color: #5a6b85;
}

.hroom-card__row .hroom-card__col--price .price {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.hroom-card__tax {
  color: #5a6b85;
  font-family: Inter, var(--font);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  text-align: right;
}

.hroom-card__row .hroom-card__col--book {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.hroom-card__qty-label {
  color: #121212;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}

.hroom-card__col--book .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 64px;
}

.hotel-info-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 0 6px rgba(0, 74, 132, 0.15);
}

.hotel-info-card>div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hotel-info-card h2 {
  margin: 0;
  color: #1b1b1b;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.hotel-info-card__name {
  color: #0d182b;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.hotel-info-card__map {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8eaef;
}

.hotel-info-card__map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.hotel-info-card__list {
  margin: 0 0 12px;
  padding-left: 20px;
}

.hotel-info-card__list li {
  margin-bottom: 8px;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 24px;
}

.hotel-policy {
  margin: 0;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--white);
}

.hotel-policy[open] {
  border-color: var(--blue);
}

.hotel-policy summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  cursor: pointer;
  list-style: none;
}

.hotel-policy summary::-webkit-details-marker {
  display: none;
}

.hotel-policy summary::after {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #d1f0ff url("../images/icon/icon-page-prev.svg") center / 12px no-repeat;
  transform: rotate(-90deg);
}

.hotel-policy[open] summary::after {
  transform: rotate(90deg);
}

.hotel-policy .txt {
  margin: 0;
  padding: 0 16px 16px;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 24px;
}

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

.hotel-card__title a:hover {
  color: var(--blue);
}

/* ?? Blog list ?? */
.block--blog {
  padding: 40px 0 64px;
}

.blog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  min-width: 0;
  max-width: 100%;
}

.blog-search {
  display: flex;
  align-items: center;
  width: 380px;
  max-width: 100%;
  height: 40px;
  padding: 0 8px 0 16px;
  border: 1px solid var(--stroke);
  border-radius: 40px;
  background: var(--white);
}

.blog-search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  line-height: 22px;
}

.blog-search input::placeholder {
  color: var(--disabled);
}

.blog-search button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
}

.blog-search button img {
  width: 12px;
  height: 12px;
}

.blog-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding-bottom: 2px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

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

.blog-chip {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 36px;
  padding: 0 24px;
  border: 0;
  border-radius: 40px;
  background: #f8f8f8;
  color: var(--blue);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
  white-space: nowrap;
}

.blog-chip.is-active {
  background: var(--blue);
  color: var(--white);
}

.blog-featured {
  margin-bottom: 32px;
  --bs-gutter-x: 30px;
}

.blog-feature {
  position: relative;
  display: block;
  height: 432px;
  border-radius: 12px;
  overflow: hidden;
  color: var(--white);
}

.blog-feature>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 40, 68, 0) 54%, rgba(5, 40, 68, 0.9) 83%);
  pointer-events: none;
  z-index: 1;
}

.blog-feature__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.blog-feature__cat {
  margin: 0;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.blog-feature__title {
  margin: 8px 0 0;
  font-family: Inter, var(--font);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.blog-feature__date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #e4e9f0;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.blog-feature__date img {
  filter: brightness(0) invert(1);
}

.blog-card {
  height: 100%;
  border-radius: 12px;
  /* background: var(--white); */
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-card__media {
  overflow: hidden;
  border: 1px solid #e6f0fc;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.blog-card__media>img {
  width: 100%;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
}

.blog-card__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card__cat {
  margin: 0;
  color: var(--blue);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.blog-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: #0d182b;
  font-family: Inter, var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  height: 52px;
}

.blog-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  height: 48px;
  color: var(--muted);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.blog-card__date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.blog-grid {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 32px;
  margin-bottom: 32px;
}

/* ?? Blog detail ?? */
.page-blog-detail {
  background: var(--bg-soft);
}

.block--blog-detail {
  padding: 40px 0 64px;
  background: var(--white);
}

.blog-detail-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 40px;
}

.blog-article {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-article__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.blog-article__head h1 {
  margin: 0;
  color: #1d2a5c;
  font-family: Inter, var(--font);
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}

.blog-article__cat {
  color: var(--blue);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.blog-article__date {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
  border-left: 1px solid var(--stroke);
  color: var(--muted);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-share>span {
  color: #121212;
  font-family: Inter, var(--font);
  font-size: 14px;
  line-height: 22px;
}

.blog-share>a {
  position: relative;
  display: flex;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.blog-share>a>img {
  width: 100%;
  height: 100%;
}

.blog-article__body {
  color: #232c3c;
  font-family: Inter, var(--font);
}

.blog-article__body img {
  max-width: 100%;
  height: auto;
}

.blog-article__body strong {
  font-family: Inter, var(--font);
  font-weight: 600;
}

.blog-article__lead {
  margin: 0;
  color: #434343;
  font-weight: 600;
}

.blog-article__body h2 {
  margin: 8px 0 0;
  color: #121212;
  font-family: Inter, var(--font);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.blog-article__body h2:first-of-type {
  color: #232c3c;
}

.blog-article__body h3 {
  margin: 0;
  color: #232c3c;
  font-family: Inter, var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.blog-article--narrow {
  max-width: 1000px;
  margin: 0 auto;
}

.page-golf-detail .blog-article__date {
  padding-left: 0;
  border-left: 0;
}

.shipping-cta--strip {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.shipping-cta--strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--blue) url("../images/cta-visa-strip.png") center / cover no-repeat;
  pointer-events: none;
}

.shipping-cta--strip>* {
  position: relative;
  z-index: 1;
}

.blog-article__body .txt,
.blog-article__body ul {
  margin: 0;
}

.blog-article__body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 1.5em;
}

.blog-article__img {
  width: 100%;
  border-radius: 12px;
}

.blog-article__foot {
  padding-top: 8px;
  border-top: 1px solid rgba(216, 216, 216, 0.5);
}

.blog-article__foot .blog-share>span {
  font-size: 16px;
  line-height: 24px;
}

.blog-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 20px;
  z-index: 1;
}

.blog-aside__title {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #f8ba16;
  color: #020d12;
  font-family: Inter, var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  width: fit-content;
}

.blog-aside__list {
  display: flex;
  flex-direction: column;
}

.blog-side-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  color: inherit;
}

.blog-side-item:first-child {
  padding-top: 0;
}

.blog-side-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-side-item>img {
  flex-shrink: 0;
  width: 112px;
  max-width: 112px;
  border-radius: 8px;
  height: 72px;
}

.blog-side-item .txt {
  margin: 0;
  color: #0d182b;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.block--blog-related {
  padding: 40px 0 64px;
  background: var(--bg-soft);
}

.block--blog-related .section-title {
  margin-bottom: 0;
  font-family: Inter, var(--font);
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
}

.related-blog-owl {
  margin-top: 32px;
}

/* ?? Shipping agent (??i l? h?ng h?i) ?? */
.block--shipping {
  padding: 40px 0 64px;
  background: var(--white);
}

.shipping-intro,
.shipping-scope,
.shipping-gallery,
.shipping-price {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.shipping-intro .section-title {
  margin: 0;
  color: #1a2b49;
  font-family: Inter, var(--font);
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
}

.shipping-intro .txt {
  margin: 0;
  color: #232c3c;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.shipping-banner {
  position: relative;
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26, 43, 73, 0.06);
}

.shipping-banner>img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.shipping-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 40, 68, 0) 35%, rgba(5, 40, 68, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.shipping-banner__cap {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.shipping-banner__tag {
  display: flex;
  align-items: center;
  padding: 1px 24px;
  border-radius: 20px;
  background: var(--orange);
  color: var(--white);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
}

.shipping-banner__cap .txt {
  margin: 0;
  color: var(--white);
  font-family: Inter, var(--font);
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
}

.shipping-scope h2,
.shipping-gallery h2,
.shipping-price h2 {
  margin: 0;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
}

.shipping-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shipping-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #232c3c;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.shipping-list li>img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.shipping-list strong {
  font-weight: 600;
}

.shipping-gallery__img {
  width: 100%;
  height: 256px;
  border-radius: 11px;
  object-fit: cover;
}

.shipping-price>div:first-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shipping-price__note {
  margin: 0;
  color: var(--muted);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
}

.shipping-table {
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 13px;
}

.shipping-table__head,
.shipping-table__row {
  margin: 0;
}

.shipping-table__head {
  background: #002d5e;
  color: var(--white);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.shipping-table__row {
  border-top: 1px solid var(--stroke);
  background: var(--white);
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.shipping-table__row--alt {
  background: #f4f7fa;
}

.shipping-table__head>[class*="col"],
.shipping-table__row>[class*="col"] {
  display: flex;
  align-items: center;
  padding: 11px 16px;
}

.shipping-table__row>[class*="col"] {
  padding-top: 10px;
  padding-bottom: 10px;
}

.shipping-table__row strong {
  color: var(--orange);
  font-weight: 600;
}

.shipping-cta {
  padding: 22px 24px;
  border-radius: 16px;
  background: var(--blue);
}

.shipping-cta__title {
  margin: 0 0 8px;
  color: var(--white);
  font-family: Inter, var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.shipping-cta__desc {
  margin: 0;
  color: #dbe8fb;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.block--shipping-form {
  padding: 64px 0;
  background: var(--bg-soft);
}

.shipping-request {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(26, 43, 73, 0.1);
}

.shipping-request__left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 0 0 393px;
  max-width: 100%;
  padding: 32px;
  overflow: hidden;
  color: var(--white);
}

.shipping-request__left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/rleft.jpg") center / cover no-repeat;
  pointer-events: none;
}

.shipping-request__left--visa::before {
  background-image: url("../images/visa-bg.jpg");
}

.shipping-request__copy,
.shipping-request__contacts {
  position: relative;
  z-index: 1;
}

.shipping-request__copy h2 {
  margin: 0 0 16px;
  font-family: Inter, var(--font);
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
}

.shipping-request__copy .txt {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.shipping-request__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shipping-request__contacts a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
}

.shipping-request__contacts i {
  width: 20px;
  font-size: 16px;
  text-align: center;
}

.shipping-request__boat {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 96%;
  max-width: 376px;
  pointer-events: none;
}

.shipping-request__circle {
  position: absolute;
  right: -8px;
  bottom: 80px;
  z-index: 0;
  width: 163px;
  max-width: 42%;
  pointer-events: none;
}

.shipping-request__passport {
  position: absolute;
  left: -40px;
  bottom: -20px;
  z-index: 0;
  width: 268px;
  max-width: 70%;
  transform: rotate(12.63deg);
  pointer-events: none;
}

.shipping-request__form {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 24px;
}

.shipping-request__submit {
  width: 100%;
  box-shadow: 0 6px 16px rgba(0, 107, 224, 0.25);
}

.shipping-request__secure {
  margin: 0;
  color: var(--muted);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}

/* ?? Golf tour list ?? */
.block--golf {
  padding: 40px 0 64px;
  background: var(--white);
}

.list-grid--golf {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 24px;
}

.golf-card {
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(26, 43, 73, 0.15);
}

.golf-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.golf-card__media {
  overflow: hidden;
}

.golf-card__media>img {
  width: 100%;
  height: 264px;
}

.golf-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.golf-card__title {
  margin: 0;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.golf-card__date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.golf-card__date i {
  font-size: 16px;
}

/* ?? Contact (Liên hệ) ?? */
.block--contact {
  padding: 40px 0 64px;
  background: var(--white);
}

.contact-channels {
  margin-bottom: 32px;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 16px;
  border: 1px solid #e8eaef;
  border-radius: 12px;
  text-align: center;
  color: inherit;
}

.contact-channel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 8px;
}

.contact-channel__icon i {
  font-size: 20px;
  line-height: 1;
}

.contact-channel__icon--phone {
  background: #e6f4fe;
  color: #006be0;
}

.contact-channel__icon--email {
  background: #ffe4e0;
  color: #e85d4c;
}

.contact-channel__icon--zalo {
  background: #dff6ec;
  color: #0068ff;
}

.contact-channel__icon--fb {
  background: #fff1cc;
  color: #684e09;
}

.book-field__fa {
  flex-shrink: 0;
  width: 20px;
  color: var(--disabled);
  font-size: 16px;
  text-align: center;
}

.contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.contact-channel__body strong {
  color: #002d5e;
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.contact-channel__body span {
  color: var(--muted);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-main {
  --bs-gutter-x: 30px;
  align-items: stretch;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  padding: 40px;
  border: 1px solid #e8eaef;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 4px rgba(6, 21, 86, 0.15);
}

.contact-form__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__head h2 {
  margin: 0;
  color: #1d2a5c;
  font-family: Inter, var(--font);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.contact-form__head .txt {
  margin: 0;
  color: var(--muted);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-agree {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0;
  cursor: pointer;
}

.contact-agree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-agree__box {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.contact-agree__box i {
  font-size: 18px;
  color: #0059bf;
}

.contact-agree__box .fa-square-check {
  display: none;
}

.contact-agree input:checked+.contact-agree__box .fa-square {
  display: none;
}

.contact-agree input:checked+.contact-agree__box .fa-square-check {
  display: inline-block;
}

.contact-agree__text {
  color: #1d2a5c;
  font-family: Inter, var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.contact-agree__text a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

.contact-form__submit {
  width: 100%;
  box-shadow: 0 6px 16px rgba(0, 107, 224, 0.25);
}

.contact-map {
  display: flex;
  flex-direction: column;
  width: 544px;
  max-width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid #e8eaef;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 2px 4px rgba(6, 21, 86, 0.15);
}

.contact-map__frame {
  flex: 1;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.contact-map__addr {
  padding: 10px 24px 16px;
}

.contact-map__label {
  margin: 0 0 4px;
  color: var(--muted);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}

.contact-map__text {
  margin: 0;
  color: var(--navy);
  font-family: Inter, var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-map__dir {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--blue);
  font-size: 20px;
}

/* —— Responsive —— */

@media (min-width: 768px) {
  .about-exp__grid>[class*="col-"]:not(:first-child) .about-exp__item {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    padding-left: 16px;
  }
}

@media (max-width: 1199.98px) {
  .hero__content h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .search-card__body {
    flex-wrap: wrap;
  }

  .field {
    min-width: 220px;
  }

  .combo {
    flex-direction: column;
  }

  .combo-owl .owl-dots {
    left: 0;
    bottom: 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-logo {
    width: 220px;
  }

  .footer-links {
    gap: 24px;
  }

  .experience-card__body {
    flex-direction: column;
    align-items: flex-start;
    left: 24px;
    right: 24px;
    bottom: 24px;
    gap: 16px;
  }

  .hotel-overview {
    flex-wrap: wrap;
  }

  .hotel-ov-card--map {
    width: 100%;
  }

  .contact-map {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .site-header__top-inner {
    gap: 16px;
    flex-wrap: nowrap;
  }

  .logo {
    width: 160px;
  }

  .header-meta {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 12px;
  }

  .header-meta__item--phone,
  .header-meta__item--email {
    display: none;
  }

  .header-meta__divider {
    display: none;
  }

  .header-meta__cta {
    display: none;
  }

  .lang__code {
    display: none;
  }

  .header-toggle {
    display: flex;
  }

  .site-header {
    position: sticky;
    top: 0;
    left: auto;
    right: auto;
    z-index: 9999;
    background: var(--white);
  }

  .site-header:not(.site-header--solid) {
    height: auto;
  }

  .site-header__top {
    position: relative;
    z-index: 1103;
    background: var(--white);
    border-bottom: 1px solid var(--stroke);
  }

  .site-header--solid {
    height: auto;
  }

  .site-header .header-toggle,
  .site-header .lang {
    color: var(--navy);
  }

  .site-header.is-open:not(.site-header--solid) .header-meta,
  .site-header.is-open:not(.site-header--solid) .lang,
  .site-header.is-open:not(.site-header--solid) .header-toggle {
    color: var(--navy);
  }

  .header-backdrop {
    display: block;
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1101;
    background: rgba(13, 24, 43, 0.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .site-header.is-open .header-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header__nav,
  .site-header:not(.site-header--solid) .site-header__nav {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1102;
    width: 100%;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: var(--white);
    box-shadow: none;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
    pointer-events: none;
  }

  .site-header.is-open .site-header__nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header__nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 100%;
    padding: 8px 20px 28px;
    box-sizing: border-box;
  }

  body.is-header-open {
    overflow: hidden;
  }

  .nav-menu {
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 20px;
  }

  .nav-menu>li>a {
    justify-content: space-between;
    padding: 15px 0;
    border-radius: 0;
    border-bottom: 1px solid #eef1f5;
    color: var(--navy);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }

  .nav-menu>li>a::after {
    display: none;
  }

  .nav-menu>li>a.is-active,
  .nav-menu>li>a:hover {
    color: var(--blue);
    background: transparent;
  }

  .nav-menu__item--has-sub>a .icon--xs {
    margin-left: auto;
  }

  .nav-menu .icon--xs {
    transform: rotate(90deg);
  }

  .nav-sub {
    display: none;
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0 0 8px 14px;
    border: 0;
    border-left: 2px solid #e4e9f0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu__item--has-sub.is-open>.nav-sub {
    display: block;
  }

  .nav-menu__item--has-sub::after {
    display: none;
  }

  .nav-menu__item--has-sub.is-open>a .icon--xs {
    transform: rotate(-90deg);
  }

  .nav-menu .nav-sub a {
    padding: 12px 0;
    border-radius: 0;
    border-bottom: 1px solid #f3f5f8;
    color: #5a6b85;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    white-space: normal;
  }

  .nav-menu .nav-sub a:hover {
    background: transparent;
    color: var(--blue);
  }

  .nav-menu .nav-sub li:last-child a {
    border-bottom: 0;
  }

  .header-search {
    order: 0;
    width: 100%;
    height: 48px;
    margin-top: auto;
    border-radius: 12px;
    border-color: var(--stroke);
    background: #f5f7fa;
  }

  .header-search input {
    color: var(--navy);
  }

  .header-search input::placeholder {
    color: var(--muted);
  }

  .header-nav__cta {
    display: flex;
    width: 100%;
    height: 48px;
    margin-top: 12px;
    justify-content: center;
  }

  /* Hero mobile: ảnh cao + title đè đáy ảnh; search nằm dưới */
  .hero {
    background: var(--bg-soft);
  }

  .hero__image {
    width: 100%;
    height: 340px;
    max-width: none;
    object-fit: cover;
    object-position: center;
  }

  .hero::before {
    display: block;
    top: 0;
    bottom: auto;
    height: 340px;
    background: linear-gradient(180deg,
        rgba(5, 40, 68, 0.35) 0%,
        rgba(5, 40, 68, 0.12) 42%,
        rgba(5, 40, 68, 0.88) 100%);
  }

  .hero__content-wrap {
    position: relative;
    inset: auto;
    margin-top: -168px;
    padding: 0 16px;
    gap: 20px;
  }

  .hero__main {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    flex: 0 0 auto;
    padding: 0 4px;
  }

  .hero__content h1 {
    font-size: 26px;
    line-height: 34px;
  }

  .hero__content .txt {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  .hero__search {
    margin-top: 0;
    margin-bottom: -56px;
  }

  .hero:has(.hero__search)+.block {
    padding-top: 112px;
  }

  .search-card {
    border-radius: 14px;
  }

  .search-card__tabs {
    display: flex;
    width: 100%;
    overflow: hidden;
  }

  .search-tab {
    flex: 1 1 0;
    justify-content: center;
    align-items: center;
    min-width: 0;
    gap: 6px;
    padding: 12px 8px;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
  }

  .search-tab .icon--md {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .search-card__body {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
  }

  .field {
    min-width: 0;
    width: 100%;
    height: 52px;
    padding: 8px 12px;
    gap: 2px;
    justify-content: center;
  }

  .field .d-flex {
    align-items: center;
    min-height: 22px;
  }

  .field .icon,
  .field .icon img {
    flex-shrink: 0;
  }

  .field input,
  .field-guests__btn {
    line-height: 22px;
    height: 22px;
  }

  .btn--orange {
    width: 100%;
    height: 48px;
    align-items: center;
  }

  .hero--about {
    background: #052844;
  }

  .hero--about .hero__image {
    height: 280px;
  }

  .hero--about::before {
    height: 280px;
    background: rgba(5, 40, 68, 0.45);
  }

  .hero--about .hero__content-wrap {
    position: absolute;
    inset: 0;
    margin-top: 0;
    padding: 0 16px;
    justify-content: center;
  }

  .hero--about .hero__main {
    padding-top: 48px;
  }

  .experience-card {
    margin-top: 24px;
  }

  .experience-card__media>img {
    min-height: 340px;
    object-fit: cover;
    object-position: center;
  }

  .experience-card__body {
    left: 16px;
    right: 16px;
    bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .experience-card__copy {
    max-width: none;
  }

  .experience-card__copy h3 {
    margin-top: 10px;
    font-size: 22px;
    line-height: 28px;
  }

  .experience-card__copy .txt {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }

  .experience-nav {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .experience-nav .nav-item,
  .experience-nav .nav-item.flex-fill {
    flex: 0 0 auto !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    width: max-content;
    min-width: max-content;
    max-width: none;
    border-right: 1px solid var(--stroke);
    border-bottom: 0;
  }

  .experience-nav .nav-item:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .block {
    padding: 40px 0 40px;
  }

  .experience-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    box-sizing: border-box;
    width: max-content !important;
    max-width: none;
    min-height: 56px;
    height: 100%;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    overflow: visible;
  }

  .experience-nav .nav-link .icon--lg {
    width: 24px !important;
    height: 24px !important;
    margin-left: 0 !important;
    flex-shrink: 0;
  }

  .block--tight>.container-hl>.d-flex.align-items-end {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
    margin-bottom: 20px !important;
  }

  /* .block--tight .section-title {
    font-size: 24px;
    line-height: 32px;
    text-align: left;
  } */

  .block--tight .section-sub {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }

  .block--tight .link-more {
    font-size: 14px;
    line-height: 22px;
    display: none;
  }

  .cruise-owl .owl-dots,
  .hotel-owl .owl-dots {
    margin-top: 16px;
    gap: 8px;
  }

  /* 
  .cruise-owl .product-card__link > img,
  .hotel-owl .product-card__link > img {
    height: 160px;
  } */

  .cruise-owl .product-card__title,
  .hotel-owl .product-card__title {
    font-size: 15px;
    line-height: 22px;
  }

  .carousel-wrap .nav-circle {
    display: none;
  }

  .site-footer {
    padding: 48px 0 40px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-contact {
    gap: 16px;
    margin-top: 20px;
  }

  .footer-contact__item {
    gap: 12px;
  }

  .footer-contact__item .txt,
  .footer-links a,
  .newsletter .txt {
    font-size: 15px;
    line-height: 22px;
  }

  .footer-title {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .footer-links {
    gap: 24px;
  }

  .footer-links ul {
    gap: 12px;
  }

  .newsletter-form {
    height: 44px;
    padding-left: 16px;
  }

  .newsletter-form input {
    font-size: 14px;
  }

  .newsletter-form button {
    width: 36px;
    height: 36px;
  }

  .social {
    gap: 12px;
    margin-top: 12px;
  }

  .social img {
    width: 40px;
    height: 40px;
  }

  .site-footer__bottom {
    margin-top: 28px;
    padding-top: 20px;
    font-size: 14px;
    line-height: 22px;
  }

  .about-content {
    padding-left: 0;
    gap: 24px;
  }

  .block--about {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 24px;
  }

  /* .about-content .section-title {
    max-width: none;
    font-size: 24px;
    line-height: 32px;
  } */

  .quote-bar {
    gap: 16px;
  }

  .quote-bar>.txt {
    font-size: 15px;
    line-height: 24px;
  }

  .about-intro__aside {
    width: 100%;
  }

  .about-exp__grid>[class*="col-"]:not(:first-child) .about-exp__item {
    border-left: 0;
    padding-left: 0;
  }

  .rating-card {
    min-height: 0;
    padding: 32px 20px;
    gap: 24px;
  }

  .feature-item+.feature-item {
    margin-top: 20px;
    padding-top: 20px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--stroke);
    padding: 24px 0;
    text-align: center;
  }

  .col-md-4:last-child .stat {
    border-bottom: 0;
  }

  .detail-gallery {
    margin-bottom: 16px;
  }

  .detail-gallery__main {
    height: 280px;
  }

  .detail-gallery__thumb {
    height: 134px;
  }

  .detail-head {
    gap: 16px !important;
    margin-bottom: 16px;
  }

  .detail-head h1 {
    font-size: 20px;
    line-height: 28px;
  }

  .detail-head__book {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 12px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    background: var(--white);
    box-shadow: 0 -4px 16px rgba(13, 24, 43, 0.12);
  }

  .detail-head__book .detail-price {
    text-align: left !important;
  }

  .detail-head__book .detail-price .txt {
    font-size: 12px;
    line-height: 16px;
  }

  .detail-head__book .detail-price .justify-content-end {
    justify-content: flex-start !important;
    gap: 6px !important;
  }

  .detail-head__book .price--old {
    font-size: 12px;
    line-height: 16px;
  }

  .detail-head__book .price--lg {
    font-size: 15px;
    line-height: 20px;
  }

  .detail-head__book .btn--book {
    flex-shrink: 0;
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .page-detail {
    padding-bottom: 68px;
  }

  .gallery-modal {
    --gallery-slide-h: min(48vh, 360px);
  }

  .gallery-modal .modal-dialog {
    width: min(100%, calc(100vw - 1.5rem));
    margin: 0.75rem auto;
  }

  .gallery-modal__content {
    padding: 44px 16px 16px;
    border-radius: 12px;
  }

  .gallery-modal__nav {
    width: 36px;
    height: 36px;
  }

  .gallery-modal__nav--prev {
    left: 8px;
  }

  .gallery-modal__nav--next {
    right: 8px;
  }

  .gallery-modal__thumb {
    height: 48px;
  }

  .detail-aside {
    width: 100%;
  }

  .page-detail .detail-tabs {
    top: 64px;
  }

  .detail-tabs .nav-link {
    padding: 10px 16px;
    font-size: 13px;
    line-height: 20px;
  }

  .detail-panel {
    padding: 12px 16px 16px;
  }

  .detail-panel>.txt,
  .detail-box>.txt,
  .detail-highlight li {
    font-size: 15px;
    line-height: 22px;
  }

  .detail-card h2,
  .detail-panel h2,
  .detail-section h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .room-panel {
    padding: 12px;
    gap: 12px;
  }

  .room-search {
    flex-wrap: wrap;
    gap: 8px;
  }

  .room-search .field {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
  }

  .btn-room-search {
    width: 56px;
    height: 48px;
  }

  .room-suggest {
    font-size: 16px;
    line-height: 24px;
  }

  .room-card {
    flex-direction: column;
  }

  .room-card__media {
    width: 100%;
    border-radius: 12px 12px 0 0;
  }

  .room-card__media>img:first-child {
    min-height: 200px;
  }

  .room-card__body {
    border-right: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .room-card__action {
    width: 100%;
    align-items: stretch;
  }

  .itinerary__day summary {
    padding: 12px 16px;
    gap: 12px;
  }

  .itinerary__day summary strong {
    font-size: 14px;
    line-height: 20px;
  }

  .itinerary__meals {
    gap: 12px;
    font-size: 13px;
    line-height: 20px;
    flex-wrap: wrap;
  }

  .itinerary__body {
    padding: 0 16px 16px;
  }

  .policy-panel {
    gap: 12px;
    padding: 12px;
  }

  .policy summary {
    padding: 12px;
    font-size: 15px;
    line-height: 22px;
    gap: 12px;
  }

  .policy ul {
    padding: 0 12px 12px 28px;
  }

  .policy li {
    font-size: 14px;
    line-height: 22px;
  }

  .book-card {
    position: static;
    width: 100%;
  }

  .book-card__img {
    height: 160px;
  }

  .filter-aside {
    position: fixed;
    inset: 0;
    z-index: 1055;
    width: 100% !important;
    max-width: none;
    flex: none;
    padding: 0 !important;
    margin: 0;
    background: rgba(13, 24, 43, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .filter-aside.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .filter-aside .filter-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(340px, 88vw);
    max-height: 100%;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }

  .filter-aside.is-open .filter-panel {
    transform: translateX(0);
  }

  .filter-panel__close {
    display: flex;
  }

  .filter-panel__head {
    font-size: 16px;
    line-height: 24px;
    position: sticky;
    top: 0;
    z-index: 9;
  }

  body.is-filter-open {
    overflow: hidden;
  }

  .book-modal {
    max-width: min(688px, calc(100vw - 1.5rem));
    margin: 0.75rem auto;
  }

  .book-modal__content {
    padding: 20px;
  }

  .book-modal__tour>img {
    width: 120px;
    height: 76px;
  }

  .book-modal__tour h4 {
    font-size: 16px;
    line-height: 24px;
  }

  .hotel-card {
    flex-direction: column;
  }

  .hotel-card__media {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .hotel-card__body {
    padding-left: 0;
    padding-top: 12px;
  }

  .hroom-card {
    flex-direction: column;
  }

  .hroom-card__media {
    width: 100%;
    border-radius: 12px 12px 0 0;
  }

  .hroom-card__media>img {
    min-height: 200px;
  }

  .hroom-card__head {
    display: none;
  }

  .hroom-card__row {
    flex-wrap: wrap;
  }

  .hroom-card__col--info {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .hroom-card__col--guests,
  .hroom-card__col--price,
  .hroom-card__col--book {
    width: 33.333%;
  }

  .room-search {
    flex-wrap: wrap;
  }

  .btn-room-search--label {
    width: 100%;
  }

  .blog-feature {
    height: auto;
    overflow: visible;
    color: inherit;
  }

  .blog-feature::before {
    display: none;
  }

  .blog-feature>img {
    height: auto;
    border: 1px solid #e6f0fc;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  }

  .block--blog {
    padding: 32px 0 48px;
  }

  .blog-toolbar {
    margin-bottom: 24px;
  }

  .blog-toolbar>.d-flex {
    width: 100%;
  }

  .blog-toolbar .section-title {
    text-align: left;
  }

  .blog-search {
    width: 100%;
    flex: 1 1 280px;
  }

  .blog-featured,
  .blog-grid {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
  }

  .blog-featured .blog-card__excerpt {
    display: none;
  }

  .blog-feature__body {
    position: static;
    gap: 8px;
    padding: 12px 0 0;
  }

  .blog-feature__cat {
    color: var(--blue);
    font-size: 12px;
    line-height: 18px;
  }

  .blog-feature__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    color: #0d182b;
    font-size: 14px;
    line-height: 20px;
    height: 40px;
  }

  .blog-feature__date {
    color: var(--muted);
    font-size: 12px;
    line-height: 18px;
    gap: 4px;
  }

  .blog-feature__date img {
    filter: none;
  }

  .blog-card__title {
    font-size: 14px;
    line-height: 20px;
    height: 40px;
  }

  .blog-card__excerpt {
    font-size: 14px;
    line-height: 22px;
    height: 44px;
  }

  .blog-article__head h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .blog-article__body h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .block--blog-detail {
    padding: 28px 0 48px;
  }

  .blog-detail-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 32px;
  }

  .blog-article {
    gap: 20px;
  }

  .blog-article__meta {
    gap: 12px !important;
  }

  .blog-article__body {
    font-size: 15px;
    line-height: 24px;
  }

  .blog-article__body h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .blog-article__img {
    border-radius: 10px;
  }

  .blog-aside__title {
    font-size: 16px;
    line-height: 24px;
  }

  .blog-side-item>img {
    width: 96px;
    max-width: 96px;
    height: auto;
  }

  .blog-side-item .txt {
    font-size: 14px;
    line-height: 22px;
  }

  .block--blog-related {
    padding: 32px 0 48px;
  }

  .block--blog-related .section-title {
    text-align: left;
    font-size: 24px;
    line-height: 32px;
  }

  .related-blog-owl {
    margin-top: 24px;
  }

  .related-blog-owl .blog-card__excerpt {
    display: none;
  }

  .shipping-request {
    flex-direction: column;
  }

  .shipping-request__left {
    flex-basis: auto;
    min-height: 260px;
    padding: 24px;
  }

  .shipping-request__copy h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .shipping-request__form {
    padding: 20px;
  }

  .block--shipping {
    padding: 32px 0 48px;
  }

  .block--shipping-form {
    padding: 40px 0;
  }

  .shipping-intro,
  .shipping-scope,
  .shipping-gallery,
  .shipping-price {
    gap: 16px;
    margin-bottom: 28px;
  }

  .shipping-intro .section-title {
    text-align: left;
    font-size: 24px;
    line-height: 32px;
  }

  .shipping-intro .txt {
    font-size: 15px;
    line-height: 24px;
  }

  .shipping-banner {
    margin-bottom: 28px;
    border-radius: 12px;
  }

  .shipping-banner>img {
    height: 220px;
  }

  .shipping-banner__cap {
    left: 16px;
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .shipping-banner__tag {
    padding: 1px 16px;
    font-size: 12px;
    line-height: 20px;
  }

  .shipping-banner__cap .txt {
    font-size: 18px;
    line-height: 26px;
  }

  .shipping-scope h2,
  .shipping-gallery h2,
  .shipping-price h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .shipping-list li {
    font-size: 15px;
    line-height: 22px;
  }

  .shipping-gallery__img {
    height: 200px;
  }

  .shipping-price__note {
    font-size: 14px;
    line-height: 22px;
  }

  .shipping-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .shipping-table__head,
  .shipping-table__row {
    flex-wrap: nowrap;
    min-width: 560px;
  }

  .shipping-table__head,
  .shipping-table__row {
    font-size: 14px;
    line-height: 22px;
  }

  .shipping-cta {
    padding: 18px 20px;
    gap: 16px !important;
  }

  .shipping-cta__title {
    font-size: 16px;
    line-height: 24px;
  }

  .shipping-cta__desc {
    font-size: 14px;
    line-height: 22px;
  }

  .contact-form {
    padding: 24px;
    gap: 20px;
  }

  .contact-form__head h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .contact-form__head .txt {
    font-size: 14px;
    line-height: 22px;
  }

  .contact-channel__body strong {
    font-size: 14px;
    line-height: 20px;
    word-break: break-word;
  }

  .block--contact {
    padding: 32px 0 48px;
  }

  .contact-channels {
    margin-bottom: 24px;
  }

  .contact-channel {
    gap: 12px;
    padding: 14px 12px;
  }

  .contact-channel__body span {
    font-size: 14px;
    line-height: 20px;
  }

  .contact-main {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .contact-map {
    width: 100%;
    min-height: 400px;
  }

  .contact-map__frame {
    min-height: 280px;
  }
}

@media (max-width: 767.98px) {
  .book-modal {
    max-width: calc(100vw - 1rem);
    margin: 0.5rem auto;
  }

  .book-modal.modal-dialog-centered {
    min-height: calc(100% - 1rem);
    align-items: flex-start;
    padding: 0.5rem 0;
  }

  .book-modal__content {
    gap: 12px;
    padding: 16px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    border-radius: 12px;
    max-height: calc(100dvh - 1rem);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .book-modal__title {
    font-size: 16px;
    line-height: 24px;
  }

  .book-modal__tour {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .book-modal__tour>img {
    width: 100%;
    height: auto;
    max-height: 160px;
  }

  .book-modal__tour h4,
  .book-modal__hotel {
    font-size: 16px;
    line-height: 24px;
  }

  .book-modal__label {
    font-size: 14px;
    line-height: 22px;
  }

  .book-modal__form,
  .book-modal__block {
    gap: 12px;
  }

  .book-field__control {
    min-height: 44px;
  }

  .book-field__control input,
  .book-field__control select,
  .book-field textarea {
    font-size: 14px;
    line-height: 22px;
  }

  .book-modal__dates {
    flex-wrap: wrap;
    gap: 8px !important;
  }

  .book-modal__footer .btn {
    width: 100%;
    min-width: 0;
  }

  .pager {
    margin-top: 20px;
  }

  .pager .pagination {
    gap: 6px;
    justify-content: center;
  }

  .pager .page-link {
    width: 32px;
    height: 32px;
    font-size: 13px;
    line-height: 20px;
  }

  .pager .page-link img {
    width: 14px;
    height: 14px;
  }

  .block--blog {
    padding: 24px 0 40px;
  }

  .blog-toolbar {
    gap: 12px;
    margin-bottom: 20px;
  }

  .blog-toolbar>.d-flex {
    flex-direction: column;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .blog-toolbar .section-title {
    width: 100%;
    text-align: left;
  }

  .blog-search {
    width: 100%;
    flex: none;
  }

  .blog-chip {
    height: 32px;
    padding: 0 16px;
    font-size: 13px;
    line-height: 20px;
  }

  .blog-tabs {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .blog-featured {
    margin-bottom: 24px;
    --bs-gutter-x: 12px;
    --bs-gutter-y: 16px;
  }

  .blog-featured .blog-card__excerpt {
    display: none;
  }

  .blog-feature__body {
    gap: 8px;
    padding-top: 12px;
  }

  .blog-feature__cat,
  .blog-feature__date {
    font-size: 12px;
    line-height: 18px;
  }

  .blog-feature__title {
    font-size: 13px;
    line-height: 18px;
    height: 36px;
    -webkit-line-clamp: 2;
  }

  .blog-grid {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 16px;
    margin-bottom: 24px;
  }

  .blog-grid .blog-card__excerpt {
    display: none;
  }

  .blog-card__body {
    gap: 8px;
    padding-top: 12px;
  }

  .blog-card__cat,
  .blog-card__date {
    font-size: 12px;
    line-height: 18px;
  }

  .blog-card__title {
    font-size: 13px;
    line-height: 18px;
    height: 36px;
  }

  .blog-card__excerpt {
    font-size: 13px;
    line-height: 20px;
    height: 40px;
  }

  .hero--blog .hero__content .txt {
    font-size: 14px;
    line-height: 22px;
    padding: 0 8px;
  }

  .block--blog-detail {
    padding: 20px 0 40px;
  }

  .blog-detail-row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 28px;
  }

  .blog-article {
    gap: 16px;
  }

  .blog-article__head {
    gap: 12px;
    padding-bottom: 12px;
  }

  .blog-article__head h1 {
    font-size: 20px;
    line-height: 28px;
  }

  .blog-article__meta {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .blog-article__cat,
  .blog-article__date {
    font-size: 12px;
    line-height: 18px;
  }

  .blog-article__date {
    padding-left: 12px;
  }

  .blog-share {
    gap: 12px;
  }

  .blog-share>span {
    font-size: 13px;
    line-height: 20px;
  }

  .blog-share>a {
    width: 28px;
    height: 28px;
  }

  .blog-article__body {
    font-size: 14px;
    line-height: 22px;
  }

  .blog-article__body h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .blog-article__body h3 {
    font-size: 15px;
    line-height: 22px;
  }

  .blog-article__foot .blog-share>span {
    font-size: 14px;
    line-height: 22px;
  }

  .blog-aside {
    gap: 16px;
  }

  .blog-side-item {
    gap: 10px;
    padding: 12px 0;
  }

  .blog-side-item>img {
    width: 80px;
    max-width: 80px;
  }

  .blog-side-item .txt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
  }

  .block--blog-related {
    padding: 24px 0 40px;
  }

  .block--blog-related .section-title {
    font-size: 20px;
    line-height: 28px;
  }

  .related-blog-owl {
    margin-top: 16px;
  }

  .related-blog-owl .blog-card__title {
    font-size: 14px;
    line-height: 20px;
    height: 40px;
  }

  .related-blog-owl .blog-card__cat,
  .related-blog-owl .blog-card__date {
    font-size: 12px;
    line-height: 18px;
  }

  .block--shipping {
    padding: 24px 0 40px;
  }

  .block--shipping-form {
    padding: 32px 0;
  }

  .shipping-intro,
  .shipping-scope,
  .shipping-gallery,
  .shipping-price {
    gap: 12px;
    margin-bottom: 24px;
  }

  .shipping-intro .section-title {
    text-align: left;
    font-size: 20px;
    line-height: 28px;
  }

  .shipping-intro .txt {
    font-size: 14px;
    line-height: 22px;
  }

  .shipping-banner {
    margin-bottom: 24px;
    border-radius: 10px;
  }

  .shipping-banner>img {
    height: 180px;
  }

  .shipping-banner__cap {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .shipping-banner__tag {
    padding: 0 12px;
    font-size: 11px;
    line-height: 18px;
  }

  .shipping-banner__cap .txt {
    font-size: 16px;
    line-height: 22px;
  }

  .shipping-scope h2,
  .shipping-gallery h2,
  .shipping-price h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .shipping-list {
    gap: 12px;
  }

  .shipping-list li {
    font-size: 14px;
    line-height: 22px;
  }

  .shipping-list li>img {
    width: 20px;
    height: 20px;
  }

  .shipping-gallery .row {
    --bs-gutter-x: 8px;
    --bs-gutter-y: 8px;
  }

  .shipping-gallery__img {
    height: 140px;
    border-radius: 8px;
  }

  .shipping-price__note {
    font-size: 13px;
    line-height: 20px;
  }

  .shipping-table__head,
  .shipping-table__row {
    min-width: 520px;
    font-size: 13px;
    line-height: 20px;
  }

  .shipping-table__head>[class*="col"],
  .shipping-table__row>[class*="col"] {
    padding: 10px 12px;
  }

  .shipping-cta {
    flex-direction: column;
    align-items: stretch !important;
    padding: 16px;
    border-radius: 12px;
  }

  .shipping-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .shipping-cta__title {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 6px;
  }

  .shipping-cta__desc {
    font-size: 13px;
    line-height: 20px;
  }

  .shipping-request {
    border-radius: 12px;
  }

  .shipping-request__left {
    min-height: 220px;
    padding: 20px;
    gap: 20px;
  }

  .shipping-request__copy h2 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  .shipping-request__copy .txt,
  .shipping-request__contacts a {
    font-size: 14px;
    line-height: 22px;
  }

  .shipping-request__form {
    padding: 16px;
    gap: 12px;
  }

  .shipping-request__secure {
    font-size: 12px;
    line-height: 18px;
  }

  .block--contact {
    padding: 24px 0 40px;
  }

  .contact-channels {
    margin-bottom: 20px;
    --bs-gutter-x: 8px;
    --bs-gutter-y: 8px;
  }

  .contact-channel {
    gap: 10px;
    padding: 12px 8px;
    border-radius: 10px;
  }

  .contact-channel__icon {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .contact-channel__icon i {
    font-size: 16px;
  }

  .contact-channel__body {
    gap: 4px;
  }

  .contact-channel__body strong {
    font-size: 12px;
    line-height: 18px;
  }

  .contact-channel__body span {
    font-size: 12px;
    line-height: 18px;
  }

  .contact-main {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
  }

  .contact-form {
    padding: 16px;
    gap: 16px;
    border-radius: 10px;
  }

  .contact-form__head h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .contact-form__head .txt {
    font-size: 13px;
    line-height: 20px;
  }

  .contact-agree__text {
    font-size: 13px;
    line-height: 20px;
  }

  .contact-map {
    min-height: 0;
    border-radius: 12px;
  }

  .contact-map__frame {
    min-height: 220px;
    aspect-ratio: 16 / 10;
    flex: none;
  }

  .contact-map__addr {
    padding: 12px 16px 14px;
    gap: 12px !important;
  }

  .contact-map__label {
    font-size: 13px;
    line-height: 20px;
  }

  .contact-map__text {
    font-size: 13px;
    line-height: 20px;
  }

  .list-toolbar {
    flex-direction: column;
    align-items: stretch !important;
    gap: 16px !important;
    margin-bottom: 16px;
  }

  .list-toolbar .section-title {
    width: 100%;
  }

  .list-toolbar__actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap !important;
    gap: 12px !important;
  }

  .list-toolbar__divider {
    display: none;
  }

  .list-filter {
    gap: 8px;
    font-size: 14px;
    line-height: 22px;
    flex-shrink: 0;
  }

  .list-sort__label {
    display: none;
  }

  .list-toolbar__actions>.d-flex {
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
  }

  .list-toolbar__actions .list-sort {
    font-size: 14px;
    line-height: 22px;
    padding-left: 12px;
    padding-right: 32px;
  }

  .list-grid {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .list-grid--combo,
  .list-grid--golf {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .list-grid .product-card .p-3,
  .list-grid .product-card__body,
  .list-grid .golf-card__body {
    padding: 10px !important;
    gap: 6px !important;
  }

  .list-grid .product-card__title,
  .list-grid .golf-card__title {
    font-size: 13px;
    line-height: 18px;
  }

  .list-grid .fw-semibold {
    font-size: 12px;
    line-height: 18px;
  }

  .list-grid .product-card__rating {
    font-size: 12px;
    line-height: 18px;
  }

  .list-grid .price {
    font-size: 13px;
    line-height: 18px;
  }

  .list-grid .price--old {
    font-size: 11px;
    line-height: 16px;
  }

  .list-grid .golf-card__media>img {
    height: auto;
  }

  .detail-head {
    flex-direction: column;
    align-items: stretch !important;
  }

  .detail-gallery__main {
    height: 220px;
  }

  .detail-gallery__thumb {
    height: 104px;
  }

  .room-search .field {
    flex: 1 1 100%;
  }

  .btn-room-search {
    width: 100%;
    height: 48px;
  }

  .room-card__action .text-end {
    text-align: left !important;
  }

  .room-card__action .justify-content-end {
    justify-content: flex-start !important;
  }

  .room-card__media>img:first-child {
    min-height: 180px;
  }

  .block--about .about-content {
    gap: 20px;
  }

  /* 
  .about-content .section-title {
    font-size: 22px;
    line-height: 30px;
    text-align: left;
  } */

  .quote-bar>.txt {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }

  .rating-card {
    width: 100%;
    max-width: 100%;
    padding: 28px 16px;
    gap: 20px;
  }

  .rating-card__score strong {
    font-size: 44px;
    letter-spacing: -1.6px;
  }

  .rating-card__score img {
    width: 36px;
    height: 54px;
  }

  .block--about .about-row .col-md {
    width: 100%;
  }

  .feature-item .icon--xl {
    width: 48px !important;
    height: 48px !important;
  }

  .feature-item h4 {
    font-size: 15px;
    line-height: 22px;
  }

  .feature-item .txt {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 575.98px) {
  .hero__image {
    height: 300px;
  }

  .hero::before {
    height: 300px;
  }

  .hero__content-wrap {
    margin-top: -225px;
    gap: 16px;
  }

  .hero__content h1 {
    font-size: 22px;
    line-height: 30px;
  }

  .hero__content .txt {
    font-size: 13px;
    line-height: 18px;
  }

  .hero__search {
    margin-bottom: -44px;
  }

  .hero:has(.hero__search)+.block {
    padding-top: 90px;
  }

  .search-tab {
    padding: 11px 4px;
    gap: 4px;
    font-size: 11px;
  }

  .hero--about .hero__image,
  .hero--about::before {
    height: 240px;
  }

  .block--blog {
    padding: 20px 0 32px;
  }

  .blog-feature__body {
    padding-top: 10px;
    gap: 6px;
  }

  .blog-feature__title {
    font-size: 12px;
    line-height: 16px;
    height: 32px;
  }

  .blog-feature__cat,
  .blog-feature__date {
    font-size: 11px;
    line-height: 16px;
  }

  .blog-featured,
  .blog-grid {
    --bs-gutter-x: 8px;
    --bs-gutter-y: 12px;
    margin-bottom: 20px;
  }

  .blog-card__excerpt {
    display: none;
  }

  .blog-grid .blog-card__title {
    font-size: 12px;
    line-height: 16px;
    height: 32px;
  }

  .blog-grid .blog-card__cat,
  .blog-grid .blog-card__date {
    font-size: 11px;
    line-height: 16px;
  }

  .block--blog-detail {
    padding: 16px 0 32px;
  }

  .blog-article__head h1 {
    font-size: 18px;
    line-height: 26px;
  }

  .blog-article__body h2 {
    font-size: 16px;
    line-height: 24px;
  }

  .blog-side-item>img {
    width: 72px;
    max-width: 72px;
  }

  .block--blog-related {
    padding: 20px 0 32px;
  }

  .block--shipping {
    padding: 20px 0 32px;
  }

  .block--shipping-form {
    padding: 24px 0;
  }

  .pager {
    margin-top: 16px;
  }

  .pager .pagination {
    gap: 4px;
  }

  .pager .page-link {
    width: 28px;
    height: 28px;
    font-size: 12px;
    line-height: 18px;
  }

  .pager .page-link img {
    width: 12px;
    height: 12px;
  }

  .block--contact {
    padding: 20px 0 32px;
  }

  .contact-form {
    padding: 14px;
    gap: 14px;
  }

  .contact-form__head h2 {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-map__frame {
    min-height: 200px;
  }

  .shipping-banner>img {
    height: 160px;
  }

  .shipping-banner__cap .txt {
    font-size: 14px;
    line-height: 20px;
  }

  .shipping-gallery__img {
    height: 110px;
  }

  .shipping-table__head,
  .shipping-table__row {
    min-width: 480px;
  }

  .experience-card__media>img {
    min-height: 380px;
  }

  .experience-card__body {
    left: 14px;
    right: 14px;
    bottom: 16px;
    gap: 14px;
  }

  .experience-card__copy h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .experience-card__copy .txt {
    font-size: 13px;
    line-height: 20px;
  }

  .experience-card .btn--glass {
    width: 100%;
    justify-content: center;
  }

  .experience-nav .nav-link {
    min-height: 52px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 18px;
  }

  .block--tight>.container-hl>.d-flex.align-items-end {
    gap: 10px;
    margin-bottom: 16px !important;
  }

  /* 
  .block--tight .section-title {
    font-size: 20px;
    line-height: 28px;
    text-align: left;
  } */

  /* .block--tight .section-sub {
    font-size: 13px;
    line-height: 20px;
    text-align: left;
  } */

  /* .cruise-owl .product-card__link > img,
  .hotel-owl .product-card__link > img {
    height: 148px;
  } */

  .cruise-owl .owl-dots,
  .hotel-owl .owl-dots {
    margin-top: 12px;
  }

  .section-title {
    font-size: 18px;
    line-height: 25px;
    text-align: center;
  }

  .hotel-ov-card--intro,
  .hotel-ov-card--amenity {
    flex: unset;
    width: 100%;
  }


  .list-filter span:nth-child(2) {
    display: none;
  }

  /* .about-content .section-title {
    font-size: 20px;
    line-height: 28px;
    text-align: left;
  } */

  /* .block--about {
    padding-top: 32px;
    padding-bottom: 32px;
  } */

  .about-row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
  }

  .quote-bar {
    gap: 12px;
  }

  .rating-card {
    padding: 24px 16px;
  }

  .rating-card__score strong {
    font-size: 40px;
  }

  .rating-card .txt {
    font-size: 13px;
    line-height: 20px;
  }


  .field input,
  .field input,
  .field-guests__btn {
    font-size: 12px;
  }

  .field-guests__menu {
    left: -36px;
  }

  .field-guests__name {
    font-size: 13px;
    line-height: 20px;
  }

  .field-guests .qty {
    width: 108px;
  }

  .section-sub {
    font-size: 14px;
    text-align: center;

  }


  .hotel-card__offer {
    flex-direction: column;
  }

  .hotel-card__price {
    width: 100%;
    align-items: stretch;
  }

  .hotel-card__price .btn {
    width: 100%;
  }

  .hroom-card__col--guests,
  .hroom-card__col--price,
  .hroom-card__col--book {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
  }

  .hroom-card__row .hroom-card__col--guests {
    align-items: flex-start;
    text-align: left;
  }

  .hroom-card__row .hroom-card__col--price {
    align-items: flex-start;
  }

  .hroom-card__tax {
    text-align: left;
  }

  .hroom-card__col--book:last-child {
    border-bottom: 0;
  }

  .combo__content {
    padding: 20px;
  }

  .combo__content h2 {
    font-size: 18px;
    line-height: 30px;
    height: 90px;
  }

  .combo__media {
    display: none;
  }

  .combo-owl .owl-dots {
    left: 0;
    bottom: -23px;
  }

  .pill-tabs {
    margin-top: 30px;
  }

  .combo-owl button.owl-dot {
    background: #b0d1f5;
    opacity: 0.3;
  }

  .combo-owl button.owl-dot.active {
    background: var(--blue);
    opacity: 1;
  }

  .block--hotels {
    margin-top: 30px;
  }

  .btn {
    font-size: 14px !important;
  }

  .review-card__text {
    font-size: 14px;
  }

  .stat strong {
    font-size: 35px;
  }

  .stats {
    margin-top: 0;
  }

  .partners-label {
    margin: 20px 0 40px;
  }

  .list-grid {
    --bs-gutter-x: 8px;
    --bs-gutter-y: 10px;
    margin-bottom: 16px;
  }

  .list-grid--combo,
  .list-grid--golf {
    --bs-gutter-x: 8px;
    --bs-gutter-y: 10px;
  }

  .list-grid .product-card .p-3,
  .list-grid .product-card__body,
  .list-grid .golf-card__body {
    padding: 10px !important;
    gap: 4px !important;
  }

  .list-grid .product-card__title,
  .list-grid .golf-card__title {
    font-size: 12px;
    line-height: 16px;
  }

  .list-grid .fw-semibold {
    font-size: 11px;
    line-height: 16px;
    gap: 4px !important;
  }

  .list-grid .product-card__rating {
    font-size: 11px;
    line-height: 16px;
    flex-wrap: wrap;
    gap: 2px;
  }

  .list-grid .product-card__rating .dot,
  .list-grid .product-card__rating span:not(:first-child) {
    display: none;
  }

  .list-grid .price-label {
    font-size: 10px;
    line-height: 14px;
  }

  .list-grid .price {
    font-size: 12px;
    line-height: 16px;
  }

  .list-grid .price--old {
    font-size: 10px;
    line-height: 14px;
  }

  .list-grid .d-flex.align-items-center.gap-2:has(.price) {
    flex-wrap: wrap;
    gap: 2px !important;
  }

  .list-grid .golf-card__date {
    font-size: 11px;
    line-height: 16px;
    gap: 4px;
  }

  .detail-head h1 {
    font-size: 18px;
    line-height: 26px;
  }

  .detail-loc {
    font-size: 13px;
    line-height: 20px;
  }

  .detail-gallery__main {
    height: 185px;
  }

  .detail-gallery__thumb {
    height: 88px;
  }

  .detail-tabs .nav-link {
    padding: 10px 12px;
    font-size: 12px;
  }

  .detail-panel>.txt,
  .detail-box>.txt,
  .detail-highlight li,
  .itinerary__body .txt {
    font-size: 14px;
    line-height: 22px;
  }

  .detail-card,
  .room-panel {
    padding: 0;
    border-radius: 12px;
    background: unset;
  }


  .hotel-policy summary {
    padding: 10px;
    font-size: 14px;
  }

  .itinerary__day summary strong {
    font-size: 13px;
    line-height: 18px;
  }

  .policy-panel {
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
  }

  .policy summary {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 20px;
  }

  .policy ul {
    padding: 0 10px 10px 24px;
  }

  .policy li {
    font-size: 13px;
    line-height: 20px;
  }

  .site-footer {
    padding: 40px 0 32px;
  }

  .site-footer__grid {
    gap: 28px;
  }

  .footer-logo {
    width: 168px;
  }

  .footer-contact__item small {
    font-size: 12px;
    line-height: 18px;
  }

  .footer-contact__item .txt,
  .footer-links a,
  .newsletter .txt,
  .site-footer__bottom {
    font-size: 13px;
    line-height: 20px;
  }

  .footer-title {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 22px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-links ul {
    gap: 10px;
  }

  .newsletter-form {
    height: 44px;
    padding-left: 14px;
  }

  .social img {
    width: 36px;
    height: 36px;
  }

  .book-modal {
    max-width: calc(100vw - 0.75rem);
    margin: 0.375rem auto;
  }

  .book-modal.modal-dialog-centered {
    padding: 0.375rem 0;
  }

  .book-modal__content {
    padding: 12px;
    gap: 10px;
    max-height: calc(100dvh - 0.75rem);
  }

  .book-modal__title {
    font-size: 15px;
    line-height: 22px;
  }

  .book-modal__tour>img {
    max-height: 140px;
  }

  .gallery-modal {
    --gallery-slide-h: min(42vh, 280px);
  }

  .gallery-modal .modal-dialog {
    width: calc(100vw - 1rem);
    max-width: none;
    margin: 0.5rem auto;
  }

  .gallery-modal__content {
    padding: 12px 10px 12px;
    border-radius: 12px;
  }

  .gallery-modal__close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }
  .block--hotels .container-hl{
    gap: 20px;
  }
  .gallery-modal__close img {
    width: 16px;
    height: 16px;
  }

  .gallery-modal__nav {
    width: 32px;
    height: 32px;
  }

  .gallery-modal__nav--prev {
    left: 6px;
  }

  .gallery-modal__nav--next {
    right: 6px;
  }

  .gallery-modal__thumb {
    height: 40px;
    border-radius: 6px;
  }

  .gallery-modal__count {
    font-size: 12px;
    line-height: 18px;
  }

  .book-qty span {
    font-size: 14px;
  }

  .book-qty button img {
    width: 21px;
    height: 21px;
  }

  .book-qty {
    justify-content: space-between;
    height: 37px;
    padding: 4px;
  }

  .hotel-amenity .icon--md img {
    width: 15px;
    height: 15px;
  }

  .hotel-amenity {
    gap: 0;
  }

  .hero--about .hero__main {
    padding-top: 0;
  }

  .quote-bar__text .txt {
    font-size: 14px;
  }

  .quote-bar__bar {
    display: none;
  }

  .about-exp__inner>h2 {
    font-size: 22px;
  }

  .about-exp__lead {
    font-size: 14px;
  }

  .about-exp__grid {
    margin-top: 30px;
  }

  .about-exp__icon,
  .about-exp__icon img {
    width: 40px;
    height: 40px;
  }

  .about-exp__item h3 {
    font-size: 16px;
  }

  .about-exp__item .txt {
    font-size: 14px;
  }

  .about-exp__item {
    gap: 5px;
  }

  .block--about-page {
    overflow: hidden;
  }
}