.nl-whatsapp-float {
    position: fixed;
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: max(24px, env(safe-area-inset-bottom, 0px));
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.nl-whatsapp-float:hover {
    color: #fff;
    background: #1ebe57;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nl-whatsapp-float:active {
    transform: scale(0.98);
}

.nl-whatsapp-float__icon {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .nl-public-with-bottom-nav .nl-whatsapp-float {
        bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    }

    .nl-whatsapp-float {
        width: 52px;
        height: 52px;
        right: max(12px, env(safe-area-inset-right, 0px));
    }

    .nl-whatsapp-float__icon {
        width: 26px;
        height: 26px;
    }
}
