@charset "UTF-8";
body {
  background: white;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
  z-index: 600;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1280px) {
  #header {
    gap: 16px;
  }
}
#header .top {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#header .top .container {
  width: 95%;
  height: auto;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#header .top .container #h-phone {
  padding: 8px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #31A3DE;
  border-radius: 1000rem;
}
@media (max-width: 1280px) {
  #header .top .container #h-phone {
    padding: 6px 12px;
  }
}
#header .top .container #h-phone > svg {
  width: 20px;
  height: 20px;
  fill: white;
}
#header .top .container #h-phone > span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
}
#header .top .container #h-phone > b {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  color: white;
}
@media (max-width: 1280px) {
  #header .top .container #h-phone > b {
    font-size: 16px;
  }
}
#header .top .container .h-member-nav {
  padding: 8px 16px;
  border: 1px solid #464646;
  border-radius: 10000rem;
}
@media (max-width: 768px) {
  #header .top .container .h-member-nav {
    display: none;
  }
}
#header .top .container .h-member-nav > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header .top .container .h-member-nav > ul > li:not(:last-of-type) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #aaa;
}
#header .top .container .h-member-nav > ul > li > a {
  font-size: 14px;
  line-height: 1.1;
  color: black;
}
#header .bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#header .bottom .container {
  position: relative;
  width: 95%;
  height: auto;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .bottom .container #h-logo {
  display: flex;
  width: 240px;
  height: auto;
}
@media (max-width: 1280px) {
  #header .bottom .container #h-logo {
    width: 200px;
  }
}
#header .bottom .container #h-logo > img {
  width: 100%;
  height: auto;
}
#header .bottom .container .h-global-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
@media (max-width: 1280px) {
  #header .bottom .container .h-global-nav {
    display: none;
  }
}
#header .bottom .container .h-global-nav .depth-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header .bottom .container .h-global-nav .depth-1 > li {
  position: relative;
}
#header .bottom .container .h-global-nav .depth-1 > li:not(:last-of-type) {
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #aaa;
}
#header .bottom .container .h-global-nav .depth-1 > li > a {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: black;
  text-align: center;
  display: block;
  padding: 10px 0;
}
#header .bottom .container .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  background: #fff;
  border: 1px solid #aaa;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  border-radius: 8px;
  overflow: hidden;
  padding: 5px 0;
}
#header .bottom .container .h-global-nav .depth-1 > li .depth-2 li {
  border-right: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
#header .bottom .container .h-global-nav .depth-1 > li .depth-2 li a {
  display: block;
  padding: 10px 0;
  text-align: center;
  font-size: 15px;
  color: #555;
  transition: all 0.2s;
}
#header .bottom .container .h-global-nav .depth-1 > li .depth-2 li a:hover {
  background: #f7f9fc;
  color: #31A3DE;
  font-weight: bold;
}
#header .bottom .container .h-global-nav .depth-1 > li:hover > a {
  color: #31A3DE;
}
#header .bottom .container .h-global-nav .depth-1 > li:hover .depth-2 {
  display: block;
}
#header .bottom .container .h-right-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
#header .bottom .container .h-right-wrap .h-shop-nav {
  display: flex;
}
@media (max-width: 768px) {
  #header .bottom .container .h-right-wrap .h-shop-nav {
    display: none;
  }
}
#header .bottom .container .h-right-wrap .h-shop-nav > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1280px) {
  #header .bottom .container .h-right-wrap .h-shop-nav > ul {
    gap: 12px;
  }
}
#header .bottom .container .h-right-wrap .h-shop-nav > ul > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
#header .bottom .container .h-right-wrap .h-shop-nav > ul > li > a > img {
  width: 40px;
  height: 40px;
}
@media (max-width: 1280px) {
  #header .bottom .container .h-right-wrap .h-shop-nav > ul > li > a > img {
    width: 32px;
    height: 32px;
  }
}
#header .bottom .container .h-right-wrap .h-shop-nav > ul > li > a > span {
  font-size: 15px;
  line-height: 1.1;
  color: black;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  #header .bottom .container .h-right-wrap .h-shop-nav > ul > li > a > span {
    font-size: 14px;
  }
}
#header .bottom .container .h-right-wrap .m-menu-open {
  display: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .bottom .container .h-right-wrap .m-menu-open {
    display: block;
  }
}
#header .bottom .container .h-right-wrap .m-menu-open > svg {
  width: 100%;
  height: 100%;
  fill: #3D3D3D;
}

#mobile-quick-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 72px;
  display: none;
  flex-direction: row;
  z-index: 100;
  background: white;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  #mobile-quick-nav {
    display: flex;
  }
}
#mobile-quick-nav > a {
  flex: 1 1 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
#mobile-quick-nav > a .mq-icon {
  width: 32px;
  height: auto;
}
#mobile-quick-nav > a .mq-icon > img {
  width: 100%;
  height: auto;
}
#mobile-quick-nav > a > span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  color: #2D2D2D;
  word-break: keep-all;
  text-align: center;
}

#footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: black;
}
@media (max-width: 768px) {
  #footer {
    margin-bottom: 72px;
  }
}
#footer .top {
  width: 100%;
  height: auto;
  padding: 56px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 1px solid #707070;
}
#footer .top .container {
  width: 95%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .top .container #f-logo {
  width: 70%;
  height: auto;
  margin-bottom: 56px;
  max-width: 280px;
  display: flex;
}
#footer .top .container #f-logo > img {
  width: 100%;
  height: auto;
}
#footer .top .container .f-simple-nav {
  margin-bottom: 32px;
}
#footer .top .container .f-simple-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
#footer .top .container .f-simple-nav ul > li > a {
  font-size: 18px;
  font-weight: 200;
  line-height: 1.1;
  color: #aaa;
  word-break: keep-all;
}
#footer .top .container .footer-infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
#footer .top .container .footer-infos > span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  word-break: keep-all;
  text-align: center;
  color: #aaa;
}
#footer .copyright {
  width: 100%;
  padding: 16px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#footer .copyright > p {
  font-size: 13px;
  font-weight: 300;
  color: #aaa;
  word-break: keep-all;
  text-align: center;
}

/* =========================================
   모바일 퀵 메뉴 (사이드바) - 수정됨
   ========================================= */
.m-menu-open {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-menu-open svg {
  fill: #1445CE;
}

#m-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#m-menu-overlay.active {
  display: block;
  opacity: 1;
}

#m-sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
#m-sidebar.active {
  right: 0;
}
#m-sidebar .m-sidebar-header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #eee;
  background: #fff;
}
#m-sidebar .m-sidebar-header .m-logo {
  font-size: 18px;
  font-weight: 700;
  color: #1445CE;
  font-family: "Montserrat", sans-serif;
}
#m-sidebar .m-sidebar-header .m-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
}
#m-sidebar .m-sidebar-header .m-close-btn svg {
  transition: transform 0.3s;
}
#m-sidebar .m-sidebar-header .m-close-btn:hover svg {
  transform: rotate(90deg);
}
#m-sidebar .m-sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
#m-sidebar .m-sidebar-content .m-member-area {
  margin-bottom: 30px;
}
#m-sidebar .m-sidebar-content .m-member-area .m-member-info {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}
#m-sidebar .m-sidebar-content .m-member-area .m-member-info strong {
  font-weight: bold;
  color: #1445CE;
}
#m-sidebar .m-sidebar-content .m-member-area .m-member-btns {
  display: flex;
  gap: 8px;
}
#m-sidebar .m-sidebar-content .m-member-area .m-member-btns.full {
  width: 100%;
}
#m-sidebar .m-sidebar-content .m-member-area .m-member-btns a {
  flex: 1;
  display: block;
  text-align: center;
  padding: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  color: #555;
  background: #f9f9f9;
  font-weight: 500;
}
#m-sidebar .m-sidebar-content .m-member-area .m-member-btns a.btn-login, #m-sidebar .m-sidebar-content .m-member-area .m-member-btns a.btn-admin {
  background: #1445CE;
  color: #fff;
  border-color: #1445CE;
}
#m-sidebar .m-sidebar-content .m-gnb {
  margin-bottom: 25px;
  border-top: 1px solid #eee;
}
#m-sidebar .m-sidebar-content .m-gnb li {
  border-bottom: 1px solid #eee;
}
#m-sidebar .m-sidebar-content .m-gnb li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}
#m-sidebar .m-sidebar-content .m-gnb li.m-has-sub .m-arrow svg {
  transition: transform 0.3s;
}
#m-sidebar .m-sidebar-content .m-gnb li.m-has-sub.open > a {
  color: #1445CE;
  font-weight: bold;
}
#m-sidebar .m-sidebar-content .m-gnb li.m-has-sub.open .m-arrow svg {
  transform: rotate(180deg);
}
#m-sidebar .m-sidebar-content .m-gnb .m-submenu {
  display: none;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}
#m-sidebar .m-sidebar-content .m-gnb .m-submenu li {
  border-bottom: 1px solid #e5e5e5;
}
#m-sidebar .m-sidebar-content .m-gnb .m-submenu li:last-child {
  border-bottom: none;
}
#m-sidebar .m-sidebar-content .m-gnb .m-submenu li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #666;
}
#m-sidebar .m-sidebar-content .m-gnb .m-submenu li a:hover {
  color: #1445CE;
}
#m-sidebar .m-sidebar-content .m-gnb .m-submenu li a::before {
  content: "- ";
  color: #aaa;
  margin-right: 5px;
}
#m-sidebar .m-sidebar-content .m-shop-menu {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}
#m-sidebar .m-sidebar-content .m-shop-menu li {
  margin-bottom: 5px;
}
#m-sidebar .m-sidebar-content .m-shop-menu li:last-child {
  margin-bottom: 0;
}
#m-sidebar .m-sidebar-content .m-shop-menu li a {
  display: block;
  padding: 8px 10px;
  font-size: 14px;
  color: #666;
}/*# sourceMappingURL=common.css.map */