/* ================================
   WP Stealth Chat — Floating Bubble
   ================================ */

#wpsc-chat-bubble {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--wpsc-accent, #0078ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 100000;
  transition: all 0.25s ease;
}

/* Hover effect */
#wpsc-chat-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

/* When active (chat open) */
#wpsc-chat-bubble.active {
  background-color: #444;
}

/* Optional animation for attention */
@keyframes wpsc-bubble-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,120,255,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(0,120,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,120,255,0); }
}

#wpsc-chat-bubble.pulse {
  animation: wpsc-bubble-pulse 2s infinite;
}
