@charset "UTF-8";
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 110px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 400;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
#header.scrolled {
  background: black;
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .container .h-logo {
  flex: 0 0 auto;
  height: 50%;
  display: flex;
}
@media (max-width: 1280px) {
  #header .container .h-logo {
    height: 70%;
  }
}
#header .container .h-logo > img {
  width: auto;
  height: 100%;
}
#header .container .h-global-nav {
  flex: 0 0 auto;
  height: 100%;
}
@media (max-width: 1280px) {
  #header .container .h-global-nav {
    display: none;
  }
}
#header .container .h-global-nav .depth-1 {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header .container .h-global-nav .depth-1 > li {
  position: relative;
  height: 100%;
}
#header .container .h-global-nav .depth-1 > li > a {
  height: 100%;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  #header .container .h-global-nav .depth-1 > li > a {
    padding: 0 16px;
    font-size: 16px;
  }
}
#header .container .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%);
  width: 200px;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #fafafa;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li .depth-2 > li {
  width: 100%;
  height: auto;
}
#header .container .h-global-nav .depth-1 > li .depth-2 > li > a {
  width: 100%;
  height: 52px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  transition: color 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li .depth-2 > li > a:hover {
  color: #E60012;
}
#header .container .h-global-nav .depth-1 > li:hover > a {
  color: #E60012;
}
#header .container .h-global-nav .depth-1 > li:hover .depth-2 {
  visibility: visible;
  opacity: 1;
}
#header .container .m-menu-open {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: none;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .m-menu-open {
    display: block;
  }
}
#header .container .m-menu-open > svg {
  width: 100%;
  height: 100%;
  fill: white;
}

.whole-menu {
  position: fixed;
  right: -300px;
  top: 12px;
  width: 280px;
  height: calc(100% - 24px);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 400;
  border: 1px solid #707070;
  border-right-color: #464646;
  border-bottom-color: #464646;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
}
.whole-menu.active {
  right: 12px;
}
.whole-menu .whole-head {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.whole-menu .whole-head > a {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.whole-menu .whole-head > a > svg {
  width: 80%;
  height: 80%;
  fill: white;
}
.whole-menu .whole-head .m-menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.whole-menu .whole-head .m-menu-close > svg {
  width: 80%;
  height: 80%;
  fill: white;
}
.whole-menu .whole-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.whole-menu .whole-body .w-global-nav {
  width: 100%;
  height: auto;
}
.whole-menu .whole-body .w-global-nav .depth-1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li > a, .whole-menu .whole-body .w-global-nav .depth-1 > li > span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  cursor: pointer;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .toggle-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.2rem;
  height: 1.2rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .toggle-box > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .depth-2 {
  width: 100%;
  height: auto;
  max-height: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .depth-2 li {
  width: 100%;
  height: auto;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li .depth-2 li a {
  padding-left: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #fafafa;
}
.whole-menu .whole-body .w-global-nav .depth-1 > li.active .toggle-box {
  transform: rotate(90deg);
}
.whole-menu .whole-body .w-global-nav .depth-1 > li.active .depth-2 {
  max-height: 200px;
  margin-top: 12px;
}

#hd_wr.namho-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}
#hd_wr.namho-header.fixed {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  height: 80px;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
#hd_wr.namho-header.fixed .namho-gnb .depth-1 > li > a {
  color: #333;
}
#hd_wr.namho-header.fixed .hd_right_btn > a, #hd_wr.namho-header.fixed .hd_right_btn > div > button {
  color: #333;
}
#hd_wr.namho-header.fixed .btn-menu-mobile span {
  background: #333;
}
#hd_wr.namho-header .inner {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#hd_wr.namho-header .logo {
  height: 50px;
}
#hd_wr.namho-header .logo a {
  display: block;
  height: 100%;
}
#hd_wr.namho-header .logo img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#hd_wr.namho-header .namho-gnb {
  height: 100%;
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}
#hd_wr.namho-header .namho-gnb .depth-1 {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 50px;
}
#hd_wr.namho-header .namho-gnb .depth-1 > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
#hd_wr.namho-header .namho-gnb .depth-1 > li > a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s;
}
#hd_wr.namho-header .namho-gnb .depth-1 > li:hover > a {
  color: #E60012;
}
#hd_wr.namho-header .namho-gnb .depth-1 > li:hover .depth-2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#hd_wr.namho-header .namho-gnb .depth-1 > li .depth-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 160px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border-top: 3px solid #E60012;
  z-index: 100;
}
#hd_wr.namho-header .namho-gnb .depth-1 > li .depth-2 > li > a {
  display: block;
  padding: 15px 20px;
  color: #555;
  font-size: 15px;
  text-align: center;
  border-bottom: 1px solid #f1f1f1;
  transition: 0.2s;
}
#hd_wr.namho-header .namho-gnb .depth-1 > li .depth-2 > li > a:hover {
  color: #E60012;
  background: #f9f9f9;
}
#hd_wr.namho-header #hd_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
#hd_wr.namho-header .hd_right_btn {
  display: none;
  align-items: center;
  gap: 15px;
}
#hd_wr.namho-header .hd_right_btn > a, #hd_wr.namho-header .hd_right_btn > div > button {
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}
#hd_wr.namho-header .hd_right_btn .cart {
  position: relative;
}
#hd_wr.namho-header .hd_right_btn .cart .cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background: #E60012;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  padding: 2px 5px;
}
#hd_wr.namho-header .btn-menu-mobile {
  display: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}
