.hhwb-whatsapp-button-container {
  position: fixed;
  bottom: 80px; /* Position above footer menu */
  z-index: 9999;
}

.hhwb-right {
  right: 20px;
}

.hhwb-left {
  left: 20px;
}

.hhwb-whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.hhwb-whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.hhwb-whatsapp-button svg {
  width: 60%;
  height: 60%;
}

/* Pulse animation */
.hhwb-whatsapp-button {
  animation: hhwb-pulse 2s infinite;
}

@keyframes hhwb-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  .hhwb-whatsapp-button-container {
    bottom: 70px; /* Adjust for mobile footer */
  }

  .hhwb-whatsapp-button {
    width: 50px;
    height: 50px;
  }

  .hhwb-hide-on-mobile {
    display: none;
  }
}

