/* Bouton WhatsApp Fixe */
.phone-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.phone-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.phone-button i {
  font-size: 24px;
  color: white;
}

.phone-button span {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .phone-button {
    bottom: 10px;
    right: 10px;
    padding: 12px 25px;
    gap: 8px;
  }
  
  .phone-button i {
    font-size: 20px;
  }
  
  .phone-button span {
    font-size: 14px;
  }
}
