/**
 * Theme Name: JRDS Child Theme
 * Description: Lightweight custom child theme developed by JayRhino Digital Solutions.
 * Author: JayRhino Digital Solutions
 * Author URI: https://jrds.co.zw
 * Template: blocksy
 * Version: 1.0.0
 * Text Domain: jrds-child-theme
 */
/* ==================================================
   JRDS TOOLKIT — WHATSAPP CHAT
   ================================================== */

.jrds-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    border-radius: 50px;

    background: #25D366;
    color: #ffffff;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.jrds-whatsapp:hover {
    transform: translateY(-3px);

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

    color: #ffffff;
}

.jrds-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    font-size: 18px;
}

.jrds-whatsapp-text {
    line-height: 1;
}


/* Mobile */
@media (max-width: 600px) {

    .jrds-whatsapp {
        right: 15px;
        bottom: 15px;

        padding: 13px 16px;
    }

    .jrds-whatsapp-text {
        display: none;
    }

    .jrds-whatsapp-icon {
        width: 28px;
        height: 28px;

        font-size: 21px;
    }
}