/* ==================== CONTAINER ==================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ==================== SECTION COMMON ==================== */
.g-40px {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 2.5rem;
  row-gap: 2.5rem;
  margin-top: 0;
  gap: 0;
}

.g-50px {
  --bs-gutter-x: 3.125rem;
  --bs-gutter-y: 3.125rem;
  row-gap: 3.125rem;
  margin-top: 0;
  gap: 0;
}

.g-24px {
  --bs-gutter-y: 1.5rem;
}

section {
  padding: 50px 0;
  scroll-margin-top: 90px;
  overflow: hidden;
}

.display-none {
  display: none;
}

.site {
  overflow-x: hidden;
  position: relative;
}

#sub-product-category-1-page {
  overflow: visible;
}

.site-content {
  padding-top: 118px;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 2.5rem;
  text-align: left;
}

.gap-50 {
  gap: 3.125rem;
}

.gap-40 {
  gap: 2.5rem;
}

.gap-30 {
  gap: 1.875rem;
}

.d-none {
  display: none;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

/*=== button === */
.btn-gradient {
  background: var(--gradient-black-to-gray);
  background: linear-gradient(90deg, #000000 0%, #4D4D4D 100%);
  color: white;
  border: none;
  padding: 13px 35px;
  border-radius: var(--bs-border-radius);
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  height: 50px;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}

.btn-gradient:hover {
  color: #fff !important;
}

.btn-outline {
  background: transparent;
  color: var(--bs-body-color);
  border: none;
  padding: 13px 35px;
  border-radius: var(--bs-border-radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  height: 50px;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  border: 1px solid var(--bs-border-color);
}

.btn-outline:hover {
  color: #fff !important;
  background: var(--gradient-black-to-gray)
}

.btn-white {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 70px;
  border-radius: var(--bs-border-radius);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-white:hover {
  background-color: var(--bs-primary);
  color: #fff !important;
}

/* span-gradient */

.span-gradient {
  background: var(--gradient-black-to-gray);
  color: white;
  padding: 0px 14px;
  border-radius: var(--bs-border-radius);
  font-weight: bold;
  font-size: 0.75rem;
}

/* ==== swiper button ======= */

.swiper-button-prev,
.swiper-button-next {
  color: white;
  background: rgba(255, 255, 255, 0.5);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--bs-primary);
}

.swiper-navigation-icon {
  width: 12px !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
  color: #575756;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
}

.swiper-button-prev {
  left: -80px;
}

.swiper-button-next {
  right: -80px;
}

/* ======== Nút điều hướng Swiper tùy chỉnh ======== */
.swiper-button-next-border,
.swiper-button-prev-border {
  width: 45px;
  height: 45px;
  border: 1px solid #c6c6c6;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.swiper-button-next-border:hover,
.swiper-button-prev-border:hover {
  border-color: #333;
}

/* ======== Mũi tên ======== */
.swiper-button-next-border::before,
.swiper-button-prev-border::before {
  content: "";
  width: 14px;
  height: 14px;
  border-left: 1px solid #575756;
  border-bottom: 1px solid #575756;
  display: block;
}

/* NEXT: mũi tên xoay 315° (hướng →) */
.swiper-button-next-border::before {
  transform: rotate(220deg);
  margin-left: -5px;
}

/* PREV: mũi tên xoay 135° (hướng ←) */
.swiper-button-prev-border::before {
  transform: rotate(50deg);
  margin-right: -5px;
}

/* Vị trí 2 nút */
.swiper-button-prev-border {
  left: -90px;
}

.swiper-button-next-border {
  right: -90px;
}

/* Style the pagination container */
.swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

/* Style individual pagination bullets */
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #363635;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Style the active pagination bullet */
.swiper-pagination-bullet-active {
  background-color: #363635;
  width: 15px;
  height: 15px;
}

/* header  */

.header-top {
  background: #3e3e3e;
  border-bottom: 1px solid #686868;
}

.header-logo span {
  color: #fff;
}

.search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--bs-primary);
}

.cart-badge {
  background: var(--bs-primary);
  color: #000;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 50%;
}

.lux-bullet-bar {
  max-width: 1560px;
  padding: 5px 15px;
}

.lux-navbar {
  /* position: relative; */
  position: fixed;
  background: var(--bs-secondary);
  border-bottom: 1px solid #3a3a3a;
  /* transition: all .3s ease; */
  top: 0;
  left: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  width: 100%;
  animation: slideDown 0.5s ease;
}

.lux-navbar .nav-link {
  color: #fff;
  text-decoration: none;
}

.lux-navbar .nav-link:hover {
  color: var(--bs-primary);
}

/* Search box */
.search-box {
  min-height: 40px;
  margin-right: 73px;
}

.search-box .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: none;
}

/* MENU BAR */

/* khi sticky */
#headerSticky {
  position: fixed;
  height: 118px;
}

#headerStickyMobile {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  width: 100%;
  animation: slideDown 0.4s ease;
  height: 74px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.lux-menu {
  max-width: 1560px;
  padding: 6px 15px;
}

.lux-menu ul>li:first-child a {
  padding-left: 0;
}

.lux-menu .nav-item {
  padding: 0 16px;
}

.lux-menu .nav-link {
  color: #fff;
  padding: 11px 0;
  font-size: 14px;
  position: relative;
  text-transform: uppercase;
}

