#brands-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
}

.brand-item {
    padding: 10px 20px;
    background: #eee;
    border-radius: 4px;
    text-decoration: none;
    color: #282c57;
    transition: background 0.3s;    
}

.brand-item:hover {
    background: #ddd;
}

.brand-letters button.active {
    background: #0073aa;
    color: #fff;
}
/*
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.brands-grid .brand-item {
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}
.brands-grid .brand-item:hover {
    background: #333;
    color: #fff;
}
*/