/* ===========================================================
   RESET
=========================================================== */

body{
    margin:0;
    font-family:Inter,sans-serif;
    background:#fff;
}


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

.technova-header{

    position:sticky;
    top:0;
    z-index:999;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(18px);

    border-bottom:1px solid #e5e7eb;

    transition:.35s;
}


.technova-container{

    max-width:1280px;

    margin:auto;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 32px;

}


/* ===========================================================
   LOGO
=========================================================== */

.technova-logo a{

    font-size:30px;

    font-weight:700;

    color:#0f172a;

    text-decoration:none;

}


/* ===========================================================
   MENU
=========================================================== */

.technova-menu{

    display:flex;

    gap:42px;

    list-style:none;

    margin:0;

    padding:0;

}


.technova-menu li{

    position:relative;

}


.technova-menu a{

    position:relative;

    color:#334155;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

    padding:8px 0;

}


/* Hover */

.technova-menu a:hover{

    color:#000;

}


/* Animated Underline */

.technova-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#0f172a;

    transition:.3s;

}


.technova-menu a:hover::after{

    width:100%;

}


/* Current Page */

.current-menu-item>a,

.current_page_item>a{

    color:#0f172a;

    font-weight:700;

}


.current-menu-item>a::after,

.current_page_item>a::after{

    width:100%;

}


/* ===========================================================
   ACTIONS
=========================================================== */

.technova-actions{

    display:flex;

    align-items:center;

    gap:14px;

}


/* ===========================================================
   ICON BUTTON
=========================================================== */

.technova-icon-btn{

    width:44px;

    height:44px;

    border-radius:999px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#0f172a;

    transition:.25s;

    position:relative;

    background:transparent;

    border:none;

    cursor:pointer;

}


.technova-icon-btn svg{

    width:20px;

    height:20px;

}


.technova-icon-btn:hover{

    background:#f1f5f9;

    transform:translateY(-2px);

}


/* ===========================================================
   CART
=========================================================== */

.technova-cart{

    position:relative;

}


.technova-cart-count{

    position:absolute;

    top:-5px;

    right:-5px;

    width:20px;

    height:20px;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:11px;

    font-weight:700;

}


/* ===========================================================
   ACCOUNT BUTTON
=========================================================== */

.technova-account-btn{

    background:#0f172a;

    color:#fff;

    text-decoration:none;

    padding:13px 22px;

    border-radius:12px;

    font-weight:600;

    transition:.25s;

}


.technova-account-btn:hover{

    background:#1e293b;

    transform:translateY(-2px);

}


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

@media(max-width:992px){

    .technova-menu{

        display:none;

    }

}

.technova-mobile-toggle:hover{
    background:#f1f5f9;
    border-radius:10px;
}

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

.technova-theme-toggle{

    position:relative;

    overflow:hidden;

}

.technova-theme-toggle span{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:

        transform .45s ease,

        opacity .35s ease;

}

.technova-theme-icon-light{

    opacity:1;

    transform:rotate(0deg) scale(1);

}

.technova-theme-icon-dark{

    opacity:0;

    transform:rotate(-180deg) scale(.4);

}

body.dark-mode .technova-theme-icon-light{

    opacity:0;

    transform:rotate(180deg) scale(.4);

}

body.dark-mode .technova-theme-icon-dark{

    opacity:1;

    transform:rotate(0deg) scale(1);

}


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

body.dark-mode{

    background:#020617;

    color:#f8fafc;

}

body.dark-mode .technova-header{

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

    border-color:#1e293b;

}

body.dark-mode .technova-logo a{

    color:white;

}

body.dark-mode .technova-menu a{

    color:#cbd5e1;

}

body.dark-mode .technova-menu a:hover{

    color:white;

}

body.dark-mode .technova-menu a::after{

    background:white;

}

body.dark-mode .technova-icon-btn{

    color:white;

}

body.dark-mode .technova-icon-btn:hover{

    background:#1e293b;

}

body.dark-mode .technova-account-btn{

    background:white;

    color:#020617;

}

body.dark-mode .technova-account-btn:hover{

    background:#e2e8f0;

}