.lux-navbar .nav-link:hover {
  color: #FFF;
}

.lux-menu .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: #FFF;
  transform: scaleX(0);
  transform-origin: left;
  color: #FFF;
  transition: transform .3s ease;
}

.lux-menu .nav-link:hover::before,
.lux-menu .nav-link.active::before {
  transform: scaleX(1);
}

.lux-menu .nav-link.active {
  color: #FFF;
}

.badge-cart {
  background: var(--bs-primary);
  color: #000;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 0.65rem;
  color: #fff;
  border: 2px solid #fff;
}

/* MEGA MENU */
.megamenu .dropdown-menu {
  width: 900px;
  background: rgba(0, 0, 0, 0.89);
  color: #fff;
  border: none;
  top: 100%;
}

.megamenu .mega-panel li {
  padding: 6px 42px;
  border-radius: var(--bs-border-radius);
  position: relative;
}

.megamenu .mega-panel .list-unstyled li:last-child {
  margin-bottom: 0;
}

.megamenu .mega-panel li::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  top: 50%;
  background-color: #fff;
  transform: translateY(-50%);
  left: 28px;
  border-radius: 100%;
  transition: all .1s ease;
}

.megamenu .mega-panel li:hover,
.megamenu .mega-panel li.is-active {
  background-color: #4b4b4b;
}

.megamenu .mega-panel li:hover a,
.megamenu .mega-panel li a.active {
  color: var(--bs-primary);
}

.megamenu .mega-panel li:hover::before,
.megamenu .mega-panel li.is-active::before {
  background-color: var(--bs-primary);
}

.megamenu .mega-panel a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 5px 0;
}

.megamenu .mega-panel a:hover {
  color: var(--bs-primary);
}

/* Khi hover vào nav-item có class .dropdown.megamenu thì hiển thị menu */
.megamenu .dropdown-mega-menu {
  position: absolute;
  z-index: 99;
  min-width: max-content;
  width: 100%;
  padding: 7px 0 0;
  margin: 0;
  font-size: 14px;
  color: var(--bs-body-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-secondary);
  background-clip: padding-box;
  border: 1px solid var(--bs-secondary);
  border-radius: var(--bs-border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.megamenu:hover .dropdown-mega-menu {
  opacity: .95;
  visibility: visible;
  transform: translateY(0);
}

/* footer */
.footer-cta p {
  max-width: 790px;
  margin: 0 auto;
}

.lux-footer {
  background: var(--bs-secondary);
}

.lux-footer a {
  color: #fff;
  text-decoration: none;
}

.lux-footer a:hover {
  color: var(--bs-primary);
}

.newsletter .form-control,
.newsletter .btn {
  border-radius: var(--bs-border-radius) !important;
  font-size: 14px;
}

.newsletter .btn:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}

.social-icons a {
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 30px;
}

.social-icons a:hover {
  transform: translateY(-10px);
}

.social-icons a:hover {
  color: var(--bs-primary);
}

/* ==================== 1. section-1 BANNER ==================== */
.section-1-section {
  position: relative;
  z-index: 9;
}

.section-1-subtitle {
  margin-bottom: 3.875rem;
}

.section-1-swiper .swiper {
  overflow: visible;
}

.section-1-swiper .swiper-slide {
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 460px;
}

.section-1-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 460px;
}

.section-1-navigation {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  position: absolute;
  pointer-events: none;
}

.image img {
  width: 100%;
  height: 100%;
}

.slide-1 {
  background-image: url("../images/uploads/hero-bg-1.png");
}

#product-category-3 .slide-1 {
  background-image: url("../images/uploads/4.\ PRODUCT\ CATEGORY\ 3-139.png");
}

.section-1__sub-product-1 .slide-1 {
  background-image: url("../images/uploads/6. PRODUCT SUB - CATEGORY 1-147.png");
}

.slide-2 {
  background-image: url("https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1600");
}

.slide-3 {
  background-image: url("https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1600");
}

.search-container {
  background: white;
  border-radius: var(--bs-border-radius);
  padding: 3px;
  display: flex;
  align-items: center;
  max-width: 800px;
  position: relative;
}

.search-input {
  border: none;
  outline: none;
  padding: 12px 20px;
  flex: 1;
  font-size: 1rem;
  border-radius: 50px;
}

.search-input::placeholder {
  color: #999;
}

.rotating-text {
  display: inline-block;
  color: #f0c419;
  font-weight: 600;
  min-width: 200px;
  text-align: left;
}

.search-popup,
.search-popup-header,
.search-popup-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--bs-border-radius) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  padding: 20px;
  z-index: 1000;
  min-width: 575px;
  max-height: 333px;
  overflow-y: auto;
}

.search-popup.active {
  display: block;
}

.search-input-header {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.search-popup-header.active-popup-header {
  display: block;
}

.search-popup-mobile.active-popup-mobile {
  display: block;
}

.search-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.search-tags,
.lux-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

button,
button:focus,
button:active {
  outline: none;
  box-shadow: none;
}


.search-tag,
.lux-search-tag {
  background: #f5f5f5;
  border: none;
  padding: 8px 16px;
  border-radius: var(--bs-border-radius);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;

  color: var(--bs-body-color);
  /* FIX chữ xanh */
  appearance: none;
  /* FIX style mobile */
  -webkit-appearance: none;
  outline: none;
}

.search-tag:hover,
.lux-search-tag:hover {
  background: #e0e0e0;
}

.swiper-pagination-section-1 {
  bottom: 40px !important;
}

.swiper-pagination-section-1 .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.5;
}

