.whatsapp-widget {
  position: fixed;
  z-index: 9999;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  background-color: #25D366;
}

.whatsapp-widget:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* All four corner positions */
.whatsapp-widget-bottom-left { left: 20px; bottom: 20px; }
.whatsapp-widget-bottom-right { right: 20px; bottom: 20px; }
.whatsapp-widget-top-left { left: 20px; top: 20px; }
.wh.whatsapp-widget {
  position: fixed;
  z-index: 9999;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  background-color: #25D366;
}

.whatsapp-widget:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* All four corner positions */
.whatsapp-widget-bottom-left { left: 20px; bottom: 20px; }
.whatsapp-widget-bottom-right { right: 20px; bottom: 20px; }
.whatsapp-widget-top-left { left: 20px; top: 20px; }
.whatsapp-widget-top-right { right: 20px; top: 20px; }

.whatsapp-icon {
  width: 60%;
  height: 60%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.pulse-animation {
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

.hide-on-mobile {
  display: flex;
}

/* Responsive tweaks */
@media (max-width: 568px) {
  .whatsapp-widget-bottom-left { left: 15px; bottom: 15px; }
  .whatsapp-widget-bottom-right { right: 15px; bottom: 15px; }
  .whatsapp-widget-top-left { left: 15px; top: 15px; }
  .whatsapp-widget-top-right { right: 15px; top: 15px; }
  
  /* Hide widget on mobile when showOnMobile is false */
  .hide-on-mobile { 
    display: none; 
  }
}