.wa-chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }
  
  .wa-icon {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 50%;
    background-color: #25D366;
    padding: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }
  
  .wa-icon:hover {
    transform: scale(1.1);
  }
  
  .wa-chat-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: #fff;
    border-radius: 10px;
    width: 260px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .wa-chat-container:hover .wa-chat-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .wa-chat-body {
    padding: 15px;
    font-size: 14px;
    color: #333;
  }
  
  .wa-chat-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
    border-radius: 0 0 10px 10px;
  }
  
  .wa-chat-button img {
    margin-right: 8px;
  }