#tdp-chatbot-toggle{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#e01076;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:9999;
}

#tdp-chatbot-window{
    position:fixed;
    bottom:90px;
    right:20px;
    width:380px;
    max-width:95%;
    height:450px;
    background:#fff;
    border-radius:20px;
    display:none;
    flex-direction:column;
    box-shadow:0 10px 40px rgba(0,0,0,.15);
    overflow:hidden;
    z-index:9999;
}

#tdp-chatbot-window.active{
    display:flex;
}

.tdp-chat-header{
    background:#111;
    color:#fff;
    padding:15px;
    font-weight:bold;
}

.tdp-chat-messages{
    flex:1;
    overflow-y:auto;
    padding:15px;
    background:#f7f7f7;
}

.tdp-chat-footer{
    display:flex;
    gap:10px;
    padding:15px;
}

.tdp-chat-input{
    flex: 1;
    padding: 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    color: #000000 !important;
}

.tdp-send-btn{
    background:#111!important;
    color:#fff!important;
    border:none!important;
    padding:12px!important;
    border-radius:10px!important;
    cursor:pointer!important;
}

.tdp-product-card{
    display:flex;
    gap:12px;
    background:#fff;
    border-radius:16px;
    padding:12px;
    margin-bottom:15px;
}

.tdp-product-image{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:12px;
}

.tdp-product-title{
    font-weight:bold;
}

.tdp-product-price{
    color:#0a7;
    margin-top:5px;
}

.tdp-product-buttons{
    display:flex;
    gap:10px;
    margin-top:10px;
}

.tdp-btn-view,
.tdp-btn-cart{
    padding:10px;
    border-radius:10px;
    text-decoration:none;
}

.tdp-btn-view{
    background:#eee;
    color:#111;
}

.tdp-btn-cart{
    background:#111;
    color:#fff;
}

@media(max-width:768px){

    #tdp-chatbot-window{
        width:95%;
        right:2.5%;
        height:85vh;
    }
}