#ask-ai-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.ask-ai-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.ask-ai-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.ai-btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.ask-ai-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.ask-ai-popup-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #e5e7eb;
}

.popup-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    font-family: 'SF Pro Display';
    font-weight: 400;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 12px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.close-btn:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.ai-list {
    padding: 6px 10px;
}

.ai-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 11px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 3px;
}

.ai-item:last-child {
    margin-bottom: 0;
}

.ai-item:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.ai-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
}

.ai-item span {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #ask-ai-widget-container {
        bottom: 15px;
        right: 15px;
    }
    
    .ask-ai-popup {
        width: 230px;
    }
    
    .ask-ai-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}