/* Active Filters Styling */
.active-filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(234, 179, 8, 0.15);
    color: var(--accent);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.filter-tag:hover {
    background: rgba(234, 179, 8, 0.25);
}

.filter-tag-close {
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.7;
}

.filter-tag-close:hover {
    opacity: 1;
}

/* Sidebar Apply Button */
#apply-filters-btn {
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

#apply-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.5);
}