.swiper-pagination-section-1 .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}


.lux-search-popup {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: none;
  flex-direction: column;
}

.lux-search-popup.is-active {
  display: flex;
}

/* HEADER */
.lux-search-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.lux-search-input {
  flex: 1;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  outline: none;
  font-size: 14px;
  padding-left: 10px;
  height: 40px;
}

.lux-search-submit {
  border: 0;
  background: var(--gradient-black-to-gray);
  padding: 6px 10px;
  border-radius: var(--bs-border-radius);
  cursor: pointer;
}

.lux-search-close {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
}

/* CONTENT */
.lux-search-content {
  padding: 12px;
  overflow-y: auto;
}

.lux-search-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.lux-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-search-mobile {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-black-to-gray);
  border: none;
  border-radius: var(--bs-border-radius);
  padding: 5px 8px;
}

.limit-5-lines {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#bookingPopup .logo-container {
  max-width: 392px;
  margin: 0 auto 30px;
}

#bookingPopup .logo-container img {
  width: 100%;
}


/* ==================== 2. HIGHLIGHT - RED RIVER RAMBLE ==================== */

.banner-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.banner-image {
  overflow: hidden;
  height: 460px;
}

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

/* Mobile: chỉ còn 1 ảnh */
@media (max-width: 768px) {
  .banner-images {
    grid-template-columns: 1fr;
  }

  .banner-image {
    height: 320px;
  }

  /* Ẩn ảnh thứ 2 */
  .banner-image:nth-child(1) {
    display: none;
  }
}


.section__2-swiper {
  padding-bottom: 70px;
}

.section__2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: top;
}

.section__2-content p {
  margin-bottom: 42px;
}

.section__2-img img {
  width: 100%;
}

.btn-learn-more {
  display: inline-block;
  padding: 12px 35px;
  background: transparent;
  border: 2px solid #c9a96e;
  color: #c9a96e;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-learn-more:hover {
  background: #c9a96e;
  color: #000;
}

/* ==================== 3. WHAT YOU'LL RECEIVE ==================== */
.section-3-item {
  min-height: 522px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}

.section-3-item h3 {
  min-height: 60px;
  line-height: 30px;
  /* chiều cao 1 dòng */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* giới hạn 2 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.section-3-item p {
  min-height: 140px;
}

/* ==================== 4. TRENDS  ==================== */

.section-trends {
  background: #000;
  color: #fff;
}

.section-4-card {
  min-height: 507px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.card-body {
  width: 100%;
}

#section-4-swiper .section-4-card .card-body h3 {
  min-height: 48px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#section-4-swiper .section-4-card .card-body p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 49px !important;
}

.trends-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.trend-card {
  position: relative;
  border-radius: var(--bs-border-radius);
  ;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.trend-card img {
  transition: transform 0.5s;
}

.trend-card:hover img {
  transform: scale(1.1);
}

.trend-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #fff;
  padding: 40px 20px 25px;
}

.trend-info h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.price {
  margin-top: 15px;
  font-size: 1.3rem;
}

.discount {
  background: #c9a96e;
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: bold;
  margin-left: 10px;
  font-size: 0.9rem;
}

/* ==================== 5. SECTION 5 ==================== */
.section-5-swiper .swiper-slide:nth-child(even) {
  margin-top: 50px;
}

.section-5-item {
  position: relative;
  width: 100%;
  border-radius: var(--bs-border-radius);
  overflow: hidden;
}

.section-5-swiper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.section-5-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.section-5-item p {
  position: absolute;
  bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  margin-bottom: 13px;
}

.section-5-item:hover img {
  transform: scale(1.15);
}

/* ==================== 7. ABOUT TEXT ==================== */
/* .accordion-button {
  padding: 0;
  font-size: 1.875rem;
  justify-content: center;
  color: var(--bs-primary);
} */

.accordion-button:not(.collapsed),
.accordion-button:focus {
  background: transparent;
  box-shadow: none;
  color: var(--bs-primary);
}

.accordion-button::after {
  content: "+";
  width: 0;
  background: transparent;
  font-family: "Font Awesome 7 Sharp";
  transition: all 0.3s ease;
  font-weight: bolder;
  font-size: 18px;
  margin-right: 20px;
  color: #000;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
  transform: none;
  font-family: "Font Awesome 7 Sharp";
  background: transparent;
  transition: all 0.3s ease;
  font-weight: bolder;
  font-size: 22px;
  margin-right: 20px;
  color: #000;
}

.section-7 .accordion-button::after {
  font-size: 26px;
}

.section-7 .accordion-button:not(.collapsed)::after {
  font-size: 30px;
}


/* ==================== 8. FINAL CTA ==================== */



/* ================= production category 1 ================== */
.section-2-product .destinations-info {
  min-width: 350px;
  background-color: #ffefd5;
  padding: 20px 25px;
  border-radius: var(--bs-border-radius);
}

.section-4-product-1 .sub-title {
  padding: 90px 0 21px;
}

.section-3-product .destination-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--bs-border-radius);
  height: 100%;
  display: block;
}

.section-3-product .destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.section-3-product .destination-card:hover img {
  transform: scale(1.05);
}

