.site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(var(--light-color), 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobmenu {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 300px;
    width: 100%;
    z-index: 1000;
    height: 100vh;
    background-color: rgb(var(--light-color));
    color: rgb(var(
    --white-color));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}


.site-overlay--active, .mobmenu--active {
    opacity: 1;
    visibility: visible;
}

.mobmenu__wrapper {
    height: 100%;
    overflow-y: auto;
}

.mobmenu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    padding: 0;
}

.mobmenu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobmenu__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.mobmenu-item__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobmenu-item__more {
    background: none;
    border: none;
    width: 18px;
    height: 18px;
    padding: 0;
    display: flex;
    padding: 3px;
    transform: rotate(-90deg);
}

.mobmenu-item--open > .mobmenu-item__wrapper > .mobmenu-item__more {
    transform: rotate(0);
}

.mobmenu-item > .mobmenu-list {
    display: none;
    padding: 16px 0;
    margin: 16px 0;
    border-top: 1px solid rgb(var(--dark-color), 0.1);
    border-bottom: 1px solid rgb(var(--dark-color), 0.1);
}

.mobmenu-item--open > .mobmenu-list {
    display: flex
}

.mobmenu-link {
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
}