/* Staly link do grupy Facebook — zawsze widoczny */
.fb-group-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 11000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1877f2;
  color: #fff !important;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 10px 28px rgba(24, 119, 242, 0.42);
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.fb-group-float:hover {
  background: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(24, 119, 242, 0.5);
}
.fb-group-float:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 3px;
}
.fb-group-float__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.fb-group-float__text { white-space: nowrap; }
@media (max-width: 480px) {
  .fb-group-float {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    padding: 11px 14px;
    font-size: 0.84rem;
    gap: 8px;
  }
  .fb-group-float__icon { width: 20px; height: 20px; }
}
