/* Breadcrumb */
.tour-detail-page .breadcrumb {
    background: var(--white);
    padding: 12px 0;
}

.tour-detail-page .breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-detail-page .breadcrumb-inner a {
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.tour-detail-page .breadcrumb-inner a:hover {
    border-color: var(--btn-border-color);
    background: var(--bg-light);
}

.tour-detail-page .breadcrumb-inner a.active {
    color: var(--text-dark);
    border-color: var(--btn-border-color);
    background: var(--bg-light);
    pointer-events: none;
}

.tour-detail-page .breadcrumb-inner .separator {
    font-size: 10px;
    color: var(--text-light);
}

/* Tour Header */
.tour-header {
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.tour-header-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tour-header .title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.tour-header .tour-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--secondary);
    margin: 0;
    line-height: 1.3;
}

.tour-header .favorite-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--btn-border-color);
    border-radius: 32px;
    background: var(--white);
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
}

.tour-header .favorite-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tour-header .favorite-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.tour-header .favorite-btn.active i {
    font-weight: 900;
}

@media screen and (max-width: 767px) {
    .tour-header .favorite-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tour-detail-page .back-to-top {
        display: none !important;
    }
}

/* Tour Badges Container */
.tour-header .tour-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tour-header .page-badges {
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex-wrap: wrap;
}

.tour-header .badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    min-width: 168px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--accent-purple-border);
    border-radius: 8px;
}

.tour-header .badge-item .icon {
    height: 40px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.tour-header .badge-item .icon i {
    font-size: 20px;
    color: var(--accent-purple);
}

.tour-header .badge-item .icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.tour-header .badge-item .text {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.4;
}

/* Tour Price */
.tour-header .tour-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.tour-header .tour-price strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.tour-header .tour-price strong span {
    font-size: 16px;
}

.tour-header .tour-price > span {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
}

@media screen and (max-width: 767px) {
    .tour-header .tour-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Detail Image Gallery (Inline) */
.detail-image {
    margin-bottom: 24px;
    position: relative;
}

.detail-image .container {
    position: relative;
}

.detail-image .number-pag {
    border-radius: 100px;
    background: rgba(33, 33, 33, 0.5);
    align-items: center;
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    z-index: 10;
    display: none;
}

@media screen and (max-width: 1024px) {
    .detail-image .number-pag {
        display: flex;
    }
}

.detail-image .arrow-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .detail-image .arrow-buttons {
        display: none;
    }
}

.detail-image .arrow-buttons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s;
    color: var(--text-dark);
    text-decoration: none;
}

.detail-image .arrow-buttons a:hover {
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
}

.detail-image .arrow-buttons a.prev {
    margin-left: -10px;
}

.detail-image .arrow-buttons a.next {
    margin-right: -10px;
}

.detail-image-swiper-inner {
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .detail-image-swiper-inner {
        margin-bottom: 12px;
    }
}

.detail-image-swiper-inner .swiper-slide {
    height: 400px;
}

.detail-image-swiper-inner img {
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .detail-image-swiper-inner .swiper-slide {
        height: 280px;
    }

    .detail-image-swiper-inner img {
        border-radius: 0;
    }
}

.detail-image-swiper-inner-thumbs {
    overflow: hidden;
}

.detail-image-swiper-inner-thumbs .swiper-slide {
    height: 80px;
}

