
  .wa-widget{
    position: fixed !important;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: Poppins, Arial, sans-serif;
  }

  .wa-fab{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #25D366;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    display: grid;
    place-items: center;
  }
  .wa-fab svg{ width: 28px; height: 28px; fill: #fff; }

  .wa-popup{
    width: 320px;
    height: 275px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: .2s ease;
  }
  .wa-popup.open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .wa-popup-header{
    background:#05043E;
    color: #fff;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }
  .wa-title{ font-weight: 600; font-size: 14px; }
  .wa-subtitle{ font-size: 12px; opacity: .9; margin-top: 2px; }

  .wa-close{
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
  }

  .wa-popup-body{ padding: 12px 14px; }
  .wa-agent{
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f6f7f8;
    margin-top: 20px;
    padding: 10px;
    border-radius: 12px;
    position: relative;
  }
  .wa-avatar{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
  }
  .wa-agent-name{ font-weight: 600; font-size: 13px; }
  .wa-agent-msg{ font-size: 12px; opacity: .8; margin-top: 2px; }

  .wa-online{
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 12px;
    color: #1dbf73;
  }
  .wa-agent-info{
    margin-top: 20px;
  }

  .wa-cta{
    width: 100%;
    margin-top: 50px;
    border: none;
    background: #25D366;
    color: #fff;
    padding: 12px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .wa-arrow{ opacity: .9; }

