/* ==========================================
   NAVBAR
========================================== */

.top-bar{
    background:#f9a825;
    color:#fff;
    text-align:center;
    padding:8px;
    font-size:14px;
    font-weight:600;
}

.top-bar span{
    margin:0 10px;
}

.header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:15px 0;
}

.logo img{
    height:55px;
}

.menu-btn{
    display:none;
    background:none;
    border:none;
    font-size:22px;
    cursor:pointer;
}

.search-box{
    flex:1;
}

.search-box form{
    display:flex;
}

.search-box input{
    width:100%;
    height:46px;
    border:2px solid #2e7d32;
    border-radius:10px 0 0 10px;
    padding:0 18px;
    outline:none;
    font-size:15px;
}

.search-box button{
    width:60px;
    border:none;
    background:#2e7d32;
    color:#fff;
    border-radius:0 10px 10px 0;
    cursor:pointer;
    transition:.3s;
}

.search-box button:hover{
    background:#1b5e20;
}

.nav-right{
    display:flex;
    gap:25px;
}

.nav-right a{
    display:flex;
    align-items:center;
    gap:6px;
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.nav-right a:hover{
    color:#2e7d32;
}

.nav-right i{
    font-size:20px;
}