@charset "UTF-8";
/*=================================================
    컬러
=================================================*/
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
/*=================================================
    컬러
=================================================*/
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
* {
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mob-nav {
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7019607843);
  backdrop-filter: blur(20px);
  z-index: 999;
}

.inner {
  width: 100%;
  padding: 0 0 0 40px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 38px;
  box-sizing: border-box;
}

.logo {
  flex: 0 0 auto;
  padding-left: 0;
}
.logo img {
  width: 120px;
}

.gnb {
  display: flex;
  min-width: 0;
  justify-content: center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 38px;
  min-width: 0;
  flex-wrap: nowrap;
}

.item > a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #746b64;
  text-align: center;
  transition: 0.3s;
}

.item.active > a,
.item > a:hover {
  color: #ebca6d;
}

.mega-wrap {
  width: 100%;
  background: #f7f7f7;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

header.is-open .mega-wrap {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media screen and (min-width: 768px) {
  /* 상단 .inner + .mega-wrap 아래만 딤 (--mega-dim-top 은 header.html 스크립트에서 갱신) */
  body:has(header.is-open)::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: var(--mega-dim-top, 88px);
    z-index: 99990;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
  }
}
.mega-inner {
  box-sizing: border-box;
  width: 1427px;
  margin: 0 auto;
  padding: 28px 0 77px;
  align-items: stretch;
  gap: 0;
  justify-content: space-between;
}

.mega-panel {
  display: none;
}

.mega-panel.is-active {
  display: flex;
}

.mega-panel > .sub {
  order: 1;
}
.mega-panel > .depth-col {
  order: 2;
}
.mega-panel > .links {
  order: 3;
}
.mega-panel > .visual {
  order: 4;
}

.sub {
  flex-shrink: 0;
  width: 260px;
  border-right: 1px solid #ddd;
}
.sub li + li {
  margin-top: 12px;
}
.sub a {
  font-size: 16px;
  font-weight: 600;
  color: #2c2721;
  line-height: 1.4;
}
.sub .has-depth > a {
  position: relative;
}
.sub > li.active > a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  color: #ebca6d;
}
.sub > li.active > a::after {
  content: "→";
  flex-shrink: 0;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
  color: #ebca6d;
}
.sub .depth-data {
  display: none;
}

.depth-col {
  width: 180px;
  padding: 0 28px;
  border-right: 1px solid #ddd;
  box-sizing: border-box;
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.depth-col .depth-title {
  margin-bottom: 8px;
  font-size: 13px;
  color: #aaa;
}
.depth-col .depth-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.depth-col .depth-list a {
  font-size: 15px;
  color: #746b64;
}

.mega-inner.is-depth-open .depth-col {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.links {
  flex-shrink: 0;
  width: 180px;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  transition-delay: 60ms;
}

.mega-panel.is-active .links {
  opacity: 1;
  transform: translateY(0);
}

.mega-panel.is-active.is-depth-open .depth-col ~ .links {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 80ms;
}

@media (prefers-reduced-motion: reduce) {
  .depth-col {
    transition: none;
    transform: none;
  }
  .links {
    transition: none;
    transform: none;
    transition-delay: 0ms;
  }
}
.links-title {
  margin-bottom: 8px;
  font-size: 13px;
  color: #aaa;
}

.links a {
  font-size: 15px;
  color: #746b64;
}

.visual {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  transition-delay: 110ms;
}

.mega-panel.is-active .visual {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .visual {
    transition: none;
    transform: none;
    transition-delay: 0ms;
  }
}
.card {
  width: 180px;
  height: 220px;
  border-radius: 18px;
  background: #e9e9e9;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.card .card__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .card__media--empty {
  position: absolute;
  inset: 0;
  z-index: 0;
  box-sizing: border-box;
  background: #f2f2f2;
  border: 1px dashed #c4c4c4;
  pointer-events: none;
  overflow: hidden;
  border-radius: 20px;
}

.card.card--media-placeholder {
  background: #f0f0f0;
}

/* 대형 준비중 문구가 덮을 때는 테두리를 한 겹만(위 .card__preparing 과 동일) */
.card.large.card--media-placeholder .card__media--empty {
  border: none;
}

.card.small.card--media-placeholder .card__shade {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.07) 42%, transparent 72%);
}

