.off-canvas-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-brand-800);
  color: white;
  padding: 24px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transform: translateY(-100%);
  transition: transform 0.4s ease-out, visibility 0.4s ease-out;
  visibility: hidden;
  z-index: 1000;
  overflow-y: auto;
}

.off-canvas-sidebar.is-active {
  transform: translateY(0);
  visibility: visible;
}

.off-canvas-wrapper {
  transform: none !important;
  transition: none !important;
}

body.menu-open {
  overflow: hidden; /* Prevent background scrolling when menu is open */
}

.menu-toggle,
.menu-close {
  background: none;
  border: 1px solid #ccc;
  cursor: pointer;
  z-index: 1001;
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--color-white);
  border: 1px solid white;
  font-size: 48px;
  line-height: 1;
  border: none;
}

.off-canvas-sidebar .navigation .menu-main a {
  color: var(--color-white);
}
