.phlct-floating-buttons{
    position:fixed;
    bottom:20px;
    z-index:99999;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.phlct-pos-right{right:20px;}
.phlct-pos-left{left:20px;}
.phlct-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:170px;
    padding:12px 18px;
    border-radius:999px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 8px 18px rgba(0,0,0,.18);
    transition:transform .2s ease, opacity .2s ease;
}
.phlct-btn:hover{
    transform:translateY(-2px);
    opacity:.95;
    color:#fff;
}
.phlct-phone{background:#1f4ea3;}
.phlct-whatsapp{background:#25d366;}
.phlct-inline-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
@media (max-width: 767px){
    .phlct-hide-mobile{display:none!important;}
    .phlct-btn{
        min-width:150px;
        padding:11px 16px;
        font-size:14px;
    }
}
@media (min-width: 768px){
    .phlct-hide-desktop{display:none!important;}
}
