.whatsapp-popup {
    position: fixed;
    bottom: 20px;
    right: -320px;
    background-color: #33aa60; /*25D366*/
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: right 0.5s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: sans-serif;
    font-size: 16px;
  }

  .whatsapp-popup.show {
    right: 20px;
  }

  .whatsapp-popup a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }