/* ============ HERO SECTION =============== */
.listing_hero {
    position: relative;
    padding: 35px 0 20px;
    background: var(--bg) center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.listing_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.5) 40%,
        rgba(0,0,0,0.1) 100%
    );
}

.listing_hero .container {
    position: relative;
    z-index: 2;
}

.listing_breadcrumb {
    margin-bottom: 10px;
}

.listing_breadcrumb a,
.listing_breadcrumb span {
    color: rgba(255, 255, 255, 0.85);
}

.listing_title {
    font-size: 42px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    letter-spacing: 0.3px;
    font-family: var(--syt-font-secondary);
}

.listing_subtitle {
    font-size: 14px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--syt-font-secondary);
}


/* ================= MAIN SECTION ================= */
.package_listing_section {
    padding: 30px 0 50px;
    background: var(--syt-bg);
}

/* ===== SIDEBAR FILTERS ====== */
.filter_sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.filter_box {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid var(--syt-border);
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.filter_box::-webkit-scrollbar {
    width: 4px;
}

.filter_box::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.filter_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.filter_title {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--syt-font-secondary);
}

.filter_clear {
    font-size: 12px;
    color: var(--syt-accent);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--syt-font-secondary);
}

.filter_clear:hover {
    text-decoration: underline;
}

.filter_group {
    margin-bottom: 22px;
}

.filter_group h6 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--syt-text-dark);
    font-family: var(--syt-font-secondary);
}

.filter_option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--syt-text-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter_option:hover {
    color: var(--syt-text-dark);
}

.filter_option input {
    width: 15px;
    height: 15px;
    accent-color: var(--syt-primary);
    cursor: pointer;
}

.filter_option input:checked + span {
    color: var(--syt-text-dark);
    font-weight: 500;
}

.filter_heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--syt-text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.fh_icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fh_icon i {
    font-size: 12px;
    color: var(--syt-primary);
}

.filter_heading.highlight .fh_icon {
    background: #fff3cd;
}

.filter_heading.highlight .fh_icon i {
    color: #f59e0b;
}

.departure_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.departure_chip {
    position: relative;
    cursor: pointer;
}

.departure_chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.departure_chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--syt-text-dark);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.22s ease;
}

.departure_chip:hover span {
    border-color: rgba(0, 64, 128, 0.18);
    background: rgba(0, 64, 128, 0.04);
    color: var(--syt-primary);
}

.departure_chip input:checked + span {
    background: var(--syt-primary);
    border-color: var(--syt-primary);
    color: #fff;
    box-shadow:
        0 6px 16px rgba(0, 64, 128, 0.18);
}


/* ========== RIGHT SECTION ======== */
.skeleton_card {
    pointer-events: none;
}

.skeleton_img {
    width: 260px;
    height: 200px;
    background: #eee;
}

.sk_badge {
    width: 80px;
    height: 20px;
    background: #eee;
    border-radius: 999px;
    margin-bottom: 6px;
}

.sk_line {
    height: 12px;
    background: #eee;
    margin-bottom: 8px;
    border-radius: 6px;
}

.sk_title {
    width: 75%;
    height: 16px;
}

.sk_small {
    width: 50%;
}

.sk_price {
    width: 80%;
    height: 18px;
}

.sk_price_small {
    width: 60%;
    height: 12px;
}

.sk_tags {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.sk_tags span {
    width: 70px;
    height: 22px;
    background: #eee;
    border-radius: 8px;
}

.sk_btn {
    height: 36px;
    background: #eee;
    border-radius: 8px;
    margin-top: 10px;
}

.skeleton_card,
.sk_line,
.skeleton_img,
.sk_btn,
.sk_badge,
.sk_tags span {
    position: relative;
    overflow: hidden;
}

.skeleton_card::after,
.sk_line::after,
.skeleton_img::after,
.sk_btn::after,
.sk_badge::after,
.sk_tags span::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* topbar */
.listing_topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-family: var(--syt-font-secondary);
}

.listing_topbar .result_count {
    font-size: 14px;
    font-weight: 600;
    color: var(--syt-text-dark);
    margin-bottom:2px;
}

.listing_topbar .topbar_sub{
    margin-bottom: 0;
    font-size:12px;
}

.listing_topbar .topbar_right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.listing_topbar .sort_label {
    font-size: 13px;
    color: var(--syt-text-light);
    white-space: nowrap;
}

