/* ==============================================
   DESTINATIONS PAGE STYLES
   ============================================== */

/* Filter Section */
.filter-section {
    position: relative;
    z-index: 2;
    margin-top: -30px;
    margin-bottom: var(--space-4);
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: var(--space-4) var(--space-6);
    backdrop-filter: blur(10px);
}

.filter-tabs {
    display: flex;
    gap: var(--space-1);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-muted);
    background: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.filter-tab:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.filter-tab.active {
    color: var(--white);
    background: var(--primary);
}

.filter-search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 220px;
}

.filter-search svg {
    position: absolute;
    left: var(--space-3);
    color: var(--text-muted);
    pointer-events: none;
}

.filter-search .form-input {
    padding-left: var(--space-10);
    background: var(--bg-glass);
}

/* Destination Listing */
.dest-listing .dest-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.dest-cta {
    margin-top: var(--space-3);
}

/* No Results */
.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-20);
    text-align: center;
    color: var(--text-muted);
}

.no-results svg {
    margin-bottom: var(--space-4);
    opacity: 0.5;
}

.no-results h3 {
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

/* Responsive */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-search {
        min-width: 100%;
    }
}