.header-brands {
    background-color: #000;
}

.header-brands .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 9px;
    padding: 7px 14px 10px 15px;
}

.header-brands .container a {
    display: block;
    padding: 12px 16px;
    background-color: #8C0014;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #8C0014;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-brands .container a:hover {
    background-color: #000;
    color: white;
    border-color: #8C0014;
    text-decoration: none !important;
}

@media screen and (max-width: 768px) {
    .header-brands {
        display: none;
    }
}

.all-brands-link {
    position: relative;
    padding-right: 28px !important; /* место для стрелки */
}

.all-brands-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-right: 2px solid white;
    border-top: 2px solid white;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}