.sw-header-v2{
position:sticky;
top:0;
z-index:999;
background:#fff;
border-bottom:1px solid #eee;
}

.sw-header-container{
height:80px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 20px;
max-width:1400px;
margin:auto;
}

.sw-logo img{
max-height:50px;
width:auto;
}

.sw-navigation{
flex:1;
display:flex;
justify-content:center;
}

.sw-nav-menu{
display:flex;
align-items:center;
gap:25px;
}

.sw-nav-menu li a{
font-size:15px;
font-weight:700;
color:#111;
}

.sw-header-actions{
display:flex;
align-items:center;
gap:10px;
}

.sw-search-btn,
.sw-theme-toggle,
.sw-mobile-toggle{
width:42px;
height:42px;
border:none;
border-radius:12px;
background:#f5f5f5;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
}

.sw-search-btn svg,
.sw-theme-toggle svg{
width:20px;
height:20px;
}

.sw-mobile-toggle{
display:none;
flex-direction:column;
gap:4px;
}

.sw-mobile-toggle span{
width:18px;
height:2px;
background:#111;
}

.sw-mobile-menu-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.5);
opacity:0;
visibility:hidden;
transition:.3s;
z-index:998;
}

.sw-mobile-menu-overlay.active{
opacity:1;
visibility:visible;
}

.sw-mobile-menu{
position:fixed;
top:0;
right:-320px;
width:320px;
height:100vh;
background:#fff;
z-index:999;
transition:.4s;
padding:20px;
overflow:auto;
}

.sw-mobile-menu.active{
right:0;
}

.sw-mobile-head{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:20px;
}

.sw-mobile-close{
width:40px;
height:40px;
border:none;
background:#f5f5f5;
border-radius:10px;
font-size:24px;
cursor:pointer;
}

.sw-mobile-nav li{
border-bottom:1px solid #eee;
}

.sw-mobile-nav li a{
display:block;
padding:14px 0;
font-weight:700;
}

.sw-search-popup{
position:fixed;
inset:0;
background:rgba(0,0,0,.7);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
visibility:hidden;
transition:.3s;
z-index:9999;
}

.sw-search-popup.active{
opacity:1;
visibility:visible;
}

.sw-search-form{
width:min(700px,90%);
display:flex;
gap:10px;
}

.sw-search-form input{
flex:1;
height:60px;
border:none;
border-radius:14px;
padding:0 20px;
font-size:18px;
}

.sw-search-form button{
height:60px;
padding:0 24px;
border:none;
border-radius:14px;
background:#e31205;
color:#fff;
cursor:pointer;
}

.sw-search-close{
position:absolute;
top:20px;
left:20px;
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#fff;
font-size:28px;
cursor:pointer;
}

@media(max-width:991px){

.sw-navigation{
display:none;
}

.sw-mobile-toggle{
display:flex;
}

}

footer, .sw-header-v2 {
    border-top:1px solid var(--main-color) ;
}
.sw-header-v2 {
    color:var(--primaryText);
    z-index:100;
    border-bottom:1px solid var(--main-color) ;
}
