.destination_page {
    background: #f8fafc;
}

.destination_intro {
    margin-bottom: 20px;
}

.page_title {
    margin-bottom: 6px;
    font-family: var(--syt-font-secondary);
}

.page_subtitle {
    color: #666;
    font-size: 16px;
    font-family: var(--syt-font-secondary);
}

.destination_filters {
    margin-bottom: 20px;
}

.destination_filters {
    margin-bottom: 20px;
}

.filter_chips {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 50px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    overflow-x: auto;
}

.chip {
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    background: #f1f5f9;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: var(--syt-font-secondary);
}

.chip:hover {
    background: #e0f2fe;
    transform: translateY(-1px);
}

.chip.active {
    background: linear-gradient(135deg, #2C5F9E, #60A5FA);
    color: #fff;
    box-shadow: 0 6px 16px rgba(44, 95, 158, 0.35);
    transform: scale(0.95);
}

.filter_chips::-webkit-scrollbar {
    display: none;
}

.destination_result_count {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
    padding-left: 4px;
    transition: all 0.3s ease;
    font-family: var(--syt-font-secondary);
}

.destination_result_count strong {
    color: #1a365d;
}

.destination_result_count i {
    margin-right: 6px;
    color: #60A5FA;
}

.destination_result_count.loading {
    opacity: 0.6;
}

.active_filter_info {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 10px;
    padding-left: 4px;
    transition: all 0.3s ease;
    font-family: var(--syt-font-secondary);
}

.active_filter_info strong {
    color: #2C5F9E;
    transition: color 0.3s ease;
}

.filter_fade {
    animation: fadeFilter 0.35s ease;
}

@keyframes fadeFilter {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.destination_grid .empty_state {
    grid-column: 1 / -1;
}

.destination_card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s ease;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
    will-change: transform;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.destination_card:active {
    transform: scale(0.98);
}

.card_image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination_card:hover .card_image img {
    transform: scale(1.08);
}

.card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.05)
    );
    z-index: 1;
    transition: all 0.3s ease;
}

.destination_card:hover .card_overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.2),
        transparent
    );
}

.card_tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 50px;
    color: #333;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.85);
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--syt-font-secondary);
}

.destination_card:hover .card_tag {
    transform: scale(1.05);
}

.card_info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    color: var(--syt-white);
    transition: all 0.3s ease;
}

.destination_card:hover .card_info {
    transform: translateY(-2px);
}

.card_info h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--syt-white);
    font-family: var(--syt-font-secondary);
}

.card_info p {
    margin: 4px 0 0;
    font-size: 13px;
    opacity: 0.95;
    color:#f1f1f1;
    font-family: var(--syt-font-secondary);
}

.destination_card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}

.fade-out {
    opacity: 0;
    transform: scale(0.98);
    transition: all 0.2s ease;
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        filter: blur(4px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes shimmer {
    0% { background-position: -500px 0; }
    100% { background-position: 500px 0; }
}

.destination_card.skeleton {
    position: relative;
}

.destination_card.skeleton .card_image {
    position: relative;
}

.skeleton_img {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    z-index: 1;
    background: linear-gradient(
        90deg,
        #f9fbfd 25%,
        #f3f6fa 37%,
        #f9fbfd 63%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite ease-in-out;
}

.destination_card.skeleton .card_overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.12),
        rgba(0, 0, 0, 0.03),
        transparent
    );
}

.destination_card.skeleton .skeleton_tag {
    position: absolute !important;
    top: 12px;
    left: 12px;
    width: 60px;
    height: 20px;
    border-radius: 50px;
    z-index: 10;
    background: linear-gradient(
        90deg,
        #f9fbfd 25%,
        #f3f6fa 37%,
        #f9fbfd 63%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite ease-in-out;
}

.destination_card.skeleton .card_info {
    position: absolute;
    bottom: 15px;
    left: 15px;

    z-index: 8;
}

.skeleton_line {
    background: linear-gradient(
        90deg,
        #f9fbfd 25%,
        #f3f6fa 37%,
        #f9fbfd 63%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite ease-in-out;
    border-radius: 6px;
}

.skeleton_title {
    width: 130px;
    height: 16px;
    margin-bottom: 6px;
}

.skeleton_price {
    width: 100px;
    height: 12px;
}

.btn_load_more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #2C5F9E, #60A5FA);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(44, 95, 158, 0.25);
    font-family: var(--syt-font-secondary);
}

.btn_load_more:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(44, 95, 158, 0.35);
}

.btn_load_more:active {
    transform: scale(0.96);
}

.btn_icon {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.btn_load_more:hover .btn_icon {
    transform: translateY(3px);
}

.empty_state {
    text-align: center;
    padding: 60px 20px;
}

.empty_state i {
    font-size: 40px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.empty_state h4 {
    font-size: 18px;
    color: #1a365d;
    margin-bottom: 6px;
}

.empty_state p {
    font-size: 14px;
    color: #64748b;
}


/* ==== MOBILE RESPONSIVE ======== */
@media (max-width: 1200px) {
    .destination_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .destination_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .destination_grid {
        grid-template-columns: 1fr;
    }

    .card_image {
        height: 240px;
    }
}

@media (max-width: 768px) {

    .destination_filters {
        margin-bottom: 15px;
    }

    .filter_chips {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 6px 4px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .filter_chips::-webkit-scrollbar {
        display: none;
    }

    .chip {
        padding: 8px 16px;
        font-size: 13px;
        flex: 0 0 auto;
    }

    .chip.active {
        box-shadow: 0 6px 16px rgba(44, 95, 158, 0.35);
    }

    .destination_filters {
        position: relative;
    }

    .destination_filters::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 30px;

        background: linear-gradient(to right, transparent, #fff);
        pointer-events: none;
    }

}