.mobile-menu {
    display: none;
    bottom: 0;
    left: -100vw;
    transition: left ease .4s;
    position: fixed;
    width: 100%;
    height: 0;
    z-index: 9999999991;
    background: #fff;
    font-family: 'TT Norms Pro', sans-serif !important;
    overflow-y: auto;
}

.mobile-menu * {
    font-family: inherit !important;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu__backdrop {
    display: none;
}

.mobile-menu__wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.mobile-menu__tabs {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-menu__tabs.active {
    display: grid;
}

.mobile-menu-tab {
    border: 1px solid #000;
    position: relative;
    padding: 10px;
    font-size: 16px;
    line-height: 140%;
    text-transform: uppercase;
    color: #202020;
    text-align: center;
    background-color: transparent;
    cursor: pointer;
}

.mobile-menu-tab.active {
    color: #fff;
    background-color: #000;
}

.mobile-menu__content {
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-menu-content {
    display: none;
    position: relative;
    overflow: hidden;
}

.mobile-menu-content.active {
    display: block;
}

.mobile-menu-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 20px;
    position: relative;
}

.mobile-menu-header::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: calc(100% - 40px);
    height: 1px;
    background-color: #F2F2F2;
}

.mobile-menu-header.active {
    display: flex;
}

.mobile-menu-header__button, .mobile-menu-header__back {
    cursor: pointer;
}

.mobile-menu-header__back {
    min-width: 10px;
    width: 10px;
}

.mobile-menu-header__title {
    white-space: nowrap;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}

.mobile-menu-header__button {
    min-width: 12px;
    width: 12px;
    border: none;
    border-radius: 0;
    background: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-block {
    transition: all ease 0.4s;
    color: #202020;
    transform: translateX(0);
}

.mobile-menu-block li {
    border-bottom: 1px solid #F2F2F2;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #202020;
    text-transform: uppercase;
}

.mobile-menu-block li.sale-item {
    color: #EC1300;
}

.mobile-menu-block li.all-items {
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-menu-block li.bold {
    font-weight: 700;
}

.mobile-menu-block li.menu-item-has-children {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 10px;
}

.mobile-menu-block a {
    display: block;
    padding: 22px 20px;
    flex-grow: 1;
    color: inherit;
}

.mobile-menu-block .text-red {
    color: #E32124;
}

.mobile-menu-block .sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all ease 0.4s;
    max-width: 100%;
    text-transform: none;
    overflow-y: auto;
    height: 100dvh;
}

.sub-menu li {
    text-transform: revert;
}

.mobile-menu-block .menu-item__button {
    width: 40px;
    min-width: 40px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 6px 11px;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='11' viewBox='0 0 6 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 5.5C6 5.34159 5.93865 5.19585 5.82209 5.0818L0.96319 0.164747C0.852761 0.0570276 0.717791 0 0.558282 0C0.245399 0 0 0.24712 0 0.576613C0 0.735023 0.0613497 0.88076 0.159509 0.988479L4.62577 5.5L0.159509 10.0115C0.0613497 10.1192 0 10.2586 0 10.4234C0 10.7529 0.245399 11 0.558282 11C0.717791 11 0.852761 10.943 0.96319 10.8289L5.82209 5.9182C5.93865 5.79781 6 5.65841 6 5.5Z' fill='%23111111'/%3E%3C/svg%3E%0A");
}

.mobile-menu__bottom {
    display: none;
    background: #000;
    color: #fff;
    font-size: 16px;
    line-height: 140%;
    text-transform: uppercase;
}

.mobile-menu__bottom.active {
    display: block;
}

.mobile-menu__bottom .phone {
    font-size: 18px;
}

.mobile-menu__bottom > li {
    border-top: 1px solid rgba(242, 242, 242, 0.1);
    padding: 15px 20px;
}

.mobile-menu__bottom a {
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.mobile-menu__cabinet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.mobile-menu-langs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.mobile-menu-langs__block {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.mobile-menu-langs__block img {
    display: none;
    width: 17px;
    min-width: 17px;
    height: 17px;
    border-radius: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.mobile-menu-langs__block span {
    opacity: .4;
}

.mobile-menu-langs__block .current img {
    display: block;
}

.mobile-menu-langs__block .current span {
    opacity: 1;
}

.mobile-menu-langs__block .current span,
.underline {
    text-underline-position: under;
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .mobile-menu {
        display: block;
    }

    .header__icon.header__favorite,
    .header__icon.header__person {
        display: none !important;
    }

    .logo {
        width: 100%;
        max-width: 219px;
    }
}
