.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 {
    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 .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;
    right     : 0;
    transform : translate3d(50%, 0, 0);
}


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