#tour_details_main .nav {
    display: flex;
    margin-bottom: 20px;
}

#tour_details_main .nav-item {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: -2px;
}

#tour_details_main .nav-item.active,
#tour_details_main .nav-item:hover {
    color: #f26522;
    border-bottom: 2px solid #f26522;
    margin-bottom: -2px;
}

#tour_details_main .description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #333;
}

#tour_details_main .highlights {
    margin-bottom: 30px;
}

#tour_details_main .highlights h2 {
    color: #4a4a4a;
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#tour_details_main .highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#tour_details_main .highlight-item::before {
    content: "✓";
    color: #f26522;
    margin-right: 10px;
}

#tour_details_main .tags {
    margin-bottom: 30px;
}

#tour_details_main .tag {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    color: #666;
    display: inline-block;
    margin-right: 10px;
}

.view-tour-details {
    color: #0088cc;
    text-decoration: none;
    font-size: 14px;
}

/* tour lịch trình */

.tour-container {
    max-width: 100%;
    margin: 20px auto;
    padding: 0 15px;
    text-align: center;
}

.tour-container .accordion .accordion-item {
    position: relative;
}

.tour-container .accordion .accordion-item:not(:last-child):before {
    position: absolute;
    content: "";
    border-left: 1px dashed #d8d8d8;
    width: 0;
    height: 100%;
    left: -10px;
    top: 32px;
}

.tour-container .accordion-header {
    padding: 8px;
}

.tour-container .accordion-header button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-title {
    color: #4a4a4a;
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-container .view-details {
    color: #0095f6;
    text-decoration: none;
    font-size: 14px;
}

.tour-container .accordion-button {
    color: #333 !important;
    font-size: 16px !important;
    background-color: #fff !important;
    box-shadow: none !important;
    padding: 0;
    font-weight: 500;
}

.tour-container .accordion-button::before {
    content: "";
    position: absolute;
    width: 23px;
    height: 23px;
    border-radius: 100%;
    border: solid 1px var(--main-color);
    background-color: #fff;
    top: 5px;
    left: -29px;
}

.tour-container .accordion-button::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: var(--main-color);
    top: 11px;
    left: -23px;
}

.tour-container .accordion-button:not(.collapsed)::before {
    border: solid 3px var(--main-color);
    transition: transform 0.3s ease;
}

.tour-container .accordion-item {
    border: none;
    border-bottom: 1px solid #d9dee2;
}

.tour-container .download-btn {
    display: inline-block;
    color: #0095f6;
    border: 1px solid #0095f6;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
    font-size: 14px;
}

.tour-container .download-btn:hover {
    background-color: #f0f7ff;
    text-decoration: none;
    color: #0095f6;
}

/* End tour lịch trình */
.tour-info-box.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tour-info-box.visible {
    opacity: 1;
    visibility: visible;
}

.tour-info-box {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 4px 0 #00000038;
    padding: 10px 0;
}

@media (max-width: 768px) {
    #tour_details_main .nav {
        flex-wrap: wrap;
    }

    #tour_details_main .nav-item {
        padding: 10px;
        font-size: 14px;
    }

    #tour_details_main .day-title {
        font-size: 14px;
    }
}


.destination-slider {
    width: 100%;
    display: flex;
    margin: 0 auto;
    padding: 20px 0;
}

.destination-slider .destination-item {
    position: relative;
    margin: 0 18px;
    border-radius: 50%;
    overflow: hidden;
}

.destination-slider .destination-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 50%;
    /* position: relative; */
}

.destination-slider .destination-item img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000 !important;
    opacity: 0.35;
}


.destination-slider .destination-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.destination-slider .destination-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.destination-slider .tour-count {
    font-size: 14px;
    margin: 5px 0 0;
    color: #fff;
}

.destination-slider .section-title {
    text-align: center;
    font-size: 24px;
    margin: 20px 0;
    color: #333;
}

@media (max-width: 768px) {
    .destination-slider .destination-item img {
        height: 150px;
    }
}


.main_nav {
    background: #fafafa
}

.page-header-breadcrumb {
    padding: 0;
    margin-bottom: 35px;
    background-color: #fafafa
}

.breadcrumb {
    background: 0 0;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px
}

.breadcrumb>li+li::before {
    content: "";
    padding: 0
}

.breadcrumb .glyphicon-menu-right {
    margin: 0 5px 0 2px;
    color: #333;
    font-size: 8px;
    top: 0;
    width: 8px
}

