#search-suggestions {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border: 1px solid #ddd;
    max-height: 460px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}
.suggestion-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: background .2s;
}
.suggestion-item.selected,
.suggestion-item:hover {
    background: #ececec;
}
.suggestion-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}
.suggestion-text {
    display: flex;
    flex-direction: column;
}
.product-name { color: #000; font-size: 1.6rem; margin-bottom: 2px; }
.category-name{ color: #777; font-size: 1.3rem; }