.visual.visual--mega-off {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: none;
  transition: none;
}

.card.card--slot-off {
  opacity: 0.38;
  pointer-events: none;
}

.card.small {
  width: 160px;
  height: 255px;
  border-radius: 20px;
  overflow: hidden;
}
.card.small .card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.22) 38%, transparent 72%);
}
.card.small .card__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px 16px;
  pointer-events: none;
}
.card.small .card__caption {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  line-height: 1.2;
  color: #fff;
}
.card.small .card__caption-line {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.card.small .card__caption-line--emph {
  font-size: 15px;
  font-weight: 400;
}
.card.small .card__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  transform: translate(0.5px, 0.5px);
}

.card.large {
  width: 430px;
  height: 255px;
  /* 빈 썸네일(.card__media--empty)과 동일: 배경 + 점선 테두리 */
}
.card.large.card--mega-video {
  cursor: pointer;
  border: 0;
  padding: 0;
  background: #000;
}
.card.large.card--mega-video .card__media {
  transition: opacity 0.2s ease;
}
.card.large.card--mega-video .card__play-btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.card.large.card--mega-video .card__play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  position: relative;
}
.card.large.card--mega-video .card__play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}
.card.large.card--mega-video .card__video-iframe {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background: #000;
}
.card.large.card--mega-video.is-playing .card__media,
.card.large.card--mega-video.is-playing .card__play-btn {
  opacity: 0;
  pointer-events: none;
}
.card.large .card__preparing {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #666;
  background: #f2f2f2;
  border: 1px dashed #c4c4c4;
  border-radius: inherit;
  pointer-events: none;
  text-align: center;
  padding: 12px;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 20px;
}

.util {
  flex: 0 0 auto;
  margin-left: 0;
  display: flex;
  position: relative;
  z-index: 2;
}

.lang-wrap {
  position: relative;
  flex: 0 0 auto;
}

.ai-btn,
.lang-btn {
  width: 81px;
  height: 81px;
  background-color: #ebca6d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
}

.ai-btn {
  border-right: 0.5px solid #fff;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.lang-btn__icon {
  width: 26px;
  height: 26px;
  display: block;
  pointer-events: none;
  flex-shrink: 0;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 81px;
  box-sizing: border-box;
  margin: 0;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  background: rgba(20, 20, 20, 0.68);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.lang-wrap.is-lang-open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  line-height: 0;
}

.lang-flag img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.lang-flag__code {
  display: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #746b64;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  line-height: 1;
}

.lang-flag:hover img,
.lang-flag:focus-visible img {
  box-shadow: 0 0 0 2px rgba(235, 202, 109, 0.6);
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
  color: #452716;
}

.menu-ic {
  position: relative;
  display: block;
  width: 25px;
  height: 18px;
  flex-shrink: 0;
  pointer-events: none;
}

.menu-ic::before,
.menu-ic::after {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-sizing: border-box;
  transition: transform 0.28s ease, top 0.28s ease, bottom 0.28s ease, width 0.28s ease, left 0.28s ease, right 0.28s ease, opacity 0.2s ease;
}

.menu-ic::before {
  top: 0;
  left: 0;
  width: 100%;
  transform-origin: center;
}

.menu-ic-mid {
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  margin: 0;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: currentColor;
  line-height: 0;
  font-size: 0;
  transform-origin: center;
  transition: opacity 0.2s ease;
  pointer-events: none;
  box-sizing: border-box;
}

.menu-ic::after {
  bottom: 0;
  left: 0;
  width: 65%;
  transform-origin: center;
}

.menu-btn[aria-expanded=true] .menu-ic::before {
  top: 50%;
  bottom: auto;
  margin-top: -1px;
  transform: rotate(45deg);
}

.menu-btn[aria-expanded=true] .menu-ic-mid {
  opacity: 0;
}

.menu-btn[aria-expanded=true] .menu-ic::after {
  bottom: auto;
  top: 50%;
  right: auto;
  left: 0;
  width: 100%;
  margin-top: -1px;
  transform: rotate(-45deg);
}

header.is-lang-open .menu-btn .menu-ic::before {
  top: 50%;
  bottom: auto;
  margin-top: -1px;
  transform: rotate(45deg);
}

header.is-lang-open .menu-btn .menu-ic-mid {
  opacity: 0;
}

