.ultrawelle-popup-launcher {
    --uw-cyan: #007587;
    --uw-cyan-light: #0ea5a5;
    --uw-text: #102c31;
    display: block;
    width: 100%;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ultrawelle-popup-button {
    appearance: none;
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 10px 18px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--uw-cyan), var(--uw-cyan-light));
    color: #fff;
    box-shadow: 0 12px 28px rgba(0,117,135,.26);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: transform .18s ease, box-shadow .18s ease;
}

.ultrawelle-popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0,117,135,.32);
}

.ultrawelle-popup-button:focus-visible {
    outline: 3px solid rgba(14,165,165,.35);
    outline-offset: 3px;
}

.ultrawelle-popup-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    font-size: 17px;
}

.ultrawelle-popup-copy strong {
    display: block;
    font-size: 16px;
    line-height: 1.2;
}

.ultrawelle-popup-copy small {
    display: block;
    margin-top: 3px;
    opacity: .82;
    font-size: 11px;
}

.ultrawelle-popup-launcher.is-floating {
    position: fixed;
    z-index: 99990;
    right: 22px;
    bottom: 22px;
    width: min(230px, calc(100vw - 44px));
}

.ultrawelle-popup-launcher.is-floating .ultrawelle-popup-button {
    min-height: 60px;
    border-radius: 16px;
}

@media (max-width: 480px) {
    .ultrawelle-popup-launcher.is-floating {
        right: 14px;
        bottom: 14px;
        width: min(220px, calc(100vw - 28px));
    }
}
