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

.main-header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index    : 5;
    background : var(--color-black-alt-default);
}

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

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

.main-header a img {
    padding: 5px 0;
}

.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;

    background : var(--color-black-default);
    color      : var(--color-white-default);
}

.header-infos__inner {
    display         : flex;
    justify-content : space-between;
}

.header-infos__inner a {
    color : currentColor;
}

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

.header-burger {
    cursor : pointer;
}

.header-actions {
    display     : flex;
    align-items : center;
}
.header-infos__inner .links-container {
    padding: 4px 10px;
    background-color: var(--color-primary);
    border-radius: 30px;
    color: white;
    display: none;
}

.header-infos__inner .info-contact {
    display: block;
}

.header-actions > * {
    position: relative;
}

.header-actions > *:not(:first-child):after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 41px;
    background: #515558;
}

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

.header-actions .link-icon a {
    display        : flex;
    align-items    : center;
    text-align     : center;
    transition: all 0.35s ease-in-out;
}

.header-actions .user-info a {
    display        : flex;
    align-items    : center;
    text-align     : center;
}

.header-actions .cart-info {
    padding-left: 1.5em;
}

.header-actions .user-info .link-icon__text {
    margin-left: 0.5em;
}

.header-actions .link-icon .cart-text-item {
    font-weight: 600;
}

.header-actions .cart-info-container {
    display: flex;
}

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

.header-actions .svg-container {
    position: relative;
}

.header-actions .cart-text-container {
    text-align: left;
    padding-left: 1.5em;
}

.header-actions .user-info .cart-text-container {
    padding-left: 0.5em;
}

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

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