#wa-widget-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}

#wa-widget-btn:hover {
    transform: scale(1.08);
}

#wa-widget-btn svg {
    width: 32px;
    height: 32px;
}

#wa-widget-popup {
    position: fixed;
    bottom: 86px;
    right: 20px;
    z-index: 99999;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
    overflow: hidden;
    display: none;
    min-width: 220px;
}

#wa-widget-popup a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    text-decoration: none;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    transition: background .15s;
}

#wa-widget-popup a:hover {
    background: #f5f5f5;
}

#wa-widget-popup a svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

#wa-widget-popup .wa-divider {
    height: 1px;
    background: #eee;
    margin: 0;
}

body.fullscreen #wa-widget-btn,
body.fullscreen #wa-widget-popup {
    display: none !important;
}
