/* Контейнер результатов */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    margin-top: 6px;
    display: none;
    z-index: 1050;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #eee;
}

/* Элемент результата */
.search-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.2s;
}

.search-item:hover {
    background: #f8f9fa;
}

/* Внутренности */
.search-item-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Картинка */
.search-item img {
    border-radius: 6px;
    object-fit: cover;
}

/* Заголовок */
.search-item .title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

/* Цена */
.search-item .price {
    font-size: 13px;
    color: #6c757d;
}

/* Подсветка */
mark {
    background: #ffe066;
    padding: 0 2px;
    border-radius: 3px;
}

/* Нет результатов */
.no-results {
    padding: 12px 15px;
    color: #999;
}

/* Скролл (опционально красиво) */
.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