.listing_topbar.sort_select {
    height: 34px;
    padding: 4px 10px;
    font-size: 13px;
    border: 1px solid var(--syt-border);
    border-radius: 6px;
    background: #fff;
    color: var(--syt-text-dark);
    min-width: 160px;
    font-family: var(--syt-font-secondary);
}

.listing_topbar .sort_select:focus {
    outline: none;
    border-color: var(--syt-primary);
}

/* ========= PACKAGE LIST ========= */
.package_list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.package_card {
    display: flex;
    position: relative;
    background: #fff;
    border: 1px solid var(--syt-border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    box-shadow:
        0 3px 12px rgba(15, 23, 42, 0.04);
}

.package_card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 64, 128, 0.08);
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.10);
}

.package_img {
    width: 265px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.package_img::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.34),
        rgba(15, 23, 42, 0.10)
    ); */
    z-index: 1;
    pointer-events: none;
}

.package_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package_card:hover .package_img img {
    transform: scale(1.04);
}

.package_type_badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(0, 64, 128, 0.08);
    color: var(--syt-primary);
    border: 1px solid rgba(0, 64, 128, 0.14);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
    transition: all 0.25s ease;
}

.package_card:hover .package_type_badge {
    background: rgba(0, 64, 128, 0.14);
    border-color: rgba(0, 64, 128, 0.22);
    color: var(--syt-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 64, 128, 0.08);
}

.package_type_badge i {
    font-size: 10px;
    opacity: 0.9;
}

.package_header_line {
    margin-bottom: 6px;
}

.package_meta_top {
    display: flex;
    align-items: center;
    width: 100%;
}

.package_meta_top.has_fd_meta {
    justify-content: space-between;
}

.package_meta_left,
.package_meta_right {
    display: flex;
    align-items: center;
}

.fd_departure_date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(204, 46, 63, 0.05);
    border: 1px solid rgba(204, 46, 63, 0.10);
    font-size: 12px;
    font-weight: 800;
    color: var(--syt-accent);
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(204, 46, 63, 0.04);
    font-family: var(--syt-font-secondary);
}

.fd_departure_date i {
    font-size: 11px;
    color: var(--syt-accent);
    opacity: 0.9;
}


.package_list .fd_card{
    border:1px solid #cc2e3e56;
}

.package_badges {
    position: absolute;
    top: 18px;
    left: 0;
    right: 14px;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
}

.package_badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 0 8px 8px 0;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.fd_badge {
    background: rgba(220, 38, 38, 0.94);
}

.fd_badge i {
    color: rgba(255, 255, 255, 0.95);
}

.package_discount_badge {
    background: rgba(220, 38, 38, 0.94);
}

.fd_meta_strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 5px;
    font-size: 13px;
    font-weight: 500;
    color: #5b6470;
}

.fd_meta_strip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fd_meta_strip i {
    font-size: 12px;
    color: #1A365D;
}


.package_content {
    flex: 1;
    padding: 13px 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.package_top {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start; 
    width:100%;
}

.package_bottom {
    margin-top: auto;
}

.package_title {
    font-size: 18px;
    font-weight: 700;
    margin: 6px 0 2px 0;
    color: var(--syt-text-dark);
    font-family: var(--syt-font-secondary);
    line-height: 1.3;
}

.package_card:hover .package_title {
    color: var(--syt-primary);
}

.package_tagline {
    font-size: 13px;
    color: var(--syt-text-light);
    margin-bottom: 6px;
}

.package_meta {
    font-size: 13px;
    color: var(--syt-text-light);
    margin:0;
}

.package_rating {
    font-size: 13px;
    margin-top: 6px;
    color: #f59e0b;
    display: flex;
    align-items: center;
}

.package_rating i {
    margin-right: 4px;
}
/* 
.package_rating span {
    color: var(--syt-text-light);
    margin-left: 6px;
}

.package_tags {
    margin-top: 12px;
}

.package_tags span {
    font-size: 12px;
    background: #f3f4f6;
    padding: 5px 10px;
    border-radius: 999px;
    margin-right: 6px;
    color: #374151;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.package_tags i {
    font-size: 11px;
    color: var(--syt-primary);
}

.package_tags span:hover {
    background: #e5e7eb;
} */


.package_rating span {
    color: var(--syt-text-light);
    margin-left: 5px;
    font-size: 13px;
    font-weight: 500;
}

.package_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    min-height: 34px;
}

