/**
 * Pixel Media Services - Floating WhatsApp Button Stylesheet
 */

.pms-floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99990;
  display: flex;
  align-items: center;
}

.whatsapp-btn-bubble {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.whatsapp-btn-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.whatsapp-tooltip-text {
  position: absolute;
  right: 66px;
  background-color: #0f172a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.whatsapp-btn-bubble:hover .whatsapp-tooltip-text {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .pms-floating-whatsapp {
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-tooltip-text {
    display: none;
  }
}