.detail-image-swiper-inner-thumbs .swiper-slide img {
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-image-swiper-inner-thumbs .swiper-slide.swiper-slide-thumb-active img {
    border-color: var(--secondary);
}

/* Gallery Fullscreen Modal */
.room-detail-gallery {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 100001;
    display: none;
    overflow-y: auto;
}

.room-detail-gallery.active {
    display: block;
}

.room-detail-gallery .heading-mobile {
    display: none;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 16px;
}

@media screen and (max-width: 768px) {
    .room-detail-gallery .heading-mobile {
        display: flex;
    }
}

.room-detail-gallery .heading-mobile .close {
    font-size: 22px;
    color: var(--text-light);
    cursor: pointer;
}

.room-detail-gallery .heading-mobile .title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

.room-detail-gallery .heading {
    display: flex;
    justify-content: space-between;
    padding: 22px 30px;
}

@media screen and (max-width: 768px) {
    .room-detail-gallery .heading {
        display: none;
    }
}

.room-detail-gallery .heading .title {
    font-size: 32px;
    font-weight: 400;
    color: var(--secondary);
}

.room-detail-gallery .heading .close {
    cursor: pointer;
    font-size: 32px;
    color: var(--secondary);
}

/* Gallery Summary */
.room-detail-gallery .gallery-summary {
    border-radius: 12px;
    border: 1px solid var(--btn-border-color);
    background: var(--white);
    padding: 16px;
    box-shadow: 0 14px 34px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

/* Gallery Summary - Desktop */
.room-detail-gallery .gallery-summary .summary-inner {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.room-detail-gallery .gallery-summary .summary-inner .first {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.room-detail-gallery .gallery-summary .summary-inner .first .room {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary);
}

.room-detail-gallery .gallery-summary .summary-inner .first .room strong {
    font-weight: 700;
}

.room-detail-gallery .gallery-summary .summary-inner .first .day {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
}

.room-detail-gallery .gallery-summary .summary-inner .first .day::after {
    width: 18px;
    height: 3px;
    border-radius: 8px;
    background: var(--divider);
    display: block;
    content: "";
    margin-top: 8px;
}

.room-detail-gallery .gallery-summary .summary-inner .first .price {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: var(--success);
    margin-bottom: 14px;
}

.room-detail-gallery .gallery-summary .summary-inner .button {
    margin-bottom: 12px;
}

.room-detail-gallery .gallery-summary .summary-inner .button:last-child {
    margin-bottom: 0;
}

.room-detail-gallery .gallery-summary .summary-inner .button a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    border-radius: 8px;
    background: var(--success);
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.room-detail-gallery .gallery-summary .summary-inner .button a:hover {
    background: var(--success-hover);
}

.room-detail-gallery .gallery-summary .summary-inner .button.room-button a {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.room-detail-gallery .gallery-summary .summary-inner .button.room-button a:hover {
    background: var(--bg-light);
}

/* Gallery Summary - Total Summary (Mobile Bottom Bar) */
.room-detail-gallery .gallery-summary .total-summary {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.room-detail-gallery .gallery-summary .total-summary .first {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-detail-gallery .gallery-summary .total-summary .first .day {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
}

.room-detail-gallery .gallery-summary .total-summary .first .price {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: var(--success);
}

.room-detail-gallery .gallery-summary .total-summary .arrow-btn {
    font-size: 22px;
    color: var(--text-dark);
    cursor: pointer;
    transition: transform 0.3s;
    padding: 0 16px;
}

.room-detail-gallery .gallery-summary.active .total-summary .arrow-btn {
    transform: rotate(180deg);
}

.room-detail-gallery .gallery-summary .total-summary .button {
    display: none;
}

.room-detail-gallery .gallery-summary .total-summary .button a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    border-radius: 8px;
    background: var(--success);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

@media screen and (max-width: 991px) {
    .room-detail-gallery.active .gallery-summary {
        position: static;
        padding: 0 16px 16px;
        border: none;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        margin-top: 24px;
    }

    .room-detail-gallery.active .gallery-summary .summary-inner {
        display: flex;
    }

    .room-detail-gallery.active .gallery-summary .summary-inner .first {
        display: none;
    }

    .room-detail-gallery.active .gallery-summary .total-summary {
        display: none;
    }
}

/* Gallery Inner */
.gallery-tour-title {
    display: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
    padding: 0 16px;
}

@media screen and (max-width: 768px) {
    .gallery-tour-title {
        display: block;
    }
}

.gallery-inner .gallery-item {
    display: none;
}

.gallery-inner .gallery-item.active {
    display: block;
}

.gallery-detail-image {
    position: relative;
    margin-bottom: 16px;
}

.gallery-detail-image .arrow-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
    right: -25px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .gallery-detail-image .arrow-buttons {
        display: none;
    }
}

.gallery-detail-image .arrow-buttons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s;
    color: var(--text-dark);
    text-decoration: none;
}

.gallery-detail-image .arrow-buttons a:hover {
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
}

.gallery-swiper-image {
    overflow: hidden;
    position: relative;
}

.gallery-swiper-image .number-pag {
    position: absolute;
    top: 16px;
    right: 16px;
    border-radius: 100px;
    background: rgba(33, 33, 33, 0.5);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    padding: 6px 12px;
    z-index: 10;
    display: flex;
    align-items: center;
}

.gallery-swiper-image .swiper-slide {
    height: 500px;
}

.gallery-swiper-image img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .gallery-swiper-image .swiper-slide {
        height: 300px;
    }

    .gallery-swiper-image img {
        border-radius: 0;
    }
}

/* Gallery Tab Head */
.gallery-item .tab-head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.gallery-item .tab-head a {
    padding: 11px 14px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--btn-border-color);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.gallery-item .tab-head a:hover,
.gallery-item .tab-head a.active {
    color: var(--primary);
    border-color: var(--primary);
}

.gallery-item .tab-head a strong {
    font-weight: 700;
    margin-left: 4px;
}

/* Gallery Thumbs */
.gallery-detail-image-thumbs {
    position: relative;
}

.gallery-detail-image-thumbs .arrow-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
    right: -25px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .gallery-detail-image-thumbs .arrow-buttons {
        display: none;
    }
}

.gallery-detail-image-thumbs .arrow-buttons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    pointer-events: auto;
    font-size: 12px;
    color: var(--text-dark);
    text-decoration: none;
}

.gallery-detail-image-thumbs .arrow-buttons a:hover {
    text-decoration: none;
}

.gallery-swiper-thumb-image {
    overflow: hidden;
}

.gallery-swiper-thumb-image .swiper-slide {
    cursor: pointer;
    height: 70px;
}

.gallery-swiper-thumb-image .swiper-slide img {
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-swiper-thumb-image .swiper-slide.swiper-slide-thumb-active img {
    border-color: var(--secondary);
}

/* Call for Details */
.call-for-details {
    padding: 24px 0;
    text-align: center;
}

.call-for-details .cfd-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 9999px;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 14px rgba(243, 95, 95, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.2s ease;
}

.call-for-details .cfd-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(243, 95, 95, 0.45);
    filter: saturate(1.05);
    color: var(--white);
}

.call-for-details .cfd-btn:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

@media (max-width: 768px) {
    .call-for-details .cfd-btn {
        font-size: 13px;
        padding: 12px 18px;
    }
}

@media (max-width: 356px) {
    .call-for-details .cfd-btn {
        font-size: 10px;
    }
}

/* Tour Rooms */
.tour-rooms {
    padding: 16px 0;
    margin-bottom: 44px;
    position: relative;
    background-image: linear-gradient(var(--bg-light) 20%, var(--white) 0%);
}

.tour-rooms .section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 14px;
}

