#ai-chat-icon {
    position: fixed;
    right: 25px;
    bottom: 105px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
    font-size: 30px;
    transition: .3s;
    background: linear-gradient( 135deg, #14B8A6, #F97316 );
    box-shadow: 0 0 20px rgba(20,184,166,.5), 0 0 40px rgba(249,115,22,.35);
}

    #ai-chat-icon:hover {
        transform: scale(1.08);
        box-shadow: 0 0 25px rgba(20,184,166,.6), 0 0 45px rgba(249,115,22,.5);
    }

#ai-chat-container {
    position: fixed;
    right: 25px;
    bottom: 90px;
    width: 360px;
    max-width: calc(100vw - 40px);
    height: auto;
    max-height: calc(100vh - 120px);
    display: none;
    overflow-y: auto;
    z-index: 99999;
    border-radius: 24px;
    background: linear-gradient( 180deg, rgba(20,184,166,.15), rgba(249,115,22,.08) );
    backdrop-filter: blur(25px);
    border: 1px solid rgba(20,184,166,.25);
    box-shadow: 0 20px 60px rgba(20,184,166,.15), 0 20px 60px rgba(249,115,22,.10);
}

.ai-header {
    padding: 18px;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient( 135deg, #14B8A6, #F97316);
}

#close-ai-chat {
    color: #FFFFFF;
    cursor: pointer;
    font-size: 22px;
    transition: .3s;
}

    #close-ai-chat:hover {
        transform: rotate(90deg);
    }

#ai-chat-body {
    height: 250px;
    overflow-y: auto;
    padding: 18px;
    background: linear-gradient( 180deg, #0F172A, #111827 );
}

    #ai-chat-body::-webkit-scrollbar {
        width: 6px;
    }

    #ai-chat-body::-webkit-scrollbar-thumb {
        background: #F97316;
        border-radius: 20px;
    }

.ai-message {
    background: rgba(20,184,166,.10);
    color: #FFFFFF;
    padding: 14px;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(20,184,166,.20);
    line-height: 1.6;
}

.user-msg {
    background: linear-gradient( 135deg, #14B8A6, #F97316 );
    color: white;
    padding: 14px;
    border-radius: 16px;
    margin-bottom: 12px;
    text-align: right;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(249,115,22,.25);
}

.ai-options {
    padding: 15px;
    background: rgba(255,255,255,.03);
    border-top: 1px solid rgba(20,184,166,.15);
}

    .ai-options button {
        width: 100%;
        margin-bottom: 10px;
        border: none;
        padding: 12px;
        border-radius: 14px;
        cursor: pointer;
        color: #FFFFFF;
        font-weight: 600;
        background: rgba(20,184,166,.10);
        border: 1px solid rgba(20,184,166,.15);
        transition: .3s;
    }

        .ai-options button:hover {
            background: linear-gradient( 135deg, #14B8A6, #F97316 );
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(249,115,22,.25);
        }
