﻿@charset "UTF-8";

/*
  🟦 Màu chính của ứng dụng
*/
/*
  🎨 Màu chữ
*/
/*
  🎨 Border radius
*/
/*
  🧱 Màu nền cho layout tổng thể
*/
/*
  🔠 Kích thước chữ (font-size)
*/
/*
  📌 Gợi ý thêm biến nên có trong SCSS app (đã prefix)
*/
.btn-normal {
  font-family: inherit;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background-color: #3563ed;
  border: none;
  border-radius: 12px;
  padding: 0.6em 1.4em;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-normal:hover {
  background-color: rgb(29.5863636364, 80.9181818182, 234.9136363636);
}

.btn-normal:active {
  transform: scale(0.98);
}

.btn-normal-changeable {
  font-family: inherit;
  font-weight: 700;
  font-size: 17px;
  color: #3563ed;
  background-color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.6em 1.4em;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-normal-changeable:hover {
  color: #847d7d;
  background-color: rgb(29.5863636364, 80.9181818182, 234.9136363636);
}

.btn-normal-changeable.active {
  color: #847d7d;
  background-color: #3563ed;
  transform: scale(0.98);
}

.btn-outline {
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  color: #3563ed;
  background-color: #fff;
  border: 2px solid #3563ed;
  border-radius: 12px;
  padding: 0.6em 1.4em;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-outline:hover {
  background-color: rgb(249.6745454545, 250.8872727273, 254.5254545455);
}

.btn-outline:active {
  transform: scale(0.98);
}

.btn-gray-outline {
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  color: #847d7d;
  background-color: #fff;
  border: 2px solid #ebdede;
  border-radius: 6px;
  padding: 0.6em 1.4em;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-gray-outline:hover {
  background-color: rgb(231.1509433962, 215.6490566038, 215.6490566038);
}

.btn-gray-outline:active {
  background-color: #585353;
  transform: scale(0.98);
}

.btn-order-normal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: semi-bold;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background-color: #fff;
  color: #3563ed;
  border: none;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-order-normal span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-order-normal .bi {
  color: #2d4592;
}

.btn-order-reorder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background-color: #f7931e !important;
  color: #fff !important;
  text-decoration: none;
  gap: 0.5rem;
}

.btn-order-reorder span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-order-reorder .bi {
  color: #fff;
}

.btn-nav-changeable {
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  height: 30px;
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  color: #585353;
  background-color: transparent;
  border: none;
  border-radius: 7px;
  padding: 0.6em 1.4em;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-nav-changeable:hover {
  color: #3563ed;
}

.btn-nav-changeable.active {
  color: #fff;
  background-color: #3563ed;
}

.btn-nav-changeable.longer-1 {
  height: 35px !important;
}

.app-btn-main,
.app-btn-main--no-focus {
  font-family: inherit;
  font-weight: 700;
  font-size: 1.25rem;
  color: #585353;
  background-color: transparent;
  border: none;
  border-radius: 6px;
  padding: 0.3em 0.5em;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-btn-main:hover,
.app-btn-main--no-focus:hover {
  background-color: rgba(53, 99, 237, 0.05);
}

.app-btn-main:active,
.app-btn-main--no-focus:active {
  transform: scale(0.98);
}

.app-btn-main.active,
.active.app-btn-main--no-focus {
  background-color: #3563ed !important;
  color: #fff !important;
}

@media (max-width: 576px) {

  .app-btn-main,
  .app-btn-main--no-focus {
    font-size: 0.75rem;
  }
}

.app-btn-main--no-focus:focus,
.app-btn-main--no-focus.active {
  background-color: #1eff00;
}

.app-btn-white {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  color: #585353;
  background-color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.3em;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-btn-white:hover {
  background-color: rgba(53, 99, 237, 0.05);
}

.app-btn-white:active {
  transform: scale(0.98);
}

.app-btn-white.active {
  background-color: #3563ed;
  color: #fff;
}

.app-btn-blue-outline {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  color: #3563ed !important;
  background-color: #fff !important;
  border: 2px solid #3563ed !important;
  border-radius: 6px;
  padding: 0.3em;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-btn-blue-outline:hover {
  background-color: rgba(53, 99, 237, 0.05);
}

.app-btn-blue-outline:active {
  transform: scale(0.98);
}

.app-btn-blue-outline.active {
  background-color: #3563ed !important;
  color: #fff !important;
}

.app-btn-white-outline {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff !important;
  border: 2px solid #fff !important;
  border-radius: 15px;
  padding: 0 !important;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-btn-white-outline:hover {
  background-color: rgba(53, 99, 237, 0.05);
}

.app-btn-white-outline:active {
  transform: scale(0.98);
}

.app-btn-white-outline.active {
  background-color: #3563ed !important;
  color: #fff !important;
}

.app-btn-gray-outline {
  font-family: inherit;
  font-size: 0.95rem;
  color: black !important;
  border: 1px solid #dddddd !important;
  border-radius: 8px;
  padding: 0 !important;
  background-color: #ffffff;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0.3rem 0.5rem !important;
}

.app-btn-gray-outline:hover {
  background-color: rgba(53, 99, 237, 0.05);
}

.app-btn-gray-outline:active {
  transform: scale(0.98);
}

.app-btn-gray-outline.active {
  background-color: #3563ed !important;
  color: #fff !important;
}

.app-btn-black-outline {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  color: black !important;
  border: 2px solid black !important;
  border-radius: 15px;
  padding: 0 !important;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-btn-black-outline:hover {
  background-color: rgba(53, 99, 237, 0.05);
}

.app-btn-black-outline:active {
  transform: scale(0.98);
}

.app-btn-black-outline.active {
  background-color: #3563ed !important;
  color: #fff !important;
}

.app-input-text-full-blue {
  color: #3563ed !important;
}

.app-input-text-full-blue::placeholder {
  color: #3563ed !important;
  opacity: 1 !important;
}

.app-input-text-full-blue::-webkit-input-placeholder {
  color: #3563ed !important;
}

.app-input-text-full-blue:-moz-placeholder {
  color: #3563ed !important;
  opacity: 1 !important;
}

.app-input-text-full-blue::-moz-placeholder {
  color: #3563ed !important;
  opacity: 1 !important;
}

.app-input-text-full-blue:-ms-input-placeholder {
  color: #3563ed !important;
}

.app-input-text-full-blue::selection {
  background-color: rgba(53, 99, 237, 0.15) !important;
  color: #3563ed !important;
}

.app-input-text-full-blue::-moz-selection {
  background-color: rgba(53, 99, 237, 0.15) !important;
  color: #3563ed !important;
}

.app-input-text-full-blue:focus {
  box-shadow: none !important;
  outline: none !important;
  border-color: transparent !important;
}

.custom-carousel-btn {
  background-color: #fffafa !important;
  border: none;
  border-radius: 100%;
  width: 28px !important;
  height: 28px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none !important;
  z-index: 100;
}

.custom-carousel-btn .carousel-control-prev-icon,
.custom-carousel-btn .carousel-control-next-icon {
  background-image: none !important;
  /* 🔑 BLOCK bootstrap bg */
  font-size: 1.5rem;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-carousel-btn .carousel-control-prev-icon::before {
  content: "<";
}

.custom-carousel-btn .carousel-control-next-icon::before {
  content: ">";
}

.custom-carousel-btn .carousel-control-prev-icon::before,
.custom-carousel-btn .carousel-control-next-icon::before {
  font-size: 1.75rem;
  /* slightly bigger */
  font-weight: 700;
  /* bold */
  line-height: 1;
  /* clean vertical alignment */
}

#tourCarousel {
  position: relative;
}

.centered-box-left,
.centered-box-right {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
}

.centered-box-left {
  left: -1rem;
}

.centered-box-right {
  right: -1rem;
}


/* ==========================================
   Typography Utility Classes (kept from project)
   ========================================== */
.medium-text {
  font-weight: 500;
  font-size: 1.0625rem;
}

.medium-text-2 {
  font-weight: 500;
  font-size: 1.0625rem;
}

.small-bold-text {
  font-weight: 700;
  font-size: 0.9375rem;
}

.small-text {
  font-weight: 400;
  font-size: 0.8125rem;
}

.pre-medium-text {
  font-weight: 500;
  font-size: 0.9375rem;
}

.segment-header-text {
  font-weight: 600;
  font-size: 1rem;
}

.pre-medium-text-thin {
  font-weight: 400;
  font-size: 0.9375rem;
}

.pre-medium-bold-text {
  font-weight: 700;
  font-size: 0.9375rem;
}

@media (max-width: 768px) {

  .pre-medium-text,
  .pre-medium-text-thin,
  .pre-medium-bold-text {
    font-size: 0.6375rem;
  }

  .bold-heading,
  .heading {
    font-size: 0.9375rem !important;
  }

  .medium-text {
    font-size: 0.625rem;
  }

  .large-bold-text {
    font-size: 1.25rem !important;
  }

  .reason-text {
    font-size: 0.625rem !important;
  }

  .reason-title,
  .segment-header-text {
    font-size: 0.75rem !important;
  }
}

.large-bold-text {
  font-weight: 700;
  font-size: 2.25rem;
}

.bold-heading {
  font-weight: 700;
  font-size: 1.25rem;
}

.heading {
  font-weight: 500 !important;
  font-size: 1.25rem;
}

.reason-title {
  font-weight: 700 !important;
  font-size: 1.25rem;
}

.reason-text {
  font-weight: 400;
  font-size: 1rem;
}

.currency-text {
  font-weight: 500;
  font-size: 1.0625rem;
}

.currency-text-bold {
  font-weight: 700;
  font-size: 1.0625rem;
}

.heading-bold {
  font-weight: 700 !important;
  font-size: 1.25rem !important;
}

/* hero.css */
.nav-tabs .nav-link {
  color: #6c757d;
  border: none;
}

.nav-tabs .nav-link.active {
  background-color: #324ba8;
  color: #fff;
}

.form-control {
  border-radius: 0.5rem;
  height: 48px;
  font-size: 0.95rem;
}

.btn-orange {
  background-color: #f7941e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 0.5rem;
  border: none;
}

.btn-orange:hover {
  background-color: #e18612;
}

.exchange-icon {
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: #324ba8;
  font-size: 20px;
}

.breadcrumb {
  font-size: 14px;
  font-weight: 400;
  color: #847d7d;
}

.breadcrumb .crumb {
  text-decoration: none;
  color: inherit;
}

.breadcrumb .crumb:hover {
  text-decoration: underline;
}

.breadcrumb .current {
  font-weight: bold !important;
}

.breadcrumb .divider {
  margin: 0 8px;
  color: #ccc;
}

.app-breadcrumb {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: #666666;
  font-weight: 500;
}

.app-breadcrumb__link {
  color: #585353 !important;
  text-decoration: none !important;
  font-weight: normal;
}

.app-breadcrumb a {
  color: #585353;
  text-decoration: none;
}

.app-breadcrumb a:hover {
  text-decoration: underline;
}

.app-breadcrumb .app-breadcrumb__separator {
  margin: 0 0.5em;
  color: #585353;
}

.app-breadcrumb .app-breadcrumb__bold_separator {
  margin: 0 0.5em;
  font-weight: bold;
  color: #585353;
}

.app-breadcrumb .app-breadcrumb__current {
  color: #585353;
  font-weight: bold;
}

.card-img-left {
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
}

.flight-routes-item .flight-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.flight-routes-item .flight-card-link:hover .bg-white {
  box-shadow: 0 3px 6px rgba(32, 33, 39, 0.15) !important;
}

.flight-routes-item .book-button {
  margin-top: 0.25rem;
  padding: 0.5rem 1.25rem;
  background: #3563ed;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.flight-routes-item .book-button:hover {
  background: #2952d4;
  box-shadow: 0 2px 4px rgba(53, 99, 237, 0.3);
}

.flight-routes-item .book-button:active {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .flight-routes-item .bg-white {
    padding: 0.75rem !important;
  }

  .flight-routes-item img[alt="Airline Logo"] {
    width: 50px !important;
    height: 50px !important;
    margin-right: 0.5rem !important;
  }

  .flight-routes-item h6 {
    font-size: 1rem !important;
    margin-bottom: 0.25rem !important;
    font-weight: 600 !important;
  }

  .flight-routes-item .small {
    font-size: 0.75rem !important;
    margin-bottom: 0.125rem !important;
  }

  .flight-routes-item .text-muted {
    font-size: 0.7rem !important;
  }

  .flight-routes-item .text-end .text-body-secondary {
    font-size: 0.7rem !important;
  }

  .flight-routes-item .text-end .fw-bold {
    font-size: 1rem !important;
  }

  .flight-routes-item .d-flex.justify-content-between {
    align-items: center !important;
    gap: 0.5rem;
  }

  .flight-routes-item .book-button {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    margin-top: 0.25rem;
  }
}

@media (max-width: 767px) {
  #loadMoreCard .bg-white {
    min-height: 90px;
    padding: 1rem !important;
  }

  #loadMoreCard span {
    font-size: 1rem !important;
  }

  #loadMoreCard svg {
    width: 20px !important;
    height: 20px !important;
  }
}

.flight-information-panel {
  margin-top: 1%;
  margin-bottom: 1%;
  border-radius: 6px;
}

.flight-information-panel .panel-body {
  color: #847d7d;
}

.flight-information-panel .panel-table {
  width: 100%;
}

.flight-information-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 6px;
}

.flight-information-table th,
.flight-information-table td {
  text-align: left;
  padding: 1%;
}

.flight-information-table tr:last-child td {
  border-bottom: none;
}

.flight-information-table th {
  font-weight: bold;
}

.flight-information-table td {
  color: #847d7d;
  padding-left: 1.12%;
}

@media (max-width: 767px) {

  .flight-information-table th,
  .flight-information-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
    white-space: normal;
    word-wrap: break-word;
  }

  .flight-information-table th:first-child,
  .flight-information-table td:first-child {
    padding-left: 0.5rem;
  }

  .flight-information-table th:nth-child(1),
  .flight-information-table td:nth-child(1) {
    width: 45%;
  }

  .flight-information-table th:nth-child(2),
  .flight-information-table td:nth-child(2) {
    width: 30%;
    max-width: 80px;
  }

  .flight-information-table th:nth-child(3),
  .flight-information-table td:nth-child(3) {
    width: 25%;
  }
}

@media (max-width: 576px) {

  .flight-information-table th,
  .flight-information-table td {
    padding: 0.5rem 0.25rem;
    font-size: 0.75rem;
    white-space: normal;
    word-wrap: break-word;
  }

  .flight-information-table th:first-child,
  .flight-information-table td:first-child {
    padding-left: 0.25rem;
  }

  .flight-information-table th:nth-child(1),
  .flight-information-table td:nth-child(1) {
    width: 40%;
  }

  .flight-information-table th:nth-child(2),
  .flight-information-table td:nth-child(2) {
    width: 35%;
    max-width: 70px;
  }

  .flight-information-table th:nth-child(3),
  .flight-information-table td:nth-child(3) {
    width: 25%;
  }
}

.div-outer-table {
  margin-top: 1%;
  margin-bottom: 1%;
  border: 1px solid black;
  border-radius: 8px;
  overflow-x: auto;
  font-family: sans-serif;
  background: #fff;
  padding: 0 1%;
}

@media (max-width: 767px) {
  .div-outer-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .div-outer-table table {
    min-width: 100%;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .div-outer-table {
    padding: 0 0.5%;
  }

  .div-outer-table table {
    min-width: 100%;
    width: 100%;
  }
}

.down-arrow {
  max-width: 23px;
  max-height: 23px;
  object-fit: contain;
}

.div-down-arrow {
  cursor: pointer;
}

.down-arrow {
  transition: filter 0.3s ease;
}

.div-down-arrow:active .down-arrow {
  filter: grayscale(100%);
}

.down-arrow:active {
  filter: grayscale(100%);
}

@media (max-width: 767px) {
  .price-card .price-row {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.5rem 0.75rem !important;
    gap: 0.5rem;
  }

  .price-card .price-label,
  .price-card .price-value {
    font-size: 0.75rem;
  }

  .price-card .price-label {
    flex: 1;
    white-space: normal;
  }

  .price-card .price-value {
    text-align: right !important;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
  }
}

@media (max-width: 576px) {
  .price-card .price-row {
    padding: 0.4rem 0.5rem !important;
  }

  .price-card .price-label,
  .price-card .price-value {
    font-size: 0.75rem;
  }
}

@media (max-width: 767px) {
  .expanded-content .col-6 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.destination-section {
  padding: 2rem 0;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  aspect-ratio: 16/10;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-name {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  color: white;
  backdrop-filter: blur(4px);
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 576px) {
  .destination-name {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
  }
}

.destination-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.destination-toggle-btn:hover {
  transform: translateY(2px);
}

.destination-toggle-btn:hover .toggle-arrow {
  stroke: #3563ed;
}

.destination-toggle-btn:active {
  transform: translateY(0);
}

.destination-toggle-btn .toggle-arrow {
  transition:
    transform 0.3s ease,
    stroke 0.3s ease;
  stroke: #666;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.destination-more {
  opacity: 0;
  transform: translateY(20px);
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    max-height 0.4s ease;
}

.destination-more.expanded {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
}

@media (max-width: 767px) {
  .destination-more:nth-child(n + 4):nth-child(-n + 6) {
    opacity: 1;
    transform: translateY(0);
    max-height: none;
    overflow: visible;
  }

  .destination-more:nth-child(n + 7) {
    display: none;
  }
}

.destination-block {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}

.destination-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.destination-row {
  display: flex;
  gap: 1rem;
}

.step-progress-page-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: #f0f6fd;
}

.step-progress-page-5 .step {
  display: flex;
  align-items: center;
  background-color: #2f4593;
  padding: 8px 12px;
  border-radius: 6px;
  color: white;
  min-width: 180px;
  min-height: 48px;
}

.step-progress-page-5 .step .number {
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 8px;
}

.step-progress-page-5 .step .label {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}

.step-progress-page-5 .line {
  flex: 1;
  height: 4px;
  width: 100px;
  min-width: 30px;
  max-width: 240px;
  background-color: #2f4593;
  margin: 0 8px;
}

.line {
  flex: 1;
  height: 6px;
  background-color: #ffffff;
  max-width: none;
  min-width: 10px;
  z-index: 0;
}

.line[data-active="true"] {
  background-color: #3563ed;
}

.text-pre-line {
  white-space: pre-line;
}

.flight-ticket-order-layout-container {
  padding: 0 10vw;
  color: black;
}

.flex-wrap-1090 {
  display: flex;
  flex-wrap: nowrap;
  /* prevent wrap by default */
}

@media (max-width: 1090px) {
  .flex-wrap-1090 {
    flex-wrap: wrap;
    /* enable wrap when screen is narrow */
  }

  .flex-wrap-1090 .flex-item {
    flex: 1 1 100%;
    min-width: 0;
  }

  .flex-wrap-1090 .flex-item {
    flex: 1 1 auto;
  }
}

.flex-item {
  flex: 1 1 0;
  min-width: 0;
}

.flight-ticket-order-bg {
  background-color: #eef3f8;
}

.flight-ticket-line-with-dot {
  position: relative;
  height: 3px;
  background-color: #999;
  width: 4rem;
}

.flight-ticket-line-with-dot::before,
.flight-ticket-line-with-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: #999;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flight-ticket-line-with-dot::before {
  left: 0;
}

.flight-ticket-line-with-dot::after {
  right: 0;
}

.flight-segment-card {
  border-radius: 8px;
  flex: 1 1 48%;
  min-width: 300px;
}

.segment-header {
  background-color: #3563ed;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-weight: bold;
}

.segment-body {
  border: 1px solid #eee;
  border-top: none;
}

.small-text-progress {
  font-size: 0.75rem !important;
}

.payment-partners-section .title-section {
  font-size: 2.5rem;
  font-weight: 700;
  gap: 0.5rem;
  color: #3563ed;
}

.payment-partners-section .title-section span {
  color: #f7941d;
  font-weight: 700;
}

.payment-partners-section .payment-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem 1.5rem;
  width: 100%;
  padding: 1rem 0;
  justify-items: center;
  align-items: center;
  place-content: center;
}

.payment-partners-section .payment-logo-grid img {
  display: block;
  margin: 0 auto;
  max-width: 110px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.2s;
}

@media (max-width: 992px) {
  .payment-logo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 1rem;
  }

  .payment-logo-grid img {
    max-width: 80px;
    height: 28px;
  }
}

@media (max-width: 576px) {
  .branch-section {
    padding: 0;
  }

  .branch-section .branch-map {
    min-height: 100px;
  }

  .branch-section .branch-map .map-image {
    height: 100px;
    object-fit: cover;
    width: 100%;
    display: block;
  }

  .branch-section .branch-map .branch-map-text {
    left: 0.5rem;
    bottom: 0.5rem;
  }

  .branch-section .branch-map .branch-map-text h2 {
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
  }

  .branch-section .branch-map .branch-map-text span {
    color: #f7941d;
  }

  .branch-section .branch-boxes {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem 1.5rem 0.5rem;
    background: #fff;
    border-radius: 0 0 16px 16px;
  }

  .branch-section .branch-box {
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    gap: 0.75rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .branch-section .branch-box img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin-bottom: 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: block;
  }

  .branch-section .branch-box .branch-info {
    padding: 0;
    text-align: start;
    width: 100%;
  }

  .branch-section .branch-box .branch-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #3a5fc8;
  }

  .branch-section .branch-box .branch-info p {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    word-break: break-word;
    color: #666;
  }

  .payment-partners-section .title-section {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .payment-partners-section .payment-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem;
    padding: 0.5rem 0;
  }

  .payment-partners-section .payment-logo-grid img {
    width: 60%;
    max-width: none;
    height: auto;
    object-fit: contain;
  }
}

.airline-partner-section .title-section {
  font-size: 2.5rem;
  font-weight: 700;
  gap: 0.5rem;
  color: #3563ed;
}

.airline-partner-section .title-section span {
  color: #f7941d;
  font-weight: 700;
}

.airline-partner-section .airline-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  place-content: center;
  gap: 2rem 1.5rem;
  width: 100%;
  justify-items: center;
  align-items: center;
  justify-content: center;
  grid-auto-flow: row;
  /* Center last row if not full */
}

.airline-partner-section .airline-logo-grid>img {
  grid-column: auto;
}

.airline-partner-section .airline-logo-grid {
  /* Use a pseudo selector to center last row if not full */
}

.airline-partner-section .airline-logo-grid::after {
  content: "";
  display: block;
  grid-column: 1/-1;
  height: 0;
}

.airline-partner-section .airline-logo-grid img {
  display: block;
  margin: 0 auto;
  transition: transform 0.2s;
  width: 100%;
  height: auto;
}

.airline-partner-section .airline-logo-grid .title-section {
  grid-column: 1/-1;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  gap: 0.5rem;
  color: #3563ed;
}

.airline-partner-section .airline-logo-grid .title-section span {
  color: #f7941d;
  font-weight: 700;
}

@media (max-width: 992px) {
  .airline-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem;
  }

  .airline-logo-grid img {
    max-width: 90px;
  }
}