/* Filter Area */
.item-group-list {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-group-list.filter-area {
    margin-bottom: 44px;
}

@media screen and (max-width: 768px) {
    .item-group-list {
        flex-direction: column;
    }
}

.item-group-list .item-group {
    width: 100%;
    position: relative;
}

.item-group-list .item-group .input-group {
    border-radius: 8px;
    border: 1px solid var(--btn-border-color);
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.item-group-list .item-group .input-group:hover {
    border-color: var(--secondary);
}

.item-group-list .item-group.open .input-group {
    border-color: var(--secondary);
}

.item-group-list .item-group .input-group .input {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 3px;
    padding: 10px 14px;
}

.item-group-list .item-group .input-group .input label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gray);
    margin: 0;
}

.item-group-list .item-group .input-group .input .selected-value {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
}

.item-group-list .item-group .input-group .icon {
    font-size: 20px;
    margin-right: 14px;
    color: var(--text-light);
}

.item-group-list .item-group button.search-btn {
    width: 100%;
    height: 56px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}

/* Filter Dropdown */
.filter-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--btn-border-color);
    border-radius: 8px;
    margin-top: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}

.item-group.open .filter-dropdown {
    display: block;
}

.filter-dropdown .dropdown-header {
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    border-bottom: 1px solid var(--border-color);
}

.filter-dropdown .dropdown-body {
    padding: 8px 0;
}

.filter-dropdown .radio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    margin: 0;
}

.filter-dropdown .radio-item:hover {
    background: var(--bg-light);
}

.filter-dropdown .radio-item input[type="radio"] {
    display: none;
}

.filter-dropdown .radio-item .radio-box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--btn-border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.filter-dropdown .radio-item .radio-box::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.filter-dropdown .radio-item.active .radio-box,
.filter-dropdown .radio-item input[type="radio"]:checked + .radio-box {
    border-color: var(--secondary);
}

.filter-dropdown .radio-item.active .radio-box::after,
.filter-dropdown .radio-item input[type="radio"]:checked + .radio-box::after {
    opacity: 1;
}

.filter-dropdown .radio-item .radio-text {
    font-size: 14px;
    color: var(--text-dark);
}

/* Filter Dropdown Mobile Heading */
.filter-dropdown .mobile-heading {
    display: none;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 16px;
    margin: 16px;
    margin-bottom: 0;
    background: var(--bg-light);
    border-radius: 8px;
    gap: 12px;
}

.filter-dropdown .mobile-heading span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    flex: 1;
}

