/* ===== FILTERS STYLES - GTA VI STYLE ===== */

/* Filters Section */
.filters-section {
    background: #ffffff;
    border-radius: 0.5vw;
    padding: 1.2vw 1.5vw;
    margin-bottom: 1.5vw;
    border: 0.069vw solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 0.138vw 0.552vw rgba(0, 0, 0, 0.03);
    position: relative;
}

.filters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.2vw;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.filter-label {
    font-size: 0.7vw;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.35vw;
    text-transform: uppercase;
    letter-spacing: 0.04vw;
}

.filter-label i,
.filter-label .lucide-icon,
.filter-label [data-lucide] {
    color: #6366F1;
    width: 0.8vw;
    height: 0.8vw;
}

.custom-select {
    position: relative;
    width: 100%;
}

.select-selected {
    padding: 0.6vw 0.9vw;
    border: 0.069vw solid rgba(0, 0, 0, 0.08);
    background: #fafafa;
    color: #1e293b;
    border-radius: 0.35vw;
    font-size: 0.75vw;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select-selected:hover {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.03);
}

.select-selected::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6vw;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.select-selected.active {
    border-color: #6366F1;
    box-shadow: 0 0 0 0.207vw rgba(99, 102, 241, 0.1);
}

.select-selected.active::after {
    transform: rotate(180deg);
}

.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 0.069vw solid rgba(0, 0, 0, 0.1);
    border-radius: 0.35vw;
    box-shadow: 0 0.552vw 1.657vw rgba(0, 0, 0, 0.12);
    z-index: 1000;
    display: none;
    margin-top: 0.3vw;
    max-height: 18vw;
    overflow-y: auto;
}

.select-items.active {
    display: block;
    animation: fadeInUp 0.2s ease;
}

.select-item {
    padding: 0.6vw 0.9vw;
    font-size: 0.75vw;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.15s ease;
    border-bottom: 0.069vw solid rgba(0, 0, 0, 0.04);
}

.select-item:last-child {
    border-bottom: none;
}

.select-item:hover {
    background: rgba(99, 102, 241, 0.08);
    color: #6366F1;
}

.select-item.selected {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.05));
    color: #6366F1;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-0.3vw);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Results Section */
.results-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1vw;
    border-top: 0.069vw solid rgba(0, 0, 0, 0.06);
    margin-top: 1vw;
}

.results-count {
    font-size: 0.75vw;
    font-weight: 500;
    color: #64748b;
}

.results-count strong {
    color: #6366F1;
    font-weight: 700;
}
