header {
    position: fixed;
    top: 0;
    display: block;
    width: 100%;
    left: 0;
    z-index: 999;
    background: #fff;
}

a.login-icon,
a.cart-icon {
    color: #000;
    font-size: 11px;
}

header p.logo {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.pre-header {
    background-color: #f9f9f9;
}

.pre-header-content {
    text-align: center;
    background-color: #000;
}

.pre-header-content p {
    font-size: 13px;
    padding: 6px;
    margin: 0;
    color: #ffffff;
}

.pre-header-content .other-brands {
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2px;
}

.pre-header-content .other-brands .link {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    margin-right: 3px;
}

.pre-header-content .other-brands .link.active {
    font-weight: 800;
}

.pre-header-content .other-brands .link::after {
    content: "";
    position: relative;
    margin-left: 6px;
    width: 1px;
    height: 10px;
    background-color: #000;
}

.pre-header-content .other-brands .link:last-child:after {
    display: none;
}

.pre-header-content .other-brands a {
    color: #000;
    text-decoration: none;
}

.pre-header-content .other-brands img {
    width: 38px;
}

.header-offer {
    color: #FECD3F;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.pro-website a {
    font-family: 'Poppins', sans-serif;
    display: block;
    line-height: 30px;
    text-align: center;
    background-color: #fec63f;
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
    padding: 0 12px;
}

.header-menu {
    display: flex;
    justify-content: start;
    align-items: baseline;
    padding-top: 20px;
    gap: 5px;
}

.header-login {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    align-items: flex-end;
    text-align: center;
}

.flag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.flag-list li {
    display: inline-block;
    padding-right: 5px;
}

.flag-list li a,
.flag-list li {
    font-size: 16px;
    color: #a19e9e;
    font-family: 'Montserrat';
    font-weight: 300;
}

.flag-list li.active a {
    color: #000;
}



a.cart-icon span {
    position: absolute;
    margin-left: 4px;
    margin-top: -16px;
    background-color: #515050;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    font-style: normal;
    color: white;
    font-size: 11px;
    text-align: center;
    line-height: 16px;
    letter-spacing: 0px;
    font-weight: 600;
    transition: transform 0.2s;
}

a.cart-icon:hover span {
    transform: translateY(-4px);
}

a.cart-icon i {
    display: inline-block;
    padding-left: 15px;
    font-style: normal;
    font-size: 12px;
    font-weight: 300;
}


header img.logo {
    max-width: 300px;
}

a.logout-icon i {
    display: none;
    position: absolute;
    margin-left: -6px;
    margin-top: -6px;
    color: #ff0000;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
    z-index: 9;
}

.header-login span.login-nom {
    display: none;
}

a.logout-icon:hover i {
    color: #d10000;
}

.menu-mobile-bt {
    display: none;
}