/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 11 2025 | 17:31:22 */
/* Блокуємо скрол сторінки, коли меню відкрите */
body.no-scroll { overflow: hidden; }

/* Оверлей */
#menuOverlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  z-index: 9998;
}
#menuOverlay.is-show{ opacity: 1; pointer-events: auto; }

/* Панель мобільного меню (виїзд справа) */
#mobileMenu{
  position: fixed; top: 0; right: 0; bottom: 0; 
	/*width: 86vw; max-width: 420px;
  background: #fff;*/
  transform: translateX(100%);
  opacity: 0;
  transition: transform .45s ease, opacity .45s ease;
  z-index: 9999;  
  overflow-y: auto;
  width: 95%;	
  box-shadow: -10px 0 30px rgba(0,0,0,.15);
}
#mobileMenu.is-open{ transform: translateX(0); opacity: 1; }

/* Опціонально — капсульна кнопка 
#menuToggle .elementor-button, #menuToggle.elementor-button{
  border-radius: 999px; padding: 8px 14px;
}
#mobileMenu a{ display:block; padding:12px 0; font-weight:500; }*/
