.header {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .site-logo {
    display: flex;
    align-items: center;
    height: 80px;
    z-index: 999;

    img {
      width: 120px;
      height: auto;
      object-fit: contain;
    }
  }
}

body.admin-bar {
  position: absolute;
  top: 0;
}

body.admin-bar .header,
body.admin-bar .side-menu {
  margin-top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .header,
  body.admin-bar .side-menu {
    margin-top: 46px;
  }
}

/* 햄버거 버튼 */
.menu-btn,
.close-menu {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  img {
    width: 30px;
    height: 30px;
  }
}

/* 배경 어둡게 */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* 오른쪽 메뉴 */
.side-menu {
  position: fixed;
  display: none;
  top: 0;
  right: -500px;
  max-width: 500px;
  width: 100%;
  height: 100dvh;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1002;
  padding: 40px 24px;
  overflow-y: auto;
}

/* 열린 상태 */
.side-menu.active {
  right: 0;
}

/* WP 메뉴 초기화 */
.side-menu ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.side-menu li {
  margin-bottom: 20px;
}

.side-menu a {
  text-decoration: none;
  font-size: 20px;
  color: #333;
}
