.wolt-search-wrapper {
    position: relative;
    max-width: 500px;
	max-width: 550px;
    width: 100%;
    text-align: left;
    margin: 0 auto;
    box-sizing: border-box;
    align-items: center;
}

#wolt-search-input {
    width: 100%;
    padding: 0.3rem 0.8rem;
    font-size: 14px;
    min-height: 35px;
    line-height: 35px;
    margin: 0;
    border-radius: 4px;
    border: 1px solid #e7f5ff;
	box-sizing: border-box;
}

#wolt-search-results {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #e7f5ff;
    z-index: 999;
}


.wolt-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #000;
}

.wolt-item:hover {
    background: #f6f6f6;
}

.wolt-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.wolt-hint,
.wolt-no-result {
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    color: #777;
    font-size: 14px;
}

.wolt-search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #777;
    pointer-events: none; /* click passes to input */
}

#wolt-search-results .wolt-see-more
{
	color: #666;
    background: #eee;
    justify-content: center;
    display: flex;
    cursor: pointer;
    padding: 0.5rem;
    overflow: hidden;
    width: 100%;
}