/* Kelluva WhatsApp-painike */
.obt-whatsapp-painike {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 99999;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 12px 18px;

    background: #25D366;
    color: #ffffff;
    text-decoration: none;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.obt-whatsapp-painike:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    color: #ffffff;
}

.obt-whatsapp-kuvake {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    fill: currentColor;
}

.obt-whatsapp-teksti {
    display: inline-block;
}

@media (max-width: 600px) {

    .obt-whatsapp-painike {
        left: 16px;
        bottom: 16px;

        width: 54px;
        height: 54px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }

    .obt-whatsapp-teksti {
        display: none;
    }

    .obt-whatsapp-kuvake {
        width: 26px;
        height: 26px;
    }
}