/* =============================================================================
   Header
   Mobile-first. No CSS variables. Static values only.
   ============================================================================= */

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* Smooth slide when fixed is restored on scroll-up */
    transition: transform 0.3s ease;
}

.admin-bar #header {
    top: 32px;
}

#header .nav-top-link {
    color: rgba(240, 238, 232, 0.7);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
}

#header .nav-top-link:hover {
    color: #fff;
}

#header .sub-menu {
    padding: 10px;
    border: 0;
}

#header .sub-menu .menu-item>a {
    border: 0;
    font-size: 14px;
}

#header .header-wrapper .header-bg-color {
    background: transparent;
}

#header .header-wrapper.stuck .header-bg-color {
    background: rgba(8, 12, 26, 0.98);
    border-bottom: 1px solid rgba(200, 184, 154, 0.15);
}

#header .nav-top-link {
    color: rgba(240, 238, 232, 0.7);
}

#header .current-menu-item .nav-top-link {
    color: #fff !important;
}

#header .header-nav {
    justify-content: center;
}

#header .container {
    padding-left: 48px;
    padding-right: 48px;

}

.woocommerce-page #header .container {
    border-bottom: 1px solid rgba(200, 184, 154, 0.08);
}

/* ── Scroll states ────────────────────────────────────────────────────────── */

/* Body receives this class when scrolling DOWN — removes fixed from header */
/* body.is-scrolled-down #header {
    position: absolute;
    transform: translateY(-100%);
} */

body.is-scrolled #header .header-bg-color {
    background: rgba(8, 12, 26, 0.98);
    border-bottom: 1px solid rgba(200, 184, 154, 0.15);
}

body.is-scrolled #header .nav-top-link {
    color: rgba(240, 238, 232, 0.7);
}

#masthead {
    background: linear-gradient(to bottom, rgba(8, 12, 26, 0.97), transparent);
}

#header .header-cart-link {
    padding: 10px 22px;
    border: 1px solid rgba(232, 237, 242, 0.4);
}

#header .header-cart-link .icon-shopping-bag {
    display: none;
}

#header .nav-top-link {
    font-family: 'Reload', sans-serif !important;
    font-weight: 400;
    line-height: 1;
}

@media (max-width:768px) {
    .admin-bar #header {
        top: 0;
    }

    #header .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    #header .header-cart-link {
        padding: 7px 14px;
        font-size: 11px;
    }

    #header .medium-logo-center .flex-left {
        flex: 0;
    }
}