@media (max-width: 576px) {
  .airline-partner-section .title-section {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .airline-partner-section .airline-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    padding: 0.5rem 0;
  }

  .airline-partner-section .airline-logo-grid img {
    width: 70%;
    max-width: none;
    height: auto;
    object-fit: contain;
  }
}

.core-values-container {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  margin: 0 auto;
  padding: 2rem;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.column.left {
  text-align: left;
}

.column.right {
  text-align: left;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title.orange {
  color: #f7941d;
}

.section-title.col-left {
  text-align: right;
}

@media (max-width: 576px) {
  .section-title.col-left {
    text-align: left;
  }
}

.section-content {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #666666;
  text-align: right;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .section-content {
    text-align: left;
  }
}

.center-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 0;
  min-width: 10% px;
}

.plane-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
  color: #f7941d;
}

.plane-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(58%) sepia(86%) saturate(2661%) hue-rotate(359deg) brightness(102%) contrast(101%);
}

.divider-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, #f7941d 0%, #ffa500 50%, #f7941d 100%);
  position: relative;
  background-image: repeating-linear-gradient(to bottom,
      #f7941d,
      #f7941d 10px,
      transparent 10px,
      transparent 20px);
}

.divider-line::before,
.divider-line::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #f7941d;
  border-radius: 50%;
}

