.brands-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #dfe3ea;
    border-radius: 12px;
    padding: 10px 12px;
}

.brands-search:focus-within {
    border-color: #7c9ef8;
    box-shadow: 0 0 0 3px rgba(124, 158, 248, 0.15);
}

.brands-search__icon {
    color: #7f8b9d;
    flex-shrink: 0;
}

.brands-search__input {
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
    font-size: 15px;
    color: #1f2937;
}

.brands-search__input::placeholder {
    color: #9aa4b2;
}

.brands-search__clear {
    border: none;
    background: #eef2f7;
    color: #6c788a;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.brands-search__clear.is-visible {
    display: inline-flex;
}

.brands-no-results {
    display: grid;
    grid-column: 1 / -1;
    min-height: clamp(8.75rem, 18vw, 18rem);
    padding: 16px;
    border: 1px dashed #d5dbe4;
    border-radius: 12px;
    background: #fff;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.35;
    text-align: center;
    align-content: center;
}
