.woo-ajax-search-form {
    position: relative;
    width: 100%;
}

.woo-ajax-search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.woo-ajax-results {
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    display: none;
    z-index: 999999;
    max-height: 350px;
    overflow-y: auto;
}

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

.result-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
}

.result-item:hover {
    background: #f5f5f5;
}

.title {
    font-weight: 600;
}

.sku {
    font-size: 12px;
    color: #777;
}

.no-result {
    padding: 10px;
    color: #666;
}