.package_tags > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 132px;
    padding: 6px 12px;
    background: #f6f8fb;
    border: 1px solid #edf1f5;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #475569;
    transition: all 0.2s ease;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.package_tags i {
    font-size: 10px;
    color: var(--syt-primary);
    flex-shrink: 0;
    opacity: 0.9;
}

.package_tags .tag_text {
    overflow: hidden;
    text-overflow: ellipsis;
}

.package_tags > span:hover {
    background: #eef4fa;
    border-color: #dbe7f3;
    transform: translateY(-1px);
}

.package_tags .more_tag {
    background: #eef2f7;
    color: #64748b;
}

.package_tags .more_tag:hover {
    background: #e2e8f0;
}

.package_tooltip .tooltip-inner {
    max-width: 260px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #000000;
    color: #fff;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.custom_tooltip_content .tooltip_heading {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.custom_tooltip_content .tooltip_item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.custom_tooltip_content .tooltip_item:last-child {
    margin-bottom: 0;
}

.custom_tooltip_content .tooltip_item i {
    font-size: 11px;
    margin-top: 4px;
    color: #60A5FA;
}

.custom_tooltip_content .tooltip_item span {
    font-size: 12px;
    color: #e2e8f0;
}



.package_price {
    width: 220px;
    flex-shrink: 0;
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    background:
        linear-gradient(
            to left,
            rgba(248, 250, 252, 0.92),
            rgba(248, 250, 252, 0.55)
        );
    border-left:
        1px solid rgba(15, 23, 42, 0.05);
}

.price_original {
    font-size: 14px;
    color: var(--syt-text-light);
    text-decoration: line-through;
    margin-bottom: 6px;
    font-weight: 500;
    font-family: var(--syt-font-price);
}

.package_card:hover .price_original {
    color: #dc2626;
}

.price_current {
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: var(--syt-text-dark);
    margin-bottom: 6px;
    font-family: var(--syt-font-price);
}

.price_suffix {
    font-size: 12px;
    color: var(--syt-text-light);
    margin-bottom: 14px;
    text-align: right;
    line-height: 1.4;
}

.price_trust {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--syt-primary);
    line-height: 1.2;
}

.price_trust i {
    font-size: 11px;
    opacity: 0.9;
}

.package_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(
        135deg,
        var(--syt-primary),
        var(--syt-primary-light)
    );
    text-decoration: none;
    border-radius: 999px;
    font-size: 13px;
    padding: 10px 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff !important;
}

.package_cta_btn:hover {
    background: linear-gradient(
        135deg,
        var(--syt-primary-light),
        var(--syt-primary)
    );
    color: #fff !important;
}

.package_cta_btn:focus,
.package_cta_btn:active {
    color: #fff !important;
}

.package_cta_btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.package_cta_btn:hover i {
    transform: translateX(4px);
}

.package_cta_btn:active {
    transform: scale(0.98);
}

.fd_cta_btn {
    background: var(--syt-accent);
    border-color: var(--syt-accent);
}

.fd_cta_btn:hover {
    background: var(--syt-accent-hover);
    border-color: var(--syt-accent-hover);
}


/*  */
#loadMoreWrapper {
    display: flex;
    justify-content: center;
}

.load_more_btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.load_more_btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.load_more_btn:active {
    transform: scale(0.97);
}

.load_more_btn .btn_loader {
    display: none;
    align-items: center;
}

.load_more_btn .btn_loader.show {
    display: flex;
}

/* ===== NO RESULT PREMIUM ===== */
.no_result_box {
    text-align: center;
    padding: 0;
    max-width: 480px;
    margin: 0 auto;
}

.no_result_icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 20px;
}

.no_result_box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
    font-family: var(--syt-font-secondary);
}

.no_result_sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: var(--syt-font-secondary);
}

.no_result_actions {
    display: flex;
    justify-content: center;
}

.reset_filters_btn {
    padding: 8px 18px;
    font-size: 12px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: transparent;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--syt-font-secondary);
}

.reset_filters_btn i {
    font-size: 12px;
    margin-right: 2px;
}

.reset_filters_btn:hover {
    border-color: #004080;
    color: #004080;
}

