﻿.brand-tile {
    background: white;
    border-radius: 20px;
    aspect-ratio: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    text-align: center;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    border: 1px solid #dcd6d2;
    position: relative;
    overflow: hidden;
    color: var(--clay);
}
.brand-tile img{
    max-width: 150px;
    filter: grayscale(0.1);
}
.brands-wall {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    padding-bottom: 60px;
}

.brands-toolbar {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.brands-toolbar .filter-search {
    flex: 1;
    min-width: 240px;
    margin-bottom: 0;
}
.filter-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--white-color-100);
    border: 1px solid #dcd6d2;
    margin-bottom: 20px;
}
.filter-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font: inherit;
    font-size: 14px;
    color: var(--black-color-200);
}
.brands-category-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.brands-category-pills button {
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--white-color-100);
    font-size: 13px;
    color: var(--black-color-200);
    border: 1px solid #dcd6d2;
    transition: all .15s;
}

@media (max-width: 980px) {
    .brands-wall {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 540px) {
    .brands-wall {
        grid-template-columns: repeat(2, 1fr);
    }
}