/* Search Wizard Results Container - Vako Theme */
.search-wizard-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 8px;
    max-height: 600px;
    overflow-y: auto;
}

/* Results Inner Container */
.search-wizard-results-inner {
    padding: 16px;
}

/* Products List */
.search-wizard-products {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Product Item */
.search-wizard-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.search-wizard-item:hover {
    background-color: #f8f9fa;
}

/* Product Image */
.search-wizard-item-image {
    flex-shrink: 0;
    margin-right: 12px;
}

.search-wizard-item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

/* Product Content */
.search-wizard-item-content {
    flex: 1;
    min-width: 0;
}

.search-wizard-item-name {
    font-weight: 600;
    margin-bottom: 4px;
    color: #171D58;
}

.search-wizard-item-annotation {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 4px;
}

.search-wizard-item-price {
    font-weight: 600;
    color: #cd1a1e;
}

/* Product Actions */
.search-wizard-item-actions {
    flex-shrink: 0;
    margin-left: 12px;
}

.search-wizard-item-actions .btn {
    position: static !important;
    white-space: nowrap;
}

/* Footer */
.search-wizard-footer {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #eee;
}

.search-wizard-show-all {
    position: static !important;
    width: 100%;
}

