/* Search Header */
.search-header {
    background: var(--white);
}

/* Mobile Page Title */
.mobile-page-title {
    padding: 16px;
    border-top: 1px solid var(--btn-border-color);
    border-bottom: 1px solid var(--btn-border-color);
    background: var(--bg-light);
    display: none;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 991px) {
    .mobile-page-title {
        display: flex;
    }
}

.mobile-page-title .left .title {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-page-title .left .title .page-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    color: var(--secondary);
}

.mobile-page-title .left .title .result-count {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: var(--text-light);
}

.mobile-page-title .right .search-btn a {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 100%;
    cursor: pointer;
}

.mobile-page-title .right .search-btn a i {
    font-size: 20px;
    color: var(--white);
}

/* Mobile Search - Uses .bottom-sheet from common.css */
.mobile-search {
    max-height: 90vh;
}

.mobile-search .heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mobile-search .heading span {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    color: var(--text-dark);
}

.mobile-search .heading .close {
    cursor: pointer;
}

.mobile-search .heading .close i {
    font-size: 22px;
    color: var(--text-placeholder);
}

/* Mobile search overlay - Uses .modal-overlay from common.css */

/* Mobile Sort Buttons */
.mobile-sort {
    display: none;
    align-items: center;
    border-bottom: 1px solid var(--bg-light);
    background: var(--white);
}

@media screen and (max-width: 991px) {
    .mobile-sort {
        display: flex;
    }
}

.mobile-sort .item {
    flex: 1;
    padding: 11px 16px;
}

.mobile-sort .item:first-child {
    border-right: 1px solid var(--bg-light);
}

.mobile-sort .item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-sort .item a span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: var(--text-dark);
}

.mobile-sort .item a .icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-sort .item a .icon i {
    font-size: 22px;
    color: var(--text-placeholder);
}

/* Sort Popup - Uses .bottom-sheet from common.css */

.sort-popup .heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--btn-border-color);
}

.sort-popup .heading span {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.sort-popup .heading .close {
    cursor: pointer;
}

.sort-popup .heading .close i {
    font-size: 20px;
    color: var(--text-placeholder);
}

/* Sort popup overlay - Uses .modal-overlay from common.css */

/* Mobile Filter - Uses .side-panel from common.css */

.mobile-filter .heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border-bottom: 1px solid var(--btn-border-color);
}

