/* chat section */
.chat-toggle{
    position:fixed;
    bottom:30px;
    right:30px;
    width:70px;
    height:70px;
    border:none;
    border-radius:50%;
    background:#e0c07a;
    font-size:28px;
    cursor:pointer;
    box-shadow:0 0 20px rgba(224,192,122,.5);
    z-index:1000;
}

.chat-window{
    position:fixed;
    bottom:110px;
    right:30px;
    width:350px;
    background:#111;
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    overflow:hidden;
    display:none;
    z-index:1000;
}

.chat-header{
    background:#e0c07a;
    color:black;
    padding:18px;
    font-weight:bold;
}

.chat-header{
    display:flex;
    align-items:center;
    gap:15px;
    background :#111;
    color: white ;
    padding:18px;
}

.assistant-avatar {
    width:50px;
    height:50px;
    border-radius:50%;
    overflow:hidden;
    border:2px solid #e0c07a;
}

.assistant-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.chat-toggle img{
    width:70px;
    height: 70px;
    object-fit: contain;
}

.chat-header h4{
    margin:0;
    font-size:16px;
    color:white;
}

.chat-header small{
    color:#aaa;
    font-size:12px;
}

.chat-body{
    padding:20px;
    height: 250px;
}

.bot-message{
    background:#222;
    color:white;
    padding:15px;
    border-radius:15px;
    width:fit-content;
}

.chat-input{
    display:flex;
    border-top:1px solid rgba(255,255,255,.1)
}

.chat-input input{
    flex:1;
    background:#111;
    border:none;
    color:white;
    padding:15px;
}

.chat-input button{
    width:60px;
    background:#e0c07a;
    border:none;
    cursor:pointer;
}

.chat-input button:hover{
    background:#d4b56d;
}