.section-3-product .destination-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.section-4-product__category-1 {
  padding-bottom: 20px;
}

.section-4-product__category-1 .destination-list {
  list-style: none;
  padding: 0;
  min-width: 204px;
  margin-bottom: 0;
}

.section-4-product__category-1 .destination-list li {
  margin-bottom: 20px;
}

.section-4-product__category-1--list {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
}

.destination-list li:before {
  content: "• ";
  color: #333;
  font-weight: bold;
  margin-right: 8px;
}

.destination-list a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.destination-list a:hover {
  color: var(--bs-primary);
}

/* ====================== page product category 2 =================== */


/* ----- section 3 ------ */
.section-3-product-2 .section-title {
  margin-bottom: 0;
}

.section-3-product-2 .card-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--bs-border-radius);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
}

.section-3-product-2 .card-item:hover {
  transform: scale(1.02);
}

.section-3-product-2 .card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-3-product-2 .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
}

/* ------------------ section 6 product 2 --------------------- */
.section-6-title {
  min-height: 72px;
}

.section-6-product-2 .review-count {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.section-6-product-2 .trustpilot-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #191919;
}

.section-6-product-2 .swiper {
  height: auto;
}

.section-6-product-2 .review-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section-6-product-2 .review-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.section-6-product-2 .review-stars {
  margin-bottom: 12px;
}

.section-6-product-2 .review-text {
  margin-bottom: 12px;
}

.section-6-product-2 .review-author {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-6-product-2 .author-name {
  color: #666;
}

.swiper-button-next-review-product {
  right: -70px;
}

.swiper-button-next-next-product {
  left: -70px;
}


/* ======================= product 3 ====== */


.section-3__product-3 .feature-item {
  display: flex;
  align-items: flex-start;
}

.section-3__product-3 .feature-number {
  color: var(--bs-primary);
  font-size: 40px;
  font-weight: 600;
  margin-right: 15px;
}

.section-3__product-3 .feature-text h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.section-4__product-3 .transport-card {
  position: relative;
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.section-4__product-3 .transport-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-4__product-3 .transport-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 20px;
}

.section-4__product-3 .swiper-slide {
  min-width: 250px;
}

.section-4__product-3 .transport-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.btn-color-primary {
  background-color: var(--bs-primary);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: var(--bs-border-radius);
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.btn-color-primary:hover {
  background-color: var(--bs-secondary);
}


.vimeo-wrapper,
.section-5__product-3 .video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  border-radius: var(--bs-border-radius);
  overflow: hidden;
}

.vimeo-wrapper iframe,
.section-5__product-3 .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ============= sub product category 1 ============== */
.section-5__sub-product-1 {
  overflow: visible !important;
}

.section-5__sub-product-1 .row>* {
  padding-right: 10px;
  padding-left: 10px;
}

.section-1__sub-product-1 .section-1__content {
  max-width: 260px;
  float: right;
}

.section-1__sub-product-1 .btn-white {
  font-size: 1rem;
  padding: 13px 26px;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.arrow.up {
  transform: rotate(180deg);
}

.extra-content {
  height: 0;
  overflow: hidden;
  transition: height 0.2s;
}

.extra-content.show {
  overflow: visible;
  margin-bottom: 30px;
}

.section-2__sub-product-1 .info-section {
  display: flex;
  gap: 10px;
  margin: 40px 0 0;
  justify-content: space-between;
  max-width: 500px;
}

.section-3__sub-product-1--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 130px;
  text-align: center;
  justify-content: space-between;
}

.section-3__sub-product-1--content img {
  height: 58px;
  object-fit: contain;
}


/* sub-product grid and filter  */

.round label {
  border: 1px solid var(--bs-secondary);
  border-radius: 50%;
  cursor: pointer;
  height: 13px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
}

.round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 4px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 3px;
  transform: rotate(-45deg);
  width: 6px;
}

.round input[type="checkbox"] {
  opacity: 0;
  z-index: 99;
  position: relative;
}

.round input[type="checkbox"]:checked+label {
  background-color: var(--bs-secondary);
}

.round input[type="checkbox"]:checked+label:after {
  opacity: 1;
}

#mobileFilterModal {
  z-index: 10500;
}

#mobileFilterModal .filter-sidebar {
  padding: 0;
  border: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.breadcrumb a {
  flex-shrink: 0;
}

/* Sort By Select */
#sortBy {
  min-width: 150px;
  font-size: 14px;
  border-radius: var(--bs-border-radius);

}

.form-select:focus {
  box-shadow: none;
  border-color: var(--bs-border-color);
}

#sortBy option:hover {
  background-color: red;
}


/* Filter Sidebar */
.filter-sidebar-container {
  position: sticky;
  top: 118px;
  overflow-y: auto;
  max-height: 100vh;
}

.filter-sidebar-container .date-content {
  border-top: 1px solid var(--bs-border-color);
}

.filter-mobile {
  min-width: 100%;
  overflow-x: auto;
  padding-bottom: 10px;
}

.filter-sidebar {
  padding: 20px 20px 0px 20px;
  /* position: sticky;
  top: 118px; */
  /* max-height: calc(100vh - 100px); */
  /* overflow-y: auto; */
  border: 1px solid var(--bs-accordion-border-color);
  border-radius: var(--bs-border-radius);
}

.filter-sidebar::-webkit-scrollbar {
  width: 6px;
}