.breadcrumb>li {
    display: inline
}

.breadcrumb>li>a {
    color: #333
}

.breadcrumb>li>span {
    color: #9e9e9e
}

.breadcrumb>li>a:hover {
    color: #eb8f00
}

.hotel-box .hotel-type {
    color: #0066cc;
    font-size: 14px;
    margin: 0 0 8px 0;
}

.hotel-box .rating {
    color: #ffc107;
    font-size: 16px;
    margin-left: 4px;
}

.hotel-box .price-section {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-direction: column;
    margin-top: 16px;
}

.hotel-box .price {
    font-size: 20px;
    font-weight: 600;
    color: #ff5722;
}

.hotel-box .price-label {
    font-size: 12px;
    color: #666;
}

.hotel-box .book-button.book-button-request {
    background: #fff;
    color: #ff5722;
    border: 1px solid #ff5722;
}

.hotel-box .book-button.book-button-request:hover {
    background: #ff5722;
    color: #fff;
    transition: 0.3s ease;
}

.hotel-box .book-button {
    border: 1px solid #ff5722;
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin: 0 5px;
}

.hotel-box .book-button:hover {
    background-color: #f4511e;
}


.price-table-container {
    max-width: 100%;
    border-radius: 8px;
    background: white;
    overflow: hidden;
}

