/* navbar-modern.css – overrides / additions on top of navbar.css */
* { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #fff;
    margin: 0;
}

#nav_bar_container {
    position: sticky;
    top: 0;
    z-index: 500;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

#nav_bar_top {
    background: #1a1a1a;
    padding: 6px 0;
}
#nav_bar_top_left > li > a {
    color: #ccc;
    font-size: 12px;
    transition: color .15s;
}
#nav_bar_top_left > li > a:hover { color: #fff; }

#logo_menu > li > a {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .04em;
    color: #222;
    padding: 8px 4px;
    transition: color .15s, border-color .15s;
}
#logo_menu > li > a:hover { color: #c8832a; border-bottom: 3px solid #c8832a; padding-bottom: 5px; }

#nav_search_bar > li > input {
    background: #f5f5f5;
    border: 1.5px solid #e0e0e0;
    border-radius: 20px;
    padding: 9px 18px;
    font-size: 13px;
    width: 280px;
    transition: border-color .2s, box-shadow .2s;
}
#nav_search_bar > li > input:focus {
    outline: none;
    border-color: #c8832a;
    box-shadow: 0 0 0 3px rgba(200,131,42,.12);
    background: #fff;
}

#nav_search_bar > li > a {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    transition: color .15s;
}
#nav_search_bar > li > a:hover { color: #c8832a; }

#items {
    background: #c8832a;
    color: #fff;
    border-radius: 50%;
    padding: 1px 5px;
    font-size: 11px;
    font-weight: 700;
    margin-right: 3px;
}

#margin-top-slider1 { height: 20px; }
