.was-search-container {
    width: 100%;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

#was-search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

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

.was-result-item {
    display: flex;
    padding: 12px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.was-result-item:hover {
    background: #f9f9f9;
}

.was-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 12px;
    border-radius: 4px;
}

.was-result-info {
    flex: 1;
    overflow: hidden;
}

.was-result-info strong {
    display: block;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.was-price {
    font-size: 13px;
    color: #666;
}

.was-no-results {
    padding: 12px;
    text-align: center;
    color: #888;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .was-result-item img {
        width: 40px;
        height: 40px;
    }
    .was-result-info strong {
        font-size: 13px;
    }
}