.divider-line::before {
  top: 0;
}

.divider-line::after {
  bottom: 0;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-list li {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 1.25rem;
  padding-left: 0;
  position: relative;
  text-align: justify;
}

.value-list li strong,
.value-list li span {
  color: #f7941d;
  font-weight: 700;
}

.value-title {
  color: #f7941d;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

@media (max-width: 992px) {
  .core-values-container {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .column {
    max-width: 100%;
  }

  .center-divider {
    flex-direction: row;
    width: 100%;
    padding: 1.5rem 0;
    min-width: auto;
    min-height: 60px;
  }

  .center-divider .plane-icon {
    margin-bottom: 0;
    margin-right: 1rem;
    margin-top: 0;
    width: 40px;
    height: 40px;
  }

  .center-divider .divider-line {
    width: 100%;
    height: 2px;
    flex: 1;
    background-image: repeating-linear-gradient(to right,
        #f7941d,
        #f7941d 10px,
        transparent 10px,
        transparent 20px);
  }

  .center-divider .divider-line::before,
  .center-divider .divider-line::after {
    top: 50%;
    left: auto;
    transform: translateY(-50%);
  }

  .center-divider .divider-line::before {
    left: 0;
  }

  .center-divider .divider-line::after {
    right: 0;
    left: auto;
  }
}

@media (max-width: 768px) {
  .core-values-section {
    padding: 2.5rem 0;
  }

  .core-values-container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .section-content,
  .value-list li {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .plane-icon {
    width: 35px;
    height: 35px;
  }

  .value-list li {
    padding-left: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .core-values-section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .section-content,
  .value-list li {
    font-size: 0.85rem;
  }
}

.timeline-wrapper .timeline-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.statistics-section {
  background: transparent;
}

.statistics-section .statistics-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: none;
  padding: 2.5rem 2rem;
}

.statistics-section .stat-box {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.statistics-section .stat-number {
  font-weight: 700;
  font-style: normal;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0;
  color: #f7941d;
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: inherit;
}

@media (max-width: 576px) {
  .statistics-section .stat-number {
    font-size: 1.5625rem;
  }
}

.statistics-section .stat-label {
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  color: #666;
  text-align: center;
  font-family: inherit;
}

@media (max-width: 576px) {
  .statistics-section .stat-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 992px) {
  .statistics-section .statistics-container {
    flex-direction: row;
    align-content: start;
    align-items: start;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .statistics-section .stat-number {
    font-size: 64px;
  }

  .statistics-section .stat-label {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .statistics-section .statistics-container {
    padding: 1.5rem 0.5rem;
  }

  .statistics-section .stat-number {
    font-size: 1.5625rem;
  }

  .statistics-section .stat-label {
    font-size: 0.75rem;
  }
}

.certificate-section {
  background: transparent;
  padding: 0;
}

.certificate-section .container {
  padding: 0;
}

.certificate-section .certificate-grid {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: none;
  padding: 2.5rem 2rem;
}

.certificate-section .list-certificate {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 1.5rem;
  justify-items: start;
  align-items: start;
}

.certificate-section .title-section {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  gap: 0.5rem;
  color: #3563ed;
}

.certificate-section .title-section span {
  color: #f7941d;
  font-weight: 700;
}

.certificate-section .certificate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: start;
}

.certificate-section .certificate-item img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background: #f8f8f8;
}

.certificate-section .certificate-item p {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0;
  color: #3563ed;
  margin-bottom: 0;
  word-break: break-word;
  white-space: pre-line;
}

@media (max-width: 992px) {
  .certificate-section .list-certificate {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem 1rem;
  }

  .certificate-section .certificate-grid {
    padding: 2rem 1rem;
  }

  .certificate-section .certificate-item img {
    max-width: 110px;
    height: 120px;
  }

  .certificate-section .title-section {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .certificate-section .certificate-item p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .certificate-section .certificate-grid {
    padding: 1rem 0.5rem;
  }

  .certificate-section .list-certificate {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 0.75rem;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .certificate-section .list-certificate::-webkit-scrollbar {
    display: none;
  }

  .certificate-section .certificate-item {
    min-width: 130px;
    max-width: 130px;
    flex: 0 0 130px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    background: #fff;
  }

  .certificate-section .certificate-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
  }

  .certificate-section .title-section {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: left;
  }

  .certificate-section .certificate-item p {
    font-size: 12px;
    text-align: center;
    word-break: break-word;
    white-space: normal;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.branch-section {
  background: transparent;
  padding: 0;
}

.branch-section .branch-map {
  position: relative;
  background: #3a5fc8;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-start;
}

.branch-section .branch-map .branch-map-text {
  position: absolute;
  left: 2.5rem;
  bottom: 2.5rem;
  z-index: 2;
  color: #fff;
}

.branch-section .branch-map .branch-map-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.branch-section .branch-map .branch-map-text h2 span {
  color: #f7941d;
  font-weight: 700;
}

.branch-section .branch-map .map-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.branch-section .branch-boxes {
  display: flex;
  gap: 2rem;
  background: #fff;
  padding: 2rem 2rem 2.5rem 2rem;
  box-shadow: none;
  justify-content: space-between;
  align-items: stretch;
}

.branch-section .branch-box {
  background: #fff;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  text-align: left;
  padding: 1rem;
  gap: 1.5rem;
}

.branch-section .branch-box img {
  width: 120px;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.branch-section .branch-box .branch-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}

.branch-section .branch-box .branch-info h3 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  color: #3a5fc8;
  vertical-align: bottom;
}

.branch-section .branch-box .branch-info p {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0;
  color: #666666;
  margin-bottom: 0.5rem;
}

@media (max-width: 576px) {
  .branch-section .branch-boxes {
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem 0.25rem 0.5rem 0.25rem;
  }

  .branch-section .branch-map {
    min-height: 100px;
  }

  .branch-section .branch-map .map-image {
    height: 150px;
    object-fit: cover;
    width: 100%;
    display: block;
  }

  .branch-section .branch-map .branch-map-text {
    left: 0.5rem;
    bottom: 0.5rem;
  }

  .branch-section .branch-map .branch-map-text h2 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin: 0;
  }

  .branch-section .branch-map .branch-map-text span {
    color: #f7941d;
  }

  .branch-section .branch-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem !important;
  }

  .branch-section .branch-info h3 {
    font-size: 0.9375rem !important;
    line-height: 1;
    margin-bottom: 0.5rem;
    vertical-align: bottom;
  }

  .branch-section .branch-info p {
    font-weight: 500;
    font-size: 0.75rem !important;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
}

.experience-travel--card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3563ed;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 767px) {
  .experience-travel--card .card-title {
    font-size: 0.75rem !important;
  }
}

.experience-travel--card .card-text {
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  color: #666666;
}

@media (max-width: 767px) {
  .experience-travel--card .card-text {
    font-size: 0.625rem !important;
  }
}

.experience-travel--card .card-title.one-line~.card-text {
  -webkit-line-clamp: 4;
  max-height: 4.32rem;
}

.experience-travel--card img,
.travel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.promotion-hero {
  position: relative;
  overflow: hidden;
  height: 60vh;
}

.promotion-hero .hero-img {
  object-fit: cover;
  object-position: center;
  width: 100vw;
  max-width: 100%;
  height: 100%;
  display: block;
}

.promotion-hero .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 99, 237, 0.6);
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
}

.promotion-hero .hero-overlay {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 2.5rem;
}

.travel-card {
  transition:
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.travel-card:hover {
  box-shadow:
    0 8px 24px rgba(21, 101, 192, 0.15),
    0 1.5px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px) scale(1.03);
}

.travel-card:hover img {
  transform: scale(1.07);
}

.suggest-link {
  line-height: 1.5rem;
  text-decoration: none !important;
  display: inline-block;
  font-weight: 500;
  color: #000000;
}

.experience-travel--card:hover {
  cursor: pointer;
}

/* Style images inside the description/details blocks (suggestions-travel-detail) */
.suggestions-travel-detail .text-description img {
  display: block;
  margin: 1.25rem auto;
  width: 60%;
  max-width: 820px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* make description images full width on small screens */
@media (max-width: 768px) {
  .suggestions-travel-detail .text-description img {
    width: 100%;
    margin: 1rem 0;
    border-radius: 6px;
  }

  .suggest-link {
    font-size: 0.6375rem;
  }
}

@media (max-width: 992px) {

  .experience-travel--card img,
  .travel-card img {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .experience-travel--card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .experience-travel--card img,
  .travel-card img {
    height: 120px;
  }

  .load-more-btn {
    width: 100% !important;
    color: #212427 !important;
    min-width: 100%;
    max-width: 100%;
    border-radius: 8px;
    padding: 0.75rem 1rem !important;
  }

  .load-more-btn .arrow-icon {
    color: #6c757d;
    transition: transform 0.3s ease;
  }

  .load-more-btn:hover .arrow-icon {
    transform: translateX(4px);
  }

  #travelTabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 0.5rem;
    /* Ẩn scrollbar (giữ khả năng scroll) */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  #travelTabs::-webkit-scrollbar {
    display: none;
  }

  #travelTabs .nav-item {
    flex: 0 0 auto;
  }
}

.page-flight-result-4-container {
  overflow: hidden;
}

.page-flight-result-4-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.page-flight-result-4-title {
  font-weight: bold !important;
}

.page-flight-result-4-date {
  font-size: 0.6rem;
}

.page-flight-result-4-dates {
  flex-grow: 1;
  justify-content: center;
}

.page-flight-result-4-date-item {
  padding: 10px;
  background-color: #fff;
  border-radius: 4px;
  min-width: 120px;
}

.page-flight-result-4-date-item p {
  margin: 0;
}

.page-flight-result-4-date-item p:first-child {
  font-weight: bold;
}

.page-flight-result-4-date-item p:last-child {
  font-size: 0.8rem;
}

.page-flight-result-4-prev-btn,
.page-flight-result-4-next-btn {
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.page-flight-result-4-inbound-detail-container {
  background-color: #3563ed;
}

.card-body label {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
}

.custom-checkbox .form-check-label,
.card-body label {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.custom-checkbox .form-check-label::selection,
.card-body label::selection {
  background: transparent;
  color: inherit;
}

.custom-checkbox .form-check-label::-moz-selection,
.card-body label::-moz-selection {
  background: transparent;
  color: inherit;
}

.custom-checkbox .form-check-label:active,
.card-body label:active {
  background: transparent !important;
  color: inherit !important;
}

#selected-filters-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.5rem;
  align-items: flex-start;
}

.selected-filters-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.5rem;
  align-items: flex-start;
}

.filter-tag {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border: 1px solid #d9d9d9;
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  background-color: #f8f9fa;
  font-size: 0.75rem;
  font-weight: 500;
  color: #495057;
  white-space: nowrap;
  width: fit-content;
  transition: all 0.2s ease;
  cursor: default;
}

.filter-tag:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
}

.filter-tag i.filter-tag-remove {
  font-size: 0.625rem;
  cursor: pointer;
  color: #6c757d;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.filter-tag i.filter-tag-remove:hover {
  color: #dc3545;
}

@media (max-width: 768px) {
  .filter-tag {
    font-size: 0.625rem !important;
    padding: 0.25rem 0.5rem;
    gap: 0.375rem;
  }

  .filter-tag i.filter-tag-remove {
    font-size: 0.625rem;
  }
}

.line-with-dots[data-filter-type] {
  width: 100%;
  height: 20px;
  background-color: transparent;
  position: relative;
  margin: 1rem 0;
}

.line-with-dots[data-filter-type]::before,
.line-with-dots[data-filter-type]::after {
  display: none;
}

@media (max-width: 576px) {
  .line-with-dots[data-filter-type] {
    margin: 0.5rem 0;
  }
}

@media (max-width: 768px) {

  .custom-checkbox .form-check-label,
  .card-body label {
    font-size: 0.75rem;
  }

  .price-range-display,
  .departure-time-display,
  .arrival-time-display,
  .flight-duration-display {
    font-size: 0.75rem;
  }
}

.line-with-dots:not([data-filter-type]) {
  width: 100%;
  height: 3px;
  background-color: #000;
  position: relative;
}

.line-with-dots:not([data-filter-type])::before,
.line-with-dots:not([data-filter-type])::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.line-with-dots:not([data-filter-type])::before {
  left: 0;
}

.line-with-dots:not([data-filter-type])::after {
  right: 0;
}

.flight-ticket-result-line-with-dot {
  position: relative;
  height: 3px;
  background-color: white;
  width: 6rem;
  max-width: 8rem;
  min-width: 4rem;
}

.flight-ticket-result-line-with-dot::before,
.flight-ticket-result-line-with-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flight-ticket-result-line-with-dot::before {
  left: 0;
}

.flight-ticket-result-line-with-dot::after {
  right: 0;
}

.text-default-blue {
  color: #3563ed;
}

@media (max-width: 500px) {
  .flex-wrap-500 .flex-wrap-500 {
    flex-wrap: wrap;
  }

  .flex-wrap-500 .flex-wrap-500 .flex-item {
    flex: 1 1 100%;
  }
}

.line-with-dot {
  position: relative;
  height: 1px;
  background-color: #999;
  width: 100px;
  border-radius: 10px;
}

.line-with-dot::before,
.line-with-dot::after {
  content: "";
  position: absolute;
  top: -0.5px;
  width: 10px;
  height: 10px;
  background-color: #847d7d;
  border-radius: 50%;
  transform: translateY(-50%);
}

.line-with-dot::before {
  left: 0;
}

.line-with-dot::after {
  right: 0;
}

.line-with-dot-white {
  position: relative;
  height: 1px;
  background-color: #fff;
  width: 100px;
  border-radius: 10px;
}

.line-with-dot-white::before,
.line-with-dot-white::after {
  content: "";
  position: absolute;
  top: -0.5px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.line-with-dot-white::before {
  left: 0;
}

.line-with-dot-white::after {
  right: 0;
}

.rounded-lg-container {
  border-radius: 12px;
}

.text-orange-warning {
  color: #ff9f2b;
}

.text-smaller {
  font-size: 80%;
}

.vertical-divider {
  background-color: #c7bfbf;
  padding: 0;
  width: 1px;
  height: 2.3rem;
}

.site-main {
  background-color: #eef3f8 !important;
}

.base-layout {
  background-color: #eef3f8;
  margin: 0;
  padding: 0 3%;
  min-height: max;
}

.container {
  padding: 0 3%;
}

/* Enable dropdown on hover for desktop */
.SmileTrip-header .hover-dropdown:hover>.dropdown-menu {
  display: block;
  margin-top: 0.5rem;
  /* animate in on hover */
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
  visibility: visible;
}

.SmileTrip-header {
  /* Giữ menu khi rê chuột vào danh sách */
}

.SmileTrip-header .hover-dropdown .dropdown-menu:hover {
  display: block;
}

.SmileTrip-header {
  /* Base link styles (navbar items) */
}

.SmileTrip-header .navbar-nav .nav-link,
.SmileTrip-header .nav-link.custom-link {
  color: #212427 !important;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0.5rem;
  margin: 0 0.2rem;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.SmileTrip-header .navbar-nav .nav-link::after,
.SmileTrip-header .nav-link.custom-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(56, 56, 56);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.SmileTrip-header .navbar-nav .nav-link:hover::after,
.SmileTrip-header .navbar-nav .nav-link:focus::after,
.SmileTrip-header .nav-link.custom-link:hover::after,
.SmileTrip-header .nav-link.custom-link:focus::after {
  transform: scaleX(1);
}

.SmileTrip-header .navbar-nav .nav-link.active::after,
.SmileTrip-header .nav-link.custom-link.active::after {
  background-color: #666666;
  transform: scaleX(1);
}

.SmileTrip-header .navbar .dropdown-toggle::after {
  display: none;
}

.SmileTrip-header .navbar-nav .dropdown-toggle {
  position: relative;
}

.SmileTrip-header {
  /* Chevron arrow placed after text */
}

.SmileTrip-header .navbar-nav .dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.35rem;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.SmileTrip-header .navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  /* point up when opened */
}

.SmileTrip-header {
  /* Move underline animation to ::before for dropdowns to avoid arrow collision */
}

.SmileTrip-header .navbar-nav .dropdown-toggle::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(56, 56, 56);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.SmileTrip-header .navbar-nav .dropdown-toggle:hover::before,
.SmileTrip-header .navbar-nav .dropdown-toggle:focus::before {
  transform: scaleX(1);
}

.SmileTrip-header .navbar-nav .dropdown-toggle.active::before {
  background-color: #666666;
  transform: scaleX(1);
}

.SmileTrip-header {
  /* Language & Currency Dropdown Menu */
}

.SmileTrip-header .language-currency-dropdown {
  min-width: 450px !important;
  padding: 1.25rem !important;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  margin-top: 0.75rem;
}

.SmileTrip-header .language-currency-dropdown .dropdown-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.85rem;
}

.SmileTrip-header .language-currency-dropdown .dropdown-section:not(:last-child) {
  margin-bottom: 1.75rem;
}

.SmileTrip-header .language-currency-dropdown .btn-group-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  /* spread pills evenly across the available width on desktop */
  justify-content: space-between;
}

.SmileTrip-header .language-currency-dropdown .btn-pill {
  background-color: white;
  border: 1.5px solid #e0e0e0;
  color: #212427;
  font-size: 0.9rem;
  padding: 0.3rem 1rem;
  border-radius: 22px;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
  text-align: center;
}

.SmileTrip-header .language-currency-dropdown .btn-pill:hover {
  background-color: #f8f9fa;
  border-color: #ccc;
}

.SmileTrip-header .language-currency-dropdown .btn-pill.active {
  background-color: #3563ed;
  color: white;
  border-color: #3563ed;
  font-weight: 600;
}

.SmileTrip-header {
  /* Dropdown */
}

.SmileTrip-header .dropdown-menu {
  min-width: auto;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 200ms ease,
    visibility 0s linear 180ms;
  visibility: hidden;
}

.SmileTrip-header .dropdown-menu a {
  color: #333;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.SmileTrip-header .dropdown-menu a:hover {
  background-color: #f5f7fb;
  color: #212427;
}

.SmileTrip-header {
  /* Show dropdown when Bootstrap toggles it (click on mobile) */
}

.SmileTrip-header .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition:
    opacity 180ms ease,
    transform 200ms ease,
    visibility 0s;
  /* remove delay */
}

