/* ── Меню: фиксированный оверлей, скрытое по умолчанию ── */
#rec2290993721 {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 9000 !important;
  background: rgba(31, 34, 41, 0.40) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  overflow-y: auto !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  margin: 0 !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-24px) scale(0.97) !important;
  transform-origin: top center !important;
  transition:
    opacity    0.40s cubic-bezier(0.22, 1, 0.36, 1),
    transform  0.40s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s   linear 0.40s !important;
}

/* ── Открытое состояние ── */
#rec2290993721.is-open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: all !important;
  transform: translateY(0) scale(1) !important;
  transition:
    opacity    0.40s cubic-bezier(0.22, 1, 0.36, 1),
    transform  0.40s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s   linear 0s !important;
}

/* ── Блокировка скролла страницы когда меню открыто ── */
body.menu-is-open {
  overflow: hidden !important;
}