.wa-floating-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center; /* Centers content for when it becomes a circle */
  gap: 10px;
  background-color: #25D366; 
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.wa-floating-widget:hover {
  background-color: #128C7E; 
  transform: translateY(-4px);
  color: white;
}

/* 📱 Standard Mobile Devices (Phones) */
@media (max-width: 768px) {
  .wa-floating-widget {
    bottom: 15px;
    right: 15px;
    padding: 0;
    width: 60px; /* Hardcoded width creates a perfect circle */
    height: 60px; /* Hardcoded height matches width */
    border-radius: 50%;
  }
  
  .wa-floating-widget svg {
    width: 30px;
    height: 30px;
    margin: 0;
  }
  
  .wa-text {
    display: none; /* Hides the text completely */
  }
}

/* ⌚ Ultra-Small Screens (Smartwatches or very small phones) */
@media (max-width: 360px) {
  .wa-floating-widget {
    bottom: 10px;
    right: 10px;
    width: 50px; /* Scales the circle down further */
    height: 50px;
  }
  
  .wa-floating-widget svg {
    width: 26px;
    height: 26px;
  }
}