.ts-header{position:sticky;top:0;background:#fff;border-bottom:1px solid #ddd}.ts-header-inner{display:flex;justify-content:space-between;align-items:center}.ts-menu{display:flex;gap:20px;list-style:none}
.site-header{

    background:#fff;

    border-bottom:1px solid #ececec;

}

.header-inner{

    height:78px;

    display:flex;

    align-items:center;

}

.site-logo{

    width:72px;

    flex-shrink:0;

}

.site-logo img{

    width:100%;

}

.main-menu{

    flex:1;

    display:flex;

    justify-content:center;

    gap:55px;

}

.main-menu a{

    font-size:18px;

    font-weight:600;

    color:#111827;

    transition:.3s;

}

.main-menu a:hover{

    color:#2563eb;

}

.current-menu-item>a{

    color:#2563eb;

}
.ts-header{
    margin-bottom: 20px;
}
.ts-mobile-button{
    border: none;
    background: none;
}
.ts-mobile-menu{

    position:fixed;

    top:0;
    right:-320px;

    width:300px;
    height:100vh;

    background:#fff;

    z-index:9999;

    transition:.35s;

    padding:30px;

    overflow-y:auto;

    box-shadow:-5px 0 20px rgba(0,0,0,.15);

}

.ts-mobile-menu.active{

    right:0;

}

.ts-mobile-menu ul{

    margin:0;
    padding:0;
    list-style:none;

}

.ts-mobile-menu li{

    border-bottom:1px solid #eee;

}

.ts-mobile-menu a{

    display:block;

    padding:16px 0;

    color:#111;

    font-size:18px;

    font-weight:600;

}
.ts-mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9998;

}

.ts-mobile-overlay.active{

    opacity:1;

    visibility:visible;

}
.ts-mobile-button{

    display:none;

    width:42px;
    height:42px;

    border:none;
    background:none;

    cursor:pointer;

}
body.menu-open{

    overflow:hidden;

}
@media (max-width:767px){

    .main-menu{

        display:none;

    }

    .ts-mobile-button{

        display:flex;
        align-items:center;
        justify-content:center;

    }

}