.filter-dropdown .mobile-heading .back-btn {
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.filter-dropdown .mobile-heading .close-btn {
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

/* Filter Dropdown Section Title */
.filter-dropdown .dropdown-body .section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    padding: 16px;
    padding-bottom: 12px;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}

/* Mobile Fullscreen Filter Panels */
@media screen and (max-width: 767px) {
    .item-group.departure-filter .filter-dropdown,
    .item-group.date-filter .filter-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        border: none;
        border-radius: 0;
        z-index: 10000;
        display: none;
        flex-direction: column;
    }

    .item-group.departure-filter.open .filter-dropdown,
    .item-group.date-filter.open .filter-dropdown {
        display: flex;
    }

    .item-group.departure-filter .filter-dropdown .mobile-heading,
    .item-group.date-filter .filter-dropdown .mobile-heading {
        display: flex;
    }

    .item-group.departure-filter .filter-dropdown .dropdown-body,
    .item-group.date-filter .filter-dropdown .dropdown-body {
        flex: 1;
        overflow-y: auto;
        padding: 0;
    }

    .item-group.departure-filter .filter-dropdown .dropdown-body .section-title,
    .item-group.date-filter .filter-dropdown .dropdown-body .section-title {
        margin: 0;
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .item-group.departure-filter .filter-dropdown .radio-item,
    .item-group.date-filter .filter-dropdown .radio-item {
        padding: 14px 16px;
    }
}

/* Guest Dropdown */
.filter-dropdown.guest-dropdown {
    width: 380px;
    right: 0;
    left: auto;
    border-radius: 12px;
}

.filter-dropdown.guest-dropdown .mobile-heading {
    display: none;
}

.filter-dropdown.guest-dropdown .rooms-container {
    padding: 0;
}

.filter-dropdown.guest-dropdown .room-card {
    border-bottom: 1px solid var(--bg-light);
}

.filter-dropdown.guest-dropdown .room-card:last-child {
    border-bottom: none;
}

.filter-dropdown.guest-dropdown .room-header {
    background: transparent;
    border-bottom: none;
    padding: 12px 16px;
}

.filter-dropdown.guest-dropdown .room-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.filter-dropdown.guest-dropdown .room-body {
    padding: 0 18px 16px;
}

.filter-dropdown.guest-dropdown .room-row {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
}

.filter-dropdown.guest-dropdown .room-row:last-of-type {
    border-bottom: none;
}

.filter-dropdown.guest-dropdown .room-row .label-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.filter-dropdown.guest-dropdown .room-row .label-sub {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 18px;
}

/* Counter styles - uses common.css base (primary red, square) */
.filter-dropdown.guest-dropdown .counter-btn:hover {
    background: var(--primary);
}

.filter-dropdown.guest-dropdown .counter-value {
    min-width: 40px;
    font-size: 24px;
    font-weight: 500;
}

/* Add/Remove Room Buttons */
.filter-dropdown.guest-dropdown .room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-dropdown.guest-dropdown .remove-room-btn {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.filter-dropdown.guest-dropdown .remove-room-btn:hover {
    text-decoration: underline;
}

.filter-dropdown.guest-dropdown .add-room-btn {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 16px;
}

.filter-dropdown.guest-dropdown .add-room-btn:hover {
    text-decoration: underline;
}

.filter-dropdown.guest-dropdown .add-room-btn i {
    color: var(--primary);
    font-weight: 700;
}

.filter-dropdown.guest-dropdown .submit-button {
    display: none;
}

/* Child Ages */
.filter-dropdown.guest-dropdown .child-ages-container {
    padding-top: 12px;
    border-top: 1px solid var(--bg-light);
    margin-top: 12px;
}

.filter-dropdown.guest-dropdown .child-ages-container:empty {
    display: none;
}

.filter-dropdown.guest-dropdown .child-ages-header {
    margin-bottom: 12px;
}

.filter-dropdown.guest-dropdown .child-ages-header .label-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.filter-dropdown.guest-dropdown .child-ages-header .label-sub {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 18px;
}

.filter-dropdown.guest-dropdown .child-ages-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-dropdown.guest-dropdown .child-age-select {
    flex: 0 0 calc(50% - 5px);
    border-radius: 8px;
    background: var(--bg-light);
    border: 1px solid var(--btn-border-color);
    padding: 9px 14px;
    min-height: 56px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.filter-dropdown.guest-dropdown .child-age-select label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    cursor: pointer;
    margin-bottom: 2px;
}

.filter-dropdown.guest-dropdown .child-age-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
}

.filter-dropdown.guest-dropdown .child-dropdown {
    display: none;
    position: absolute;
    border-radius: 8px;
    border: 1px solid var(--btn-border-color);
    background: var(--white);
    left: 0;
    width: 100%;
    bottom: 60px;
    max-height: 265px;
    overflow-y: auto;
    z-index: 10;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.filter-dropdown.guest-dropdown .child-dropdown.active {
    display: flex;
}

.filter-dropdown.guest-dropdown .child-dropdown a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 13px 16px;
    border-bottom: 1px solid var(--bg-light);
    cursor: pointer;
    text-decoration: none;
}

.filter-dropdown.guest-dropdown .child-dropdown a:last-child {
    border-bottom: none;
}

.filter-dropdown.guest-dropdown .child-dropdown a:hover {
    background: var(--bg-light);
}

/* Room List */
.room-list-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 23px;
}

