/* Desire Gym WhatsApp CTA Button CSS */

.whatsapp-cta-gym {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #000;
  color: #fff !important;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 50px;
  border: 2px solid #ff2d2d;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.whatsapp-cta-gym:hover {
  background-color: #ff2d2d;
  color: #fff;
  transform: translateY(-4px);
}

.whatsapp-icon {
  font-size: 18px;
  margin-right: 10px;
}

@media (max-width: 480px) {
  .whatsapp-text {
    display: none;
  }

  .whatsapp-cta-gym {
    padding: 14px;
    border-radius: 50%;
    justify-content: center; 
    width: 52px;            
    height: 52px;
    padding: 0;              
  }

  .whatsapp-icon {
    margin-right: 0;        
    font-size: 22px;         
  }
}