.px-floating-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(16, 16, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  z-index: 9;
}

.px-floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

.px-floating-cta .pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--px-primary);
  box-shadow: 0 0 0 0 rgba(106, 0, 255, 0.35);
}

@media (max-width: 480px) {
  .px-floating-cta {
    bottom: 12px;
    width: calc(100% - 24px);
    justify-content: center;
  }
}