.room-list-inner .item {
    border-radius: 8px;
    border: 1px solid var(--btn-border-color);
    width: 100%;
    background: var(--white);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s;
}

.room-list-inner .item:hover {
    border-color: var(--secondary);
}

.room-list-inner .item.active {
    border-color: var(--success);
}

.room-list-inner .item .room-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.room-list-inner .item .room-list .room {
    border-bottom: 1px solid var(--btn-border-color);
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.room-list-inner .item .room-list .room:last-child {
    border-bottom: none;
}

.room-list-inner .item .room-list .room .mobile-heading {
    display: none;
    margin-bottom: 12px;
}

.room-list-inner .item .room-list .room .mobile-heading .heading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-list-inner .item .room-list .room .room-inner-detail {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.room-list-inner .item .room-list .room .room-inner-detail .first .image {
    position: relative;
    width: 112px;
    height: 80px;
    flex-shrink: 0;
}

.room-list-inner .item .room-list .room .room-inner-detail .first .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.room-list-inner .item .room-list .room .room-inner-detail .last {
    width: 100%;
}

.room-list-inner .item .room-list .room .room-inner-detail.tour .title {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 8px;
}

.room-list-inner .item .room-list .room .heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    border: none;
}

.room-list-inner .item .room-list .room .heading .room-count {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.room-list-inner .item .room-list .room .heading .person {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

.room-list-inner .item .room-list .room .extras {
    display: flex;
    align-items: center;
    width: 100%;
}

.room-list-inner .item .room-list .room .extras .room-type-tour {
    border: 1px solid var(--border-color);
    padding: 5px 14px;
    border-radius: 100px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.room-list-inner .item .room-list .room .extras .room-type-tour span {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-list-inner .item .room-list .room .extras .room-type-tour span i {
    color: var(--accent-purple);
}

/* Room Detail - Price Section */
.room-list-inner .item .room-detail {
    border-radius: 0 8px 8px 0;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    border-left: 1px solid var(--btn-border-color);
    gap: 28px;
    padding: 16px;
}

.room-list-inner .item.active .room-detail {
    background: var(--success-bg);
}

.room-list-inner .item .room-detail .left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--secondary);
}

.room-list-inner .item .room-detail .left .person {
    font-size: 12px;
    font-weight: 700;
}

.room-list-inner .item .room-detail .left .day {
    font-size: 12px;
    font-weight: 400;
}

.room-list-inner .item .room-detail .left .day::after {
    width: 18px;
    height: 3px;
    border-radius: 8px;
    background: var(--divider);
    display: block;
    content: '';
    margin-top: 4px;
}

.room-list-inner .item .room-detail .left > .price {
    color: var(--success);
    font-size: 18px;
    font-weight: 700;
}

.room-list-inner .item .room-detail .left .old-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-list-inner .item .room-detail .left .old-price .price {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    text-decoration: line-through;
}

.room-list-inner .item .room-detail .left .old-price .discount {
    border-radius: 8px;
    background: var(--success-light);
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-list-inner .item .room-detail .left .persons-tour {
    font-size: 11px;
    color: var(--text-muted);
}

.room-list-inner .item .room-detail .left .persons-tour strong {
    color: var(--text-dark);
}

/* Room Selection Radio Button */
.room-list-inner .item .room-detail .right label {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.room-list-inner .item .room-detail .right label:hover {
    border-color: var(--secondary);
}

.room-list-inner .item .room-detail .right input {
    display: none;
}

.room-list-inner .item .room-detail .right input:checked + label {
    border-color: transparent;
    background: var(--success);
    color: var(--white);
}

.room-list-inner .item .room-detail .right input:checked + label span {
    display: none;
}

.room-list-inner .item .room-detail .right input:checked + label::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f00c";
    color: var(--white);
    font-size: 16px;
}

/* (Booking Summary) */
.booking-summary {
    padding: 16px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--btn-border-color);
    box-shadow: 0 14px 34px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 100px;
}

.booking-summary .summary-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booking-summary .heading .desktop {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0;
}

.booking-summary .heading .mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
}

.booking-summary .heading .mobile .text {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 12px;
}

.booking-summary .heading .mobile .close {
    font-size: 22px;
    color: var(--text-placeholder);
    cursor: pointer;
    flex-shrink: 0;
}

/* Date Section */
.booking-summary .date {
    display: flex;
    justify-content: space-evenly;
    border-radius: 8px;
    border: 1px solid var(--btn-border-color);
}

.booking-summary .date .item {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.booking-summary .date .item:first-child {
    border-right: 1px solid var(--btn-border-color);
}

.booking-summary .date .item span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
}

.booking-summary .date .item span.title {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-purple);
}

/* Tour Name */
.booking-summary .tour-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}

