.wa-pill {
    position: fixed;
    bottom: 29px;
    right: 29px;
    z-index: 9999;

    display: flex;
    align-items: center;

    height: 46px;
    padding: 0 14px;

    border-radius: 999px;
    background: #25D366;
    color: #fff;
    text-decoration: none;

    overflow: hidden;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;

    font-family: system-ui, -apple-system, sans-serif;
}

.wa-pill i {
    font-size: 22px;
    flex-shrink: 0;
    color: #fff;
}

.wa-pill .label {
    max-width: 0;
    opacity: 0;
    margin-left: 0;
    overflow: hidden;
    white-space: nowrap;

    transition:
            max-width 0.3s ease,
            opacity 0.2s ease,
            margin-left 0.3s ease;

    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* Desktop Hover */
@media (hover: hover) {
    .wa-pill:hover .label {
        max-width: 200px;
        opacity: 1;
        margin-left: 9px;
        color: #fff;
    }

    .wa-pill:hover {
        color: #fff;
    }
}

/* Mobile: Text immer sichtbar */
@media (max-width: 768px) {
    .wa-pill .label {
        max-width: 200px;
        opacity: 1;
        margin-left: 9px;
        color: #fff;
    }

    .wa-pill {
        bottom: 80px;
        right: 14px;
    }
}