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

.main-header {
    position : relative;
    z-index  : 5;
    color    : var(--color-grey-font-default);
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}

.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-logo{
    display: flex;
    justify-content: center;
}

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

/*
--------------------------------------
Style général overlay
--------------------------------------
*/

@media (max-width: 1200px) {

    .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 {
    background: var(--color-secondary);
    padding : 5px 0;
}

.header-infos .language-selector.dropdown{
    display: flex;
    justify-content: flex-end;
}

.infos-links {
    display         : grid;
    grid-template-columns: 1fr 5fr 1fr;
}



.infos-links .infos-text{
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lang-flag{
    width: 22px;
}

.language-selector-wrapper .dropdown-menu{
    right: 0;
    left: auto;
    min-width: auto;
    padding: 5px 6px;
}
.language-selector-wrapper .dropdown-menu li{
    width: fit-content;
    padding: 3px 2px;
}

.infos-links span {
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 767px){
    .infos-links {
        grid-template-columns: auto 1fr auto;
    }
    .infos-links span {
        font-size: 11px;
    }
    .header-infos .default-container{
        max-width: 100%;
    }
}

@media (max-width: 449px){
    .infos-links span {
        font-size: 9px;
    }
}

@media (max-width: 320px){
    .infos-links span {
        font-size: 8px;
    }
}

.header-burger {
    cursor : pointer;
}

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

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

@media (max-width: 450px){
    .header-actions > * + * {
        margin-left : 5px;
    }
}

.header-actions .link-icon a, .header-actions .blockcart>a {
    display        : flex;
    flex-direction : row;
    align-items    : center;
    text-align     : center;
}

#dropdownMenuButton svg, .user-info svg, .gift-card svg{
    height: 28px;
}

#dropdownMenuButton .cls-1{
    stroke-width:10px;
}
#dropdownMenuButton .cls-2{
    stroke-miterlimit:10;
    stroke-width:8px;
}

.header-actions .blockcart{
    margin-left: 0.5em;
}


.header-actions .link-icon a svg path{
    fill: var(--color-secondary);
}

#dropdownMenuButton .cls-1,#dropdownMenuButton .cls-2{
    fill:none;stroke:var(--color-secondary);
}

.header-actions .link-icon__text {
    display : none;
    font-weight: 500;
    font-size: 13px;
    padding-left: 0.5em;
    color: #383838;
    line-height: 1;
}

/*.link-icon {*/
/*    position : relative;*/
/*    margin-top: .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       : 0;
    right     : 0;
    transform : translate3d(50%, 0, 0);
}

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

/*
--------------------------------------
Header menu
--------------------------------------
*/

header#header .bwa-menu__top__wrapper[data-is-desktop="true"] .bwa-menu__main-item:hover {
    background: transparent;
}

header#header .bwa-menu__top__wrapper[data-is-desktop="true"] .bwa-menu__main-item .bwa-menu__title{
    border-bottom: 2px solid transparent;
    padding: 10px 0 8px 0;
}

header#header .bwa-menu__top__wrapper[data-is-desktop="true"] .bwa-menu__main-item:hover .bwa-menu__title{
    border-bottom: 2px solid var(--color-secondary);
}



header#header .bwa-menu__top__wrapper[data-is-desktop="true"] .bwa-menu__main-item .bwa-menu__link-title[data-depth="0"] {
    /*transition: all 0.35s ease-in-out;*/
}

header#header .bwa-menu__top__wrapper[data-is-desktop="true"] .bwa-menu__main-item:hover .bwa-menu__link-title[data-depth="0"] .bwa-menu__title{
    color: var(--color-primary);
    font-weight: 500;
    text-shadow: 0 0 .65px #333, 0 0 .65px #333;
}

header#header .bwa-menu__top__wrapper[data-is-desktop="true"] .bwa-menu__title__wrapper {
    border-left: none;
}


.header-actions{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
}

.header-infos>.default-container{
    max-width: calc( 100% - calc( var(--container-margin-primary) + 5% ));
}

.language-selector-wrapper .dropdown button{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 27px;
    margin-left: 10px;

}

@media (min-width: 1400px){
    .language-selector-wrapper .dropdown button{
        margin-top: 3px;
    }
}

.language-selector.dropdown{
    position: relative;
}

.language-selector-wrapper .dropdown .expand-more{
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 1;
    color: #383838;
    margin-right: 5px;
}

#header .logo{
    max-width: 90%;
    width: 200px;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (min-width: 480px) and (max-width: 1200px){
    #header .logo{
        margin: 10px auto;
        padding-left: 55px;
        display: block;
        width: 250px;
    }
}

@media (max-width: 480px){
    .logo.img-fluid{
        margin: 10px auto;
        display: block;
    }
}

.header-logo .cls-1,.header-logo .cls-2,.header-logo .cls-3{
    fill:#8c734b;
}
.header-logo .cls-2,.header-logo .cls-3{
    fill-rule:evenodd;
}
.header-logo .cls-3{
    stroke:#8c734b;stroke-miterlimit:10;
}

.infos-text .elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated{
    padding: 0;
}



.cart-products-count{
    display: none;
}

@media (max-width: 1199px){
    .blockcart.cart-preview>a{
        position: relative;
    }
    .blockcart.cart-preview>a>.cart-products-count{
        background: var(--color-secondary);
        border-radius: 100%;
        width: 17px;
        line-height: 17px;
        color: white;
        text-align: center;
        position: absolute;
        top: 0px;
        right: 0;
        transform: translate3d(50%, 0, 0);
        font-size: 12px;
        display: flex;
        justify-content: center;
    }
    .bwa-menu__top__wrapper[data-is-desktop="true"]{
        display : none;
    }
    #bwa-menu__burger[data-is-desktop="true"]{
        display : block!important;
    }
}

.noel-menu a{
    color: var(--color-secondary)!important;
}
