/*
 * Shocko desktop header sticky adapter.
 * Scoped only to the desktop main header; does not affect cart or page content.
 */
.shocko-header-sticky-spacer {
    display: none;
    width: 100%;
    height: 0;
}

@media screen and (min-width: 1145px) {
    body.shocko-header-fixed .new-header-menu {
        position: fixed;
        z-index: 1000;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        margin: 0;
        padding-bottom: 0;
        background: #fff;
        box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
    }

    body.shocko-header-fixed .new-header-menu .wrapper {
        min-height: 76px;
    }

    body.shocko-header-fixed .shocko-header-sticky-spacer {
        display: block;
    }
}
