.veniro-search-container {
    position: relative;
    max-width: 100%;
}

.veniro-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.veniro-search-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
    color: #333;
}

.veniro-search-input::placeholder {
    color: #999;
}

.veniro-search-button {
    padding: 12px 16px;
    border: none;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s ease;
}

.veniro-search-button:hover {
    color: #333;
}

.veniro-search-button svg {
    width: 16px;
    height: 16px;
}

.veniro-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.veniro-search-results.active {
    display: block;
}

.veniro-search-item {
    border-bottom: 1px solid #f0f0f0;
}

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

.veniro-search-item a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
}

.veniro-search-item a:hover {
    background-color: #f8f8f8;
}

.veniro-search-item-image {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veniro-search-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.veniro-no-image {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veniro-no-image::before {
    content: "📦";
    font-size: 20px;
    opacity: 0.5;
}

.veniro-search-item-content {
    flex: 1;
}

.veniro-search-item-content h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
}

.veniro-search-item-price {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.veniro-search-no-results {
    padding: 16px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.veniro-search-loading {
    padding: 16px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .veniro-search-input {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .veniro-search-button {
        padding: 10px 12px;
    }
    
    .veniro-search-item a {
        padding: 10px 12px;
    }
    
    .veniro-search-item-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
}