/* ==========================================================
   MOBILE TOGGLE
========================================================== */

.technova-mobile-toggle{

    display:none;

    width:46px;
    height:46px;

    border:none;

    background:transparent;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

}

.technova-mobile-toggle:hover{

    background:#f1f5f9;

}

/* ==========================================================
   DRAWER
========================================================== */

.technova-mobile-menu{

    position:fixed;

    top:0;
    right:-360px;

    width:330px;
    height:100vh;

    background:white;

    box-shadow:-20px 0 60px rgba(0,0,0,.12);

    transition:.4s cubic-bezier(.22,1,.36,1);

    z-index:9999;

    padding:30px;

    display:flex;

    flex-direction:column;

}

.technova-mobile-menu.active{

    right:0;

}

/* ==========================================================
   HEADER
========================================================== */

.technova-mobile-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:45px;

}

.technova-mobile-logo{

    font-size:28px;

    font-weight:700;

    color:#0f172a;

    text-decoration:none;

}

/* ==========================================================
   CLOSE BUTTON
========================================================== */

.technova-mobile-close{

    width:42px;

    height:42px;

    border:none;

    background:#f8fafc;

    border-radius:12px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.25s;

}

.technova-mobile-close:hover{

    background:#e2e8f0;

}

.technova-mobile-close svg{

    width:20px;

    height:20px;

}

/* ==========================================================
   LINKS
========================================================== */

.technova-mobile-links{

    list-style:none;

    padding:0;

    margin:0;

}

.technova-mobile-links li{

    margin-bottom:18px;

}

.technova-mobile-links a{

    display:block;

    padding:14px 0;

    text-decoration:none;

    font-size:20px;

    font-weight:600;

    color:#0f172a;

    transition:.25s;

}

.technova-mobile-links a:hover{

    color:#2563eb;

    transform:translateX(8px);

}

.current-menu-item>a{

    color:#2563eb;

}

/* ==========================================================
   OVERLAY
========================================================== */

.technova-mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(15,23,42,.35);

    backdrop-filter:blur(5px);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9998;

}

.technova-mobile-overlay.active{

    opacity:1;

    visibility:visible;

}

/* ==========================================================
   DARK MODE
========================================================== */

body.dark-mode .technova-mobile-menu{

    background:#020617;

}

body.dark-mode .technova-mobile-logo{

    color:white;

}

body.dark-mode .technova-mobile-links a{

    color:#cbd5e1;

}

body.dark-mode .technova-mobile-links a:hover{

    color:white;

}

body.dark-mode .technova-mobile-close{

    background:#1e293b;

    color:white;

}

body.dark-mode .technova-mobile-close:hover{

    background:#334155;

}

body.dark-mode .technova-mobile-overlay{

    background:rgba(2,6,23,.6);

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

    .technova-nav{

        display:none;

    }

    .technova-account-btn{

        display:none;

    }

    .technova-mobile-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

    }

}