/*
   tour-styles.css
   All CSS for Tour layout
*/

/* 2) CONTAINER CLASS: white frame, centered */
.tour-container {
  max-width: 1200px;
  margin: 0 auto;
  background: none;
  border-radius: 0;
  padding: 20px;
  box-shadow: none;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #333;
}

/* TOP ROW: Default mobile => 2 columns stacked vertically, 20px gap */
.tour-top-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tour-left-col,
.tour-right-col {
  width: 100%;
}
@media (min-width: 992px) {
  .tour-top-row {
    flex-wrap: nowrap;
    gap: 0;
  }
  .tour-left-col {
    width: 75%;
    margin-right: 2%;
  }
  .tour-right-col {
    width: 23%;
  }
}

/* SLICK SLIDER PHOTO ALBUM */
.tour-gallery-slider {
  margin-bottom: 0px;
}
.tour-slide-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid #ddd;
}
.tour-featured-img img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Header + Share Button */
.tour-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tour-title {
  margin: 0;
}
.tour-share .tour-share-fb {
  text-decoration: none;
  background: #4267B2;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
}

/* Video play button */
.tour-video-btn-wrap {
  margin-top: 0px;
  width: 100%;
}
.tour-video-btn {
  display: block;
  width: 100%;
  background: #dc2626;
  color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

/* Service packages */
.tour-packages {
  margin-top: 10px;
}
.tour-package-item {
  border: none;
  padding: 0px;
  position: relative;
}
.tour-package-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 0;
  bottom: 0;
  height: 40px;
  width: 1px;
  background: rgba(0, 0, 0, 0.2);
}
.package-price del {
  margin-right: 8px;
  color: #666;
}
.tour-book-now {
  display: block;
  width: 100%;
  background: #e8604c;
  color: #fff;
  border: none;
  padding: 5px 5px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  font-weight: 600;
}

/* INFO ROW (itinerary, map, etc.) */
.tour-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.tour-info-col {
  flex: 1;
  min-width: 240px;
}

/* Main content */
.tour-content {
  margin-top: 30px;
}

/* Taxonomies */
.tour-taxonomies {
  margin-top: 30px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.tour-detail-schedule {
  margin-top: 30px;
}
.tour-detail-item {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 20px;
}

/* Google map review button */
.tour-review-map {
  margin-top: 30px;
}
.tour-review-btn {
  display: inline-block;
  padding: 10px 15px;
  background: #16a34a;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

/* RELATED TOURS */
.tour-related {
  margin-top: 20px;
}
.tour-related-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}
.tour-related-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}
.tour-related-item:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.tour-related-thumb {
  width: 180px;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
}
.tour-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tour-related-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tour-related-title {
  margin: 0 0 5px;
  font-size: 1rem;
  line-height: 1.4;
}
.tour-related-title a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}
.tour-related-title a:hover {
  color: #e8604c;
}
.tour-related-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* VIDEO MODAL */
.tour-video-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: #fff;
  border-radius: 6px;
  z-index: 9999;
  overflow: hidden;
}
.tour-video-modal-header {
  text-align: right;
  background: #f2f2f2;
}
.tour-video-close {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  padding: 8px;
}
.tour-video-iframe {
  width: 100%;
  height: calc(100% - 40px);
}
.tour-video-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

/* Top-level bar: title + share */
.tour-title-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
}
.tour-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}
.tour-share-right {
  display: flex;
  gap: 10px;
}
.tour-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  padding: 4px 8px;
  transition: background 0.3s;
}
.tour-share-btn:hover {
  background: #f0f0f0;
}
.share-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
.share-icon-fb {
  background-image: url('https://cdn-icons-png.flaticon.com/512/145/145802.png');
}
.share-icon-pinterest {
  background-image: url('https://cdn-icons-png.flaticon.com/512/145/145808.png');
}
.share-icon-instagram {
  background-image: url('https://cdn-icons-png.flaticon.com/512/2111/2111463.png');
}

/* 3-column box */
.tour-3col-box {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 4px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tour-3col-col {
  flex: 1;
  min-width: 200px;
}
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.info-item strong {
  margin-right: 5px;
}
.info-icon {
  width: 25px;
  height: 25px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 18px;
}
.icon-loai-tour {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/holiday-trip.png');
}
.icon-lich-trinh {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/calendar.png');
}
.icon-do-tuoi {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/age-group.png');
}
.icon-so-khach {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/user-avatar.png');
}
.icon-bao-gom {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/checklist.png');
}
.icon-khong-bao-gom {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/forbidden.png');
}
.icon-dia-diem {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/location.png');
}
.icon-map {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/map.png');
}
.icon-ngon-ngu {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/language.png');
}

/* 4-buttons container */
.tour-review-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #e8604c;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  padding: 10px;
  transition: background 0.3s;
  text-align: center;
}
.review-btn:hover {
  background: #cc523f;
  color: #fff;
}
.review-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
.icon-hotline {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/phone.png');
}
.icon-whatsapp {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/whatsapp.png');
}
.icon-gmap {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/location-1.png');
}
.icon-other {
  background-image: url('https://valorhagiangloop.com/wp-content/uploads/2025/02/travel-and-tourism.png');
}

