.wa-widget {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 9999;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 18px;
      border-radius: 999px;
      background: var(--wa-green);
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      box-shadow: var(--shadow);
      transition: transform 0.15s ease, background 0.15s ease;
    }

    body.aw-site a.wa-widget,
    body.aw-site a.wa-widget:visited {
        color: #00ac55;
    }
    

    .wa-widget:hover {
      background: var(--wa-green-dark);
      transform: translateY(-1px);
    }

    .wa-icon {
      width: 40px;
      height: 40px;
      display: inline-block;
      flex: 0 0 auto;
    }

    @media (max-width: 640px) {
      .wa-widget span {
        display: none;
      }

      .wa-widget {
        padding: 15px;
        border-radius: 50%;
      }
    }