#tour-container .full-width {
  width: 100%;
  padding-bottom: 32px;
}
#tour-container .full-width .post .post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#tour-container .full-width .post .post-header .post-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
}
#tour-container .full-width .post .post-header .post-like-socials {
  display: flex;
  gap: 12px;
}
#tour-container .full-width .post .post-header .post-like-socials button {
  width: 35px;
  height: 35px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: 1px solid #bfbfbf;
}
#tour-container .full-width .post .post-header .post-like-socials button:hover {
  background-color: #e40808;
}
#tour-container .full-width .post_main_img {
  width: 100%;
  height: auto;
}
#tour-container .full-width .post_main_img .gallery_images_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}
#tour-container .full-width .post_main_img .gallery_images_wrapper .img-gallery-item {
  border-radius: 12px;
}
#tour-container .full-width .post_main_img .gallery_images_wrapper .img-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#tour-container .full-width .post_main_img .gallery_images_wrapper .main-image {
  grid-row: span 2;
  grid-column: span 2;
}
#tour-container .full-width .post_main_img .gallery_images_wrapper .sub-image {
  height: 100%;
}

.gallery_images_wrapper {
  position: relative;
}

.img-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.img-gallery-item.has-overlay {
  position: relative;
}

.gallery-overlay {
  position: absolute;
  right: 20px;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  bottom: 20px;
}

.img-gallery-item.has-overlay:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #3b3b3b;
  font-size: 14px;
  padding: 12px 16px;
  font-weight: 700;
}

.overlay-content i {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.overlay-content span {
  display: block;
  margin-bottom: 4px;
}

.overlay-content small {
  font-size: 12px;
  opacity: 0.9;
}

/* Fancybox custom styling */
.tour-gallery-fancybox .fancybox__backdrop {
  background: rgba(0, 0, 0, 0.95);
}

.main-section .left-side .content-center .layout-day-tour .tour-day-item .tour-day-content .day-gallery .grid-images .grid-image-item {
  position: relative;
  cursor: pointer;
}

.main-section .left-side .content-center .layout-day-tour .tour-day-item .tour-day-content .day-gallery .grid-images .grid-image-item.has-overlay .gallery-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  pointer-events: none;
  z-index: 10;
}

.tour-gallery-fancybox .fancybox__caption {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 20px;
  font-size: 14px;
}

/* Hide hidden gallery items */
.hidden-gallery-item {
  display: none !important;
}

.main-section {
  width: 100%;
  display: flex;
  gap: 30px;
  margin-bottom: 42px;
}
.main-section .left-side {
  width: 70%;
}
.main-section .left-side .content-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.main-section .left-side .content-center .list-info-tour {
  font-size: 18px;
  width: 100%;
  padding: 0;
}
.main-section .left-side .content-center .layout-day-tour .tour-day-item .tour-day-content .day-gallery .grid-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.main-section .left-side .content-center .layout-day-tour .tour-day-item .tour-day-content .day-gallery .grid-images .grid-image-item {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.main-section .left-side .content-center .layout-day-tour .tour-day-item .tour-day-content .day-gallery .grid-images .grid-image-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.main-section .left-side .content-center .layout-day-tour .tour-day-item .tour-day-content .day-gallery .grid-images .grid-image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s ease;
}
.main-section .left-side .content-center .layout-day-tour .tour-day-item .tour-day-content .day-gallery .grid-images .grid-image-item:hover img {
  transform: scale(1.05);
}
.main-section .right-side {
  width: 30%;
}
.main-section .right-side .info-tour-departure {
  position: sticky;
  top: 0;
}

.section-header {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}
.section-header .header-content-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #f8f8f8;
  border-bottom: 1px #e40808 solid;
}
.section-header .header-content-wrapper .section-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 0;
}
.section-header::after {
  content: "";
  top: 100%;
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ededed;
}

