.wc-helper-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.wc-helper-search-wrapper input {
    width: 100%;
    padding: 10px 16px !important;
    font-size: 16px;
    border-radius: 0.5rem !important;
    border: 1px solid #ddd !important;
}

#wc-helper-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 4px 6px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

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

.wc-helper-search-result-item:last-child {
    border-bottom: none;
}

.wc-helper-search-result-item:hover {
    background: #f9f9f9;
}

.wc-helper-search-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}

.wc-helper-search-content {
    flex: 1;
}

.wc-helper-search-title {
    font-weight: bold;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
    color: #333;
}

.wc-helper-search-category {
    font-size: 12px;
    color: #888;
    display: block;
}

.wc-helper-search-price {
    font-weight: bold;
    color: #111;
    font-size: 14px;
}

.wc-helper-search-no-results {
    padding: 15px;
    text-align: center;
    color: #666;
}

.wc-helper-search-spinner {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: wc-helper-spin 1s linear infinite;
    pointer-events: none;
}

@keyframes wc-helper-spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}