.filter-sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.filter-sidebar::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.filter-section {
  border-bottom: 1px solid var(--bs-border-color);
  padding: 12px 0;
}

.filter-section:last-child {
  border-bottom: none;
}

.filter-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 8px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color);
  text-align: left;
}

.filter-toggle:hover {
  color: var(--bs-primary);
}

.filter-toggle i.fa-chevron-down {
  font-size: 12px;
  transition: transform 0.3s;
}

.filter-toggle[aria-expanded="false"] i.fa-chevron-down {
  transform: rotate(-90deg);
}

.filter-options {
  padding: 10px 0 0 24px;
}

.filter-options label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
  color: #495057;
}

.filter-options input[type="checkbox"] {
  margin-right: 4px;
  cursor: pointer;
}

/* Mobile Filter Styles */
.filter-section-mobile {
  border-bottom: 1px solid var(--bs-border-color);
}

.filter-toggle-mobile {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
  text-align: left;
}

.filter-toggle-mobile i.fa-plus {
  font-size: 16px;
  transition: transform 0.3s;
}

.filter-toggle-mobile[aria-expanded="true"] i.fa-plus {
  transform: rotate(45deg);
}

/* Activity Cards */
.activity-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bs-border-color);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.activity-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.activity-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.activity-card:hover img {
  transform: scale(1.05) translateX(3px);
}



.badge-sale {
  background: var(--gradient-black-to-gray);
  color: white;
  padding: 0px 14px;
  border-radius: var(--bs-border-radius);
  font-weight: bold;
  font-size: 0.75rem;
}

.activity-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.activity-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--secondary-color);
  line-height: 1.4;
  min-height: 42px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.activity-location {
  font-size: 14px;
  color: #6F6F6E;
  margin-bottom: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 45px;

}

.activity-location i {
  margin-right: 4px;
  color: var(--bs-primary);
}

.activity-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.stars {
  color: var(--bs-primary);
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
}

.star-half {
  position: relative;
  display: inline-block;
}

.star-half::before {
  content: "★";
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: var(--bs-primary);
}

.star-empty {
  color: #ddd;
}

.rating-count {
  font-size: 16px;
  color: #6F6F6E;
}

.booked-count {
  font-size: 16px;
  color: #6F6F6E;
}

.activity-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
  justify-content: space-between;
  flex-wrap: wrap;
}

.price-label {
  font-size: 16px;
  font-weight: 500;
}


/* Pagination */
.pagination {
  margin-top: 30px;
  margin-bottom: 0;
}

.pagination .page-item {
  margin-bottom: 0;
}

.post-detail-content {
  padding-bottom: 50px;
  border-bottom: 1px solid var(--bs-body-color);
}

.page-link {
  color: var(--secondary-color);
  border: 1px solid var(--bs-border-color);
  padding: 8px 14px;
  margin: 0 3px;
  border-radius: 4px;
}

.page-item.active .page-link {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: var(--secondary-color);
}

.page-link:hover {
  background-color: #f8f9fa;
  border-color: var(--bs-border-color);
}

/* Modal Styles */
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

.modal-fullscreen {
  max-width: 90%;
  float: right;
}

.modal-header {
  padding: 10px 15px;
}


/* Sort By Select */
#sortBy {
  min-width: 150px;
  font-size: 14px;
}

/* Mobile Filter Button */
/* Clear Filters Button */
/* #clearFilters {
  font-size: 16px;
  font-weight: 500;
  width: 70px;
  height: 25px;
  border-radius: var(--bs-border-radius);
  border-color: var(--bs-border-color);
  padding: 0;
  color: var(--bs-body-color);
  background-color: transparent;
}

.modal-footer .btn-gradient {
  width: 70px;
  height: 25px;
  padding: 0;
} */

#clearFilters {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--bs-border-radius);
  border-color: var(--bs-border-color);
  height: 50px;
  color: var(--bs-body-color);
  background-color: transparent;
}

.modal-footer .btn-gradient {
  flex: 1;
}

/* Loading State */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Custom Sort Dropdown Styles */
.custom-sort-dropdown {
  position: relative;
}

.sort-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  padding: 4px 9px;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  width: max-content;
  min-width: 117px;
}

.section-5__sub-product-1 .sort-dropdown-toggle {
  min-width: auto;
}

.sort-dropdown-toggle:hover {
  border-color: var(--bs-secondary);
}

.sort-dropdown-toggle i {
  margin-left: auto;
  font-size: 12px;
  transition: transform 0.3s;
}

.sort-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.sort-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--bs-border-color);
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.sort-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sort-option {
  padding: 4px 9px;
  font-size: 12px;
  color: var(--secondary-color);
  cursor: pointer;
  transition: background-color 0.2s;
}

.sort-option:hover {
  background-color: #e3f2fd;
}

.sort-option.active {
  background: var(--gradient-black-to-gray);
  color: white;
}


