
.hana-burger-icon {
  font-size: 28px;
  color: white;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.hana-slide-menu {
  position: fixed;
  top: 0;
  right: -260px;
  width: 250px;
  height: 100vh;
  background: #fff;
  padding: 60px 20px 20px;
  transition: right 0.3s ease;
  z-index: 1000;
  box-shadow: -2px 0 12px rgba(0,0,0,0.2);
  overflow-y: auto;
}

.hana-slide-menu.active {
  right: 0;
}

.hana-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}

.hana-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hana-menu-items li {
  margin: 0;
  border-bottom: 1px solid #ddd;
}

.hana-menu-items li a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  font-size: 15px;
  color: #333;
}

.hana-menu-items li.menu-item-has-children > a:after {
  content: '▼';
  float: left;
  margin-right: 8px;
  font-size: 12px;
  transform: rotate(-90deg);
}

.hana-menu-items li.menu-item-has-children > ul {
  display: none;
  padding-left: 10px;
}

.hana-menu-items li.menu-item-has-children.active > ul {
  display: block;
}

.hana-menu-items li.menu-item-has-children > a {
  cursor: pointer;
}
