/* AI Chat Widget - Minimal CSS */
#aiChatWidget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    font-family: Tajawal, Cairo, sans-serif;
}

#aiChatToggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e11d48, #be123c);
    border: none;
    cursor: pointer;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

#aiChatToggle:hover {
    transform: scale(1.1);
}

#aiChatWindow {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    font-family: Tajawal, Cairo, sans-serif;
}

#aiChatMsgs {
    height: 280px;
    overflow-y: auto;
    padding: 15px;
    background: #f9fafb;
}

#aiChatInput {
    flex: 1;
    padding: 10px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

#aiChatInput:focus {
    border-color: #e11d48;
}

@media (max-width: 400px) {
    #aiChatWindow {
        width: calc(100vw - 20px);
        right: 10px;
        bottom: 85px;
    }
    
    #aiChatToggle {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}