.bs-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    box-shadow:0 4px 18px rgba(15,23,42,.08);
}

.bs-topbar{
    max-width:1120px;
    margin:auto;
    padding:10px 14px;
    display:flex;
    align-items:center;
    gap:12px;
}

.bs-logo{
    display:flex;
    align-items:center;
    gap:9px;
    text-decoration:none;
    flex:0 0 auto;
}

.bs-logo-mark{
    width:42px;
    height:42px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg,#FF9933,#E65100);
    color:#fff;
    overflow:hidden;
}

.bs-logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
    color:#111827;
}

.bs-logo-text strong{
    font-size:18px;
    font-weight:900;
}

.bs-header-search{
    flex:1;
    height:44px;
    display:flex;
    align-items:center;
    gap:8px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:999px;
    padding:0 14px;
}

.bs-search-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6b7280;
}

.bs-header-search input{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    font-size:15px;
    font-weight:600;
    color:#111827;
}

.bs-menu-btn{
    width:44px;
    height:44px;
    border:0;
    border-radius:14px;
    background:#111827;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    flex:0 0 auto;
}

.menu-close-icon{
    display:none;
}

.bs-menu-btn.is-open .menu-open-icon{
    display:none;
}

.bs-menu-btn.is-open .menu-close-icon{
    display:flex;
}

/* IMPORTANT SVG FIX */
svg.bs-svg,
.bs-svg{
    display:block;
    stroke:currentColor !important;
    fill:none !important;
    stroke-width:2 !important;
    stroke-linecap:round !important;
    stroke-linejoin:round !important;
}

.bs-logo-mark svg,
.bs-menu-btn svg,
.bs-desktop-nav svg,
.bs-mobile-menu svg,
.bs-search-icon svg{
    max-width:100%;
    max-height:100%;
}

/* Desktop Nav */
.bs-desktop-nav{
    max-width:1120px;
    margin:0 auto;
    padding:0 14px 10px;
    display:flex;
    align-items:center;
    gap:10px;
    overflow-x:auto;
    scrollbar-width:none;
}

.bs-desktop-nav::-webkit-scrollbar{
    display:none;
}

.bs-desktop-nav a{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:9px 14px;
    border-radius:999px;
    background:#f8fafc;
    color:#111827;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
}

.bs-desktop-nav a:hover{
    background:#FFF3E0;
    color:#E65100;
}

.bs-desktop-nav .nav-add{
    background:#FF9933;
    color:#fff;
}

.bs-desktop-nav .nav-add:hover{
    background:#E65100;
    color:#fff;
}

/* Mobile Menu */
.bs-mobile-menu{
    position:fixed;
    top:116px;
    left:12px;
    right:12px;
    z-index:999;
    display:none;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:10px;
    box-shadow:0 18px 45px rgba(15,23,42,.22);
}

.bs-mobile-menu.show{
    display:block;
}

.bs-mobile-menu a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px;
    color:#111827;
    text-decoration:none;
    border-radius:16px;
    font-size:15px;
    font-weight:800;
}

.bs-mobile-menu a:hover{
    background:#FFF3E0;
    color:#E65100;
}

@media(max-width:768px){
    .bs-topbar{
        padding:8px 10px;
        gap:8px;
    }

    .bs-logo-mark{
        width:40px;
        height:40px;
        border-radius:13px;
    }

    .bs-logo-text strong{
        font-size:16px;
    }

    .bs-header-search{
        height:40px;
        padding:0 10px;
    }

    .bs-menu-btn{
        width:40px;
        height:40px;
        border-radius:13px;
    }

    .bs-desktop-nav{
        padding:0 10px 9px;
    }

    .bs-desktop-nav a{
        padding:8px 12px;
        font-size:13px;
    }

    .bs-mobile-menu{
        top:104px;
    }
}

@media(max-width:420px){
    .bs-logo-text strong{
        font-size:14px;
    }

    .bs-header-search{
        min-width:0;
    }
}