/* Room Detail Section */
.booking-summary .room-detail {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-summary .room-detail .item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-summary .room-detail .item .room {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-purple);
}

.booking-summary .room-detail .item .room-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}

.booking-summary .room-detail .item .person-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 4px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
}

/* Tour Price Row */
.booking-summary .tour-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.booking-summary .tour-price-row .label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
}

.booking-summary .tour-price-row .value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
}

/* Total Summary */
.booking-summary .total-summary {
    display: flex;
    flex-direction: column;
}

.booking-summary .total-summary .first {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-summary .total-summary .first .room {
    font-size: 12px;
    font-weight: 400;
    color: var(--secondary);
}

.booking-summary .total-summary .first .room strong {
    font-weight: 700;
}

.booking-summary .total-summary .first .day {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
}

.booking-summary .total-summary .first .day::after {
    width: 18px;
    height: 3px;
    border-radius: 8px;
    background: var(--divider);
    display: block;
    content: "";
    margin-top: 4px;
}

.booking-summary .total-summary .first .old-price {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    text-decoration: line-through;
}

.booking-summary .total-summary .first .price {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: var(--success);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-summary .total-summary .first .price .discount {
    border-radius: 8px;
    background: var(--success-light);
    padding: 0 11px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
}

.booking-summary .total-summary .arrow-btn {
    display: none;
    font-size: 22px;
    color: var(--text-dark);
    cursor: pointer;
}

.booking-summary .total-summary .arrow-btn {
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.booking-summary .total-summary .arrow-btn i {
    font-size: 12px;
}

.booking-summary .total-summary .button {
    margin-bottom: 0;
}

.booking-summary .total-summary .button a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    border-radius: 8px;
    background: var(--success);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.booking-summary .total-summary .button a:hover {
    background: var(--success-hover);
}

/* WhatsApp Support */
.booking-summary .whatsapp-support {
    margin-top: 4px;
    margin-bottom: 4px;
}

.booking-summary .whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--success-bg-light);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.booking-summary .whatsapp-btn:hover {
    background: var(--success-bg-hover);
}

.booking-summary .whatsapp-btn i {
    font-size: 16px;
    color: var(--teal);
}

.booking-summary .whatsapp-btn span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Tour Details Tabs */
.tour-details {
    padding: 40px 0 60px;
    background: var(--bg-light);
}

.tour-details > .container > .section-title {
    display: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .tour-details > .container > .section-title {
        display: block;
    }
}

.tabs {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.tab-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    padding: 0 24px;
    border-bottom: 1px solid var(--btn-border-color);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tab-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex: 0 0 auto;
    padding: 14px 18px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

.tab-content {
    padding: 24px;
}

@media screen and (max-width: 767px) {
    .tab-content {
        max-height: 500px;
        overflow-y: auto;
    }
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Program List - Timeline Style */
.program-list {
    position: relative;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.program-day {
    position: relative;
    padding-bottom: 24px;
    padding-left: 24px;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.program-day:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 20px;
    width: 2px;
    height: calc(100% - 10px);
    background: var(--divider);
}

.program-day::after {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--accent-purple);
    border-radius: 50%;
    z-index: 1;
}

.program-day:first-child::after {
    background: var(--primary);
}

.program-day:last-child::after {
    background: var(--success);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 10px 0;
    background: transparent;
    border-bottom: none;
}

.day-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-purple);
    background: none;
    padding: 0;
    border-radius: 0;
}

.program-day:first-child .day-number {
    color: var(--primary);
}

.program-day:last-child .day-number {
    color: var(--success);
}

.day-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
}

.day-content {
    padding: 0;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 14px 16px;
}

.day-content p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* Date Collapse Accordion */
.date-collapse {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.date-item {
    padding: 16px;
    border: 1px solid var(--btn-border-color);
    border-radius: 12px;
    background: var(--white);
    transition: border-color 0.2s;
}

.date-item:hover {
    border-color: var(--divider);
}

.date-item.active {
    border-color: var(--primary);
}

.date-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.date-heading .first {
    font-size: 16px;
    color: var(--text-dark);
}

.date-heading .first strong {
    color: var(--primary);
}

.date-heading .icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 14px;
    transition: all 0.2s;
}

.date-heading .icon i.fa-minus {
    display: none;
}

.date-item.active .date-heading .icon i.fa-plus {
    display: none;
}

.date-item.active .date-heading .icon i.fa-minus {
    display: block;
}

.date-item.active .date-heading .icon {
    background: var(--primary);
    color: var(--white);
}

.date-content {
    display: none;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
}

.date-item.active .date-content {
    display: block;
}

/* Custom Table */
.custom-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--btn-border-color);
}

