/* TOP BAR */
.top-red-bar { height: 7px; background: #d00; }
* {
    font-family: "Libertinus Sans", serif;
}

/* HEADER */
header{
    width: 100%;
    margin: auto;
}


/* HEADER MOBILE */
.mobile-header{
    background: #fff;
    border-bottom: 1px solid #eee;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 12px;
}
.mobile-brand{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    max-width: 60%;
}
.mobile-brand img{
    height: 32px;
    width: auto;
    display: block;
}
.mobile-actions a{
    color: #222;
    text-decoration: none;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mobile-actions a + a{ margin-left: 14px; }
.navbar-toggler{ border: 0; padding: .25rem .4rem; }
.navbar-toggler:focus{ outline: none; box-shadow: none; }
.burger span{ display:block; width:28px; height:2px; background:#111; margin:6px 0; }
.mobile-menu{
    background: #fff;
    border-bottom: 1px solid #eee;
}
.mobile-menu .nav-link{
    padding: 8px 12px;
    color: #222;
    font-weight: 500;
    font-size: 25px !important;
    line-height: 30px;
}
.mobile-menu .nav-link:hover{ color: #000; }

/* MOBILE MENU DROPDOWN + BACKDROP */
@media (max-width: 1200px){
    header{ position: relative; }
    header .d-lg-none{ position: relative; }

    #mobileNav.mobile-menu{
        position: absolute;
        left: 0;
        right: 0;
        top: 60px;
        z-index: 2000;
        background: #fff;
        border-bottom: 1px solid #eee;
        box-shadow: 0 12px 30px rgba(0,0,0,.18);
        max-height: calc(100vh - 67px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-backdrop{
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.35);
        z-index: 1500;
    }
    .mobile-backdrop.is-open{ display: block; }
}

/* HEADER DESKTOP */

@media (min-width: 1200px){
    header{
        background: #fff;
        border: 1px solid #dcdcdc;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .desktop-strip-inner{ padding: 0 5px !important; }


    .brand-badge img{
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        max-width: 110px;
        margin-left: 10px;
    }

    .nav-dots .nav-item{ display:flex; align-items:center; white-space:nowrap; }


    .nav-dots .nav-link{
        color: #000;
        font-size: 20px;
        font-weight: 500;
        padding: 0;
        margin-left: 10px;
    }
    .nav-dots .nav-link:hover{ color: #000; }

    .desktop-actions{ margin-left: 15px; }
    .desktop-actions a{
        color:#222;
        text-decoration:none;
        font-size: 1.05rem;
        display:inline-flex;
        align-items:center;
        justify-content:center;
    }
    .desktop-actions a + a{ margin-left: 14px; }
}
@media (min-width: 1400px){
    .nav-dots .nav-link{
        font-size: 23px;
    }
    .brand-badge img {
        max-width: 140px;
    }
}
@media (min-width: 1530px){
    .nav-dots .nav-link{
        font-size: 25px;
        margin-left: 15px;
    }

}