#hd_wr.namho-header .btn-menu-mobile span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}
#hd_wr.namho-header .btn-menu-mobile.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}
#hd_wr.namho-header .btn-menu-mobile.active span:nth-child(2) {
  opacity: 0;
}
#hd_wr.namho-header .btn-menu-mobile.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
  #hd_wr.namho-header {
    height: 80px;
    background: #fff;
  }
  #hd_wr.namho-header .logo {
    height: 40px;
  }
  #hd_wr.namho-header .namho-gnb {
    display: none;
  }
  #hd_wr.namho-header .hd_right_btn > a, #hd_wr.namho-header .hd_right_btn > div > button {
    color: #333;
  }
  #hd_wr.namho-header .btn-menu-mobile {
    display: flex;
  }
  #hd_wr.namho-header .btn-menu-mobile span {
    background: #333;
  }
}
/* ==========================================
   FOOTER (NAMHO 커스텀 푸터)
========================================== */
#footer {
  width: 100%;
  height: auto;
  padding: 90px 0 52px;
  background: white;
  border-top: 1px solid black;
}
#footer .inner {
  width: 95%;
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
#footer {
  /* 상단 슬로건 & 메뉴 */
}
#footer .f-top {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
#footer .f-top .f-slogan {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
  color: black;
  letter-spacing: -1px;
  word-break: keep-all;
}
#footer .f-top .f-nav {
  display: flex;
  margin-bottom: 10px;
  gap: 50px;
}
#footer .f-top .f-nav li a {
  font-size: 20px;
  font-weight: 500;
  color: black;
  transition: color 0.3s;
}
#footer .f-top .f-nav li a:hover {
  color: #E60012;
}
#footer {
  /* 하단 기업정보 영역 */
}
#footer .f-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#footer .f-bottom .f-left {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
#footer .f-bottom .f-left .f-controls {
  display: flex;
  align-items: center;
  gap: 80px;
  /* 패밀리 사이트 셀렉트 박스 커스텀 */
}
#footer .f-bottom .f-left .f-controls .family-site select {
  width: 220px;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #ccc;
  /* 우측 화살표를 CSS로 그리기 (이미지 없이) */
  background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23999" stroke-width="1.5"><path d="M6 9l6 6 6-6"/></svg>') no-repeat right 15px center;
  background-size: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 15px;
  color: #555;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
}
#footer .f-bottom .f-left .f-controls .family-site select:focus {
  border-color: #111;
}
#footer .f-bottom .f-left .f-controls .f-logo {
  height: 40px;
}
#footer .f-bottom .f-left .f-controls .f-logo img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#footer .f-bottom .f-left .f-info p {
  font-size: 13px;
  color: #777;
  line-height: 1.8;
  letter-spacing: -0.3px;
}
#footer .f-bottom {
  /* 시안 우측 하단의 빨간색 사각형 TOP 버튼 */
}
#footer .f-bottom .btn-top {
  width: 65px;
  height: 65px;
  background: #FF0000;
  border: none;
  position: relative;
  transition: background 0.3s;
  cursor: pointer;
}
#footer .f-bottom .btn-top > svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 30%;
  fill: white;
}
#footer .f-bottom .btn-top:hover {
  background: #cc0000;
}
#footer {
  /* -------------------------------------
     모바일 / 태블릿 반응형 (1024px 이하)
  ------------------------------------- */
}
@media (max-width: 1024px) {
  #footer {
    padding: 60px 0;
  }
  #footer .inner {
    gap: 40px;
  }
  #footer .f-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  #footer .f-top .f-slogan {
    font-size: 28px;
  }
  #footer .f-top .f-nav {
    flex-wrap: wrap;
    gap: 20px;
  }
  #footer .f-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  #footer .f-bottom .f-left .f-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  #footer .f-bottom .btn-top {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
  }
}/*# sourceMappingURL=common.css.map */