/* Filter Panel Styles */
.filter-form {
    padding: 0 10px;
}

.filter-group {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.filter-group:last-of-type {
    border-bottom: none;
}

.filter-label {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.filter-checkbox {
    display: block;
    padding: 4px 0;
    cursor: pointer;
    font-size: 13px;
    color: #ccc;
    transition: color 0.2s;
}

.filter-checkbox:hover {
    color: #fff;
}

.filter-checkbox input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #ff3366;
}

.filter-btn {
    width: 100%;
    padding: 10px;
    background: #ff3366;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    margin-top: 5px;
    transition: background 0.2s;
}

.filter-btn:hover {
    background: #e62e5c;
}

.filter-clear {
    display: block;
    text-align: center;
    padding: 8px;
    color: #999;
    font-size: 12px;
    text-decoration: underline;
    margin-top: 8px;
}

.filter-clear:hover {
    color: #fff;
}
