.brands-section {
    padding: 3rem 0;
    background: #fff;
}

.brands .section-title {
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
}

.brands-seo-text {
    max-width: 980px;
    color: rgba(17, 24, 39, 0.85);
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.25rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.brand-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.brand-tag:hover,
.brand-tag:focus {
    border-color: var(--cookie-primary, var(--color-green, rgb(42, 192, 164)));
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
    transform: translateY(-1px);
}

