.sunvig-whatsapp-chat {
    position: fixed;
    right: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: var(--sunvig-whatsapp-chat-padding, 12px);
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 160ms ease, background-color 160ms ease;
}

.sunvig-whatsapp-chat:hover,
.sunvig-whatsapp-chat:focus {
    background: #1ebe5d;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.sunvig-whatsapp-chat:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.sunvig-whatsapp-chat__icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.sunvig-whatsapp-chat__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.sunvig-whatsapp-chat__label {
    color: var(--sunvig-whatsapp-chat-text-color, currentColor);
    font-family: var(--sunvig-whatsapp-chat-font-family, inherit);
    font-size: var(--sunvig-whatsapp-chat-font-size, 16px);
    font-stretch: var(--sunvig-whatsapp-chat-font-width, 100%);
    font-style: var(--sunvig-whatsapp-chat-font-style, normal);
    font-weight: var(--sunvig-whatsapp-chat-font-weight, 700);
    letter-spacing: var(--sunvig-whatsapp-chat-letter-spacing, 0);
    line-height: 1;
    text-transform: var(--sunvig-whatsapp-chat-text-transform, none);
}

@media (max-width: 480px) {
    .sunvig-whatsapp-chat {
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        padding: var(--sunvig-whatsapp-chat-mobile-padding, 5px);
    }
}