.pickup-dropoff-info .pickup-dropoff-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.pickup-dropoff-info .pickup-dropoff-header img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.pickup-dropoff-info .pickup-dropoff-header .pickup-dropoff-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-dropoff-desc {
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-section,
.pickup-dropoff-info .pickup-dropoff-content .meeting-section,
.pickup-dropoff-info .pickup-dropoff-content .dropoff-section {
  border: 1px solid #dddddd;
  padding: 24px;
  border-radius: 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-section:last-child,
.pickup-dropoff-info .pickup-dropoff-content .meeting-section:last-child,
.pickup-dropoff-info .pickup-dropoff-content .dropoff-section:last-child {
  margin-bottom: 0;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-section .section-header,
.pickup-dropoff-info .pickup-dropoff-content .meeting-section .section-header,
.pickup-dropoff-info .pickup-dropoff-content .dropoff-section .section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-section .section-header .section-icon,
.pickup-dropoff-info .pickup-dropoff-content .meeting-section .section-header .section-icon,
.pickup-dropoff-info .pickup-dropoff-content .dropoff-section .section-header .section-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-section .section-header .section-title,
.pickup-dropoff-info .pickup-dropoff-content .meeting-section .section-header .section-title,
.pickup-dropoff-info .pickup-dropoff-content .dropoff-section .section-header .section-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections > div:nth-child(3) {
  grid-column: span 2;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .section-title-description {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .section-title-description .section-title {
  color: #333;
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .pickup-section .pickup-input-wrapper {
  position: relative;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .pickup-section .pickup-input-wrapper .pickup-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fff;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .pickup-section .pickup-input-wrapper .pickup-input::-moz-placeholder {
  color: #999;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .pickup-section .pickup-input-wrapper .pickup-input::placeholder {
  color: #999;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .pickup-section .pickup-input-wrapper .pickup-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .pickup-section .pickup-input-wrapper .search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 8px;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .pickup-section .pickup-input-wrapper .search-btn:hover {
  color: #007bff;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .pickup-section .pickup-input-wrapper .search-btn i {
  font-size: 14px;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .meeting-section .meeting-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .meeting-section .meeting-info .time-location {
  flex: 1;
  display: flex;
  gap: 10px;
  padding: 8px;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .meeting-section .meeting-info .time-location .meeting-time {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .meeting-section .meeting-info .time-location .meeting-location {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 24px;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .meeting-section .meeting-info .status-check {
  margin-left: 12px;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .meeting-section .meeting-info .status-check .check-icon {
  width: 20px;
  height: 20px;
}
.pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .dropoff-section .dropoff-note {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

#tourInfoTab {
  gap: 8px;
}
#tourInfoTab li .nav-link {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  color: #333;
  background: white;
}
#tourInfoTab li .nav-link:hover {
  border-color: #e40808;
  color: #e40808;
}
#tourInfoTab li .nav-link.active {
  background: #e40808;
  border-color: #e40808;
  color: white;
}

.level1-price-display {
  margin-top: 15px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  animation: fadeIn 0.3s ease-in-out;
}

.level1-price-display .qty-btn {
  background: #007bff;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.level1-price-display .qty-btn:hover {
  background: #0056b3;
}

.level1-price-display .qty-btn.minus {
  background: #dc3545;
}

.level1-price-display .qty-btn.minus:hover {
  background: #c82333;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-package-selection {
  background: #fff;
  border-radius: 12px;
}

.package-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.package-content {
  background-color: #f8f8f8;
  padding: 24px 16px;
  border-radius: 14px;
}
.package-content .total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
}
.package-content .total-section .total-row .total-label {
  font-weight: 600;
  color: #333;
}
.package-content .total-section .total-row .total-amount {
  color: #e40808;
  font-weight: 600;
  font-size: 24px;
}
.package-content .total-section .btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 12px;
  background: #e40808;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
}

.package-header img {
  width: 24px;
  height: 24px;
}

.package-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.package-desc {
  color: #000000;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.option-label {
  display: block;
  font-weight: 500;
  color: #333;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Date selection */
.date-selection {
  margin-bottom: 20px;
}

.service-category-selection {
  margin: 24px 0;
}
.service-category-selection .option-label {
  margin-bottom: 12px;
}
.service-category-selection .service-category-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-category-selection .service-category-options .service-option {
  width: -moz-fit-content;
  width: fit-content;
}

.date-input-wrapper {
  position: relative;
}

.date-picker {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #ffffff;
  border-radius: 50px;
  background: #ff0000;
}

.date-picker:focus {
  outline: none;
  border-color: #007bff;
  background: white;
}

/* Route selection */
.route-selection {
  margin-bottom: 20px;
}

.route-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-option {
  width: -moz-fit-content;
  width: fit-content;
}

.route-option input[type=radio] {
  display: none;
}

.route-label {
  display: block;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  color: #333;
  text-align: center;
  background: white;
}

.route-option input[type=radio]:checked + .route-label {
  border-color: #dc3545;
  color: #dc3545;
  background: #fff5f5;
}

.route-label:hover {
  border-color: #dc3545;
  color: #dc3545;
}

/* Group type selection */
.group-type-selection {
  margin-bottom: 20px;
}

.group-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.group-option input[type=radio] {
  display: none;
}

.group-label {
  display: block;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  color: #333;
  background: white;
  position: relative;
}

.group-option {
  width: -moz-fit-content;
  width: fit-content;
}

.group-option input[type=radio]:checked + .group-label {
  border-color: #dc3545;
  color: #dc3545;
  background: #fff5f5;
}

.group-option input[type=radio]:checked {
  border-color: #dc3545;
  background: #dc3545;
  box-shadow: inset 0 0 0 3px white;
}

.group-label:hover {
  border-color: #dc3545;
  color: #dc3545;
}

/* Guide selection */
.guide-selection {
  margin-bottom: 20px;
}

.guide-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-option {
  width: -moz-fit-content;
  width: fit-content;
}

.guide-option input[type=radio] {
  display: none;
}

.guide-label {
  display: block;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  color: #333;
  text-align: center;
  background: white;
}

.guide-option input[type=radio]:checked + .guide-label {
  border-color: #dc3545;
  color: #dc3545;
  background: #fff5f5;
}

.guide-label:hover {
  border-color: #dc3545;
  color: #dc3545;
}

/* Service type selection */
.service-type-selection {
  margin-bottom: 20px;
}

.service-option {
  width: -moz-fit-content;
  width: fit-content;
}

.service-option input[type=radio] {
  display: none;
}

.service-label {
  display: block;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  color: #333;
  background: white;
  text-align: center;
}

.service-option input[type=radio]:checked + .service-label {
  border-color: #dc3545;
  color: #dc3545;
  background: #fff5f5;
}

.service-label:hover {
  border-color: #dc3545;
  color: #dc3545;
}

/* Quantity selection */
.quantity-selection {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}
.quantity-selection .quantity-controls {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.quantity-selection .quantity-controls .quantity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin: 8px 0;
  border-radius: 8px;
  width: 100%;
  background-color: #fff;
}

#tour-type-sub-options .tour-sub-category .level-2 .ticket-types-list .ticket-type-item .quantity-controls .quantity-input {
  border: none;
}

.quantity-item:last-child {
  border-bottom: none;
}

.quantity-left {
  width: 200px;
}

.quantity-label {
  font-weight: 500;
  color: #333;
  font-size: 14px;
  margin-bottom: 4px;
}

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

.quantity-note {
  font-size: 12px;
  color: #999;
}

.quantity-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.price {
  font-size: 13px;
  color: #666;
}

.price del {
  color: #999;
  margin-right: 8px;
}

.current-price {
  color: #e40808;
  font-weight: 600;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  background: #f8f9fa;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  font-size: 16px;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: #e9ecef;
  color: #dc3545;
}

.qty-btn:disabled,
.qty-btn.disabled {
  background: #f8f9fa;
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}
.qty-btn:disabled:hover,
.qty-btn.disabled:hover {
  background: #f8f9fa;
  color: #ccc;
}

.qty-input {
  width: 40px;
  height: 32px;
  border: none;
  text-align: center;
  font-size: 14px;
  color: #333;
  background: white;
}

.qty-input:focus {
  outline: none;
}

/* Total price */
.total-price {
  border-top: 2px solid #f0f0f0;
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.price-display {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.total-label {
  font-size: 20px;
  font-weight: 700;
  color: #dc3545;
}

.price-note {
  font-size: 12px;
  color: #666;
  cursor: pointer;
  text-decoration: underline;
}

.price-note:hover {
  color: #dc3545;
}

.btn-book {
  width: -moz-fit-content;
  width: fit-content;
  background: #e40808;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-book:hover {
  background: #c82333;
  transform: translateY(-1px);
}

.date-picker-trigger {
  width: -moz-fit-content;
  width: fit-content;
}

.customer-reviews {
  background: white;
  margin: 42px auto;
}
.customer-reviews .section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.customer-reviews .section-header .star-icon {
  color: #ffc107;
  font-size: 20px;
}
.customer-reviews .section-header .section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.customer-reviews .rating_photos {
  display: flex;
  gap: 33px;
}
.customer-reviews .rating_photos .rating-overview {
  margin-bottom: 24px;
  width: 40%;
}
.customer-reviews .rating_photos .rating-overview .overall-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.customer-reviews .rating_photos .rating-overview .overall-rating .rating-score {
  font-size: 36px;
  font-weight: 700;
  color: #333;
}
.customer-reviews .rating_photos .rating-overview .overall-rating .rating-details {
  flex: 1;
}
.customer-reviews .rating_photos .rating-overview .overall-rating .rating-details .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}
.customer-reviews .rating_photos .rating-overview .overall-rating .rating-details .stars .star {
  color: #ffc107;
  font-size: 16px;
}
.customer-reviews .rating_photos .rating-overview .overall-rating .rating-details .stars .star.half {
  position: relative;
  color: #e9ecef;
}
.customer-reviews .rating_photos .rating-overview .overall-rating .rating-details .stars .star.half::before {
  content: "\f005";
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #ffc107;
}
.customer-reviews .rating_photos .rating-overview .overall-rating .rating-details .stars .star.empty {
  color: #e9ecef;
}
.customer-reviews .rating_photos .rating-overview .overall-rating .rating-details .rating-count {
  font-size: 14px;
  color: #666;
}
.customer-reviews .rating_photos .rating-overview .rating-breakdown .rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.customer-reviews .rating_photos .rating-overview .rating-breakdown .rating-row:last-child {
  margin-bottom: 0;
}
.customer-reviews .rating_photos .rating-overview .rating-breakdown .rating-row .stars-label {
  display: flex;
  gap: 1px;
  min-width: 80px;
}
.customer-reviews .rating_photos .rating-overview .rating-breakdown .rating-row .stars-label .star {
  color: #ffc107;
  font-size: 12px;
}
.customer-reviews .rating_photos .rating-overview .rating-breakdown .rating-row .progress-bar {
  flex: 1;
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
}
.customer-reviews .rating_photos .rating-overview .rating-breakdown .rating-row .progress-bar .progress-fill {
  height: 100%;
  background: #dc3545;
  transition: width 0.3s ease;
}
.customer-reviews .rating_photos .rating-overview .rating-breakdown .rating-row .count {
  min-width: 24px;
  text-align: right;
  font-size: 12px;
  color: #666;
}
.customer-reviews .rating_photos .photos-section {
  margin-bottom: 24px;
  width: 60%;
}
.customer-reviews .rating_photos .photos-section .photos-header {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.customer-reviews .rating_photos .photos-section .photos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.customer-reviews .rating_photos .photos-section .photos-grid::-webkit-scrollbar {
  height: 4px;
}
.customer-reviews .rating_photos .photos-section .photos-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}
.customer-reviews .rating_photos .photos-section .photos-grid::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}
.customer-reviews .rating_photos .photos-section .photos-grid .photo-item {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.customer-reviews .rating_photos .photos-section .photos-grid .photo-item:hover {
  transform: scale(1.05);
}
.customer-reviews .rating_photos .photos-section .photos-grid .photo-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.customer-reviews .rating_photos .photos-section .photos-grid .photo-item.view-more {
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  text-align: center;
  line-height: 1.2;
}
.customer-reviews .filter-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  overflow-x: auto;
}
.customer-reviews .filter-tabs .filter-tab {
  flex: 0 0 auto;
  padding: 8px 16px;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  background: white;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.customer-reviews .filter-tabs .filter-tab:hover {
  border-color: #dc3545;
  color: #dc3545;
}
.customer-reviews .filter-tabs .filter-tab.active {
  background: #dc3545;
  border-color: #dc3545;
  color: white;
}
.customer-reviews .reviews-list .review-item {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.customer-reviews .reviews-list .review-item:first-child {
  padding-top: 0;
}
.customer-reviews .reviews-list .review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.customer-reviews .reviews-list .review-item .review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.customer-reviews .reviews-list .review-item .review-header .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.customer-reviews .reviews-list .review-item .review-header .user-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.customer-reviews .reviews-list .review-item .review-header .user-info {
  flex: 1;
}
.customer-reviews .reviews-list .review-item .review-header .user-info .user-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}
.customer-reviews .reviews-list .review-item .review-header .user-info .review-date {
  font-size: 12px;
  color: #999;
}
.customer-reviews .reviews-list .review-item .review-header .review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.customer-reviews .reviews-list .review-item .review-header .review-rating .stars {
  display: flex;
  gap: 1px;
}
.customer-reviews .reviews-list .review-item .review-header .review-rating .stars .star {
  color: #ffc107;
  font-size: 14px;
}
.customer-reviews .reviews-list .review-item .review-header .review-rating .rating-label {
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.customer-reviews .reviews-list .review-item .review-header .review-rating .rating-label.excellent {
  background: #d4edda;
  color: #155724;
}
.customer-reviews .reviews-list .review-item .review-header .review-rating .rating-label.good {
  background: #fff3cd;
  color: #856404;
}
.customer-reviews .reviews-list .review-item .review-content {
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
.customer-reviews .reviews-list .review-item .review-photos {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  overflow-x: auto;
}
.customer-reviews .reviews-list .review-item .review-photos .review-photo {
  flex: 0 0 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.customer-reviews .reviews-list .review-item .review-photos .review-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s ease;
}
.customer-reviews .reviews-list .review-item .review-photos .review-photo:hover img {
  transform: scale(1.1);
}
.customer-reviews .reviews-list .review-item .review-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.customer-reviews .reviews-list .review-item .review-actions .helpful-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #666;
  font-size: 12px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.customer-reviews .reviews-list .review-item .review-actions .helpful-btn:hover {
  background: #f8f9fa;
  color: #333;
}
.customer-reviews .reviews-list .review-item .review-actions .helpful-btn .icon {
  font-size: 14px;
}

@media (max-width: 768px) {
  .gallery_images_wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
  .gallery_images_wrapper .gallery-overlay {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    bottom: 10px;
  }
  .gallery_images_wrapper .gallery-overlay .overlay-content {
    padding: 4px;
    font-size: 12px;
  }
  .gallery_images_wrapper .gallery-overlay .overlay-content .small {
    font-size: 10px;
    opacity: 1;
  }
  .main-image {
    grid-row: span 2;
    grid-column: span 1;
  }
  .overlay-content i {
    font-size: 20px;
  }
  .overlay-content {
    font-size: 12px;
  }
  #tour-container .main-section {
    flex-direction: column;
  }
  #tour-container .main-section .left-side {
    width: 100%;
  }
  #tour-container .main-section .left-side .content-center .list-info-tour .pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections {
    grid-template-columns: 1fr;
  }
  #tour-container .main-section .left-side .content-center .list-info-tour .pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .pickup-section,
  #tour-container .main-section .left-side .content-center .list-info-tour .pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .meeting-section,
  #tour-container .main-section .left-side .content-center .list-info-tour .pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections .dropoff-section {
    border: 1px solid #dddddd;
    padding: 14px;
    border-radius: 8px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  #tour-container .main-section .left-side .content-center .list-info-tour .pickup-dropoff-info .pickup-dropoff-content .pickup-meeting-dropoff-sections > div:nth-child(3) {
    grid-column: span 1;
  }
  #tour-container .main-section .left-side .content-center .list-info-tour .hightlight-content p img,
  #tour-container .main-section .left-side .content-center .list-info-tour .hightlight-content span img,
  #tour-container .main-section .left-side .content-center .list-info-tour .hightlight-content div img {
    width: 100% !important;
    height: auto !important;
  }
  #tour-container .main-section .left-side .content-center .layout-day-tour .hightlight-content p img,
  #tour-container .main-section .left-side .content-center .layout-day-tour .hightlight-content span img,
  #tour-container .main-section .left-side .content-center .layout-day-tour .hightlight-content div img {
    width: 100% !important;
    height: auto !important;
  }
  #tour-container .main-section .left-side .content-center .layout-day-tour .tour-info-tabs #tourInfoTabContent p img,
  #tour-container .main-section .left-side .content-center .layout-day-tour .tour-info-tabs #tourInfoTabContent span img,
  #tour-container .main-section .left-side .content-center .layout-day-tour .tour-info-tabs #tourInfoTabContent div img {
    width: 100% !important;
    height: auto !important;
  }
  #tour-container .main-section .left-side .content-center .layout-day-tour .service-package-selection {
    padding: 0;
    margin: 0;
  }
  #tour-container .main-section .left-side .content-center .layout-day-tour .service-package-selection .package-content .total-section {
    flex-direction: column;
  }
  #tour-container .main-section .left-side .content-center .customer-reviews {
    padding: 0;
  }
  #tour-container .main-section .left-side .content-center .customer-reviews .rating_photos {
    width: 100%;
    flex-direction: column;
  }
  #tour-container .main-section .left-side .content-center .customer-reviews .rating_photos .rating-overview {
    width: 100%;
  }
  #tour-container .main-section .left-side .content-center .customer-reviews .rating_photos .rating-overview .overall-rating .rating-details {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #tour-container .main-section .left-side .content-center .customer-reviews .rating_photos .photos-section {
    width: 100%;
  }
  #tour-container .main-section .right-side {
    width: 100%;
    margin-top: 24px;
  }
  .customer-reviews {
    padding: 16px;
    margin: 10px;
  }
  .customer-reviews .rating-overview .overall-rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .customer-reviews .rating-overview .overall-rating .rating-score {
    font-size: 28px;
  }
  .customer-reviews .photos-grid .photo-item {
    flex: 0 0 50px;
    height: 50px;
  }
  .customer-reviews .filter-tabs {
    gap: 8px;
  }
  .customer-reviews .filter-tabs .filter-tab {
    padding: 6px 12px;
    font-size: 12px;
  }
}
/* Responsive */
@media (max-width: 480px) {
  .route-options {
    flex-direction: column;
  }
  .route-option {
    min-width: auto;
  }
  .guide-options {
    grid-template-columns: 1fr;
  }
  .quantity-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .quantity-right {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.content-center .layout-day-tour .tour-day-item .tour-day-content {
  max-height: unset;
  opacity: 1;
  overflow: visible;
}
.content-center .layout-day-tour .tour-day-item .tour-day-content .day-gallery .grid-images .grid-image-item {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.content-center .layout-day-tour .tour-day-item .tour-day-content .day-gallery .grid-images .grid-image-item .gallery-overlay .overlay-content small {
  color: #fff;
}

.img-gallery-item.has-overlay {
  position: relative;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  top: 15px;
  left: 15px;
  pointer-events: auto !important;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
}

.img-gallery-item a {
  position: relative;
  z-index: 1;
}
