.tpot-floating-contact{
position:fixed;
right:22px;
bottom:22px;
z-index:999999;
}

.tpot-floating-main{
width:62px;
height:62px;
border:0;
border-radius:50%;
display:grid;
place-items:center;
cursor:pointer;
font-size:28px;
font-weight:900;
color:#120d05;
background:linear-gradient(135deg,#f5c35b,#b8872f);
box-shadow:0 14px 42px rgba(245,195,91,.35);
}

.tpot-floating-menu{
position:absolute;
right:0;
bottom:76px;
display:none;
grid-template-columns:repeat(2,54px);
gap:12px;
padding:14px;
border-radius:22px;
background:rgba(8,7,5,.96);
border:1px solid rgba(245,195,91,.32);
box-shadow:0 20px 70px rgba(0,0,0,.70);
}

.tpot-floating-contact.open .tpot-floating-menu{
display:grid;
}

.tpot-floating-menu a{
width:54px;
height:54px;
display:flex;
align-items:center;
justify-content:center;
border-radius:16px;
background:rgba(245,195,91,.10);
border:1px solid rgba(245,195,91,.24);
transition:.2s;
}

.tpot-floating-menu a:hover{
transform:translateY(-2px);
background:linear-gradient(135deg,#f5c35b,#8a5f1f);
}

.tpot-floating-menu img{
width:36px;
height:36px;
object-fit:contain;
display:block;
}

@media(max-width:700px){
.tpot-floating-contact{
right:16px;
bottom:16px;
}
}
