.main-header{


position:sticky;

top:0;

z-index:999;

background:var(--navbar-bg);

box-shadow:var(--shadow-sm);


}

.header-wrapper{


height:80px;

display:flex;

align-items:center;

justify-content:space-between;


}

.header-logo img{


height:55px;


}

.desktop-menu ul{


margin:0;

padding:0;

list-style:none;

display:flex;

gap:35px;


}

.desktop-menu a{


color:var(--navbar-text);

font-size:15px;

font-weight:600;


}

.desktop-menu a:hover{

color:var(--navbar-hover);


}

.header-right{


display:flex;

align-items:center;

gap:15px;


}

.header-search{


width:42px;

height:42px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:18px;

color:var(--navbar-text);


}

.mobile-menu-btn{


display:none;


}

@media(max-width:991px){


.desktop-menu{

    display:none;

}

.mobile-menu-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    font-size:22px;

    color:var(--navbar-text);

    background:transparent;

}


}
