/* WhatsApp Widget Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  padding: 10px 20px 10px 15px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon i {
  font-size: 1.5rem;
}

.whatsapp-text {
  white-space: nowrap;
}

.whatsapp-button:hover {
  background-color: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile styles */
@media (max-width: 768px) {
  .whatsapp-button {
    padding: 10px;
    border-radius: 50%;
  }
  
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-icon {
    margin-right: 0;
  }
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-button.animate {
  animation: pulse 1s infinite;
}