.ch-dashboard-fab {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 9500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 152px;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: linear-gradient(135deg, #e91e63, #ff4f8b);
  box-shadow: 0 10px 28px rgba(134, 20, 70, 0.28);
  color: #fff;
  font: 700 13px/1.2 "Poppins", "Segoe UI", Arial, sans-serif;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.ch-dashboard-fab[hidden] {
  display: none !important;
}

.ch-dashboard-fab:hover,
.ch-dashboard-fab:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(134, 20, 70, 0.34);
}

.ch-dashboard-fab:focus-visible {
  outline: 3px solid rgba(233, 30, 99, 0.3);
  outline-offset: 3px;
}

.ch-dashboard-fab svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

@media (max-width: 520px) {
  .ch-dashboard-fab {
    min-width: 0;
    min-height: 44px;
    padding: 9px 14px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ch-dashboard-fab {
    transition: none;
  }
}