/* Breadcrumb */
.tour-breadcrumb-wrapper {
  background: #f5f5f5;
  padding: 15px 0;
}
.tour-breadcrumb {
  font-size: 14px;
  color: #666;
  background: transparent;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 5px 0;
}
.tour-breadcrumb a {
  color: #0073aa;
  text-decoration: none;
}
.tour-breadcrumb a:hover {
  text-decoration: underline;
}
.tour-breadcrumb span {
  font-weight: bold;
  color: #333;
}
.package-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .package-name {
    font-size: 16px;
  }
}

/* Hover effects */
.tour-video-btn:hover {
  font-weight: bold;
  background: #b91c1c;
}
.tour-book-now:hover {
  font-weight: bold;
  background: #c84c3b;
}
.tour-video-btn,
.tour-book-now {
  transition: all 0.3s ease-in-out;
}

/* FULL WIDTH PHOTO ALBUM SECTION */
.tour-album-wrapper {
  background: #FAF5EE;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.tour-album-wrapper .tour-gallery-slider {
  width: 100%;
}
.tour-album-wrapper .tour-slide-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* OVERLAY ICON FOR ALBUM */
.album-overlay-icons {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  gap: 15px;
  z-index: 10;
}
.album-overlay-icons .overlay-icon i {
  color: #fff;
  font-size: 28px;
  transition: color 0.3s;
}
.album-overlay-icons .overlay-icon:hover i {
  color: #e8604c;
}

/* CSS FOR ALBUM LIGHTBOX MODAL */
#album-lightbox-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  background: transparent;
  z-index: 10000;
  padding: 0;
  box-sizing: border-box;
}
#album-lightbox-modal .album-slide-item img {
  max-width: 90%;
  height: auto;
  margin: 0 auto;
  display: block;
}
#album-lightbox-modal .slick-prev,
#album-lightbox-modal .slick-next {
  font-size: 0;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  transition: background-color 0.3s;
}
#album-lightbox-modal .slick-prev:before,
#album-lightbox-modal .slick-next:before {
  font-size: 24px;
  color: #fff;
}
#album-lightbox-modal .slick-prev {
  left: 10px;
}
#album-lightbox-modal .slick-next {
  right: 10px;
}
#album-lightbox-modal .slick-prev:hover,
#album-lightbox-modal .slick-next:hover {
  background-color: #e8604c;
}
#album-lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.album-lightbox-slider .slick-prev,
.album-lightbox-slider .slick-next {
  font-size: 0;
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  transition: background-color 0.3s;
}
.album-lightbox-slider .slick-prev:before,
.album-lightbox-slider .slick-next:before {
  font-size: 24px;
  color: #fff;
}
.album-lightbox-slider .slick-prev {
  left: 10px;
}
.album-lightbox-slider .slick-next {
  right: 10px;
}
.album-lightbox-slider .slick-prev:hover,
.album-lightbox-slider .slick-next:hover {
  background-color: #e8604c;
}
#album-lightbox-modal .album-lightbox-close {
  position: absolute;
  top: -10px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 11;
}
#album-lightbox-modal .album-lightbox-close:hover {
  background: #e8604c;
}

/* CSS FOR NEW PAGE STRUCTURE */
.tour-title-bar {
  background: #FAF5EE;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 20px 0;
  box-sizing: border-box;
}
.tour-title-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 20px;
}
.tour-title-left {
  width: 100%;
}
.tour-packages {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.tour-package-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-right: 15px;
  white-space: nowrap;
}