.section-7__sub-product-1 .accordion {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

.section-7__sub-product-1 .accordion-item {
  border-bottom: 0;
  margin: 0 20px;
  /* padding: 25px 0; */
  padding-top: 25px;
  border-top: 1px solid var(--bs-border-color);
}

.section-7__sub-product-1 .accordion-header {
  padding-bottom: 25px;
}

.section-7__sub-product-1 .accordion-item:nth-child(1) .accordion-header {
  border-top: 0;
}

.accordion-body {
  background-color: #e1e0e0;
  margin-bottom: 25px;
  border-radius: var(--bs-border-radius);
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
  color: var(--bs-body-color);
}

.pagination .page-link {
  color: var(--bs-body-color);
  font-size: 12px;
  padding: 3px 12px;
  border-radius: var(--bs-border-radius);
  border: 1px solid var(--bs-border-color);
  transition: all .3s ease;
}

.page-item.active .page-link,
.page-item:hover .page-link {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}

/* ====== product detail 1 ====== */
.section-1__product-detail-1 {
  padding-bottom: 60px;
}

.btn-ss1-product-detail {
  position: absolute;
  right: 15px;
  bottom: 110px;
  white-space: nowrap;
}

.section-1__product-detail-1--gallery .item-gallery {
  width: 50%;
}

.section-1__product-detail-1--gallery img {
  max-height: 460px;
  width: 100%;
  object-fit: cover;
}

.btn-white-small {
  background: #fff;
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: var(--bs-border-radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  pointer-events: auto;
  white-space: nowrap;
}

.btn-white-small:hover {
  color: #000;
}


#product-detail-1 .price-bar-wrapper {
  margin-bottom: 40px;
  background: var(--gradient-black-to-gray);
  color: #fff;
  padding: 20px 15px;
}


#product-detail-1 .price-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  text-align: center;
}


#product-detail-1 .days {
  font-size: 30px;
  white-space: nowrap;
}


#product-detail-1 .days span {
  font-size: 14px;
  font-weight: 400;
  margin-left: 6px;
}


#product-detail-1 .divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
}


#product-detail-1 .label {
  font-size: 14px;
}


#product-detail-1 .price {
  font-size: 30px;
  letter-spacing: 0.5px;
}


#product-detail-1 .per-person {
  font-size: 14px;
}

#product-detail-1 .section-4__product-detail-1 .swiper .swiper-slide {
  min-width: 370px;
}


.product-detail__content--ss2 {
  display: flex;
  gap: 40px;
}

.section-2__product-detail .price-box {
  background: var(--gradient-black-to-gray);
  color: #fff;
  border-radius: 15px;
  padding: 17px 8px;
  text-align: center;
  width: 170px;
  height: 190px;
}


.section-2__product-detail .price-box .days {
  font-size: 40px;
  line-height: 1;
}


.section-2__product-detail .price-box .days span {
  font-size: 16px;
  font-weight: 400;
}


.section-2__product-detail .price-box hr {
  border: 1px solid #fff;
  margin: 12px 0;
  opacity: 1;
}


.section-2__product-detail .price-box .price {
  font-size: 40px;
  margin-top: 0;
  line-height: 1.5;
}


.section-2__product-detail .price-box small {
  font-size: 16px;
}

.section-2__product-detail .product-detail__right {
  font-size: 18px;
}



.btn-gradient-small {
  background: var(--gradient-black-to-gray);
  color: white;
  border: none;
  padding: 1px 12px;
  border-radius: var(--bs-border-radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
  /* height: 50px; */
}


.section-2__product-detail .note {
  font-size: 16px;
  font-style: italic;
  margin-top: 10px;
}

/* section 3 product detail 1 */
.section-3__product-detail-1 .nav-tabs {
  gap: 30px;
  border: 0;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 6px;
}

.section-3__product-detail-1 .nav-tabs .nav-link {
  font-size: 20px;
  border: none;
  font-weight: 600;
  color: var(--bs-body-color);
  padding: 0;
  flex-shrink: 0;
  border: 0;
}


.section-3__product-detail-1 .nav-tabs .nav-link.active,
.section-3__product-detail-1 .nav-tabs .nav-link:hover {
  border-bottom: 3px solid var(--bs-body-color);
}


.section-3__product-detail-1 .map-box {
  max-width: 370px;
}

.section-3__product-detail-1 .map-box img {
  width: 100%;
  border-radius: var(--bs-border-radius);
  height: 100%;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li::before {
  content: "+";
  margin-right: 8px;
}

.section-title__style2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--bs-body-color);
  text-transform: uppercase;
  border-bottom: 3px solid var(--bs-body-color);
  display: inline-block;
}

.section-4__product-detail-1--img img {
  width: 370px;
}


.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #518095;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name {
  font-size: 14px;
  font-weight: 600;
}

.review-date {
  font-size: 14px;
  font-weight: 400;
}

.review-rating {
  text-align: right;
}

.review-rating-text {
  color: var(--bs-primary);
  font-weight: 500;
  margin-right: 4px;
}

.review-rating-score {
  width: 30px;
  height: 20px;
  background: linear-gradient(135deg, #c58a00, #f4b400);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-item {
  padding: 11px 12px;
  background: #f1f1f1;
  border-radius: var(--bs-border-radius);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  line-height: 28px;
}

.tag-item:hover {
  background: var(--bs-primary);
  color: white;
}

.mobile-bottom-nav:has(.nav-campaign-bottom) {
  background-color: transparent;
  border: 0;
  bottom: 30px;
  transform: translateY(150%);
}

.nav-campaign-bottom {
  background-color: white;
  max-width: 65rem;
  margin: 0 auto;
  z-index: 10;
  padding: 15px;
  transition: 1s ease-in-out;
  border-radius: var(--bs-border-radius);
  border: 1px solid var(--bs-border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

}

/* ==== booking form ========== */

.booking-trigger {
  max-width: 400px;
  margin: 100px auto;
}

.input-search-popup i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  font-size: 21px;
}

/* Popup Overlay */
.booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.booking-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Container */
.booking-popup {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  overflow-y: auto;
  transition: top 0.5s ease;
}

.booking-popup.active {
  top: 0;
}

/* Close Button */
.close-popup {
  font-size: 45px;
  color: var(--bs-secondary);
  cursor: pointer;
  background: none;
  border: none;
}

/* Popup Content */
.popup-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 15px 20px;
}

