/* Responsive Base: Mobile Menu Toggle */

.mobile-menu-toggle,
.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10002;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.mobile-menu-toggle span,
.burger-btn span {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--secondary-color);
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.28s ease, background 0.28s ease;
}

.mobile-menu-toggle span:nth-child(1),
.burger-btn span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-menu-toggle span:nth-child(2),
.burger-btn span:nth-child(2) {
  transform: translateY(0);
}

.mobile-menu-toggle span:nth-child(3),
.burger-btn span:nth-child(3) {
  transform: translateY(6px);
}

.mobile-menu-toggle:hover,
.burger-btn:hover {
  transform: translateY(-1px);
}

.mobile-menu-toggle.active span:nth-child(1),
.burger-btn.active span:nth-child(1) {
  transform: translateY(-6px);
  background: rgba(255, 248, 241, 0.96);
}

.mobile-menu-toggle.active span:nth-child(2),
.burger-btn.active span:nth-child(2) {
  opacity: 1;
  background: rgba(255, 248, 241, 0.96);
}

.mobile-menu-toggle.active span:nth-child(3),
.burger-btn.active span:nth-child(3) {
  transform: translateY(6px);
  background: rgba(255, 248, 241, 0.96);
}
