/* ===========================
   AAVERA STUDIO HEADER
=========================== */


.site-header{
    width:100%;
    background:#fff;
    position:relative;
    z-index:999;
}


/* TOP HEADER */

.top-header{
    padding:22px 0;
    border-bottom:1px solid #eee;
}


.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}


.top-header-grid{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}


/* LOGO */

.logo-area a{
    text-decoration:none;
}


.logo-text h1{

    margin:0;
    font-family:serif;
    font-size:34px;
    letter-spacing:3px;
    color:#111;

}


.logo-text p{

    margin:0;
    text-align:center;
    font-size:13px;
    letter-spacing:6px;
    color:#777;

}


/* SEARCH */


.search-box{

    flex:1;
    max-width:450px;

}


.search-box form{

    display:flex;
    border:1px solid #ddd;
    border-radius:30px;
    overflow:hidden;

}


.search-box input{

    width:100%;
    border:0;
    padding:14px 20px;
    outline:none;
    font-size:14px;

}


.search-box button{

    width:55px;
    border:0;
    background:none;
    cursor:pointer;

}


.search-box svg{

    width:22px;
    height:22px;
    fill:#555;

}



/* HEADER ICON */

.header-icons{

    display:flex;
    align-items:center;
    gap:22px;

}


.header-icons a{

    position:relative;
    color:#111;

}


.header-icons svg{

    width:25px;
    height:25px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.5;

}



.cart-count{

    position:absolute;
    top:-10px;
    right:-12px;

    background:#111;
    color:#fff;

    width:18px;
    height:18px;

    font-size:11px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

}





/* NAVIGATION */


.main-navigation{

    border-bottom:1px solid #eee;
}


.main-navigation ul{

    list-style:none;
    display:flex;
    justify-content:center;
    gap:45px;

    margin:0;
    padding:18px 0;

}


.main-navigation a{

    text-decoration:none;
    color:#222;

    font-size:15px;
    text-transform:uppercase;

    letter-spacing:1px;

    transition:.3s;

}


.main-navigation a:hover{

    color:#b08d57;

}




/* MOBILE BUTTON */

.mobile-menu-btn{

    display:none;

}


.mobile-menu-btn span{

    display:block;
    width:25px;
    height:2px;
    background:#111;
    margin:6px;

}





/* OFFCANVAS */


.mobile-menu{

    position:fixed;

    top:0;
    left:-320px;

    width:280px;
    height:100vh;

    background:#fff;

    padding:40px 30px;

    transition:.4s;

    z-index:9999;

}


.mobile-menu.active{

    left:0;

}


.mobile-menu ul{

    list-style:none;
    padding:0;

}


.mobile-menu li{

    margin-bottom:25px;

}


.mobile-menu a{

    text-decoration:none;
    color:#111;
    font-size:18px;

}



.mobile-close{

    font-size:35px;
    text-align:right;
    cursor:pointer;

}



.menu-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.5);

    opacity:0;
    visibility:hidden;

    transition:.3s;

}


.menu-overlay.active{

    opacity:1;
    visibility:visible;

}





/* STICKY HEADER */

.site-header.sticky{

    position:fixed;
    top:0;
    left:0;
    right:0;

    background:#fff;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}





/* MOBILE */

@media(max-width:768px){


.top-header{

    padding:15px 0;

}


.top-header-grid{

    gap:15px;

}


.mobile-menu-btn{

    display:block;

}


.logo-text h1{

    font-size:26px;

}


.search-box{

    display:none;

}


.header-icons{

    gap:12px;

}


.header-icons svg{

    width:22px;

}



.main-navigation{

    display:none;

}



}