.logo-container {
  text-align: center;
  margin-bottom: 30px;
}

.popup-title {
  text-align: center;
  color: var(--bs-primary);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

/* Progress Bar */
.progress-container {
  width: 100%;
  height: 3px;
  background: #e0e0e0;
  margin: 20px 0 40px;
  position: relative;
}

.progress-bar-custom {
  height: 100%;
  background: var(--bs-primary);
  transition: width 0.4s ease;
  width: 0%;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Elements */
.form-label {
  font-weight: 600;
  color: var(--bs-secondary);
  margin-bottom: 10px;
  font-size: 30px;
}

.step-6 .form-label {
  font-size: 20px;
  font-weight: 500;
}

.booking-popup .form-control,
.booking-popup .form-select {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 400;
}

.input-search-popup input {
  padding-left: 50px !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

/* Radio Buttons */
.travel-option {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: var(--bs-border-radius);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  min-width: 210px;
}

.travel-option:hover {
  background: #f9f9f9;
}

.travel-option input[type="radio"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  margin-top: 9px;
}

.travel-option label {
  cursor: pointer;
  margin: 0;
  width: 100%;
}

.travel-option-title {
  font-weight: 600;
  color: var(--bs-secondary);
  margin-bottom: 3px;
  font-size: 20px;
}

.travel-option-desc {
  margin: 0;
}

/* Counter Controls */
.counter-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  background: white;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
}

.counter-btn:hover {
  background: #f0f0f0;
}

.counter-value {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}

/* Step Indicators */
.divider-1px-popup {
  height: 1px;
  background-color: var(--bs-secondary);
  margin: 50px 0;
}

.step-indicators {
  display: flex;
  gap: 20px;
}

.step-indicator {
  text-align: center;
}

.step-number {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 40px;
  margin: 0 auto 10px;
  border: 1px solid var(--bs-secondary);
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 3px;
}

.step-desc {
  font-size: 16px;
}

/* Buttons */
.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--bs-secondary);
}

.btn-next:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Contact Section */
.contact-expert {
  text-align: center;
}

.contact-expert h6 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-icon {
  cursor: pointer;
  transition: all 0.3s;
}

.contact-icon:hover {
  transform: scale(1.1);
}

/* Calendar Styles */
.calendar-container {
  border: 1px solid #ddd;
  border-radius: var(--bs-border-color);
  padding: 20px;
  background: white;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-nav {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 5px 10px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-day-header {
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 5px;
  color: #666;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bs-border-radius);
  cursor: pointer;
  font-size: 14px;
}

.calendar-day:hover {
  background: #f0f0f0;
}

.calendar-day.selected {
  background: var(--gradient-black-to-gray);
  color: white;
}

.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* Trip Length */
.trip-length {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  justify-content: center;
}

.checkbox-custom {
  margin-top: 15px;
}

.checkbox-custom input[type="checkbox"] {
  margin-right: 8px;
}

.custom-select {
  position: relative;
  width: 100%;
}


/* select popup  */
.select-btn {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  background: #fff;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.select-menu {
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  margin-top: 6px;
  list-style: none;
  padding: 0;
  display: none;
  z-index: 10;
}

.select-menu li {
  padding: 10px 16px;
  cursor: pointer;
  margin: 0;
}

.select-menu li:hover,
.select-menu li.active {
  background: var(--gradient-black-to-gray);
  color: #fff;
  border-radius: var(--bs-border-radius);
}

.custom-select {
  position: relative;
  width: 100%;
}

.section-6-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* số dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;

  text-overflow: ellipsis;
}

.select-menu.open {
  display: block;
}

.section-1__post-category img {
  height: 460px;
}

.thankYouForm #thankYouModal {
  display: block !important;
  flex: 1;
}

.thankYouForm .button-group,
.thankYouForm .popup-title-default,
.thankYouForm .progress-container {
  display: none !important;
}

.thankYouForm .popup-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thankYouForm .booking-footer {
  padding-top: 30px;
  border-top: 1px solid var(--bs-secondary);
}

.phone-input {
  display: flex;
  align-items: center;
}

.phone-input .iti.iti--allow-dropdown {
  width: 100%;
}

/* select country */
.country-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  border: none;
  outline: none;
  background: transparent;

  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;

  border-right: 1px solid #eee;
  min-width: 70px;
}

.phone-input .custom-select {
  width: 60px;
  position: absolute;
  padding: 0;
  margin: 0;
}

.phone-input .custom-select .select-btn {
  border: 0;
  background: transparent;
}

.phone-input .select-menu {
  margin-top: 0;
}

.city-title {
  margin-bottom: 1rem;
}

.toggle-wrapper .text-end {
  position: absolute;
  bottom: 0px;
  right: 0;
  display: block;
  height: 60px;
  width: 100%;
  background: #fff;
}

