.main-header--is-full-screen {
    --container-margin-primary : 4%;
}

.main-header {
    position : relative;
    z-index  : 5;
    color    : var(--color-grey-font-default);
}

.main-header a {
    text-decoration : none;
    color           : var(--color-black-default);
}

.main-header a:hover {
    color : var(--link-color-on-hover);
}

.header-logo h1 {
    margin : 0;
}

.header-nav {
    background : var(--nav-bg--color);
}

/*
--------------------------------------
Style général overlay
--------------------------------------
*/
.overlay-global-except-header {
    display          : none;
    position         : fixed;
    top              : 0;
    z-index          : 2;
    width            : 100%;
    height           : 100vh;
    background       : rgba(0, 0, 0, 0);
    pointer-events   : none;
    transition       : all 0.3s ease-out 0.2s;
    transform        : scaleY(0);
    transform-origin : top;
}

.overlay-global-except-header--is-show {
    transition     : all 0.3s ease-out;
    pointer-events : all;
    transform      : scaleY(1);
    background     : rgba(0, 0, 0, .4);
}

/*
--------------------------------------
Header template
--------------------------------------
*/
.header-infos {
    padding : 8px 0;
}

.infos-links {
    display         : flex;
    justify-content : flex-end;
}

.header-burger {
    cursor : pointer;
}

.header-actions {
    display     : flex;
    align-items : center;
}

.header-actions > * + * {
    margin-left : calc(12px + (16 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.header-actions .link-icon a {
    display     : flex;
    /*flex-direction : column;*/
    align-items : center;
    text-align  : center;
}

.header-actions .link-icon__text {
    display : none;
}

.link-icon {
    position : relative;
}

.link-icon img {
    max-width: 25px;
}

.link-icon .cart-products-count,
.header-actions-footer__cart .cart-products-count {
    background    : var(--color-primary);
    border-radius : 100%;
    width         : 25px;
    line-height   : 25px;
    color         : white;
    text-align    : center;
}

.link-icon .cart-products-count {
    position  : absolute;
    top       : 0;
    left      : 0;
    transform : translate3d(50%, -50%, 0);
}

.cart-products-count {
    display : inline-block;
}

@media (max-width: 1024px){
    .link-icon.user-info.log-out{
        display: none;
    }
}

/*
--------------------------------------
Header French made
--------------------------------------
*/
.main-header .french-made {
    font-size    : var(--font-size-75);
    border-left  : 1px solid #D9D9D9;
    border-right : 1px solid #D9D9D9;
    margin       : 0 3.3em;
}

.french-made {
    text-align      : center;
    display         : flex;
    flex-direction  : column;
    justify-content : center;
    align-items     : center;
    padding         : 0 3.3em;
}

.french-made__title {
    margin         : 0;
    text-transform : uppercase;
    font-weight    : 300;
    font-size      : 1em;
    letter-spacing : 0.02em;
    color          : var(--color-grey-font-default);
}
