.page-menu-offcavas {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100% !important;
    max-width: 100%;
    max-height: 100% !important;
    background-color: rgba(255, 255, 255, 1);
}

/* Шапка меню (навбар): логотип слева, кнопка закрытия справа, нижняя граница */
.page-menu-offcavas__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    width: 100%;
    min-height: 4.5625rem; /* 72px */
    padding: 0 1.25rem; /* 20px */
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 0.0625rem solid #000;
}

.page-menu-offcavas__logo {
    width: 12.6875rem; /* 203px */
    height: 1.125rem; /* 18px */
    flex-shrink: 0;
    object-fit: contain;
    align-self: center;
}

/* Кнопка закрытия меню (иконка-крестик 32x32) */
.page-menu-offcavas__close {
    position: relative;
    width: 2rem; /* 32px */
    height: 2rem; /* 32px */
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.page-menu-offcavas__close::before,
.page-menu-offcavas__close::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.25rem; /* 20px */
    height: 0.1875rem; /* 3px */
    border-radius: 0.3125rem;
    background-color: rgba(13, 13, 13, 1);
}

.page-menu-offcavas__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.page-menu-offcavas__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Тело меню: вертикальный список ссылок + блок кнопок внизу */
.page-menu-offcavas__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    padding: 2.4375rem 1.25rem 1.25rem; /* 40px 20px 20px */
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 1);
}

/* Вертикальное меню навигации */
.page-menu-offcavas__menu .navigation-menu__container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2.5rem; /* 40px */
}

.page-menu-offcavas__menu .navigation-menu__link {
    font-family: "PTGolos_reg", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: -0.04em;
    color: rgba(13, 13, 13, 1);
    white-space: nowrap;
    padding: 0;
    border: none;
    text-decoration: none;
}

.page-menu-offcavas__menu .navigation-menu__link:hover {
    color: rgba(13, 13, 13, 1);
}

/* Блок кнопок внизу меню */
.page-menu-offcavas__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* 16px */
    margin-top: auto;
    padding-top: 2.5rem; /* 40px */
}

.page-menu-offcavas__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.25rem; /* 52px */
    padding: 1rem 1.25rem 1.0625rem 1.25rem;
    border-radius: 0.75rem;
    box-sizing: border-box;
    font-family: "PTGolos_reg", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: -0.04em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

/* Основная кнопка */
.page-menu-offcavas__button--primary {
    background-color: rgba(13, 13, 13, 1);
    border: 0.0625rem solid rgba(13, 13, 13, 1);
    color: rgba(255, 255, 255, 1);
}

.page-menu-offcavas__button--primary:hover {
    background-color: rgba(43, 43, 43, 1);
    border-color: rgba(43, 43, 43, 1);
    color: rgba(255, 255, 255, 1);
}

/* Вторичная кнопка */
.page-menu-offcavas__button--secondary {
    background-color: rgba(255, 255, 255, 1);
    border: 0.0625rem solid rgba(13, 13, 13, 1);
    color: rgba(13, 13, 13, 1);
}

.page-menu-offcavas__button--secondary:hover {
    background-color: rgba(244, 244, 244, 1);
    border-color: rgba(13, 13, 13, 1);
    color: rgba(13, 13, 13, 1);
}