.oganov-mobile-menu {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    min-width: 42px;
    min-height: 48px;
    z-index: 1001;
}

.oganov-mobile-menu__open {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    padding: 9px !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    cursor: pointer !important;
    transition: background-color 0.24s ease;
    appearance: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.oganov-mobile-menu__open-lines,
.oganov-mobile-menu__close-lines {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.oganov-mobile-menu__open-lines {
    flex-direction: column;
    gap: 6px;
}

.oganov-mobile-menu__line,
.oganov-mobile-menu__close-line {
    width: 24px !important;
    height: 2px !important;
    background: #ffffff !important;
    display: block;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.oganov-mobile-menu__close-line {
    position: absolute;
}

.oganov-mobile-menu__close-line:first-child {
    transform: rotate(45deg) scale(0.7);
}

.oganov-mobile-menu__close-line:last-child {
    transform: rotate(-45deg) scale(0.7);
}

.oganov-mobile-menu__close-lines {
    opacity: 0;
    pointer-events: none;
}

.oganov-mobile-menu.is-open .oganov-mobile-menu__open-lines {
    opacity: 0;
    pointer-events: none;
}

.oganov-mobile-menu.is-open .oganov-mobile-menu__close-lines {
    opacity: 1;
    pointer-events: auto;
}

.oganov-mobile-menu.is-open .oganov-mobile-menu__close-line:first-child {
    transform: rotate(45deg) scale(1);
}

.oganov-mobile-menu.is-open .oganov-mobile-menu__close-line:last-child {
    transform: rotate(-45deg) scale(1);
}

.oganov-mobile-menu__panel {
    position: fixed;
    top: var(--oganov-mobile-menu-top, 112px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    background: #181831;
    transform: translateY(-28px) scaleY(0.98);
    transform-origin: top center;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.26s ease;
}

.oganov-mobile-menu.is-open .oganov-mobile-menu__panel {
    transform: translateY(0) scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

.oganov-mobile-menu__inner {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 48px 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.oganov-mobile-menu__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.oganov-mobile-menu__nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.oganov-mobile-menu__item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-family: "Involve", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.oganov-mobile-menu__cta {
    width: 100% !important;
    min-height: 56px !important;
    padding: 16px 24px !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    text-align: center !important;
    font-family: "Involve", sans-serif;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 600 !important;
    line-height: normal;
    text-transform: uppercase !important;
    cursor: pointer !important;
    appearance: none !important;
    box-shadow: none !important;
}

.oganov-mobile-menu__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.oganov-mobile-menu__footer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.oganov-mobile-menu__footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    color: #d6d6d6;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Involve", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.oganov-mobile-menu__footer-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

html.oganov-mobile-menu-locked,
body.oganov-mobile-menu-locked {
    overflow: hidden !important;
}
