#gm-callbtn-wrapper{
    position:fixed;
    bottom:24px;
    z-index:99999;
    display:flex;
    flex-direction:column;
    align-items:flex-start
}
.gmcb-right{
    right:20px;
    left:auto
}
.gmcb-left{
    left:20px;
    right:auto
}
#gm-callbtn{
    width:var(--gm-size,56px);
    height:var(--gm-size,56px);
    border-radius:50%;
    background:var(--gm-bg,#000);
    color:var(--gm-txt,#fff);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 18px rgba(0,0,0,.2);
    cursor:pointer;
    border:none;
    transition:transform 0.2s ease;
}
#gm-callbtn:hover{
    transform:scale(1.05);
}
.gmcb-main-icon{
    color:var(--gm-txt,#fff);
    display:flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
}
.gmcb-main-icon.dashicons-phone:before{
    font-family:dashicons;
    content:"\f525";
    font-size:24px;
    display:block;
}
.gmcb-main-icon.dashicons-email-alt:before{
    font-family:dashicons;
    content:"\f465";
    font-size:24px;
    display:block;
}
.gmcb-main-icon.whatsapp-icon{
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23ffffff" d="M20.5 3.5A11.9 11.9 0 0012 .5 11.9 11.9 0 003.5 3.5 11.8 11.8 0 001.2 10.6L.1 15l4.5-1.2A11.8 11.8 0 0012 22.5 11.9 11.9 0 0020.5 10.6 11.8 11.8 0 0020.5 3.5zM12 20a8 8 0 01-4.4-1.3l-.3-.2-2.6.7.7-2.5-.2-.3A8 8 0 0112 4a8 8 0 018 8 8 8 0 01-8 8z"/></svg>');
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
    width:24px;
    height:24px;
}
.gmcb-panel{
    position:fixed;
    bottom:calc(var(--gm-size,56px) + 30px);
    z-index:99998;
    display:none
}
.gmcb-right .gmcb-panel{
    right:0;
    left:auto;
}
.gmcb-left .gmcb-panel{
    left:0;
    right:auto;
}
.gmcb-panel .gmcb-panel-inner{
    background:#fff;
    border-radius:8px;
    box-shadow:0 6px 18px rgba(0,0,0,.12);
    padding:15px;
    min-width:160px;
    margin:0 20px;
}
.gmcb-stack{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:8px
}
.gmcb-lang-button{
    padding:12px 16px;
    border-radius:6px;
    border:1px solid #e6e6e6;
    background:#f6f6f6;
    cursor:pointer;
    text-align:center;
    font-size:14px;
    font-weight:500;
    transition:all 0.2s ease;
    min-width:120px;
}
.gmcb-lang-button:hover{
    background:#e9e9e9;
    border-color:#d0d0d0;
}
.gmcb-credit{
    font-size:11px;
    color:#777;
    margin-top:10px;
    text-align:center;
}
@media (max-width:600px){
    #gm-callbtn{
        width:48px;
        height:48px;
    }
    .gmcb-main-icon{
        width:20px;
        height:20px;
    }
    .gmcb-main-icon.dashicons-phone:before,
    .gmcb-main-icon.dashicons-email-alt:before{
        font-size:20px;
    }
    .gmcb-main-icon.whatsapp-icon{
        width:20px;
        height:20px;
    }
    .gmcb-panel .gmcb-panel-inner{
        margin:0 15px;
    }
}