.SmileTrip-header {
  /* Dropdown item: inline icon + text, swap hover/default icons */
}

.SmileTrip-header .dropdown-menu li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
}

.SmileTrip-header .dropdown-menu li .img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.SmileTrip-header {
  /* Assume the first image is default, the second is hover icon */
}

.SmileTrip-header .dropdown-menu li .img:first-of-type {
  display: inline-block;
}

.SmileTrip-header .dropdown-menu li .img:nth-of-type(2) {
  display: none;
}

.SmileTrip-header {
  /* When hovering the <li> or the anchor, show hover icon */
}

.SmileTrip-header .dropdown-menu li:hover .img:first-of-type,
.SmileTrip-header .dropdown-menu li a:hover~.img:first-of-type {
  display: none;
}

.SmileTrip-header .dropdown-menu li:hover .img:nth-of-type(2),
.SmileTrip-header .dropdown-menu li a:hover~.img:nth-of-type(2) {
  display: inline-block;
}

.SmileTrip-header {
  /* Make anchor fill remaining space inline with icon */
}

.SmileTrip-header .dropdown-menu li>a.dropdown-item {
  flex: 1 1 auto;
  padding: 0.5rem 0.5rem;
}

.SmileTrip-header {
  /* Toggler */
}

.SmileTrip-header .navbar-toggler.custom-toggle {
  border: none;
  background: transparent;
  padding: 0.25rem 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.SmileTrip-header .navbar-toggler.custom-toggle:focus {
  outline: none;
  box-shadow: none;
}

.SmileTrip-header {
  /* Hamburger icon */
}

.SmileTrip-header .custom-hamburger {
  display: inline-block;
  width: 28px;
  height: 18px;
}

.SmileTrip-header .custom-hamburger .bar {
  display: block;
  height: 4px;
  background: #212427;
  border-radius: 2px;
  margin: 4px 0;
}

.SmileTrip-header .show-in-mobile {
  display: none;
}

.SmileTrip-header .navbar-mobile {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.5rem;
}

.navbar-mobile .mobile-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-mobile .navbar-toggler {
  margin-left: auto;
}

.mobile-controls-wrapper {
  display: none;
  width: 100%;
}

/* Responsive groups: mobile and desktop rules combined and nested for clarity */
@media (max-width: 767px) {

  .show-in-desktop,
  .show-in-desktop.d-flex,
  .show-in-desktop .d-flex {
    display: none !important;
  }

  .show-in-mobile {
    display: block !important;
  }

  .mobile-controls-wrapper {
    display: block !important;
  }

  .navbar-mobile .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    color: #212427;
    border-radius: 0 0 12px 12px;
    padding: 0rem 1rem;
    z-index: 1050;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  }

  .navbar-mobile .mobile-header-logo-and-menu-burger-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .navbar-mobile .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .mobile-controls-wrapper {
    margin-top: auto;
  }

  /* Mobile nav items with borders and gray text */
  .navbar-nav {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link {
    color: #666666 !important;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem;
    display: block;
    text-align: left;
  }

  /* Hide the underline animation on mobile */
  .navbar-nav .nav-link::after {
    display: none;
  }

  /* Also hide dropdown underline on mobile */
  .navbar-nav .dropdown-toggle::before {
    display: none;
  }

  /* Mobile dropdown controls styling */
  .mobile-controls {
    width: 100% !important;
    padding: 0 !important;
    display: block !important;
    overflow: visible !important;
  }

  .mobile-dropdown-btn .dropdown-arrow {
    transition: transform 0.3s ease;
  }

  .mobile-dropdown-btn[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
  }

  .mobile-dropdown-menu {
    /* Match header background color for consistent look */
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 1.25rem !important;
    overflow: hidden;
    margin: 0.25rem 0 0 0;
  }

  /* Reduce dropdown item font size on mobile */
  .dropdown-menu a {
    font-size: 0.75rem;
  }

  .mobile-dropdown-menu .dropdown-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.85rem;
  }

  .mobile-dropdown-menu .btn-group-pills {
    background-color: none !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    align-items: stretch;
  }

  .mobile-dropdown-menu .btn-pill {
    border: 1.5px solid #e0e0e0;
    color: #212427;
    font-size: 0.75rem;
    padding: 0rem;
    border-radius: 22px;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    min-height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .mobile-dropdown-menu .btn-pill:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
  }

  .mobile-dropdown-menu .btn-pill.active {
    background-color: #3563ed;
    color: #fff;
    border-color: #3563ed;
    font-weight: 600;
  }

  .mobile-dropdown-menu .btn-pill:last-child {
    margin-bottom: 0;
  }

  body.offcanvas-open {
    overflow: hidden;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    z-index: 1040;
  }

  .language-currency-dropdown {
    min-width: 320px;
    max-width: 90vw;
    left: auto !important;
    right: 0 !important;
  }
}

