*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

#ssc-chat-widget{
    font-family:Arial,sans-serif;
}

/* Chat Position */

.ssc-position-right #ssc-chat-button,
.ssc-position-right #ssc-chat-box{
    right:25px;
    left:auto;
}

.ssc-position-left #ssc-chat-button,
.ssc-position-left #ssc-chat-box{
    left:25px;
    right:auto;
}

#ssc-chat-button{
    position:fixed;
    bottom:25px;
    width:72px;
    height:72px;
    border:none;
    border-radius:50%;
    background:#ED1C24;
    color:#fff;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    z-index:999999;
}

#ssc-chat-box{
    position:fixed;

    right:25px;
    bottom:110px;

    width:420px;

    height:calc(100vh - 170px);
    max-height:700px;
    min-height:500px;

    background:#fff;

    border-radius:24px;

    display:none;
    flex-direction:column;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

    z-index:999999;
}

.ssc-body{
    flex:1;
    overflow-y:auto;
    padding:22px;
    background:#fafafa;
}

.ssc-header{
    background:#171717;
    color:#fff;
    padding:24px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.ssc-logo{
    font-size:22px;
    font-weight:bold;
}

.ssc-logo span{
    color:#ED1C24;
}

.ssc-tagline{
    margin-top:8px;
    color:#bbb;
    font-size:14px;
    line-height:1.5;
}

#ssc-close{
    background:none;
    border:none;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}

.ssc-body{
    flex:1;
    background:#fafafa;
    padding:22px;
    overflow:auto;
}

#ssc-messages{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.ssc-footer{
    padding:16px;
    border-top:1px solid #eee;
    display:flex;
    gap:12px;
    background:#fff;
}

#ssc-input{
    flex:1;
    height:56px;
    border:1px solid #ddd;
    border-radius:14px;
    padding:0 16px;
    font-size:16px;
}

#ssc-send{
    width:58px;
    height:56px;
    border:none;
    border-radius:14px;
    background:#ED1C24;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

@media(max-width:768px){

#ssc-chat-box{

left:10px;
right:10px;

width:auto;

bottom:90px;

height:calc(100vh - 110px);

max-height:none;

border-radius:18px;

}

#ssc-chat-button{

right:20px;
bottom:20px;

}

}


.ssc-product-list{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin:15px 0;
}

.ssc-product-btn{
    width:100%;
    border:1px solid #ddd;
    background:#fff;
    border-radius:12px;
    padding:14px 16px;
    text-align:left;
    cursor:pointer;
    transition:.3s;
}

.ssc-product-btn:hover{
    background:#ED1C24;
    color:#fff;
    border-color:#ED1C24;
}

.ssc-bot{
    max-width:80%;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:16px;
    padding:14px;
    margin-bottom:12px;
}

.ssc-user{
    max-width:80%;
    margin-left:auto;
    background:#ED1C24;
    color:#fff;
    border-radius:16px;
    padding:14px;
    margin-bottom:12px;
}