/* ========== CODE GỐC DÙNG CHUNG (mobile + desktop) ========== */
.tour-packages {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.tour-package-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-right: 15px;
  white-space: nowrap;
}
.tour-package-item .tour-book-now {
  display: inline-block;
  padding: 2px 5px;
  font-size: 10px;
  background: #e8604c;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}
.tour-package-item .tour-book-now:hover {
  background: #c84c3b;
  font-weight: bold;
}
.package-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
  white-space: nowrap;
}
.tour-package-item .package-details .package-name {
  font-size: 14px;
  margin: 0;
  white-space: nowrap;
}
.tour-package-item .package-details .package-price {
  font-size: 12px;
  margin: 0;
  white-space: nowrap;
  color: red;
  font-weight: bold;
}
.tour-book-now {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  background: #e8604c;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}
.tour-book-now:hover {
  background: #c84c3b;
  font-weight: bold;
}

/* ========== GIỮ NGUYÊN TRÊN MOBILE HOẶC MÁY TABLET ========== */
@media (max-width: 768px) {
  .tour-title-bar-inner {
    flex-direction: column;
    text-align: center;
  }
  .tour-packages-top {
    margin-top: 10px;
    justify-content: center;
    width: 100%;
  }
}

/* ========== PHÓNG TO TRÊN PC (≥ 992px) ========== */
@media (min-width: 992px) {
  .tour-package-item .tour-book-now {
    padding: 5px 10px;
    font-size: 15px;
  }
  .tour-package-item .package-details .package-name {
    font-size: 16px;
  }
  .tour-package-item .package-details .package-price {
    font-size: 16px;
  }
  .tour-book-now {
    padding: 6px 12px;
    font-size: 14px;
  }
}
.tour-package-item .package-details {
  display: flex;
  flex-direction: column;
  gap: 0px;
  white-space: nowrap;
}
.tour-package-item .package-details .package-name,
.tour-package-item .package-details .package-price {
  margin: 0;
  padding: 0;
}
.tour-main-content {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}
.tour-left-col {
  width: 65%;
}
.tour-right-col {
  width: 35%;
  align-self: flex-start;
}
.tour-share-buttons {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  margin: 10px 0;
  box-sizing: border-box;
}
.tour-right-col {
  display: flex;
  flex-direction: column;
}
.tour-detail-info {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
}
.latest-tours {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-top: 15px;
  background: #fff;
}
.latest-tours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.latest-tour-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  padding-top: 5px;
}
.latest-tour-item .lt-thumb {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #ddd;
  flex-shrink: 0;
}
.latest-tour-item .lt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest-tour-item .lt-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.latest-tour-item .lt-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}
.latest-tour-item .lt-title a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
.latest-tour-item .lt-price {
  font-size: 13px;
  color: #e8604c;
  font-weight: bold;
}
.latest-tour-item:last-child {
  border-bottom: none;
}
.tour-detail-info,
.latest-tours {
  padding: 30px;
}
.tour-detail-info-heading,
.latest-tours-heading {
  text-decoration: none;
  position: relative;
  padding-left: 20px;
}
.tour-detail-info-heading::before,
.latest-tours-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #e8604c;
}
.tour-title-left .tour-breadcrumb {
  margin-left: 0;
  padding-left: 0;
}
.tour-featured-image {
  margin-bottom: 20px;
}
.tour-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.tour-detail-info-heading,
.latest-tours-heading {
  font-size: 22px !important;
}
tour-share-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin: 10px 0;
  box-sizing: border-box;
}
.tour-slide-item {
  margin-right: 15px;
}
.tour-album-wrapper {
  line-height: 0;
}
.slick-slide {
  vertical-align: top;
}
.slick-list,
.slick-track {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.extra-tours-section {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.extra-tour-item {
  position: relative;
  overflow: hidden;
}
.extra-tour-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.extra-tour-caption {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px;
  box-sizing: border-box;
  border-radius: 4px 0 0 0;
}
.tour-gallery-slider .slick-prev,
.tour-gallery-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-gallery-slider .slick-prev {
  left: 10px;
}
.tour-gallery-slider .slick-next {
  right: 10px;
}
.tour-gallery-slider .slick-prev:hover,
.tour-gallery-slider .slick-next:hover {
  background: rgba(0, 0, 0, 0.7);
}
.album-prev,
.album-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-prev {
  left: -15px;
}
.album-next {
  right: -15px;
}
.album-prev:hover,
.album-next:hover {
  background: rgba(0, 0, 0, 0.7);
}
#album-lightbox-modal .slick-prev,
#album-lightbox-modal .slick-next {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-title-bar {
  background: #FAF5EE;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 20px 0;
}
.tour-title-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
}
.tour-title-left {
  width: 67%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tour-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}