@media (min-width: 768px) {
  header {
    position: absolute;
    /* keep original positioning */
    left: 0;
    right: 0;
  }

  header .navbar {
    padding: 0.75rem 2rem;
    /* breathing room */
    width: 100%;
    /* layout: logo + nav + controls spaced across the header */
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .navbar-brand {
    margin-right: 1.25rem;
    padding-left: 0.25rem;
    flex: 0 0 auto;
  }

  header {
    /* make the collapse area distribute its internal columns */
  }

  header .navbar .collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
    gap: 1rem;
  }

  header .navbar-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
    padding-left: 0;
    /* allow nav to take available width and distribute items evenly */
    justify-content: space-between;
    width: 100%;
  }

  header {
    /* Each nav item becomes a flex slot so the logo and links space evenly */
  }

  header .navbar-nav>li {
    flex: 1 1 0;
    text-align: center;
  }

  header {
    /* Logo item keep minimal padding and center the image */
  }

  header .navbar-nav>li.logo-item {
    flex: 1 1 0;
  }

  header {
    /* Right-side controls */
  }

  header .header-desktop-controls {
    margin-left: 1rem !important;
    gap: 0.75rem;
  }

  header .nav-link.custom-link {
    color: #212427 !important;
  }

  header .nav-link.custom-link::after {
    height: 1.5px;
    bottom: -6px;
  }

  header {
    /* Match underline thickness/offset for dropdown toggle underline on desktop */
  }

  header .navbar-nav .dropdown-toggle::before {
    height: 1.5px;
    bottom: -6px;
  }

  header .btn-transparent {
    background-color: transparent;
    border-color: transparent;
    color: #212427;
  }

  header header .nav-link.custom-link::after {
    background-color: rgba(33, 36, 39, 0.08);
  }

  header .hover-dropdown>.dropdown-toggle {
    pointer-events: auto;
  }

  .custom-hamburger {
    width: 32px;
    height: 20px;
  }

  .custom-hamburger .bar {
    height: 4px;
    margin: 3px 0;
  }
}

