.mnthen-dropdown-btn, .mnthen-mobile-menu {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mnthen-dropdown-content {
  -webkit-overflow-scrolling: touch;
  display: none;
  position: absolute;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
}

.mnthen-dropdown-content.active {
  display: block;
}

@media (max-width: 768px) {
  .mnthen-nav {
    display: none;
  }
  
  .mnthen-nav.active {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
  }
  
  .mnthen-dropdown-content {
    position: static;
    box-shadow: none;
    padding-left: 20px;
  }
}