.price-table-container .tab-header {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.price-table-container .tab-buttons {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.price-table-container .tab-button {
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.price-table-container .tab-button.active {
    background-color: #ff5722;
    color: white;
}

.price-table-container .tab-button:not(.active) {
    background-color: #f5f5f5;
    color: #333;
}

.price-table-container .price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table-container .price-table th {
    background: #f8f8f8;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.price-table-container .price-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.price-table-container .date-column {
    color: #333;
}

.price-table-container .availability {
    color: #666;
    font-size: 12px;
}

.price-table-container .airline {
    color: #006650;
}

.price-table-container .price {
    color: #e41f1f;
    font-weight: 600;
}

.price-table-container .book-button {
    background-color: #fff2eb;
    color: #ff5722;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.price-table-container .book-button:hover {
    background-color: #ffe4d6;
}

.scroll-container {
    position: relative;
    padding: 0 10px;
}

.destinations,
.review-cards {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.destinations::-webkit-scrollbar,
.review-cards::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}


.destination-card {
    position: relative;
    min-width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-5px);
}

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

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

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.destination-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.tour-count {
    font-size: 14px;
    opacity: 0.9;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.scroll-button:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-prev {
    left: 0;
}

.scroll-next {
    right: 0;
}

.scroll-button::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    position: absolute;
    top: 50%;
    left: 50%;
}

.scroll-prev::before {
    transform: translate(-25%, -50%) rotate(135deg);
}

.scroll-next::before {
    transform: translate(-75%, -50%) rotate(-45deg);
}

.view-all {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.view-all-button {
    padding: 8px 24px;
    border: 1px solid #007bff;
    border-radius: 20px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.view-all-button:hover {
    background-color: #007bff;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}



/* Nội dung phần ảnh viết ở đây */

.image-masonry {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr .5fr 1fr 1fr 1fr;
    grid-auto-rows: 15rem;
    grid-auto-flow: dense;
    width: 100%;
}

.image-masonry__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-masonry .first {
    grid-column: span 2;
    grid-row: span 2
}

.image-masonry .wide {
    grid-column: span 2
}

.image-masonry .tall {
    grid-row: span 2
}

.image-masonry .special {
    grid-column: span 2
}

.image-masonry .big {
    grid-column: span 2;
    grid-row: span 2
}

.image-masonry__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.image-masonry__link:hover .image-masonry__img {
    transform: scale(1.05);
}

.image-masonry__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 10;
    border-radius: 8px;
}

.hidden {
    display: none;
}


/* End */



/* Review detail tour */

.review-section {
    max-width: 100%;
    margin: 20px auto;
}

.rating-summary {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.rating-number {
    font-size: 32px;
    font-weight: bold;
    margin-right: 10px;
}

.rating-scale {
    color: #666;
    font-size: 14px;
}

.stars {
    color: #ff9900;
    font-size: 24px;
    margin-right: 15px;
}

.total-reviews {
    color: #666;
    font-size: 14px;
}

.review-link {
    color: #0066cc;
    text-decoration: none;
    float: right;
}

.review-cards {
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.review-card {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
    min-width: 35%;
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: bold;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.review-text {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.review-images {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    cursor: pointer;
}

.review-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
}

.image-count {
    position: relative;
    display: inline-block;
}

.image-count .extra-images {
    position: absolute;
    right: 5px;
    bottom: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

/* End review detail tour */

.home__box-tour h4 {
    font-size: 16px;
}

.home__box-tour .theme_two_box_content {
    padding: 15px;
}

.offers__reviews {
    display: flex;
    align-items: center;
}

.offers__address,
.deals__address {
    display: flex;
    margin-top: 8px;
}

.offers__address svg,
.deals__address svg {
    margin-right: 8px;
}

.point__reviews {
    padding: 2px 10px !important;
    background: #5562DA;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    margin-right: 8px;
    display: inline-block;
}

.blueDark {
    color: #20265A;
}

.blueDark45 {
    color: #5C6AA1;
}


.search-box__tour .search-box {
    position: relative;
    margin-bottom: 16px;
}

.search-box__tour .search-input {
    width: 100%;
    padding: 12px 16px;
    padding-left: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.search-box__tour .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-box__tour .search-button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff5722;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

.search-box__tour .popular-searches {
    margin-top: 16px;
}

.search-box__tour .popular-searches h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.search-box__tour .tags-container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.search-box__tour .tag {
    background: #f5f5f5;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 13px;
    white-space: nowrap;
    color: #333;
    cursor: pointer;
}

.search-box__tour .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.search-box__tour .section {
    background: white;
    border-radius: 8px;
    -webkit-box-flex: 1;
    background-image: url('/assets/img/banner/search-overlay.png');
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #eee;
    border-radius: 16px;
    -ms-flex: 1;
    flex: 1;
    padding: 16px 12px;
    cursor: pointer;
}

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

.search-box__tour .item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    position: relative;
}

.search-box__tour .item-image img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
    background: #f0f0f0;
}

.search-box__tour .item-content {
    flex: 1;
}

.search-box__tour .item-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    -webkit-box-flex: 1;
    display: -webkit-box;
    -ms-flex: 1;
    flex: 1;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.search-box__tour .item-location {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.search-box__tour .item-price {
    font-size: 13px;
    color: #ff5722;
    font-weight: 500;
}

.search-box__tour .item-description {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.search-box__tour-content {
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

@media (max-width: 768px) {
    .search-box__tour .content-grid {
        grid-template-columns: 1fr;
    }
}

.section_padding_top_extra {
    padding: 200px 0 0 0;
}

#tourResult .theme_two_box_content h4 {
    font-size: 16px;
    display: -webkit-box;
    white-space: unset;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 24px;
    text-overflow: ellipsis;
}

#tourResult .theme_two_box_content {
    padding: 12px 15px !important;
}

.group__person_quantity .group-item {
    background: white;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.group__person_quantity .group-label {
    color: #1f2937;
}

.group__person_quantity .quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.group__person_quantity .quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background-color: #f3f4f6;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 18px;
}

.group__person_quantity .quantity-btn:hover {
    background-color: #e5e7eb;
}

.group__person_quantity .quantity-display {
    width: 32px;
    text-align: center;
}

.group__person_quantity .footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.group__person_quantity .price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.group__person_quantity .price {
    color: #1e3a8a;
    font-size: 20px;
    font-weight: 500;
}

.faq-section {
    color: #333;
}

.faq-section .faq-subtitle {
    font-size: 16px;
    font-weight: bold;
    margin: 16px 0 8px 0;
}

.faq-section .faq-answer {
    margin: 0 0 16px 0;
    color: #555;
}

.faq-section .faq-answer.faded {
    color: #999;
}

.faq-section .see-more {
    position: relative;
    color: #0066cc;
    text-decoration: none;
    cursor: pointer;
    display: block;
    margin-top: 8px;
}

.faq-section .see-more.open::before {
    content: "";
    position: absolute;
    top: -48px;
    left: 0;
    width: 100%;
    height: 48px;
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #fff);
    pointer-events: none
}

.faq-section .faq-answer {
    margin: 0 0 16px 0;
    color: #555;
}

.faq-section .faq-answer.faded {
    color: #999;
}

.faq-section .help-centre-btn {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #333;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    margin-top: 16px;
    font-weight: 500;
}

.faq-section .help-centre-btn:hover {
    background-color: #f5f5f5;
}

.view-tour-details i {
    transition: transform 0.3s;
}

.view-tour-details.open i {
    transform: rotate(180deg);
}

.left-0 {
    left: 0 !important;
}

.left-unset {
    left: unset !important;
}


.wrap__result-tour {
    max-width: 100%;
    margin: 20px auto;
    padding: 24px;
    border: 2px solid #FF5722;
    border-radius: 8px;
}

.wrap__result-tour .header {
    position: relative;
    margin-bottom: 24px;
    /* padding-right: 32px; */
}

.wrap__result-tour .close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
}

.wrap__result-tour .title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.wrap__result-tour .features {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    color: #666;
    font-size: 14px;
}

.wrap__result-tour .package-details {
    color: #1a73e8;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 32px;
}

.wrap__result-tour .package-details::after {
    content: "›";
    margin-left: 4px;
}

.wrap__result-tour .section-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.wrap__result-tour .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wrap__result-tour .month-year {
    font-weight: 500;
}

.wrap__result-tour .next-month {
    border: none;
    background: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

.wrap__result-tour .time-section {
    flex: 1;
}

.wrap__result-tour .time-label {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
}

.wrap__result-tour .time-button {
    padding: 6px 20px;
    border: 1px solid #FF5722;
    border-radius: 20px;
    color: #FF5722;
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.wrap__result-tour .time-button:hover {
    background: #fff1ed;
}

.wrap__result-tour .quantity-section {
    margin-top: 24px;
}

.wrap__result-tour .quantity-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 0;
}

.wrap__result-tour .quantity-label {
    font-size: 15px;
    color: #333;
}

.wrap__result-tour .quantity-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wrap__result-tour .price {
    font-weight: 500;
    min-width: 100px;
    text-align: right;
}

.wrap__result-tour .quantity-button {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap__result-tour .quantity-button:hover {
    border-color: #999;
}

.wrap__result-tour .quantity-value {
    min-width: 24px;
    text-align: center;
}

.wrap__result-tour .total-price-wrap {
    border-top: 1px solid #eee;
}

.wrap__result-tour .total-price {
    text-align: right;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 24px;
    padding-top: 24px;
}

.wrap__result-tour .empty {
    visibility: hidden;
}

.wrap__result-tour .disabled {
    color: #ccc;
    cursor: not-allowed;
}

.wrap__result-tour .currency-note {
    color: #666;
    font-size: 14px;
    margin-top: 16px;
}

.booking-card h4 {
    font-size: 20px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.booking-card .tour-details {
    color: #718096;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.booking-card .cancellation {
    color: #38a169;
    font-size: 14px;
    margin-bottom: 24px;
}


/* Review css */
#offcanvasReadAllReview {
    min-width: 900px;
    border: 0;
    border-radius: 16px 0 0 16px;

}

#offcanvasReadAllReviewLabel {
    font-size: 20px;
    font-weight: 500;
    padding: 15px 0;
    line-height: 29px;
}

.review-container {
    padding: 0 0 15px 0;
    background: white;
    margin-bottom: 16px;
}

.review-container .rating-summary {
    border-bottom: 1px solid #d6d6d6;
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px 0;
}

.zi-border-bottom {
    border-bottom: 1px solid #ddd !important;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.country {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #666;
}

.country-flag img {
    width: 12px;
    border-radius: 2px;
}

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

.room-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.room-type {
    font-size: 14px;
}

.room-type::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M21 8v13H3V8M1 3h22v5H1z'/%3E%3C/svg%3E");
    background-size: contain;
}

.stay-info {
    font-size: 14px;
    color: #666;
}

.stay-duration::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-size: contain;
}

.room-type-info::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
    background-size: contain;
}

.review-left {
    flex: 1 1 25%;
    padding-right: 5%;
}

.review-right {
    flex: 1 1 70%;
}

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

.feedback {
    margin-bottom: 16px;
}

.positive,
.negative {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.positive svg {
    fill: #28a745;
    width: 16px;
    height: 16px;
}

.negative svg {
    fill: #666;
    width: 16px;
    height: 16px;
}


.image-gallery {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.gallery-image {
    width: 80px;
    height: 100px;
    background: #e5e5e5;
    border-radius: 6px;
    object-fit: cover;
}

.loading-review {
    opacity: 0.5;
    transition: opacity 0.3s;
}

#offcanvasReadAllReview .offcanvas-body {
    overflow-y: auto;
    padding-bottom: 60px;
}

#offcanvasReadAllReview .offcanvas-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px 15px;
    font-size: 12px;
    border-radius: 0 16px;
}

/* End review css */


.timeline-container {
    max-width: 100%;
    padding: 20px;
}

.timeline-container .timeline-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.timeline-container .timeline-review {
    position: relative;
    padding-left: 32px;
}

.timeline-container .timeline-review::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.timeline-container .timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-container .timeline-dot {
    position: absolute;
    left: -32px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-container .timeline-dot.green {
    border-color: #10b981;
}

.timeline-container .timeline-dot.orange {
    border-color: #f59e0b;
    background: #f59e0b;
}

.timeline-container .timeline-time {
    font-size: 16px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    margin-left: 10px;
    font-weight: 500;
}

.timeline-container .timeline-location {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
}

.timeline-container .timeline-tag {
    font-size: 13px;
    color: #6b7280;
    margin: 4px 0;
    margin-left: 10px;
}

.timeline-container .timeline-description {
    font-size: 14px;
    color: #374151;
    margin: 4px 0;
    margin-left: 10px;
}

.timeline-container .timeline-note {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
    margin-top: 16px;
}

.timeline-container .arrow-icon {
    width: 16px;
    height: 16px;
}

.gslide-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    height: 100vh;
}

.gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
    width: auto;
    height: 100vh;
}

.gslide-image img {
    max-height: 100vh;
    max-width: 100%;
    height: 100%;
}


/* Home Tour */
section .header {
    margin-bottom: 20px;
}

section .header h1 {
    font-size: 35px;
    font-weight: 800;
    line-height: 54px;
}

section .header p {
    color: rgba(115, 115, 115, 1);
    font-size: 18px;
}

.filter-bar {
    display: flex;
    gap: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.filter-button {
    background-color: #f1f1f1;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background-color 0.2s;
}

.filter-button:hover {
    background-color: #e5e5e5;
}

.filter-button::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border: solid rgba(115, 115, 115, 1);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -4px;
}

.featured_tours .filter-bar {
    display: flex;
    gap: 10px;
}

.featured_tours .filter-button {
    background-color: #f1f1f1;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background-color 0.2s;
}

.featured_tours .filter-button:hover {
    background-color: #e5e5e5;
}

.featured_tours .filter-button::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border: solid rgba(115, 115, 115, 1);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -4px;
    margin-left: 6px;
}

.featured_tours .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.featured_tours .tour-card {
    width: 100%;
    max-width: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.featured_tours .tour-image {
    position: relative;
    width: 100%;
    height: 260px;
}

.featured_tours .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured_tours .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.featured_tours .badge.top-rated {
    color: #FF8C00;
}

.featured_tours .badge.best-sale {
    color: rgba(61, 194, 98, 1);
}

.featured_tours .badge.discount {
    color: #FF8C00;
}

.featured_tours .favorite-button {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(115, 115, 115, 1);
}

.featured_tours .tour-content {
    padding: 20px;
    background: white;
    border-radius: 20px;
    margin-top: -20px;
    position: relative;
}

.featured_tours .rating {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: -15px;
    right: 15px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid rgba(228, 230, 232, 1);
    padding: 0 12px;
}

.featured_tours .stars {
    color: #FFD700;
    margin-right: 0;
}

.featured_tours .average {
    font-weight: 600;
}

.featured_tours .review-count {
    color: rgba(115, 115, 115, 1);
    font-size: 13px;
}

.featured_tours .tour-title {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 16px 0;
    color: rgba(0, 0, 0, 1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured_tours .tour-title a {
    color: rgba(0, 0, 0, 1);
}

.featured_tours .tour-details {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.featured_tours .tour-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(115, 115, 115, 1);
    font-size: 14px;
}

.featured_tours .tour-detail img {
    object-fit: cover;
}

.featured_tours .price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.featured_tours .price {
    font-size: 24px;
    font-weight: 800;
}

.featured_tours .per-person {
    font-size: 14px;
    color: rgba(115, 115, 115, 1);
    font-weight: normal;
}

.featured_tours .book-button {
    background: #f5f5f5;
    color: #333;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.featured_tours .book-button:hover {
    background: #e5e5e5;
}


/* Đoạn 2 */
.category_of_tour .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category_of_tour .category-card {
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    background: white;
    border: 1px solid #eee;
    padding: 20px;
}

.category_of_tour .category-card:hover {
    transform: translateY(-5px);
}

.category_of_tour .category-image {
    height: 150px;
    position: relative;
}

.category_of_tour .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.category_of_tour .category-content {
    padding: 16px 0 0 0;
}

.category_of_tour .category-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category_of_tour .category-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.category_of_tour .arrow-icon {
    font-size: 18px;
}

.banner-wrapper {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.banner {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 240px;
}

/* Banner 1 - Waking up */
.banner-1 {
    background: #7CD7F7;
    padding: 30px;
    display: flex;
    justify-content: space-between;
}

.banner-content {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.view-more {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
}

.view-more::after {
    content: "→";
    margin-left: 8px;
}

.banner-images {
    position: relative;
    width: 45%;
}

/* Banner 2 - Promotion */
.banner-2 {
    background: #FFE4E1;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #FF4B4B;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.banner-2 img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
}

.banner-2 .banner-content {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }

    .banner {
        height: 200px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-images {
        width: 40%;
    }
}

/* End Home Tour */

.hero-section {
    background-color: rgba(239, 239, 235, 1);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.hero-section .easy-paymnet {
    display: inline-block;
    background: #fff;
    padding: 12px 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
}

.hero-section .hero-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 50px;
}

.hero-section .hero-text {
    color: #666;
    margin-bottom: 20px;
}

.hero-section .image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.hero-section .image-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.features-section {
    text-align: center;
    margin: 40px 0;
}

.features-section .features-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.features-section .features-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.features-section .feature-card {
    background-color: #f8f9ff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.features-section .feature-icon {
    width: 64px;
    height: 64px;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.features-section .feature-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.features-section .feature-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.features-section .learn-more {
    color: #4f46e5;
    text-decoration: none;
    font-size: 14px;
}

.features-section .payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.features-section .payment-methods img {
    height: 30px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.btn-overlay-top {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 53px 0 24px;
    background: linear-gradient(360deg, #fff .84%, rgba(255, 255, 255, 0) 147.16%);
}

.btn-icon-right.btn-sm {
    padding-left: 16px;
    padding-right: 12px;
    border: solid 1px #e6e6e6;
    background: #fff;
}

.btn-outline-gray {
    color: #52637a;
}

.btn-outline-gray:hover {
    color: #fff;
    background: #718198;
    border: solid 1px #718198;
}

.btn-rounded {
    border-radius: 100px;
}

.info_detail .content {
    position: relative;
    max-height: 350px;
    overflow: hidden;
}

.info_detail .content.show-list {
    max-height: unset;
}

.info_detail .content.show-list .load-more-cate {
    display: none;
}

/* Cái form search tour */
.hero-section__box.banner-home {
    background: url('/assets/img/photo-discover-japan.jpg') center/cover;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px;
}

.hero-section__box.banner-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.hero-section__box .container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1000;
    width: 100%;
}

.hero-section__box .hero-title {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-section__box .hero-subtitle {
    color: white;
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-section__box .search-box {
    background: white;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section__box .search-input {
    flex: 2;
    position: relative;
}

.hero-section__box .search-input {
    position: relative;
}

.hero-section__box .search-input .icon-location {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: auto;
    pointer-events: none;
}

.hero-section__box .search-input input {
    padding-left: 45px;
}

.hero-section__box .date-input,
.hero-section__box .location-input {
    flex: 1;
    position: relative;
}

.hero-section__box .icon-calendar,
.hero-section__box .icon-plane {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: auto;
    pointer-events: none;
}

.hero-section__box .date-input input,
.hero-section__box .location-input select {
    padding-left: 45px;
}

.hero-section__box input,
.hero-section__box select {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.hero-section__box input:focus,
.hero-section__box select:focus {
    border-color: #4a90e2;
}

.hero-section__box .search-btn {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}

.flight_Search_boxed .drop-list.desktop {
    border-radius: 12px;
}

@media (max-width: 768px) {
    .hero-section__box .search-box {
        flex-direction: column;
    }

    .hero-section__box .search-input,
    .hero-section__box .date-input,
    .hero-section__box .location-input {
        width: 100%;
    }

    .hero-section__box .hero-title {
        font-size: 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* End css form search tour */
