/* 헤더 전용 스타일: 메뉴/로고/모바일 드로어 */
.theme-new .header {
  position: relative;
  top: auto;
  z-index: 1030;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  box-shadow: none;
}

.theme-new .navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 62px;
}

.theme-new .navbar-brand {
  position: absolute;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-text-main);
  font-size: 1rem;
  font-weight: 700;
}

.theme-new .navbar-brand img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 8px;
}

.theme-new #nav-menu {
  display: flex;
  gap: 34px;
  align-items: center;
}

.theme-new #nav-menu .nav-link {
  color: #8e7405;
  font-size: 0.96rem;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.theme-new #nav-menu .nav-link:hover {
  color: #6d5904;
  border-bottom-color: #6d5904;
}

.theme-new #mobile-open {
  position: absolute;
  right: 0;
}

.theme-new .mobile-menu {
  background: #fffdf2;
}

.theme-new .mobile-menu .nav-link {
  color: #8e7405;
}

@media (max-width: 767px) {
  .theme-new .navbar {
    justify-content: flex-start;
    min-height: 64px;
    padding-right: 56px;
  }

  .theme-new #nav-menu {
    display: none !important;
  }

  .theme-new #mobile-open {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .theme-new .navbar-brand {
    position: static;
  }

  .theme-new .navbar-brand span {
    display: none;
  }
}

/* 1920x1080 기준: 상단은 약간 컴팩트하게 유지 */
@media (min-width: 1400px) and (min-height: 1000px) {
  .theme-new .navbar {
    min-height: 58px;
  }

  .theme-new .navbar-brand img {
    width: 30px;
    height: 30px;
  }

  .theme-new #nav-menu .nav-link {
    font-size: 0.94rem;
    padding: 3px 0;
  }
}