.tour-packages {
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
}
.tour-share-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0;
}
.tour-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #e8604c;
  color: #fff;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 12px;
  transition: background 0.3s, color 0.3s;
}
.tour-share-btn span {
  font-size: 12px;
}
.tour-share-btn:hover {
  background-color: #d61d02;
  color: #fff;
}
.tour-share-btn span,
.tour-share-btn i.fas {
  font-size: 18px;
}
.tour-package-item .package-details span {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
.tour-detail-info {
  font-size: 14px;
}
.tour-gallery-slider .slick-prev,
.tour-gallery-slider .slick-next {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tour-gallery-slider:hover .slick-prev,
.tour-gallery-slider:hover .slick-next {
  opacity: 1;
}
.tour-tags {
  margin-top: 20px;
  padding: 10px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.tour-tags strong {
  font-size: 14px;
  margin-right: 10px;
}
.tour-tags a {
  color: #e8604c;
  text-decoration: none;
  margin-right: 5px;
  font-size: 14px;
}
.tour-tags a:hover {
  text-decoration: underline;
}

/* COMPATIBLE WITH MOBILE */
@media (max-width: 480px) {
  .tour-container {
    max-width: 100%;
    padding: 10px;
  }
  .tour-booking-wrapper {
    padding: 20px 10px;
    margin: 20px auto;
  }
}
@media (max-width: 768px) {
  .tour-main-content {
    flex-direction: column;
  }
  .tour-left-col,
  .tour-right-col {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .tour-album-wrapper {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    overflow: hidden !important;
    padding: 0 !important;
  }
  .tour-gallery-slider {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }
  .tour-slide-item img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    display: block !important;
  }
}
@media (max-width: 480px) {
  .tour-title-bar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .tour-title-left {
    width: 100%;
  }
  .tour-packages-top {
    width: 100%;
    justify-content: center;
  }
  .tour-breadcrumb {
    font-size: 12px;
  }
  .tour-title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .tour-content {
    font-size: 14px;
    line-height: 1.5;
  }
  .tour-detail-schedule {
    padding: 10px;
    margin-top: 20px;
  }
  .tour-detail-item {
    padding: 8px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .tour-related-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .tour-related-thumb {
    width: 100%;
    height: auto;
    max-width: 300px;
  }
  .tour-related-content {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .tour-book-now,
  .tour-video-btn {
    font-size: 12px;
    padding: 8px 10px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  #album-lightbox-modal .album-lightbox-close {
    top: -50px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .tour-video-modal {
    width: 95%;
    height: auto;
  }
  .tour-video-iframe {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
  }
  .tour-video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 480px) {
  .tour-packages {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .tour-package-item {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
  }
  .tour-package-item .package-details {
    text-align: left !important;
    margin-bottom: 5px !important;
  }
  .tour-package-item .tour-book-now {
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 480px) {
  .tour-package-item:not(:last-child)::after {
    content: none !important;
    background: none !important;
    width: 0 !important;
  }
}
.hotline-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 0;
}
.hotline-icon {
  width: 24px;
  height: 24px;
  font-size: 12px;
  margin-right: 4px;
}
.tour-share-buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 15px 0 !important;
  padding: 0 !important;
}
.tour-share-btn {
  background-color: #e8604c;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 20px;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.3s;
}
.tour-share-btn:hover {
  background-color: #cc523f;
}
.tour-share-btn span,
.tour-share-btn i.fas {
  font-size: 14px;
}
@media (max-width: 480px) {
  .tour-review-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    margin: 0 auto;
  }
  .tour-review-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    font-size: 11px;
    text-align: center;
  }
  .tour-review-btn .review-icon {
    width: 16px;
    height: 16px;
    margin-bottom: 4px;
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .tour-related-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px;
    padding: 5px;
  }
  .tour-related-thumb {
    width: 100px !important;
    flex-shrink: 0;
    margin: 0 !important;
  }
  .tour-related-content {
    flex: 1;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .tour-related-excerpt {
    display: none !important;
  }
  .tour-related-list {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
}
@media (max-width: 480px) {
  .tour-detail-info {
    margin-bottom: 10px;
  }
  .latest-tours {
    margin-top: 15px;
  }
}
.tour-2col-info-row {
  display: flex;
  gap: 20px;
}
.tour-2col-info-col .info-item {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .tour-2col-info-row {
    flex-direction: column;
    gap: -5;
  }
  .tour-2col-info-col:nth-child(1) .info-item:last-child {
    margin-bottom: 0 !important;
  }
}
.tour-detail-schedule h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.tour-detail-schedule h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: #e8604c;
}
@media (max-width: 768px) {
  .tour-share-buttons {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .tour-share-btn {
    font-size: 12px !important;
    padding: 6px 10px !important;
    white-space: nowrap !important;
    flex: 1 !important;
    max-width: 30% !important;
    text-align: center;
  }
  .tour-share-btn span {
    font-size: 12px !important;
  }
}
@media (max-width: 768px) {
  .extra-tours-section {
    margin-bottom: 20px !important;
  }
  .extra-tour-item:last-child {
    margin-bottom: 20px !important;
  }
}