.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #EFEFEF;
    padding: 7px 0;
}

.header .row {
    margin: 0;
}

.header-container {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-logo{
    margin-right: 30px;
}

.header-logo img {
    height: 24px;
    display: block;
}

.header_menu_toggle {
    margin-right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: none;
    background: #EFEFEF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header__menu {
    margin-right: 6px;
}

.header__menu ul {
    display: flex;
    align-items: center;
}

.header__menu ul li a {
    padding: 6px 14px;
    border-radius: 30px;
    background: #F8F8F8;
    border: 1px solid #F0F0F0;
    color: #0A0D14;
    font-size: 14px;
    text-decoration: none;
    line-height: 1;
    transition: 0.2s;
}

.header__menu ul li a:hover {
    background: #e9eaec;
}

.header-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.header__cart ul {
    display: flex;
    align-items: center;
    column-gap: 0px !important;
}

.header__cart ul li:nth-child(1) {
    margin-right: 10px;
}
.header__cart ul li:nth-child(2) {
    margin-right: 10px;
}

.header__cart ul li a {
    position: relative;
    display: flex;
    align-items: center;
}

.header svg {
    display: block;
}

/* .header__cart ul li span {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #FA3A4D;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
    border-radius: 50%;
} */

.login-link {
    padding: 10px 20px;
    border-radius: 30px;
    background: #FA3A4D;
    color: #fff !important;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

.login-link:hover {
    background: #e13c3f;
}

.login-link.text-danger {
    background: transparent;
    color: #ff4d4f !important;
    font-weight: 500;
}

@media (max-width: 768px) {
    .header__menu {
        display: none;
    }

    .header-container {
        height: 55px;
    }
}