.mobile-filter .heading .first {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-filter .heading .first .close {
    cursor: pointer;
}

.mobile-filter .heading .first .close i {
    font-size: 22px;
    color: var(--text-placeholder);
}

.mobile-filter .heading .first .title {
    color: var(--text-dark);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

.mobile-filter .heading .last .clear {
    color: var(--primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.mobile-filter .heading .first .close {
    text-decoration: none;
}

.mobile-filter .filter-container {
    flex: 1;
    overflow-y: auto;
}

.mobile-filter .body .item .parent-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border-bottom: 1px solid var(--bg-light);
    cursor: pointer;
}

.mobile-filter .body .item .parent-item .first {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-filter .body .item .parent-item .first span {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: var(--text-dark);
}

.mobile-filter .body .item .parent-item .first .count {
    color: var(--primary);
    font-weight: 700;
    display: none;
}

.mobile-filter .body .item .parent-item .first .count.active {
    display: inline;
}

.mobile-filter .body .item .parent-item .last i {
    font-size: 14px;
    color: var(--divider);
    transition: transform 0.3s;
}

.mobile-filter .body .item.expanded .parent-item .last i {
    transform: rotate(90deg);
}

.mobile-filter .body .item .child-item {
    display: none;
    background: var(--bg-lighter);
}

.mobile-filter .body .item.expanded .child-item {
    display: block;
}

.mobile-filter .body .item .child-item .search-inner {
    padding: 16px;
}

.mobile-filter .body .item .child-item .search-inner .search-box {
    border-radius: 8px;
    border: 1px solid var(--btn-border-color);
    background: var(--white);
    position: relative;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-filter .body .item .child-item .search-inner .search-box input {
    background: none;
    border: none;
    outline: none;
    padding: 8px 0;
    width: 100%;
    font-size: 14px;
}

.mobile-filter .body .item .child-item .search-inner .search-box .icon i {
    font-size: 16px;
    color: var(--text-placeholder);
}

.mobile-filter .body .item .child-item > .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border-bottom: 1px solid var(--bg-light);
}

.mobile-filter .body .item .child-item > .item .first {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Checkbox styles inherited from common.css (.checkbox-label) */

.mobile-filter .button {
    padding: 16px;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.mobile-filter .button a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    padding: 14px;
    border-radius: 8px;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
}

.mobile-filter .button a span {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    color: var(--white);
}

/* Mobile filter overlay - Uses .modal-overlay from common.css */
.mobile-filter-overlay {
    z-index: 99998;
}

/* Body fixed - Uses body.body-fixed from common.css */

/* Breadcrumb */
.breadcrumb {
    background: var(--white);
    padding: 12px 0;
    margin-bottom: 16px;
}

@media screen and (max-width: 991px) {
    .breadcrumb {
        padding: 12px 16px;
        margin-bottom: 0;
    }
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media screen and (max-width: 991px) {
    .breadcrumb-inner {
        overflow-x: auto;
        flex: 1;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .breadcrumb-inner::-webkit-scrollbar {
        display: none;
    }
}

.breadcrumb-inner a {
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--bg-light);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s;
}

@media screen and (max-width: 991px) {
    .breadcrumb-inner a {
        flex: 0 0 auto;
        width: max-content;
    }
}

.breadcrumb-inner a:hover {
    border-color: var(--btn-border-color);
    background: var(--bg-light);
}

.breadcrumb-inner a:last-child {
    color: var(--text-dark);
    border-color: var(--btn-border-color);
    background: var(--bg-light);
    pointer-events: none;
}

.breadcrumb-inner .separator {
    font-size: 10px;
    color: var(--text-light);
}

/* Tour List Section */
.tour-list-section {
    padding: 0 0 24px;
}

/* Filter Head (Sort & Filters) */
.filter-head {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 16px;
}

/* Sort Input Dropdown */
.filter-head .sort-input {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    min-width: 187px;
    position: relative;
    background: var(--white);
}

.filter-head .sort-input .inner {
    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    gap: 8px;
}

.filter-head .sort-input .inner i {
    color: var(--text-light);
    font-size: 12px;
}

.filter-head .sort-input .sort-dropdown {
    border-radius: 8px;
    border: 1px solid var(--btn-border-color);
    background: var(--white);
    box-shadow: 0 30px 74px 0 rgba(67, 12, 12, 0.14);
    position: absolute;
    width: 100%;
    z-index: 3;
    top: 50px;
    display: none;
}

.filter-head .sort-input .sort-dropdown.active {
    display: block;
}

.filter-head .sort-input .sort-dropdown .body {
    display: flex;
    flex-direction: column;
}

.filter-head .sort-input .sort-dropdown .body a {
    padding: 13px 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
}

.filter-head .sort-input .sort-dropdown .body a:last-child {
    border-bottom: none;
}

.filter-head .sort-input .sort-dropdown .body a:hover {
    background: var(--bg-light);
}

.filter-head .sort-input .sort-dropdown .body a .check {
    display: none;
    color: var(--success);
}

.filter-head .sort-input .sort-dropdown .body a.active {
    color: var(--success);
}

.filter-head .sort-input .sort-dropdown .body a.active .check {
    display: block;
}

/* Page Title in Filter Head */
.filter-head .page-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    color: var(--secondary);
    margin: 0;
    margin-right: auto;
}

/* Result Count */
.filter-head .result-count {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: var(--text-gray);
    margin-right: 16px;
}

/* Widget Filter - Styles in components/widget-filter.css */

/* Tour Cards List */
.tour-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

/* Tour Card Item */
.tour-cards .item {
    display: flex;
    flex-direction: column;
}

.tour-cards .item .first {
    padding: 12px;
    border-radius: 12px 12px 0 0;
    border: 1px solid var(--btn-border-color);
    border-bottom: none;
    display: flex;
    gap: 16px;
    background: var(--white);
}

.tour-cards .item .first .image {
    width: 230px;
    min-width: 230px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.tour-cards .item .first .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-cards .item .first .text {
    flex: 1;
}

.tour-cards .item .first .text .title {
    margin-bottom: 8px;
}

.tour-cards .item .first .text .title > a.title-link {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
    position: relative;
}

.tour-cards .item .first .text .title > a.title-link .title-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-cards .item .first .text .title > a.title-link .title-tooltip {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-dark);
    z-index: 100;
    min-width: 200px;
    max-width: 350px;
    white-space: normal;
}

.tour-cards .item .first .text .title > a.title-link:hover .title-tooltip {
    display: block;
}

.tour-cards .item .first .text .title > a.title-link:hover {
    color: var(--primary);
}

.tour-cards .item .first .text .title .location {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.tour-cards .item .first .text .title .location .item-div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-cards .item .first .text .title .location .item-div .icon {
    color: var(--primary);
    font-size: 12px;
}

.tour-cards .item .first .text .title .location .item-div .cities {
    color: var(--text-light);
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.tour-cards .item .first .text .title .routes {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tour-cards .item .first .text .title .routes .route-item {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    color: var(--secondary);
    padding: 4px 10px;
    background: var(--bg-light);
    border-radius: 4px;
}

.tour-cards .item .first .text .title .routes .route-arrow {
    color: var(--divider);
    font-size: 10px;
}

.tour-cards .item .first .text .extras .mobile-image {
    display: none;
}

.tour-cards .item .first .text .center-box {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.tour-cards .item .first .text .center-box .left .badges {
    margin-bottom: 13px;
    display: flex;
}

.tour-cards .item .first .text .center-box .left .badges span {
    padding: 6px 14px;
    background: var(--secondary);
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    color: var(--white);
    border-radius: 12px;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.tour-cards .item .first .text .center-box .left .badges span:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.tour-cards .item .first .text .center-box .left .whatsapp-support {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #9161f1;
    margin-bottom: 12px;
}

.tour-cards .item .first .text .center-box .left .whatsapp-support i {
    font-size: 16px;
}

.tour-cards .item .first .text .center-box .left .extras-badges .payment {
    display: flex;
    justify-content: start;
    gap: 4px;
    margin-bottom: 12px;
}

.tour-cards .item .first .text .center-box .left .extras-badges .payment span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-cards .item .first .text .center-box .left .extras-badges .payment span:after {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    background: var(--divider);
    border-radius: 100%;
}

.tour-cards .item .first .text .center-box .left .extras-badges .payment span:last-child:after {
    display: none;
}

.tour-cards .item .first .text .center-box .left .extras-badges .labels {
    display: flex;
    gap: 4px;
}

.tour-cards .item .first .text .center-box .left .extras-badges .labels span {
    padding: 4px 12px;
    background: var(--bg-light);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    border: 1px solid var(--btn-border-color);
}

.tour-cards .item .first .text .center-box .right .badges {
    display: none;
}

.tour-cards .item .first .text .center-box .right .summary {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
    margin-top: -45px;
}

.tour-cards .item .first .text .center-box .right .summary span.persons {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-cards .item .first .text .center-box .right .summary span.persons img {
    vertical-align: middle;
}

.tour-cards .item .first .text .center-box .right .summary span.old-price {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-cards .item .first .text .center-box .right .summary span.old-price em {
    text-decoration: line-through;
    font-style: normal;
}

.tour-cards .item .first .text .center-box .right .summary span.old-price .discount {
    border-radius: 8px;
    background: var(--success-light);
    padding: 5px 11px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    color: var(--secondary);
}

.tour-cards .item .first .text .center-box .right .summary span.new-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-cards .item .first .text .center-box .right .summary span.new-price .price {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    color: var(--secondary);
}

.tour-cards .item .first .text .center-box .right .summary span.new-price .price span {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.tour-cards .item .first .text .center-box .right .button a {
    padding: 11px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(45deg, var(--success), var(--success-hover));
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
}

.tour-cards .item .first .text .center-box .right .button a:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, var(--success-hover), var(--success-gradient));
}

.tour-cards .item .first .text .center-box .right .night-price {
    margin-top: 12px;
    text-align: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    color: var(--text-muted);
}

.tour-cards .item .first .text .center-box .right .night-price strong {
    color: var(--secondary);
}

/* Tour Card Last Section */
.tour-cards .item .last {
    display: flex;
    border-radius: 0 0 12px 12px;
    border: 1px solid var(--btn-border-color);
    background: var(--bg-light);
    padding: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.tour-cards .item .last .left {
    flex: 0 0 50%;
}

.tour-cards .item .last .benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    position: relative;
}

.tour-cards .item .last .benefits > .item {
    padding: 9px 14px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--btn-border-color);
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 4px;
    cursor: pointer;
    position: relative;
}

.tour-cards .item .last .benefits > .item .icon img {
    width: 16px;
    height: 16px;
}

.tour-cards .item .last .benefits > .item .text {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    color: var(--secondary);
}

/* Tooltip for benefits */
.tour-cards .item .last .benefits > .item .tooltip-extras {
    display: none;
    gap: 8px;
    align-items: center;
    background-color: var(--white);
    padding: 16px;
    border-radius: 8px;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.12));
    position: absolute;
    top: 60px;
    z-index: 9999;
    min-width: 280px;
}

.tour-cards .item .last .benefits > .item .tooltip-extras::before {
    width: 24px;
    height: 18px;
    display: block;
    content: "";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxOCAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuNDE1MTkgMS4wNTg3M0M4LjIxNTc5IDAuMDE4NzE1NyA5Ljc4NDIxIDAuMDE4NzE1NCAxMC41ODQ4IDEuMDU4NzNMMTYuOTEzNiA5LjI4MDAxQzE3LjkyNTkgMTAuNTk1MSAxNi45ODg0IDEyLjUgMTUuMzI4NyAxMi41SDIuNjcxMjZDMS4wMTE1OCAxMi41IDAuMDc0MDQ5NyAxMC41OTUxIDEuMDg2NDQgOS4yODAwMUw3LjQxNTE5IDEuMDU4NzNaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -11px;
    left: 30px;
}

.tour-cards .item .last .benefits > .item:hover .tooltip-extras {
    display: flex;
}

.tour-cards .item .last .benefits > .item .tooltip-extras .item-div {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    color: var(--secondary);
}

.tour-cards .item .last .benefits > .item .tooltip-extras .icon-arrow {
    color: var(--divider);
    font-size: 10px;
}

.tour-cards .item .last .benefits > .item .tooltip-extras .date-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 250px;
}

.tour-cards .item .last .benefits > .item .tooltip-extras .date-list .item-div {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-cards .item .last .benefits > .item .tooltip-extras .date-list .item-div strong {
    color: var(--primary);
}

/* Tooltip positioning */
.tour-cards .item .last .benefits > .item:first-child .tooltip-extras {
    left: 0;
    flex-wrap: wrap;
}

.tour-cards .item .last .benefits > .item:last-child .tooltip-extras {
    right: 0;
    left: auto;
}

.tour-cards .item .last .benefits > .item:last-child .tooltip-extras::before {
    left: auto;
    right: 30px;
}

/* Mobile Payment */
.tour-cards .item .last .mobile-payment {
    display: none;
}

.tour-cards .item .last .mobile-payment .payment span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    color: var(--accent-purple);
}

/* Labels in Last */
.tour-cards .item .last .labels {
    display: none;
}

.tour-cards .item .last .labels span {
    padding: 4px 12px;
    background: var(--white);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    border: 1px solid var(--btn-border-color);
}

/* Tour Card Mobile Styles */
@media screen and (max-width: 768px) {
    .tour-cards .item .first .image {
        display: none;
    }

    .tour-cards .item .first .text .title {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .tour-cards .item .first .text .title > a.title-link {
        width: 100%;
        font-size: 18px;
        line-height: 24px;
    }

    .tour-cards .item .first .text .title > a.title-link .title-tooltip {
        display: none !important;
    }

    .tour-cards .item .first .text .title .location {
        flex-wrap: wrap;
        order: 3;
        gap: 8px;
        margin-bottom: 0;
    }

    .tour-cards .item .first .text .title .routes {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .tour-cards .item .first .text .extras {
        display: flex;
        gap: 14px;
    }

    .tour-cards .item .first .text .extras .mobile-image {
        display: block;
        width: 150px;
        min-width: 150px;
        height: 160px;
        overflow: hidden;
        border-radius: 8px;
    }

    .tour-cards .item .first .text .extras .mobile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .tour-cards .item .first .text .center-box {
        flex-direction: column;
        justify-content: start;
        gap: 8px;
        flex: 1;
        margin-top: 0;
    }

    .tour-cards .item .first .text .center-box .left {
        order: 2;
    }

    .tour-cards .item .first .text .center-box .left .badges {
        display: none;
    }

    .tour-cards .item .first .text .center-box .left .whatsapp-support {
        display: none;
    }

    .tour-cards .item .first .text .center-box .left .extras-badges {
        display: none;
    }

    .tour-cards .item .first .text .center-box .right .badges {
        display: block;
        margin-bottom: 13px;
    }

    .tour-cards .item .first .text .center-box .right .badges span {
        padding: 6px 14px;
        background: var(--secondary);
        font-size: 11px;
        font-style: normal;
        font-weight: 600;
        color: var(--white);
        border-radius: 12px;
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .tour-cards .item .first .text .center-box .right .summary {
        margin-top: 0;
        text-align: left;
    }

    .tour-cards .item .first .text .center-box .right .button {
        display: none;
    }

    .tour-cards .item .first .text .center-box .right .night-price {
        text-align: left;
        margin-top: -6px;
        margin-bottom: 5px;
    }

    .tour-cards .item .last {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 12px;
    }

    .tour-cards .item .last .mobile-payment {
        display: block;
        order: 1;
    }

    .tour-cards .item .last .labels {
        display: flex;
        gap: 4px;
        order: 2;
        flex-wrap: wrap;
    }

    .tour-cards .item .last .left {
        order: 3;
        flex: auto;
        width: 100%;
    }
}

/* Sort Options (used in sort-popup) */
.sort-options {
    display: flex;
    flex-direction: column;
}

.sort-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}

.sort-option:last-child {
    border-bottom: none;
}

.sort-option input {
    display: none;
}

.sort-option .option-text {
    font-size: 15px;
    font-style: normal;
    color: var(--text-dark);
}

.sort-option i {
    color: var(--primary);
    opacity: 0;
}

.sort-option.active i,
.sort-option input:checked ~ i {
    opacity: 1;
}

/* Pagination */
.pagination-container {
    margin-top: 24px;
}

.pagination-link {
    display: flex;
    gap: 8px;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.pagination-link .page-item {
    display: inline-block;
}

.pagination-link .page-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    background-color: var(--gray-100);
    color: var(--gray-800);
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.pagination-link .page-link:hover {
    background-color: var(--gray-200);
}

.pagination-link .active .page-link {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination-link .page-item:first-child .page-link,
.pagination-link .page-item:last-child .page-link {
    border-radius: 6px;
}

.pagination-link .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.pagination-link .page-item.page-ellipsis .page-link {
    border: none;
    background: none;
    cursor: default;
    font-weight: 600;
    letter-spacing: 2px;
}

.pagination-link .page-item.page-arrow .page-link {
    font-size: 12px;
}

/* Not Found Page */
.not-found-page {
    margin-top: 100px;
}

@media screen and (max-width: 768px) {
    .not-found-page {
        margin-top: 60px;
    }
}

.not-found-page .text {
    text-align: center;
}

.not-found-page .text .icon {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 24px;
    justify-content: center;
    font-style: normal;
    font-weight: 500;
    color: var(--primary);
    gap: 8px;
}

@media screen and (max-width: 768px) {
    .not-found-page .text .icon {
        font-size: 18px;
    }
}

.not-found-page .text .icon i {
    font-size: 59px;
}

@media screen and (max-width: 768px) {
    .not-found-page .text .icon i {
        font-size: 40px;
    }
}

.not-found-page .text .sub-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
    .not-found-page .text .sub-text {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 25px;
    }
}

.not-found-page .text .button {
    display: flex;
    justify-content: center;
}

.not-found-page .text .button .btn {
    min-width: 244px;
}

/* Call Me Overlay */
.callme-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.callme-overlay.active {
    display: flex;
}

.callme-dialog {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    width: 480px;
    max-width: 95%;
    position: relative;
}

.callme-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-muted);
}

.callme-close:hover {
    color: var(--text-dark);
}

.callme-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.callme-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.callme-field {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--btn-border-color);
    border-radius: 8px;
    background: var(--bg-light);
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 12px;
}

.callme-field::placeholder {
    color: var(--text-placeholder);
}

.callme-field:focus {
    border-color: var(--primary);
    background: var(--white);
}

.callme-textarea {
    resize: none;
    min-height: 80px;
}

.callme-cta {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.callme-cta:hover {
    background: var(--primary-hover);
}

.callme-cta:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media screen and (max-width: 768px) {
    .callme-overlay {
        align-items: flex-end;
    }

    .callme-dialog {
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .search-header {
        padding: 12px 0;
    }

    .tour-list-section {
        padding: 12px 0;
    }
}