#mainNav .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Remove underline effect for the VND language-currency button in navbar */
#mainNav .nav-item>.nav-link.dropdown-toggle.border.rounded-3::before,
#mainNav .nav-item>.nav-link.dropdown-toggle.border.rounded-3::after {
  display: none !important;
}

#mobileNav {
  padding: 0;
}

@media (max-width: 576px) {
  .mobile-dropdown-menu {
    padding: 0.75rem !important;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
  }

  .mobile-dropdown-menu.show {
    padding: 0 !important;
    border: none !important;
  }

  .mobile-dropdown-menu .btn-group-pills {
    display: grid !important;
    font-size: 0.75rem !important;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .hover-dropdown:hover>.dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  /* Prevent Bootstrap click toggle on desktop - hover only */
  .hover-dropdown>.dropdown-toggle[aria-expanded="true"] {
    pointer-events: auto;
  }
}

.dropdown-menu {
  margin-top: 0;
}

.dropdown-section-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.dropdown-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.dropdown-item-custom {
  flex: 0 0 33.3333%;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .custom-dropdown {
    width: 100vw !important;
    left: -1rem !important;
    border-radius: 0 !important;
  }

  .dropdown-item-custom {
    flex: 0 0 50%;
    /* 2 items per row on mobile */
  }
}

/* Calendar styles */
#calendar-container {
  padding: 1rem !important;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.flatpickr-calendar {
  width: 100% !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 !important;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  display: none !important;
}

/* Header styles */
.calendar-header {
  padding: 12px 16px;
  background: white;
}

.calendar-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.calendar-tab {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
}

.calendar-tab.active {
  background: #1565c0;
  color: white;
}

.calendar-tab:not(.active) {
  background: white;
  color: #1565c0;
  border: 1px solid #1565c0;
}

/* Month navigation */
.calendar-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.btn-order-reorder {
  max-width: 12rem;
}

.month-title {
  font-size: 16px;
  font-weight: 500;
  color: #1565c0;
  text-align: center;
}

.nav-btn {
  border: none;
  background: none;
  padding: 8px;
  cursor: pointer;
  color: #1565c0;
}

/* Calendar grid */
.flatpickr-weekdays {
  background: white;
  margin-bottom: 8px;
}

.flatpickr-weekday {
  color: #666 !important;
  font-weight: 500;
  font-size: 14px;
}

.flatpickr-day {
  border-radius: 8px;
  height: 40px;
  line-height: 1.2;
  margin: 2px;
  font-size: 14px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flatpickr-day.selected {
  background: #1565c0 !important;
  border-color: #1565c0 !important;
  color: white !important;
}

.flatpickr-day.today {
  border-color: #1565c0 !important;
}

.app-input-text-full-black:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Price indicators */
.price-indicator {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.price-special {
  color: #ff6b00;
}

/* Calendar wrapper */
.calendar-wrapper {
  display: flex;
  gap: 24px;
}

.departure-calendar,
.return-calendar {
  flex: 1;
  position: relative;
}

/* Month arrows */
.prev-month,
.next-month {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 24px;
  color: #1565c0;
  cursor: pointer;
  z-index: 2;
}

.prev-month {
  left: -12px;
}

.next-month {
  right: -12px;
}

/* Misc */
.scroll-down-to-see-more {
  position: absolute;
  bottom: 0;
  text-align: center;
}

.scroll-down-to-see-more p {
  margin-bottom: 0.25rem;
}

.scroll-down-to-see-more i {
  animation: bounce infinite 2s;
}

.multi-city-container {
  transition: all 0.3s ease;
}

.multi-city-container .flight-route-choosing,
.multi-city-container .flight-time-choosing {
  transition: all 0.3s ease;
}

.btn-link {
  color: #1565c0;
}

.btn-link:hover {
  color: #0d47a1;
}

.segment-header {
  color: #666;
  margin-bottom: 0.5rem;
}

.flight-segment {
  padding-top: 0.5rem;
}

.add-segment-btn {
  color: #1565c0;
  border: none;
  background: none;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.add-segment-btn:hover {
  color: #0d47a1;
}

#segment-calendar-container {
  position: absolute;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1060;
}

#flightClassBtn {
  transition: all 0.2s ease;
}

#flightClassBtn:hover {
  background: #f8f9fa !important;
}

/* Flight class dropdown */
#flightClassDropdown {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.flight-class-option {
  transition: all 0.2s ease;
}

.flight-class-option:hover {
  background: #f8f9fa !important;
}

.flight-class-option.selected {
  background: #e3f2fd !important;
}

.flight-class-option .fw-bold {
  color: #333;
  font-size: 1.1rem;
}

.flight-class-option .text-muted {
  color: #666 !important;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tabs-row {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 1rem;
}

.tabs-row .nav-tabs {
  margin-bottom: 0 !important;
  border: 0 !important;
}

.tabs-row #flightClassBtn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  #checkbox {
    justify-content: start !important;
  }

  .btn-order-reorder {
    width: 100% !important;
  }

  .add-segment-wrapper,
  .form-check {
    width: 100% !important;
    /* chiếm full chiều ngang */
    justify-content: center !important;
    /* căn giữa nút */
  }

  .form-check {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .form-check .btn {
    width: 100% !important;
    /* nút "Tìm kiếm" chiếm hết ngang */
  }
}

/* Stack on mobile */
@media (max-width: 768px) {
  .tabs-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .tabs-row #flightClassBtn {
    width: 100%;
  }
}

/* Inputs responsive grouping */
.input-rows {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  width: 100%;
}

.left-controls {
  display: flex;
  gap: 1rem;
  flex: 1 1 auto;
  width: 100%;
}

.right-controls {
  display: flex;
  flex: 0 0 25%;
}

/* Mobile: stack each block to its own row */
@media (max-width: 768px) {
  .input-rows {
    flex-direction: column;
    gap: 0.5 rem;
  }

  .left-controls {
    flex-direction: column;
    gap: 0.5 rem;
  }

  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .flight-route-choosing,
  .flight-time-choosing,
  .flight-passenger,
  .right-controls {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100%;
  }

  .flight-route-choosing-left,
  .flight-route-choosing-right {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* header.css */
/* Header trong suốt */
header,
.header-custom {
  background-color: transparent !important;
}

/* Menu chữ trắng rõ, đậm */
.navbar-nav .nav-link-page-5,
.nav-link-page-5.custom-link {
  color: black !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

/* Gạch dưới mờ khi hover */
.nav-link-page-5.custom-link {
  color: black !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: inline-block;
  max-width: 120px;
  /* or adjust to fit your layout */
  white-space: normal;
  text-align: left;
}

.nav-link-page-5.custom-link:hover::after,
.nav-link-page-5.custom-link:focus::after {
  transform: scaleX(1);
}

/* Gạch dưới trắng đậm khi đang ở trang đó (active) */
.nav-link-page-5.custom-link.active::after {
  background-color: #ffffff;
  transform: scaleX(1);
}

.btn-main-orange {
  background-color: #f5a623;
  color: #fff;
  border: none;
}

.btn-main-orange:hover {
  background-color: #e5941e;
}

.timeline-line {
  background-color: var(--main-orange, orange);
  width: 3px;
  height: calc(100% - 1.95rem);
  position: absolute;
  border-radius: 2.5px;
  left: -0.5rem;
}

.timeline-line.longer-5 {
  height: 42rem;
}

@media (max-width: 768px) {
  .timeline-line {
    height: calc(100% - 1.6rem);
  }
}

.fade-wrap {
  position: relative;
  overflow: hidden;
}

.fade-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6rem;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.9) 60%,
      rgb(255, 255, 255) 100%);
  transition: opacity 0.25s ease;
  opacity: 1;
}

