.product-filter {
    margin-bottom: 30px;
}

.filter-container {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.filter-group ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-group li {
    margin: 0;
}

.filter-group li a {
    display: inline-block;
    padding: 6px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.filter-group li.active a {
    background: #e67817;
    border-color: #e67817;
    color: #fff;
}

.filter-group li:not(.active) a:hover {
    background: #f0f0f0;
    border-color: #ccc;
    color: #e67817;
}

.filter-group li.disabled a {
    background: #f5f5f5;
    border-color: #eee;
    color: #ccc;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .filter-container {
        padding: 15px;
    }
    
    .filter-group h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .filter-group li a {
        padding: 5px 12px;
        font-size: 14px;
    }
}

.filter-group.capacity-filter ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-group.capacity-filter li a {
    padding: 4px 12px;
    min-width: 60px;
    text-align: center;
}

.filter-reset {
    margin-top: 20px;
    text-align: center;
}

.reset-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reset-button:hover {
    background-color: #e0e0e0;
    color: #e67817;
    border-color: #ccc;
}

@media (max-width: 768px) {
    .filter-reset {
        margin-top: 15px;
    }
    
    .reset-button {
        padding: 6px 14px;
        font-size: 14px;
    }
}