.reset_filters_btn:active {
    transform: scale(0.96);
}


/* ============= MOBILE RESPONSIVE =============== */
@media (max-width: 768px) {
    /* hero */
    .listing_hero {
        padding: 30px 0 25px;
    }

    .listing_title {
        font-size: 22px;
    }

    .listing_subtitle {
        font-size: 13px;
    }

    /* sorting */
    .listing_topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar_right {
        width: 100%;
        justify-content: space-between;
    }

    .sort_select {
        width: 100%;
    }

    /* package card */
    .package_card {
        flex-direction: column;
    }

    .package_img {
        width: 100%;
        height: 220px;
    }

    .package_meta_top {
        gap: 10px;
    }

    .fd_departure_date {
        font-size: 12px;
    }

    .package_price {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--syt-border);
        text-align: left;
        align-items:flex-start;
    }

    .package_price .btn {
        width: 100%;
    }
    .price_trust {
        justify-content: flex-start;
    }

}


/* ================= APPLIED FILTERS ================= */

.applied_filters_bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.applied_chip {
    background: #eef4ff;
    border: 1px solid #c7d8ff;
    color: #004080;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.applied_chip i {
    cursor: pointer;
    font-size: 10px;
}


/* ================= MOBILE FILTER BAR ================= */
.mobile_filter_bar {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mobile_filter_bar::-webkit-scrollbar {
    display: none;
}

.mobile_filter_bar > * {
    flex: 0 0 auto;
}

.filter_btn {
    flex: 1;
    background: #fff;
    border: 1px solid var(--syt-border);
    border-radius: 12px;
    padding: 11px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.filter_btn i {
    font-size: 14px;
    color: var(--syt-primary);
}

@media (hover: hover) {
    .filter_btn:hover {
        background: #f9fafb;
    }
}

.filter_btn:active {
    transform: scale(0.96);
}

.sort_chip {
    flex: 1;
    position: relative;
}

.sort_chip select {
    width: 100%;
    border: 1px solid var(--syt-border);
    border-radius: 12px;
    padding: 11px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.sort_chip::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #666;
    pointer-events: none;
}

.filter_modal_header {
    border-bottom: 1px solid var(--syt-border);
    padding: 14px 16px;
}

.filter_modal_header h5 {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

#mobileFilterModal .filter_group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 16px;
    margin-bottom: 16px;
}

#mobileFilterModal .filter_group h6 {
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

#mobileFilterModal .filter_option {
    display: inline-block;
}

#mobileFilterModal .filter_option input {
    display: none;
}

#mobileFilterModal .filter_option span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    border: 1px solid var(--syt-border);
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

#mobileFilterModal .filter_option input:checked + span {
    background: var(--syt-primary);
    color: #fff;
    border-color: var(--syt-primary);
    font-weight: 500;
}

#mobileFilterModal .filter_option span:active {
    transform: scale(0.95);
}

.mobile_filter_footer {
    position: sticky;
    bottom: 0;
    z-index: 10;
    padding: 12px;
    border-top: 1px solid var(--syt-border);
    display: flex;
    gap: 10px;
    background: #fff;
}

.reset_btn {
    flex: 1;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    padding: 11px;
    font-weight: 500;
    font-size: 14px;
}

.apply_btn {
    flex: 1.5;
    background: linear-gradient(135deg, #004080, #0066cc);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 64, 128, 0.25);
}

.apply_btn:active,
.reset_btn:active {
    transform: scale(0.96);
}

#mobileFilterModal .modal-body {
    padding: 0;
    padding-bottom: 80px;
}

#mobileFilterModal .filter_box {
    padding: 12px 16px 0;
    border: none;
    box-shadow: none;
}







/* ================= MOBILE FIXES ================= */

@media (max-width: 768px) {

    .modal-content {
        border-radius: 16px 16px 0 0;
    }

    /* Hide desktop sort */
    .listing_topbar .topbar_right {
        display: none !important;
    }

    .listing_topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .topbar_sub {
        display: none;
    }

    /* package card badges */
    .package_badges {
        top: 12px;
        left: 12px;
        right: 12px;
    }

    .package_badge {
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 7px;
    }

    .fd_meta_strip {
        gap: 10px;
        font-size: 12px;
    }
}

.hide-sticky-cta .syt_sticky_cta {
    display: none !important;
}