header.is-lang-open .menu-btn .menu-ic::after {
  bottom: auto;
  top: 50%;
  right: auto;
  left: 0;
  width: 100%;
  margin-top: -1px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1440px) {
  .inner {
    padding-left: 0px;
    column-gap: 0px;
  }
  .menu {
    gap: 18px;
  }
  .mega-inner {
    padding-left: 0px;
    padding-right: 0px;
  }
  .sub {
    margin-left: 120px;
  }
  .visual {
    padding-left: 0px;
  }
}
@media screen and (max-width: 1770px) {
  header {
    background-color: #fff;
    backdrop-filter: none;
  }
  .inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 15px;
    column-gap: 0;
    align-items: center;
    padding: 9px 0;
  }
  .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin: 0;
  }
  .gnb {
    display: none;
  }
  .mega-wrap {
    display: none;
  }
  .util {
    display: contents;
  }
  .ai-btn {
    display: none !important;
  }
  .lang-wrap {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: center;
  }
  .lang-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: transparent;
    border: none;
    color: #452716;
  }
  .lang-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    top: 62px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px 20px 28px;
    z-index: 99998;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px 10px;
    align-items: center;
    justify-items: start;
    background: #f9f6f2;
    backdrop-filter: none;
    border-radius: 0;
    transform: translateY(-8px);
  }
  .lang-wrap.is-lang-open .lang-dropdown {
    transform: translateY(0);
  }
  .lang-flag {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .lang-flag img {
    width: 33px;
    height: 33px;
  }
  .lang-flag__code {
    display: block;
  }
  .lang-flag:hover img,
  .lang-flag:focus-visible img {
    box-shadow: none;
  }
  .menu-btn {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    display: flex;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  body.mob-lang-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
  }
  body.mob-nav-open {
    overflow: hidden;
  }
  header.is-mob-nav-open .lang-dropdown {
    z-index: 100010;
  }
  /* [hidden]과 충돌 방지: 닫으면 레이어 제거 → 상단 햄버거 바(header .inner) 다시 보임 */
  .mob-nav[hidden] {
    display: none !important;
  }
  .mob-nav:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100000;
    box-sizing: border-box;
  }
  .mob-nav-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100dvh;
    background: #fff;
    box-sizing: border-box;
  }
  .mob-nav-head {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    justify-items: center;
    min-height: 50px;
    padding: 0 15px;
    box-sizing: border-box;
    background: #452716;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .mob-nav-lang {
    justify-self: start;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ebca6d;
    cursor: pointer;
    box-sizing: border-box;
  }
  .mob-nav-lang-ic {
    display: block;
    flex-shrink: 0;
  }
  .mob-nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
  }
  .mob-nav-logo img {
    display: block;
  }
  .mob-nav-close {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #ebca6d;
    box-sizing: border-box;
  }
  .mob-nav-close-ic {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    pointer-events: none;
  }
  .mob-nav-close-ic::before,
  .mob-nav-close-ic::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    margin-top: -1px;
    margin-left: -11px;
    border-radius: 999px;
    background: currentColor;
  }
  .mob-nav-close-ic::before {
    transform: rotate(45deg);
  }
  .mob-nav-close-ic::after {
    transform: rotate(-45deg);
  }
  .mob-nav-body {
    flex: 1 1 auto;
    display: flex;
    min-height: 0;
    overflow: hidden;
  }
  .mob-nav-side {
    flex: 0 0 38%;
    max-width: 168px;
    min-width: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #f6f6f6;
    box-sizing: border-box;
  }
  .mob-nav-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mob-nav-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 10px 12px;
    box-sizing: border-box;
    border: 0;
    background: transparent;
    font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2c2721;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.25;
  }
  .mob-nav-tab.is-active {
    background: #fff;
    color: #111;
  }
  .mob-nav-main {
    flex: 1 1 auto;
    min-width: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
  }
  .mob-nav-panel {
    padding: 0;
    box-sizing: border-box;
  }
  .mob-nav-ph {
    margin: 0;
    padding: 24px 18px;
    font-size: 14px;
    color: #746b64;
    line-height: 1.5;
  }
  .mob-cat {
    padding: 0 0 100px;
  }
  .mob-cat-item {
    position: relative;
    border-bottom: 0;
  }
  .mob-cat-item::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 1px;
    background: #e8e4df;
  }
  .mob-cat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    min-height: 52px;
    padding: 14px 18px;
    border: 0;
    background: #fff;
    font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #5e5752;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
  }
  .mob-cat-item.is-open .mob-cat-head {
    color: #2c2721;
  }
  .mob-cat-title {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
  }
  .mob-cat-item.is-open .mob-cat-title::before {
    content: "";
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ebca6d;
  }
  .mob-cat-chev {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin-top: 2px;
    border-right: 2px solid #9b9188;
    border-bottom: 2px solid #9b9188;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }
  .mob-cat-item.is-open .mob-cat-chev {
    transform: rotate(-135deg);
    margin-top: 6px;
  }
  .mob-cat-body {
    padding: 0;
    background: #fff;
  }
  .mob-cat-body .sub {
    width: auto !important;
    margin: 0 !important;
    padding: 4px 18px 20px !important;
    border: 0 !important;
    list-style: none;
    font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  }
  .mob-cat-body .sub li + li {
    margin-top: 10px;
  }
  .mob-cat-body .sub > li > a {
    font-size: 14px;
    font-weight: 500;
    color: #746b64;
    line-height: 1.45;
  }
  .mob-cat-body .depth-data {
    display: block !important;
    margin: 8px 0 0;
    padding: 0 0 0 10px;
    list-style: none;
  }
  .mob-cat-body .depth-data li {
    margin-top: 8px;
  }
  .mob-cat-body .depth-data a {
    position: relative;
    padding-left: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #746b64;
  }
  .mob-cat-body .depth-data a::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #aaa;
  }
  .mob-cat-empty {
    margin: 0;
    padding: 16px 18px 24px;
    font-size: 14px;
    color: #9b9188;
  }
}
#sub-header {
  margin-top: 80px;
  width: 100%;
  background-color: #4d4540;
}
@media screen and (max-width: 1520px) {
  #sub-header {
    display: none;
  }
}
#sub-header ul {
  display: flex;
  align-items: center;
  padding: 25px;
  justify-content: center;
}
#sub-header ul li {
  position: relative;
}
#sub-header ul li::after {
  position: absolute;
  right: 0;
  top: 2px;
  width: 1px;
  height: 13px;
  background-color: #b8aca4;
  content: "";
}
#sub-header ul li:last-child::after {
  display: none;
}
#sub-header ul li a {
  color: #b8aca4;
  font-size: 15px;
  padding: 0 35px;
}
#sub-header ul li.this-page a {
  color: #ebca6d;
  font-weight: 700;
}

