/*==========================================
Mobile Menu
==========================================*/

.mobile-toggle{
    display:none;
    width:46px;
    height:46px;
    border:none;
    background:transparent;
    cursor:pointer;
    font-size:30px;
    color:#990000;
    transition:.3s;
}

.mobile-toggle:hover{
    transform:rotate(90deg);
}

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:998;
    backdrop-filter:blur(3px);
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-menu{
    position:fixed;
    top:0;
    left:0;
    width:320px;
    max-width:85%;
    height:100%;
    background:#fff;
    transform:translateX(-100%);
    transition:.35s ease;
    z-index:999;
    display:flex;
    flex-direction:column;
    box-shadow:0 0 35px rgba(0,0,0,.2);
}

.mobile-menu.active{
    transform:translateX(0);
}

.mobile-menu-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px;
    border-bottom:1px solid #eee;
}

.mobile-logo img{
    max-height:60px;
    width:auto;
}

.mobile-close{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#990000;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.mobile-close:hover{
    transform:rotate(180deg);
}

.mobile-menu-body{
    flex:1;
    overflow-y:auto;
    padding:20px;
}

.mobile-nav{
    list-style:none;
    margin:0;
    padding:0;
}

.mobile-nav li{
    border-bottom:1px solid #eee;
}

.mobile-nav li:last-child{
    border:none;
}

.mobile-nav li a{
    display:block;
    padding:15px 0;
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.mobile-nav li a:hover{
    color:#990000;
    padding-left:12px;
}

.mobile-menu-footer{
    padding:20px;
    border-top:1px solid #eee;
    display:grid;
    gap:12px;
}

.mobile-call,
.mobile-whatsapp{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    border-radius:8px;
    padding:14px;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.mobile-call{
    background:#990000;
}

.mobile-whatsapp{
    background:#25D366;
}

.mobile-call:hover,
.mobile-whatsapp:hover{
    transform:translateY(-2px);
    color:#fff;
}

body.menu-open{
    overflow:hidden;
}

@media(max-width:991px){

    .main-navigation{
        display:none;
    }

    .header-actions .btn{
        display:none;
    }

    .mobile-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

}

@media(min-width:992px){

    .mobile-menu,
    .mobile-overlay{
        display:none;
    }

}

.site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:#fff;
}

.mobile-menu{
    overflow:hidden;
}

.mobile-menu-body{
    -webkit-overflow-scrolling:touch;
}