.custom-table th,
.custom-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.custom-table th:last-child,
.custom-table td:last-child {
    border-right: none;
}

.custom-table tbody tr:last-child td {
    border-bottom: none;
}

.custom-table th {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-purple-dark);
    background: var(--accent-purple-light);
}

.custom-table td {
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
}

.custom-table td strong {
    color: var(--secondary);
}

.table-responsive {
    overflow-x: auto;
}

/* Info Note Box */
.info-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--info-light);
    border-left: 4px solid var(--info);
    margin-bottom: 20px;
}

.info-note i {
    color: var(--info);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-note span {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.5;
}

.info-note span strong {
    color: var(--secondary);
}

.info-note.warning {
    background: var(--warning-light);
    border-left-color: var(--warning);
}

.info-note.warning i {
    color: var(--warning);
}

/* Extras Table */
.extras-table {
    overflow-x: auto;
}

.extras-table .custom-table td:first-child {
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.services-column {
    padding: 20px;
    border: 1px solid var(--btn-border-color);
    border-radius: 12px;
    background: var(--white);
}

.services-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-column h4 i {
    font-size: 18px;
}

.services-column:first-child h4 {
    color: var(--success);
}

.services-column:first-child {
    border-color: var(--success-light);
    background: linear-gradient(180deg, rgba(209, 246, 242, 0.2) 0%, var(--white) 100%);
}

.services-column:last-child h4 {
    color: var(--error);
}

.services-column:last-child {
    border-color: var(--error-light);
    background: linear-gradient(180deg, rgba(254, 226, 226, 0.2) 0%, var(--white) 100%);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
    border-bottom: 1px solid var(--border-color);
}

.services-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.services-list li:first-child {
    padding-top: 0;
}

.services-list li i {
    margin-top: 3px;
    font-size: 12px;
    flex-shrink: 0;
}

.services-list.included li i {
    color: var(--success);
}

.services-list.excluded li i {
    color: var(--error);
}

.services-content {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.services-content p {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.services-content p:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.services-content p:first-child {
    padding-top: 0;
}

/* Notes Content */
.notes-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.note-item {
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--btn-border-color);
    border-radius: 12px;
    transition: box-shadow 0.2s;
}

.note-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.note-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.note-item h4 i {
    color: var(--accent-purple);
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(145, 97, 241, 0.1);
    border-radius: 8px;
}

.note-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    padding-left: 42px;
}

/* Responsive */
@media (max-width: 991px) {
    .tour-header {
        padding: 16px 0;
    }

    .tour-header .tour-title {
        font-size: 22px;
    }

    .tour-header .tour-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .tour-header .page-badges {
        gap: 8px;
        justify-content: center;
    }

    .tour-header .badge-item {
        padding: 0 14px;
        min-width: auto;
        flex: 0 0 auto;
        max-width: fit-content;
    }

    .tour-header .tour-price {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        background: none;
        border-radius: 0;
        margin-top: 16px;
    }

    .tour-header .tour-price strong {
        font-size: 24px;
    }

    .detail-image .container {
        padding: 0;
        margin: 0;
    }

    .booking-summary {
        position: static;
        margin-top: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tab-nav {
        padding: 0 16px;
    }

    .tab-btn {
        padding: 12px 14px;
        font-size: 13px;
    }

    .tab-content {
        padding: 16px;
    }

    .program-list {
        padding-left: 10px;
    }

    .program-day {
        padding-left: 20px;
    }

    .services-column {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .room-list-inner .item {
        flex-direction: column;
    }

    .room-list-inner .item .room-list .room {
        flex-direction: column;
        align-items: flex-start;
    }

    .room-list-inner .item .room-list .room .mobile-heading {
        display: block;
        width: 100%;
    }

    .room-list-inner .item .room-list .room .room-inner-detail .last .heading {
        display: none;
    }

    .room-list-inner .item .room-list .room .room-inner-detail .first .image {
        width: 100%;
        height: 160px;
    }

    .room-list-inner .item .room-list .room .extras {
        flex-direction: column;
        gap: 7px;
        align-items: flex-start;
    }

    .room-list-inner .item .room-list .room .extras .room-type-tour {
        flex-wrap: wrap;
    }

    .room-list-inner .item .room-detail {
        border-radius: 0 0 8px 8px;
        justify-content: space-between;
        border-left: none;
        border-top: 1px solid var(--btn-border-color);
        width: 100%;
    }

    /* Booking Summary Mobile */
    .booking-summary {
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .booking-summary .summary-inner {
        display: none;
    }

    .booking-summary .summary-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 998;
    }

    .booking-summary.active .summary-overlay {
        display: block;
    }

    .booking-summary.active .summary-inner {
        border-radius: 16px 16px 0 0;
        display: flex;
        position: fixed;
        left: 0;
        bottom: 56px;
        background: var(--white);
        width: 100%;
        padding: 16px;
        z-index: 1000;
        box-shadow: none;
    }

    .booking-summary.active .total-summary {
        z-index: 1000;
    }

    .booking-summary .total-summary .arrow-btn {
        transition: transform 0.3s;
        pointer-events: none;
    }

    .booking-summary.active .total-summary .arrow-btn {
        transform: rotate(180deg);
    }

    .booking-summary .heading .desktop {
        display: none;
    }

    .booking-summary .heading .mobile {
        display: flex;
    }

    .booking-summary .total-summary {
        flex-direction: row;
        border-top: 1px solid var(--btn-border-color);
        background: var(--bg-light);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 12px 16px;
        z-index: 999;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .booking-summary .total-summary .first {
        flex: 1;
    }

    .booking-summary .total-summary .first .day {
        font-size: 11px;
    }

    .booking-summary .total-summary .first .day::after {
        display: none;
    }

    .booking-summary .total-summary .first .price {
        margin-bottom: 0;
        font-size: 18px;
        line-height: 1.2;
        color: var(--success);
    }

    .booking-summary .total-summary .arrow-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 8px;
    }

    .booking-summary .total-summary .button {
        display: block;
    }

    .booking-summary .total-summary .button a {
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

}

@media (max-width: 767px) {
    .tour-detail-page .breadcrumb {
        display: none;
    }

    .tour-header .badges {
        gap: 8px;
    }

    .tour-header .badge-item {
        font-size: 12px;
    }

    .tour-details {
        padding: 24px 0 100px;
    }

    .tabs {
        border-radius: 8px;
    }

    .date-item {
        padding: 14px;
        border-radius: 8px;
    }

    .date-heading .first {
        font-size: 14px;
    }

    .custom-table {
        border-radius: 8px;
    }

    .custom-table th,
    .custom-table td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .info-note {
        padding: 12px 14px;
    }

    .info-note span {
        font-size: 12px;
    }

    .day-content {
        padding: 12px;
    }

    .note-item {
        padding: 14px 16px;
    }

    .note-item h4 i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .note-item p {
        padding-left: 38px;
    }

    /* Guest Dropdown - Bottom Sheet */
    .filter-dropdown.guest-dropdown {
        width: 100%;
        position: fixed;
        left: 0;
        top: auto;
        bottom: 0;
        z-index: 999999;
        height: auto;
        max-height: calc(100vh - 10px);
        min-width: 100%;
        max-width: 100%;
        margin-top: 0;
        overflow-y: auto;
        border-radius: 20px 20px 0 0;
    }

    .filter-dropdown.guest-dropdown .mobile-heading {
        display: flex;
        align-items: center;
        padding: 16px;
        justify-content: space-between;
        border-bottom: 1px solid var(--bg-light);
    }

    .filter-dropdown.guest-dropdown .mobile-heading span {
        font-size: 22px;
        font-weight: 500;
    }

    .filter-dropdown.guest-dropdown .mobile-heading .close-btn {
        font-size: 22px;
        color: var(--text-placeholder);
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
    }

    .filter-dropdown.guest-dropdown .submit-button {
        display: block;
        margin-top: 20px;
        padding: 16px;
        padding-bottom: 33px;
    }

    .filter-dropdown.guest-dropdown .submit-button span {
        font-size: 14px;
        font-weight: 700;
        color: var(--white);
        background: var(--secondary);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        min-height: 44px;
    }

    /* Dark backdrop for guest bottom sheet */
    body.guest-overlay-open::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--overlay);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 999998;
    }

    /* Body fixed for filter overlay */
    body.filter-overlay-open {
        overflow: hidden;
    }
}
