.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s infinite ease-in-out;
}

.whatsapp-notification {
  position: absolute;
  right: 100%;
  margin-right: 10px;
  background: #f0f2f1;
  color: #4d6157;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  white-space: normal;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
  width: 400px;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .whatsapp-notification {
    width: 250px;
    font-size: 12px;
    word-wrap: break-word;
    white-space: normal;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.whatsapp-float img {
  width: 60px;
}