.fade-wrap.open::after {
  opacity: 0;
  display: none !important;
}

.fade-wrap.open {
  overflow: visible;
}

.arrow-icon {
  transition: transform 0.25s ease;
}

.arrow-icon.rotate {
  transform: rotate(180deg);
}

#toggleBtn[aria-expanded="true"] .arrow-icon {
  transform: rotate(180deg);
}

.selectable-item {
  cursor: pointer;
}

.dropdown-section-title {
  font-size: 1.15rem;
}

/* Chosen date */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background-color: #3563ed !important;
  border-color: #3563ed !important;
  color: white !important;
  border-radius: 7px !important;
}

/* Hover effect */
.flatpickr-day:not(.flatpickr-disabled):hover,
.flatpickr-day:not(.flatpickr-disabled):focus {
  background-color: rgb(99.8272727273,
      135.1636363636,
      241.1727272727) !important;
  color: white !important;
  border-radius: 7px !important;
}

/* Override flatpickr CDN: ngày tương lai không có tour vẫn hiển thị rõ */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(57, 57, 57, 0.3) !important;
}

/* Ngày disabled (quá khứ): chỉ mờ nhẹ, không quá mờ */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(57, 57, 57, 0.35) !important;
  background: transparent !important;
  cursor: default !important;
}

/* Ngày tương lai không có tour: giữ màu rõ (trừ khi đang hover hoặc đã chọn) */
.flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay):not(.selected):not(:hover) {
  color: #333 !important;
  opacity: 1 !important;
}

/* Giữ nguyên màu trắng cho ngày đã chọn */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected div,
.flatpickr-day.selected .price-text-date {
  color: white !important;
}

/* Không cho hover effect trên ngày disabled */
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.flatpickr-disabled:focus {
  background: transparent !important;
  color: rgba(57, 57, 57, 0.35) !important;
  cursor: default !important;
}

.calendar-info {
  border: 1px solid #3563ed;
  color: #3563ed;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.calendar-info .left {
  text-align: left;
}

.calendar-info .right {
  text-align: right;
}

.custom-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
  font-size: 14px;
}

.custom-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #007bff;
  /* Replace with $app-main-blue */
  border-radius: 6px;
  padding: 6px 12px;
  margin: 8px 10px 4px;
  font-size: 14px;
  background-color: #fff;
}

.custom-title-wrapper .label {
  font-weight: bold;
  color: #007bff;
  /* Replace with $app-main-blue */
}

.custom-title-wrapper .date {
  color: #333;
}

body {
  font-family: "Lexend Deca", sans-serif;
  color: #6c757d;
  line-height: 1.5;
}

.text-main-orange {
  color: #ff9f2b;
}

.text-main-dark-gray {
  color: #585353;
}

.text-main-blue {
  color: #3563ed;
}

.text-main-gray {
  color: #847d7d;
}

.app-text-main {
  font-size: 1.05rem !important;
}

.app-section-title {
  margin-top: 2rem;
  font-weight: bold;
  color: black !important;
}

.app-bg-main-blue {
  background-color: #3563ed;
}

div.tour-nav-panel,
div.tour-nav-panel-buttons {
  display: block !important;
}

.mobile-header-logo-and-menu-burger-container {
  display: none !important;
}

@media (max-width: 768px) {
  div.mobile-header-logo-and-menu-burger-container {
    display: flex !important;
  }

  div.mobile-header-logo-and-menu-burger-container .d-flex {
    flex-direction: column;
  }

  div.mobile-header-logo-and-menu-burger-container .bootstrap-default-gray-border {
    max-width: 100% !important;
    margin-bottom: 10px;
  }
}

