/* Выпадающие подсказки */
.av-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 6px;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999;
    max-height: 280px;
    overflow-y: auto;
    display: none;
    /* важные улучшения: */
    min-width: 100%;
    box-sizing: border-box;
}
.av-suggestions .av-suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.av-suggestions .av-suggestion-item:hover {
    background: #f5f7fb;
}
.av-suggestions .av-suggestion-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Чтобы контейнер поля не обрезал выпадашку */
#av-brand-input, #av-model-input {
    position: relative;
}
.at2-eval-body form {
    overflow: visible; /* отменяем возможное скрытие */
}