/* =================================
   GLOBAL WHATSAPP BUTONU
================================= */

.nlm-global-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    height: 58px;
    min-width: 58px;
    padding: 0 18px;

    background: #25d366;
    color: #ffffff !important;
    border-radius: 50px;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.nlm-global-whatsapp:hover {
    background: #1ebe5d;
    color: #ffffff !important;
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.4);
}

.nlm-global-whatsapp:active {
    transform: scale(0.96);
}

.nlm-global-whatsapp svg {
    width: 29px;
    height: 29px;
    display: block;
    fill: currentColor;
    flex-shrink: 0;
}

.nlm-global-whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    border: 2px solid rgba(37, 211, 102, 0.6);
    border-radius: inherit;

    pointer-events: none;
    animation: nlmWhatsappPulse 2s infinite;
}

@keyframes nlmWhatsappPulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

@media (max-width: 768px) {
    .nlm-global-whatsapp {
        right: 16px;
        bottom: 16px;

        width: 56px;
        min-width: 56px;
        height: 56px;
        padding: 0;

        border-radius: 50%;
    }

    .nlm-global-whatsapp-text {
        display: none;
    }

    .nlm-global-whatsapp svg {
        width: 29px;
        height: 29px;
    }
}