@media (max-width: 1250px) {
  .flight-routes-item {
    width: 80% !important;
    margin: auto;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .app-banner-title {
    padding-top: 4rem !important;
  }
}

@media (max-width: 1400px) {
  .flight-ticket-result-nav-panel {
    display: none !important;
  }

  .flight-ticket-result-tickets {
    width: 100% !important;
  }

  .col-12.col-lg-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .flight-ticket-result-filter-button {
    display: block !important;
  }
}

@media (max-width: 1200px) {
  .app-slide-item-res {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (max-width: 992px) {
  .app-slide-item-res {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .app-slide-item-res {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .app-showcase-container-res {
    flex-wrap: nowrap !important;
  }

  .app-showcase-item-res {
    flex: 1 !important;
    width: 45% !important;
  }
}

@media (max-width: 1200px) {
  .app-showcase-container-res {
    flex-wrap: wrap !important;
  }

  .app-showcase-item-res {
    flex: 0 0 100% !important;
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .step-progress-page-5 .step {
    min-width: 100px;
    width: 100px;
  }
}

@media (max-width: 768px) {
  .hero-section .d-flex.gap-3.flex-nowrap {
    flex-direction: column;
    width: 100%;
    gap: 1rem !important;
  }

  .hero-section {
    height: 15rem !important;
  }

  .hero-section .flight-route-choosing {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .flight-time-choosing {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-section .flight-route-choosing .flight-route-choosing-left .flight-route-choosing-right {
    width: 49%;
    max-width: 50%;
  }

  .hero-section .flight-route-choosing .exchange-icon {
    font-size: 1.25rem;
    flex: 0 0 10%;
    text-align: center;
  }

  .hero-section .bootstrap-default-gray-border {
    width: 100%;
  }

  .hero-section input.form-control {
    width: 100%;
  }

  .hero-section .form-check {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  .hero-section .form-check .form-check-input {
    margin-top: 0;
  }

  .hero-section .form-check-label {
    font-size: 0.9rem;
  }

  .hero-section .btn.btn-order-reorder {
    width: auto;
    max-width: none;
    white-space: nowrap;
  }

  .hero-section .nav-tabs {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0 0.25rem;
  }

  .hero-section .nav-tabs .nav-item {
    flex: 1;
    text-align: center;
  }

  .hero-section .nav-tabs .nav-item .app-btn-main {
    white-space: normal;
    /* Allow text wrap */
    word-break: break-word;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.2;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    height: auto;
  }

  div.flight-trip-result-inbound-flight-direction {
    display: none !important;
  }

  span.flight-trip-result-inbound-flight-direction {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .row.mobile-overwrite {
    display: block !important;
    margin: 0 !important;
  }

  div.airline-name-and-codename {
    display: none !important;
  }

  img.flight-trip-detail-image {
    display: none !important;
  }

  img.baggage-included-image {
    display: none !important;
  }

  div.baggage-included-image {
    display: none !important;
  }

  .flight-trip-price-tags>.d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .flight-trip-price-tags .badge {
    width: 100%;
  }

  .flight-trip-price-tags>span.text-main-orange {
    margin-top: 0.5rem;
    align-self: flex-end;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .flight-time-info .fs-5 {
    font-size: 90% !important;
  }

  .flight-time-info.gap-4 {
    gap: 0.5rem !important;
  }

  .flight-time-info .text-muted {
    font-size: 60% !important;
  }

  /* Hide separators (vertical rules) */
  .flight-ticket-result-tickets .vr {
    display: none !important;
  }

  button.flight-ticket-choose-button {
    display: none !important;
  }

  .flight-ticket-remaining-places-web {
    display: none !important;
  }

  .flight-ticket-remaining-places-mobile {
    display: block !important;
  }

  div.flight-ticket-price-div {
    display: inline-block !important;
  }

  span.vnairline-text {
    font-size: 0.75rem !important;
  }

  span.page-flight-result-4-date {
    display: none !important;
  }

  div.mobile-see-more-text {
    display: none !important;
  }

  .mobile-banner-header {
    background-position: center top !important;
    margin-top: 0 !important;
    padding-bottom: 2rem !important;
  }

  .mobile-footer {
    background-image: url("/assets/img/hero/mobile-footer-bg-img-smiletrip.jpg") !important;
  }

  a.logo-mobile-margin {
    margin-left: 1rem !important;
  }

  /* Force time/location block to new line */
}

@media (max-width: 768px) {
  .app-breadcrumb {
    display: none !important;
  }

  div.tour-filter-button-283490 {
    display: flex !important;
  }

  div.tour-main-popular-tours-slide {
    display: none !important;
  }

  .promo-email-991 {
    max-width: 300px;
    height: 40px;
    border-radius: 8px;
  }

  .promo-btn-991 {
    height: 40px;
    border-radius: 8px;
    margin-left: 0.5rem;
  }

  .promo-input-wrap-991 {
    flex-direction: column !important;
    align-items: center;
  }

  .promo-email-991,
  .promo-btn-991 {
    width: 100%;
    max-width: 300px;
    margin-left: 0 !important;
    margin-bottom: 0.5rem;
    border-radius: 8px !important;
  }

  .banner-img-d-none {
    display: none !important;
  }

  h1.banner-title-mobile {
    font-size: 2rem !important;
  }

  div.scroll-down-to-see-more {
    display: none !important;
  }

  div.tour-nav-panel {
    display: none !important;
  }

  div.tour-nav-panel-buttons {
    display: none !important;
  }

  img.tour-item-item-image-3840939 {
    width: 13rem !important;
    height: 13rem !important;
  }

  .tour-item-vertical-divider {
    display: none !important;
  }

  div.tour-item-content-container {
    display: block !important;
    gap: 0 !important;
  }

  div.tour-item-information-item {
    margin-bottom: -2.25rem !important;
  }

  .tour-item-destination,
  .tour-item-start-in,
  .tour-item-start-calendar {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .tour-detail-tour-price-detail {
    display: none !important;
  }

  div.tour-detail-tour-main-content {
    width: 100% !important;
  }

  div.tour-detail-why-us {
    margin-top: -10rem !important;
  }
}

@media (max-width: 768px) {
  .app-banner-title::before {
    content: "Vé máy bay đi Nhật giá rẻ chỉ từ 2.000.000";
    display: block;
    color: white;
  }

  .app-banner-title {
    font-size: 1.25rem;
    /* adjust as needed */
    color: #000;
    /* optional */
  }

  .app-banner-title::after {
    content: none;
  }

  .app-banner-title {
    visibility: hidden;
  }

  .app-banner-title::before {
    visibility: visible;
  }

  .booking-banner-banner-iata-image {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .banner-promotions-div-content {
    padding-top: 12rem !important;
  }

  .banner-promotion-bg-img {
    object-fit: cover;
    width: 100%;
    height: 15rem !important;
  }

  .booking-promotions-banner-iata-image {
    display: none !important;
  }

  .promotions-breadcrumb {
    display: none !important;
  }

  .promotions-promotion-section-3-buttons {
    display: none !important;
  }
}

* {
  font-family: inherit;
}

html,
body {
  font-family:
    "SVN-Gilroy",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif !important;
  background-color: #eef3f8 !important;
  margin: 0;
  padding: 0;
}

.dropdown-toggle::after {
  display: none !important;
}

.header-wrapper {
  position: relative;
  z-index: 1000 !important;
}

.smiletrip-bg-dark {
  background-color: #e2eaf1 !important;
}

/* Custom mobile navbar toggler - borderless + bold 3-line hamburger */
.navbar-toggler.custom-toggle {
  border: none !important;
  background: transparent !important;
  padding: 0.25rem 0.5rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
}

.navbar-toggler.custom-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}

.custom-hamburger {
  display: inline-block;
  width: 28px;
  height: 18px;
}

.custom-hamburger .bar {
  display: block;
  height: 3px;
  /* thicker bar for bold look */
  background: #212427;
  /* dark color */
  border-radius: 2px;
  margin: 3px 0;
  /* spacing between bars */
}

/* Slightly larger bars on larger screens */
@media (min-width: 768px) {
  .custom-hamburger {
    width: 32px;
    height: 20px;
  }

  .custom-hamburger .bar {
    height: 4px;
    margin: 3px 0;
  }
}

.panel-title {
  font-size: 1.25rem;
}

.hero-section input::placeholder {
  color: #999;
}

.container-white-bg {
  background-color: white !important;
}

.main-bg-container {
  background-color: #eef3f8;
}

.base-layout-main-panel {
  padding: 0 14vw;
  padding-bottom: 0;
}

.layout-flight-order-panel {
  padding: 0 14vw;
  padding-bottom: 0;
}

.text-main-blue {
  color: #3563ed;
}

.text-main-orange {
  color: #ff9f2b;
}

.btn-main-orange {
  background-color: #ff9f2b !important;
  color: white !important;
  font-weight: bold;
}

.app-bg-main-blue {
  background-color: #3563ed !important;
}

.bootstrap-default-gray-border {
  border: 1px solid #ced4da;
  border-radius: 6px;
}

.custom-long-arrow {
  color: #3563ed !important;
  font-weight: bold;
}

.custom-long-bold-arrow {
  color: #3563ed !important;
  font-weight: bold;
}

@media (max-width: 767px) {
  .show-in-desktop {
    display: none !important;
  }
}

.show-in-mobile {
  display: none !important;
}

@media (max-width: 767px) {
  .show-in-mobile {
    display: block !important;
  }
}

.title-section {
  font-size: 2.25rem !important;
  font-weight: bold !important;
  margin-bottom: 1.25rem;
  color: #000000;
}

@media (max-width: 576px) {
  .title-section {
    font-size: 1.25rem !important;
  }
}

.title-paragraph {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .title-paragraph {
    font-size: 0.75rem;
  }
}

.text-description {
  font-size: 1.25rem;
  color: #666666;
}

@media (max-width: 767px) {
  .text-description {
    font-size: 1.125rem;
  }
}

@media (max-width: 576px) {
  .text-description {
    font-size: 0.75rem !important;
  }
}

.text-default {
  font-size: 1rem;
  color: #333333 !important;
}

@media (max-width: 576px) {
  .text-default {
    font-size: 0.875rem;
  }
}

.text-price {
  font-size: 1.25rem;
  font-weight: bold;
  color: #f7941d;
}

@media (max-width: 576px) {
  .text-price {
    font-size: 0.9375rem;
  }
}

.price-original {
  font-size: 0.9rem;
  color: #999999;
  text-decoration: line-through;
}

@media (max-width: 576px) {
  .price-original {
    font-size: 0.875rem;
  }
}

.price-wrapper {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  text-align: right;
}

.price-wrapper .price-from {
  display: flex;
  font-size: 0.875rem;
  align-items: center;
  font-weight: 500;
  color: #f7941d;
  line-height: 1;
}

.price-wrapper .text-price {
  font-size: 1.1rem !important;
}

.price-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.price-stack .price-original {
  line-height: 1.1;
  margin-bottom: 0.125rem;
}

.price-stack .text-price {
  line-height: 1.1;
}

@media (max-width: 576px) {
  .price-wrapper {
    gap: 0.375rem;
  }

  .price-stack .price-original {
    margin-bottom: 0.0625rem;
  }
}

.smile-trip-nav-bar {
  font-size: 0.875rem;
  font-weight: 500;
}

.suggestions-section {
  padding: 1rem 0;
}

@media (max-width: 576px) {
  .suggestions-section {
    padding: 1.5rem 0;
  }
}

.suggestions-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
  .suggestions-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.suggestions-empty {
  text-align: center;
  padding: 2rem;
  color: #666;
}

@media (max-width: 576px) {
  .suggestions-empty {
    padding: 1.5rem;
    font-size: 0.875rem;
  }
}

/* ==========================================
   smiletrip-suggestions-tabs
    ========================================== */
.smiletrip-suggestions-tabs {
  background-color: #fff;
  border-radius: 0.75rem;
}

.smiletrip-suggestions-tabs .nav.nav-pills {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  font-size: 1.25rem;
  gap: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #cfd8dc transparent;
}

.smiletrip-suggestions-tabs .nav.nav-pills::-webkit-scrollbar {
  height: 6px;
}

.smiletrip-suggestions-tabs .nav.nav-pills::-webkit-scrollbar-thumb {
  background-color: #cfd8dc;
  border-radius: 3px;
}

.smiletrip-suggestions-tabs .nav.nav-pills::-webkit-scrollbar-track {
  background: transparent;
}

.smiletrip-suggestions-tabs .nav.nav-pills {
  scrollbar-width: none;
}

.smiletrip-suggestions-tabs .nav.nav-pills::-webkit-scrollbar {
  display: none;
}

.smiletrip-suggestions-tabs .nav.nav-pills .nav-item {
  flex: 0 0 auto;
}

.smiletrip-suggestions-tabs .nav.nav-pills .nav-link {
  border: 1px solid #3563ed !important;
  color: #3563ed;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease-in-out;
  background-color: transparent;
}

.smiletrip-suggestions-tabs .nav.nav-pills .nav-link:hover {
  background-color: rgba(21, 101, 192, 0.1);
}

.smiletrip-suggestions-tabs .nav.nav-pills .nav-link.active {
  background-color: #3563ed;
  color: #fff;
  box-shadow: 0 1px 4px rgba(21, 101, 192, 0.3);
}

.smiletrip-suggestions-tabs .tab-content .suggestion-link {
  display: block;
  color: #3563ed;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.25rem 0;
  font-size: 1.25rem;
}

.smiletrip-suggestions-tabs .tab-content .suggestion-link:hover {
  color: rgb(19.5545454545, 69.5272727273, 219.4454545455);
  text-decoration: underline;
}

@media (max-width: 576px) {
  .smiletrip-suggestions-tabs .tab-content .suggestion-link {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .smiletrip-suggestions-tabs .nav.nav-pills {
    font-size: 0.75rem;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .smiletrip-suggestions-tabs .nav-link {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.75rem;
  }

  .smiletrip-suggestions-tabs .tab-content {
    font-size: 0.75rem;
  }
}

/* ==========================================
   Responsive Tabs - Horizontal Scroll on Mobile
   Áp dụng cho các trang có tabs cần vuốt ngang
   ========================================== */
@media (max-width: 768px) {
  .app-scrollable-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 0.5rem;
    scrollbar-width: none;
  }

  .app-scrollable-tabs::-webkit-scrollbar {
    display: none;
  }

  .app-scrollable-tabs .nav-item {
    flex: 0 0 auto;
  }
}

/*# sourceMappingURL=style.css.map */