#menumobile {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -32rem;
    width: 28rem;
    background: var(--c-white);
    z-index: 99991;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    box-shadow: -0.4rem 0 2.4rem rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mm__close {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-neutral-700);
    font-size: 2.6rem;
    border: none;
    outline: none;
}

.mm__close:hover {
    color: var(--c-black)
}

.mm__close:active {
    transform: scale(0.95);
}

.come-menumobile {
    right: 0 !important;
}

.mm__header {
    background: var(--c-white);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
}

.mm__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 0;
    height: 1px;
    background: linear-gradient(272deg, #00000038 0%, transparent 100%);
}

.mm__logo {

    max-height: 6rem;
    user-select: none;
    object-fit: contain;
}

.mm__footer {
    background: rgba(0, 0, 0, 0.02);
    padding: 2rem;
    flex-shrink: 0;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.08);
}

.mm__phone {
    display: flex;
    gap: .5rem;
    color: var(--c-white);
    text-decoration: none;
    justify-content: center;
    font-weight: 500;
    font-size: var(--fs-20);
    transition: all 0.2s ease;
    padding: 1rem;
    border-radius: 3.2rem;
    background: var(--c-primary);
    border: 0.1rem solid rgba(0, 0, 0, 0.06);

}

.mm__phone:hover {
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08);
}

.mm__phone i {
    font-size: 1.8rem;
    color: var(--c-white);
    display: flex;
    margin-top: .5rem;
}

/* Submenu content area */
.mm__nav .sub-menu .mm__nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mm__nav .sub-menu .mm__nav ul>li>a {
    padding: 1.2rem 2rem;
    font-size: 1.5rem;
}

.mm__content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.mm__content::-webkit-scrollbar {
    width: 0.4rem;
}

.mm__content::-webkit-scrollbar-track {
    background: transparent;
}

.mm__content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.2rem;
}

.mm__content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.mm__nav {
    padding: 1rem 0;
}

.mm__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mm__nav ul li {
    margin: 0;
}

.mm__nav ul>li>a {
    color: var(--c-primary);
    display: flex;
    align-items: center;
    padding: 1.4rem 2rem;
    position: relative;
    font-family: var(--ff-main);
    font-weight: 400;
    font-size: var(--fs-16);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mm__nav ul>li>a:hover {
    color: var(--c-secondary);
}

.mm__nav ul li:last-child a {
    border-bottom: none;
}

.mm__nav .sub-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 28rem;
    background: var(--c-white);
    right: -28rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-y: auto;
}

.mm__submenu-arrow {
    margin-right: auto;
    padding-right: 2rem;
    /* height: 2.4rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(0, 0, 0, 0.05); */
    /* border-radius: 0.6rem; */
    transition: all 0.2s ease;
}

.mm__submenu-arrow i {
    /* border: solid var(--c-primary); */
    /* border-width: 0 0.2rem 0.2rem 0; */
    display: inline-block;
    /* padding: 0.3rem; */
    /* transform: rotate(270deg); */
    /* -webkit-transform: rotate(270deg); */
    font-size: 1.2rem;
}

.mm__nav ul li a:hover .mm__submenu-arrow {
    color: var(--c-secondary);
    transform: scale(1.05);
}

.come-submenu {
    right: 0 !important;
}

.mm__submenu-header {
    background: var(--c-white);
    padding: 2rem;
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    gap: 1rem;
}

.mm__submenu-header-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
    cursor: pointer;
    padding: 0.8rem;
    margin: -0.8rem;
    border-radius: 0.8rem;
    margin-bottom: 0rem;
    transition: all 0.2s ease;
}



.mm__submenu-back {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.mm__submenu-back i {
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--c-blue-150);
    border-radius: 4px;
}

.mm__submenu-title {
    color: var(--c-primary);
    font-family: var(--ff-main);
    font-weight: 600;
    font-size: 1.6rem;
    flex: 1;
    user-select: none;
    pointer-events: none;
}

.mm__submenu-main {
    background: var(--c-secondary);
    color: var(--c-white);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 1.6rem;
    font-family: var(--ff-main);
    font-weight: 500;
    font-size: var(--fs-14);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.mm__submenu-main:hover {
    background: var(--c-secondary);
}