/* ================= FLOATING CHAT BUTTON ================= */
.floating-chat-btn{
  position:fixed;
  right:18px;
  bottom:90px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:linear-gradient(180deg,#f5c542,#c99618);
  box-shadow:0 0 28px rgba(245,197,66,.85);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9998; /* chat se thora kam */
  cursor:pointer;
}

.floating-chat-btn img{
  width:30px;
}

.floating-chat-btn::after{
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:rgba(245,197,66,.4);
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);opacity:.7}
  100%{transform:scale(1.6);opacity:0}
}
