.pt-ai-search-results {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    z-index: 999999 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
    max-height: 400px;
    overflow-y: auto;
    text-align: left;
}

.pt-ai-search-results.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pt-ai-search-results::-webkit-scrollbar {
    width: 6px;
}
.pt-ai-search-results::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 0 8px 8px 0;
}
.pt-ai-search-results::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 8px;
}
.pt-ai-search-results::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.pt-ai-search-results ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pt-ai-search-results li {
    border-bottom: 1px solid #f1f5f9;
    margin: 0 !important;
    padding: 0 !important;
}

.pt-ai-search-results li:last-child {
    border-bottom: none;
}

.pt-ai-search-results a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none !important;
    color: #1e293b;
    transition: background-color 0.2s ease;
}

.pt-ai-search-results a:hover {
    background-color: #f8fafc;
}

.pt-ai-search-results img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 14px;
    border: 1px solid #f1f5f9;
}

.pt-ai-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.pt-ai-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 4px;
    white-align: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #0f172a;
}

.pt-ai-price {
    font-size: 14px;
    color: #059669;
    font-weight: 700;
}

.pt-ai-price del {
    color: #94a3b8;
    font-weight: 400;
    font-size: 12px;
    margin-right: 6px;
}

.pt-ai-price ins {
    text-decoration: none;
}

.pt-ai-message {
    padding: 16px;
    font-size: 14px;
    color: #64748b;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pt-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #e2e8f0;
    border-top-color: #059669;
    border-radius: 50%;
    animation: pt-spin 0.8s linear infinite;
}

@keyframes pt-spin {
    to { transform: rotate(360deg); }
}
