#lvs-ajax-search {
    position: relative;
    width: 290px;
}

#lvs-search-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

#lvs-search-results {
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 6px;
    padding: 6px 0;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    display: none;
    z-index: 99999;
}

.lvs-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #f2f2f2;
}

.lvs-item:last-child {
    border-bottom: none;
}

.lvs-item:hover {
    background: #fafafa;
}

.lvs-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.lvs-info .lvs-title {
    font-size: 14px;
    font-weight: 500;
}

.lvs-info .lvs-price {
    font-size: 13px;
    color: #009900;
    margin-top: 2px;
}

.no-results {
    text-align: center;
    padding: 12px;
    color: #888;
}
