/* ========================================
   MUEBLES LOUNGE JN MOBILE NAVIGATION
======================================== */

.mueblesloungejn-mobile-nav{
    display:none;
}


/* ========================================
   TABLET + SMARTPHONE
======================================== */

@media (max-width:1024px){
	
	 body{
        padding-bottom:90px;
    }

    .mueblesloungejn-mobile-nav{

        position:fixed;
        left:0;
        bottom:0;

        width:100%;

        display:flex;
        justify-content:space-around;
        align-items:center;

        padding:10px 0;

        background:#ffffff;

        border-top:1px solid #e5e5e5;

        box-shadow:
            0 -3px 20px rgba(0,0,0,.08);

        z-index:9999;
    }


    .mueblesloungejn-nav-item{

        flex:1;

        display:flex;
        flex-direction:column;

        align-items:center;
        justify-content:center;

        gap:4px;

        color:#555;

        text-decoration:none;

        font-size:11px;

        font-weight:500;
    }


    .mueblesloungejn-nav-item i{

        font-size:20px;
    }


    /* =====================
       WHATSAPP CENTRAL
    ===================== */

    .mueblesloungejn-whatsapp{

        flex:0 0 auto;

        width:68px;
        height:68px;

        border-radius:50%;

        background:#25D366;

        color:#fff;

        margin-top:-35px;

        box-shadow:
            0 8px 20px rgba(37,211,102,.35);
    }

    .mueblesloungejn-whatsapp i{

        font-size:34px;
        color:#fff;
    }

    .mueblesloungejn-whatsapp span{
        display:none;
    }

}