.brand-filter-wrapper {
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    margin-top: 20px;
}
.product-item {
    border: 1px solid #eee;
    padding: 15px;
    background: #fff;
    text-align: center;
}
.product-item img {
    max-width: 100%;
    height: auto;
}
