.ai-launcher{
    position:fixed;
    right:25px;
    bottom:25px;
    width:68px;
    height:68px;
    border-radius:50%;
    background:#111;
    color:#d4af37;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    cursor:pointer;
    z-index:999999;
    box-shadow:
        0 10px 40px rgba(0,0,0,.35),
        0 0 30px rgba(212,175,55,.15);
}

.ai-chat{
    position:fixed;
    right:25px;
    bottom:110px;
    width:370px;
height:475px;
    background:rgba(10,10,10,.96);
    border:1px solid rgba(212,175,55,.15);
    border-radius:32px;
    overflow:hidden;
    z-index:999999;
    display:none;
    backdrop-filter:blur(25px);
    box-shadow:
        0 25px 80px rgba(0,0,0,.55);
}

.ai-chat.active{
    display:flex;
    flex-direction:column;
}

.ai-header{
    padding:22px;
    border-bottom:1px solid rgba(255,255,255,.06);
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.ai-title{
    color:#fff;
    font-weight:700;
    font-size:18px;
}

.ai-subtitle{
    color:#999;
    font-size:13px;
    margin-top:4px;
}

.ai-close{
    background:none;
    border:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

.ai-messages{
    flex:1;
    overflow-y:auto;
    padding:20px;
}

.ai-bot-message,
.ai-user-message{
    padding:16px 18px;
    border-radius:20px;
    margin-bottom:15px;
    line-height:1.5;
}

.ai-bot-message{
    background:rgba(255,255,255,.05);
    color:#fff;
}

.ai-user-message{
    background:#d4af37;
    color:#000;
    margin-left:auto;
    width:max-content;
    max-width:85%;
}

.ai-loader{
    color:#999;
    margin-bottom:20px;
}

.ai-input-area{
    padding:20px;
    border-top:1px solid rgba(255,255,255,.06);
    display:flex;
    gap:12px;
}

#aiInput{
    flex:1;
    height:55px;
    border:none;
    border-radius:16px;
    background:rgba(255,255,255,.05);
    color:#fff;
    padding:0 16px;
    outline:none;
}

#aiSend{
    border:none;
    background:#d4af37;
    color:#000;
    padding:0 24px;
    border-radius:16px;
    font-weight:700;
}

.ai-recommendation{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.05);
    border-radius:24px;
    overflow:hidden;
    margin-bottom:20px;
}

.ai-product-image{
    width:100%;
    height:260px;
    object-fit:cover;
}

.ai-product-content{
    padding:18px;
}

.ai-product-name{
    color:#fff;
    font-weight:700;
    font-size:18px;
}

.ai-compatibility{
    color:#d4af37;
    margin:10px 0;
    font-size:14px;
}

.ai-product-message{
    color:#ccc;
    line-height:1.6;
    font-size:14px;
}

.ai-actions{
    margin-top:18px;
}

.ai-view-btn{
    display:block;
    background:#d4af37;
    color:#000;
    text-align:center;
    padding:14px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}