.toggle-wrapper .text-end .btn-gradient-small,
.toggle-wrapper .text-end .see-more-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}

.review-item .extra-content.show,
.review-item .review-text {
  margin: 0;
}

.review-content.toggle-wrapper {
  max-height: 115px;
}

.toggle-wrapper {
  max-height: 200px;
  overflow: hidden;
  position: relative;
  padding-bottom: 60px;
}

.toggle-wrapper.show {
  max-height: none;
  overflow: visible;
}


/* Improved modal overlay animation */
.photo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.90);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Added smooth close button animation */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10001;
  opacity: 0;
}

.photo-modal.active .modal-close {
  opacity: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotate(90deg);
}

.modal-close::before,
.modal-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 3px;
  background: white;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

/* Added scale and fade animation for main image container */
.modal-main-image {
  position: relative;
  width: 100%;
  max-width: 90%;
  max-height: 70vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-modal.active .modal-main-image {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.1s;
}

/* Smooth transition between images */
.gallery-image {
  max-width: 660px;
  max-height: 440px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--bs-border-radius);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  pointer-events: none;
}

.gallery-image.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
  pointer-events: auto;
}

/* Added slide up animation for thumbnail container */
.modal-thumbnails {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  width: 90%;
  max-width: 800px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-modal.active .modal-thumbnails {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0.2s;
}

.thumbnail-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.thumbnail-scroll {
  display: flex;
  gap: 13px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.thumbnail-scroll::-webkit-scrollbar {
  display: none;
}

.thumbnail-scroll:active {
  cursor: grabbing;
}

.thumbnail-item {
  flex-shrink: 0;
  width: 71px !important;
  height: 71px !important;
  width: 100%;
  height: 100%;
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
}

.thumbnail-item:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.thumbnail-item.active {
  border-color: white;
  opacity: 1;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnail Navigation Arrows */
.thumbnail-nav,
.modal-nav {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.modal-nav {
  width: 40px;
  height: 40px;
}

.thumbnail-nav:hover,
.modal-nav:hover {
  background: #fff;
  transform: scale(1.3);
}

.thumbnail-nav-prev,
.modal-nav-prev {
  left: -15px;
}

.thumbnail-nav-next,
.modal-nav-next {
  right: -15px;
}

.thumbnail-nav::before,
.modal-nav::before {
  content: '';
  width: 8px;
  height: 8px;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
}

.modal-nav::before {
  width: 15px;
  height: 15px;
}

.thumbnail-nav-prev::before,
.modal-nav-prev::before {
  transform: rotate(45deg);
  margin-left: 2px;
}

.thumbnail-nav-next::before,
.modal-nav-next::before {
  transform: rotate(-135deg);
  margin-right: 2px;
}

.btn-close {
  opacity: 1;
}


/* ===================== product-category-4-page =========================== */
/* section-1__product-category-4-page Banner */
.section-1__product-category-4-page-banner {
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: var(--bs-border-radius);
  ;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5%;
  color: white;
  overflow: hidden;
  margin-bottom: 3rem;
}

.section-1__product-category-4-page-content {
  text-align: right;
  max-width: 500px;
}

.section-1__product-category-4-page-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-2__product-category-4-page-content {
  background-position: center;
  background-size: cover;
  border-radius: var(--bs-border-radius);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 50px;
}

.section-9__product-category-4-page-content {
  background-position: center;
  background-size: cover;
  border-radius: var(--bs-border-radius);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 30px;
}

.btn-unlock {
  background: linear-gradient(to bottom, #333, #000);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: transform 0.3s;
}

/* Swiper Custom */
.relative {
  position: relative;
}

.section-3__product-category-4-page-swiper .swiper-slide {
  min-width: 470px;
}

/* Promo Cards */
.promo-card {
  border-radius: var(--bs-border-radius);
  display: flex;
  min-height: 160px;
  overflow: hidden;
}

.promo-info {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: #FDEFDA;
}

.promo-info h3 {
  font-size: 20px;
  font-weight: 600;
}

.promo-info p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.promo-img {
  width: 40%;
}

.promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-4__product-category-4-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#product-category-4-page .activity-card:hover {
  border-color: var(--bs-border-color);
  box-shadow: none;
}

/* Search & View Cards */
.search-item {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  height: 75px;
}

.search-item img {
  width: 32px;
  height: 32px;
}


.view-card {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  display: flex;
  overflow: hidden;
  background: #fff;
}

.view-img {
  width: 40%;
  height: 180px;
  object-fit: cover;
}

.view-info {
  padding: 15px;
  flex: 1;
  display: grid;
  align-content: space-between;
}

.view-info h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.view-info p {
  font-size: 14px;
  color: #6F6F6E;
  margin-bottom: 10px;
}

.view-info .stars {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
}

/* Style Cards (Image 4) */
.style-card {
  border-radius: var(--bs-border-radius);
  ;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  color: white;
}

.style-card:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  border-radius: var(--bs-border-radius);
  ;
}

.style-card span {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
}

.product-category-tabs {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
}

.product-category-tabs li {
  padding: 10px 0;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  white-space: pre;
}

.product-category-tabs li.active {
  color: #111827;
}

.product-category-tabs li.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #111827;
}

.section-7__product-category-4-page-swiper .swiper-slide {
  min-width: 350px;
}

.section-6-item img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}