.two-wp-search-container {
    position: relative;
    width: 100%;
    margin: 10px 0;
}

#two-wp-search-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
    box-sizing: border-box;
}

#two-wp-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.two-wp-search-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.two-wp-search-item:hover {
    background: #f9f9f9;
    text-decoration: none;
}

.two-wp-search-item:last-child {
    border-bottom: none;
}

.two-wp-search-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: cover;
    border-radius: 4px;
}

.two-wp-search-item-info {
    display: flex;
    flex-direction: column;
}

.two-wp-search-item-name {
    font-weight: bold;
    font-size: 14px;
}

.two-wp-search-item-price {
    font-size: 12px;
    color: #888;
}