#sub-header2 {
  width: 100%;
  background-color: #3c3532;
}
@media screen and (max-width: 1520px) {
  #sub-header2 {
    display: none;
  }
}
#sub-header2 ul {
  display: flex;
  align-items: center;
  padding: 18px;
  justify-content: center;
}
#sub-header2 ul li {
  position: relative;
}
#sub-header2 ul li::after {
  position: absolute;
  right: 0;
  top: 2px;
  width: 1px;
  height: 13px;
  background-color: #b8aca4;
  content: "";
}
#sub-header2 ul li:last-child::after {
  display: none;
}
#sub-header2 ul li a {
  color: #958178;
  font-size: 15px;
  padding: 0 35px;
}
#sub-header2 ul li.this-page a {
  color: #e4c1a8;
  font-weight: 700;
}

#mo-sub-header {
  display: none;
  position: relative;
}
@media screen and (max-width: 1520px) {
  #mo-sub-header {
    display: block;
    margin-top: 62px;
  }
}
#mo-sub-header .dropdown-btn {
  width: 100%;
  padding: 23px 20px;
  background: #4b423d;
  text-align: left;
  cursor: pointer;
  position: relative;
  color: #eecd6e;
}
#mo-sub-header .dropdown-btn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #b5aea8;
  border-bottom: 2px solid #b5aea8;
  transform: translateY(-70%) rotate(45deg);
  transition: 0.3s;
}
#mo-sub-header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #655a54;
  overflow: hidden;
  padding-bottom: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 10;
}
#mo-sub-header .dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 15px 20px 0;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  color: #b5aea8;
  font-size: 14px;
}
#mo-sub-header.active .dropdown-btn::after {
  transform: translateY(-30%) rotate(-135deg);
}
#mo-sub-header.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}