/* Web Push FAB + toast */
.sons-push-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #212529;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  padding: 4px 6px 4px 8px;
  font-size: 14px;
}
.sons-push-fab__main {
  background: transparent;
  border: 0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font: inherit;
}
.sons-push-fab__close {
  background: transparent;
  border: 0;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.sons-push-fab__close:hover { background: rgba(255,255,255,0.15); }

.sons-push-toast {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 2100;
  background: #212529;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.sons-push-toast--show { opacity: 1; transform: translateY(0); }
.sons-push-toast--err { background: #b02a37; }
