.header{
    position:sticky;
    top:0;background:#f3f3f3;
    padding:12px 20px;
    border-bottom:1px solid #ddd;
    z-index:1000;
} 

.header-inner{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
} 

.header-left{
    display:flex;
    align-items:center;
    gap:30px;
} 

.logo{
    height:95px;
    width:auto;
} 

.header-nav{
    display:flex;
    flex-wrap:nowrap;
    gap:30px;
    align-items:center;
} 

.header-nav a:hover{
    color:#ce5700;
} 

.header-right{
    display:flex;
    align-items:center;
    gap:25px;
} 

.header-separator{
    width:1px;
    height:22px;
    background:#aaa;
} 

/* Admin / Backoffice knop in header */
.btn-admin-link {
    background: #b84e00;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.btn-admin-link:hover {
    background: #000;
}

.hamburger{
    display:none;
}