/* Floating button + toast */
.apigo-push-btn{
  position:fixed;
  top:12px;
  right:14px;
  z-index:2000;
  background:#b71c1c;
  color:#fff;
  border:2px solid #b71c1c;
  border-radius:30px;
  font-weight:bold;
  font-size:13px;
  padding:8px 14px;
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  transition:all .3s;
  box-shadow:0 2px 8px rgba(0,0,0,.2);
}
.apigo-push-btn.subscribed{
  background:#fff;
  color:#b71c1c;
}
.apigo-push-toast{
  position:fixed;
  bottom:80px;
  left:50%;
  transform:translateX(-50%);
  background:#b71c1c;
  color:#fff;
  padding:12px 20px;
  border-radius:8px;
  font-weight:bold;
  opacity:0;
  transition:opacity .4s ease;
  z-index:3000;
}
.apigo-push-toast.show{opacity:1;}
@media (max-width:480px){
  .apigo-push-btn{font-size:12px;padding:7px 12px;}
}
