.brand-filter ul.brand-grid {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.brand-filter ul.brand-grid li.brand-item {
    flex: 1 1 calc(25% - 20px);
    margin: 10px;
    text-align: center;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.brand-filter ul.brand-grid li.brand-item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px auto;
}

.brand-filter ul.brand-grid li.brand-item p {
    margin-top: 5px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.brand-filter ul.brand-grid li.brand-item img {
    transition: transform 0.3s ease;
}

.brand-filter ul.brand-grid li.brand-item:hover img {
    transform: scale(1.1);
}

.brand-filter ul.brand-grid li.brand-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}