/* 초기화 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  color: #191919;
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 62.5% !important;
  word-break: keep-all;
  word-wrap: break-word;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent !important;
  animation: entry .3s ease forwards;
  opacity: 0;
}

html::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  font-size: 1.6rem;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

b,
strong {
  font-weight: 700;
}

img {
  max-width: 100%;
}

button {
  font-family: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  color: inherit;
  -webkit-appearance: none;
  background: none;
}

select {
  outline: none;
  border: 1px solid transparent;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
}

input,
textarea {
  font-family: inherit;
  outline: none;
  border: 1px solid transparent;
}

:focus {
  outline: none;
}

::placeholder {
  color: #A4A4A4;
}

em,
i {
  font-style: normal;
}

@-webkit-keyframes entry {
  to {
    opacity: 1;
  }
}

@keyframes entry {
  to {
    opacity: 1;
  }
}

@media screen and (max-width:1200px) {}

@media screen and (max-width:1024px) {}

@media screen and (max-width:768px) {}

@media screen and (max-width:576px) {}


.hidden {
  overflow: hidden;
}

/* 블라인드 */
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}


/* 줄바꿈 */
@media screen and (max-width:1200px) {}

@media screen and (max-width:1024px) {
  .md {
    display: none;
  }
}

@media screen and (max-width:768px) {
  .sm {
    display: none;
  }
}

@media screen and (max-width:576px) {
  .xs {
    display: none;
  }
}


/* 블록 */
.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}


.ellip {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-1 {
  -webkit-line-clamp: 1;
}

.clamp-2 {
  -webkit-line-clamp: 2;
}


/* 컨테이너 */
.container {
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
}

.container.w1680 {
  max-width: 1680px;
}

/* 메인 */
#main {}

/* 헤더 */
/*header*/
#header {
  position: relative;
  z-index: 11;
}

#header .header-banner {
  background-color: #5a3d0f;
  padding: 9px 0;
}

#header .header-banner .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .member-btn-list {
  display: flex;
  align-items: center;
}

#header .member-btn-list .mem-btn {
  padding: 0 10px;
  display: block;
  position: relative;
}

#header .member-btn-list .mem-btn+.mem-btn:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: #fff;
  content: '';
}

#header .header-main {
  padding: 30px 0;
  position: relative;
}

#header .header-main .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .header-main .lt-head {
  display: flex;
  align-items: center;
  gap: 15px 50px;
}

#header .search-form-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#header .search-form-box .input-box {
  width: 488px;
  height: 50px;
  position: relative;
  border-radius: 25px;
  border: 1px solid #aaaaaa;
  overflow: hidden;
}

#header .search-form-box .input-box input {
  width: 100%;
  height: 100%;
  padding: 0 45px 0 20px;
  font-size: 1.6rem;
}

#header .search-form-box .input-box .sear-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url(/asset/img/icon/ico-searchi.png)no-repeat center center;
}

#header .info-btn-list {
  display: flex;
  align-items: center;
  gap: 15px;
}

#header .header-menu {
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

#header .header-menu .container {
  display: flex;
  align-items: center;
}

#header .head-cate-box {
  width: 190px;
  min-width: 190px;
  position: relative;
}

#header .head-menu-list {
  width: calc(100% - 190px);
  overflow-x: auto;
  padding: 10px 0 10px 60px;
}

#header .head-menu-list ul {
  display: flex;
  align-items: center;
}

#header .head-menu-list ul li a {
  padding: 8px 18px;
  display: block;
  white-space: nowrap;
}

#header .head-category {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  cursor: pointer;
}

#header .head-category .i-box {
  width: 15px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#header .head-category .i-box i {
  width: 100%;
  height: 2px;
  background-color: #aaaaaa;
  display: block;
}

#header .cate-depth01 {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 100%;
  display: none;
  border-left: 1px solid #dbdbdb;
}

#header .cate-depth01.on {
  display: block;
}

#header .cate-depth01>ul {
  position: relative;
}

#header .cate-depth01>ul>li {
  border-top: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
}

#header .cate-depth01>ul>li>a {
  padding: 17px 25px 17px 20px;
  /*font-size: 1.8rem;
  font-weight: 800;*/

  font-size : 1.6rem;
  font-weight: 500;

  display: block;
  position: relative;
}

#header .cate-depth01>ul>li>a:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 8px;
  height: 13px;
  background: url(/asset/img/common/header_btn01.png)no-repeat center center;
}

#header .cate-depth01>ul>li.active {
  background-color: rgba(255, 255, 255, .2);
}

#header .cate-depth02 {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 100%;
  height: 100%;
  background-color: #fff;
  /*padding: 10px 0; */
  display: none;
  border-top: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}

#header .cate-depth01>ul>li.active .cate-depth02 {
  display: block;
}

#header .cate-depth02>li {
  border-bottom: 1px solid #dbdbdb;
}

#header .cate-depth02>li>a {
  padding: 10px 20px;
  display: block;
  font-size: 16px;
}

/*moblie*/
#header .m_btn {
  display: none;
  width: 24px;
  margin: 0 auto;
  text-align: right;
  cursor: pointer;
}

#header .m_btn i {
  display: inline-block;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  background: #000;
  transition: all 0.5s;
}

#header .m_btn i:nth-of-type(2) {
  width: 84%;
}

#header .m_btn.on i:nth-of-type(1) {
  margin: 11px 0 -2px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

#header .m_btn.on i:nth-of-type(2) {
  width: 0;
  margin: 0;
}

#header .m_btn.on i:nth-of-type(3) {
  margin: 0 0 11px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.m_menu_bg {
  z-index: 101;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  cursor: pointer;
}

.m_menu {
  z-index: 102;
  position: fixed;
  right: -100%;
  top: 0;
  width: 500px;
  max-width: 80%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.5s;
  overflow-y: auto;
}

.m_menu.on {
  right: 0;
}

.m_menu .top_box {
  position: relative;
  padding: 10px;
  box-sizing: border-box;
}

.m_menu .top_box .close_btn {
  position: absolute;
  right: 20px;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
}

.m_menu .top_box .close_btn i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
}

.m_menu .top_box .close_btn i:first-of-type {
  -webkit-transform: rotate(45deg) translate(9px, 9px);
  -moz-transform: rotate(45deg) translate(9px, 9px);
  -ms-transform: rotate(45deg) translate(9px, 9px);
  -o-transform: rotate(45deg) translate(9px, 9px);
  transform: rotate(45deg) translate(9px, 9px);
}

.m_menu .top_box .close_btn i:last-of-type {
  -webkit-transform: rotate(-45deg) translate(-7px, 8px);
  -moz-transform: rotate(-45deg) translate(-7px, 8px);
  -ms-transform: rotate(-45deg) translate(-7px, 8px);
  -o-transform: rotate(-45deg) translate(-7px, 8px);
  transform: rotate(-45deg) translate(-7px, 8px);
}

.m_menu .login_box {
  padding: 20px 0;
  background-color: #292929;
  text-align: center;
}

.m_menu .login_box a {
  position: relative;
  padding: 0 30px;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.04em;
}

.m_menu .login_box a:first-of-type:before {
  content: '';
  position: absolute;
  right: -1px;
  top: calc(50% - 7px);
  width: 2px;
  height: 15px;
  background-color: #fff;
}

.m_menu .gnb_box {
  border-top: 1px solid #ddd;
}

.m_menu .gnb_box>ul>li {
  border-bottom: 1px solid #dddddd;
}

.m_menu .gnb_box>ul>li>a {
  position: relative;
  display: block;
  padding: 20px 20px;
  font-size: 20px;
  font-weight: bold;
  color: #222222;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

.m_menu .gnb_box .depth02 {
  display: none;
  padding: 10px 0;
  background-color: #000;
}

.m_menu .gnb_box .depth02 li a {
  position: relative;
  display: block;
  padding: 7px 20px;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

@media all and (max-width: 1024px) {
  #header .m_btn {
    display: inline-block;
  }

  #header .gnb {
    display: none;
  }


  #header .head-cate-box {
    width: 150px;
    min-width: 150px;
  }

  #header .head-menu-list {
    width: calc(100% - 150px);
    padding-left: 0;
  }

  #header .cate-depth01>ul>li>a {
    font-size: 1.6rem;
  }

  #header .header-main .d-flex {
    position: relative;
  }

  #header .header-main .lt-head {
    flex-wrap: wrap;
  }


  #header .search-form-box .input-box {
    margin: 0 auto;
    width: 330px;
  }

}

@media all and (max-width:768px) {
  #header .header-main {
    padding: 15px 0;
  }

  #header .header-banner .d-flex {
    flex-wrap: wrap;
    justify-content: center;
  }

  #header .header-main .d-flex {
    flex-wrap: wrap;
    gap: 15px 0;
  }

  #header .cate-depth01>ul>li>a {
    font-size: 1.4rem;
  }

  #header .head-cate-box {
    width: 120px;
    min-width: 120px;
  }

  #header .head-menu-list {
    width: calc(100% - 120px);
    padding: 5px 0;
  }

  #header .head-category {
    padding: 10px 0;
  }

  #header .head-menu-list ul li a {
    padding: 5px 10px;
  }

  #header .search-form-box {
    position: unset;
    transform: none;
    width: 100%;
  }

  #header .search-form-box .input-box {
    width: 100%;
    height: 35px;
  }

}


@media all and (max-width:576px) {
  #header .header-main .logo img {
    max-height: 25px;
  }

  #header .info-btn-list .info-btn img {
    max-height: 20px;
  }

  #header .info-btn-list {
    gap: 7px;
  }

  #header .search-form-box .input-box input {
    font-size: 1.5rem;
  }
}

/* 푸터 영역 */
#footer {
  padding: 50px 0;
  background-color: #f6f6f6;
}

#footer .f_logo {
  width: fit-content;
  display: inline-block;
}

#footer .foot-lt {}

#footer .foot-rt {}

#footer .foot-rt .rt-flex {
  display: flex;

}

#footer .foot-top .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

#footer .f-info-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  overflow: hidden;
}

#footer .f-info-list ul li {
  position: relative;
}

#footer .f-info-list ul li+li:before {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background-color: #666;
  content: '';
}

#footer .f-info-list .a-under-line {
  text-decoration: underline;
}


#footer .foot-bot {
  padding-top: 20px;
  border-top: 1px solid #bfbfbf;
  margin-top: 30px;
}

#footer .foot-href-li {
  display: flex;
  align-items: center;
}

#footer .foot-href-li .href-btn {
  display: block;
  padding: 0 15px;
  position: relative;
}

#footer .foot-href-li .href-btn:first-child {
  padding-left: 0;
}


#footer .foot-href-li .href-btn+.href-btn:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 13px;
  background-color: #666666;
  transform: translateY(-50%);
}

#footer .rt-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

#footer .rt-flex-wrap .tit {
  width: 70px;
  min-width: 70px;
}

#footer .rt-flex-wrap .tit.w75 {
  width: 78px;
  min-width: 78px;
}

#footer .rt-flex-wrap .txt {
  width: calc(100% - 70px);
}

#footer .rt-flex-wrap .txt.w75 {
  width: calc(100% - 78px);
}

#footer .rt-flex-wrap .txt.w100 {
  width: 100%;
}


@media all and (max-width:1024px) {
  #footer .foot-top .d-flex {
    flex-wrap: wrap;
    gap: 20px 0;
  }
}

@media all and (max-width:768px) {
  #footer {
    padding: 25px 0;
  }

  #footer .foot-href-li {
    justify-content: center;
  }

  #footer .foot-rt .rt-flex {
    flex-wrap: wrap;
    gap: 15px 0;
  }
}


/* 퀵 메뉴 */
.quick-menu {
  position: fixed;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  z-index: 11;
}

.quick-menu ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.quick-menu .quick-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 5px 0px rgba(4, 0, 0, 0.15);
}

.quick-menu .top-btn .quick-btn {
  background-color: #333333;
}

.quick-menu .quick-btn i img {
  display: block;
}

.quick-menu .hover-btn {
  position: relative;
}

.quick-menu .hover-btn:hover .hover-air {
  opacity: 1;
  visibility: visible;
}

.quick-menu .hover-air {
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  padding: 10px 30px 10px 20px;
  color: #fff;
}

.quick-menu .hover-air::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 10px);
  height: 100%;
  content: '';
  background-color: #333;
  border-radius: 18px;
  z-index: -1;
}


@media all and (max-width:768px) {
  .quick-menu {
    right: 10px;
  }

  .quick-menu .quick-btn {
    width: 45px;
    height: 45px;
  }

  .quick-menu .quick-btn img {
    max-width: 24px;
  }

  .quick-menu .top-btn img {
    max-height: 20px;
  }
}

/* 제품 리스트 */
.item-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.item-flex-wrap.gap-28 {
  gap: 40px 28px;
}

.item-flex-wrap.item04 .common-item-box {
  width: calc(25% - 21px);
}

.common-item-box .top-img {
  aspect-ratio: 1/1;
  border: 1px solid #b5b5b5;
  position: relative;
}

.common-item-box .top-img .img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.common-item-box .top-img .img img {
  max-height: 100%;
}

.common-item-box .cart-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .3);
  opacity: 0;
  visibility: hidden;
  transition: .5s opacity, .5s visibility;
}

.common-item-box .cart-box .cart-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: 1px solid #dcdcdc;
  background-image: url(/asset/img/icon/ico-cart02.png);
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
}

.common-item-box .item-href {
  display: block;
}

.common-item-box .item-href:hover .cart-box {
  opacity: 1;
  visibility: visible;
}

.back-white .item-href {
  padding: 16px 18px 30px;
  background-color: #fff;
  border: 1px solid #b5b5b5;
}

@media all and (max-width:1024px) {
  .item-flex-wrap.gap-28 {
    gap: 30px 20px;
  }

  .item-flex-wrap.item04 .common-item-box {
    width: calc(33.333% - 13.333px);
  }
}

@media all and (max-width:768px) {
  .item-flex-wrap.gap-28 {
    gap: 25px 10px;
  }

  .item-flex-wrap.item04 .common-item-box {
    width: calc(50% - 5px);
  }

  .back-white .item-href {
    padding: 8px 9px 15px;
  }
}

/* 더보기 버튼 */
.more-btn-area {
  display: flex;
  justify-content: center;
}

.more-btn-area .more-btn {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #212121;
}

@media all and (max-width:768px) {
  .more-btn-area .more-btn {
    width: 130px;
    height: 40px;
  }
}

/* 메인페이지 배너 부분 */
.main-banner-zone {
  display: flex;
  gap: 10px 28px;
  flex-wrap: wrap;
  position: relative;
}

.main-banner-zone .main-banner {
  position: relative;
}

.main-banner-zone.item01 .main-banner {
  width: 100%;
  min-height: 280px;
  display: block;
}

.main-banner-zone.item02 .main-banner {
  width: calc(50% - 14px);
  min-height: 300px;
}

.main-banner-zone .bg-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.main-banner-zone .bg-box img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-banner-zone .txt-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 10px 50px;
  height: 100%;
}

.main-banner-zone .txt-box.center {
  justify-content: center;
}

@media all and (max-width:1024px) {
  .main-banner-zone .txt-box {
    padding: 10px 25px;
  }
}

@media all and (max-width:768px) {
  .main-banner-zone.item02 .main-banner {
    width: 100%;
    aspect-ratio: 1/0.479;
    min-height: auto;
  }
}

@media all and (max-width:576px) {
  .main-banner-zone.item02 .main-banner {
    aspect-ratio: auto;
    min-height: 180px;
  }
}

.pro-tab-box {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.pro-tab-box.item04 .pro-btn {
  width: 20%;
  min-width: fit-content;
}

.pro-tab-box .pro-btn {
  min-width: 250px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 28px;
  border: 1px solid #636363;
}

.pro-tab-box .pro-btn.on {
  background-color: #121212;
  color: #fff;
  border-color: #121212;
}

.pro-form-box .form-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pro-form-box .form-flex .pro-sel-box {
  min-width: 200px;
}

.pro-form-box .form-flex .pro-search-box {
  width: calc(100% - 208px);
}

.pro-sel-box {
  width: 200px;
  height: 64px;
  border-radius: 32px;
  border: 1px solid #bababa;
  overflow: hidden;
  position: relative;

}

.pro-sel-box select {
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 0 25px;
  background: url(/asset/img/icon/ico-proarw.png)no-repeat right 20px center;
}

.pro-search-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 64px;
}

.pro-search-box .input-box {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  border: 1px solid #bababa;
  overflow: hidden;
}

.pro-search-box .input-box input {
  width: 100%;
  height: 100%;
  padding: 0 60px 0 25px;
}

.pro-search-box .sub-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #121212 url(/asset/img/icon/ico-prosearch.png)no-repeat center center;
}

@media all and (max-width:1024px) {
  .pro-tab-box {
    gap: 10px;
  }

  .pro-tab-box .pro-btn {
    min-width: auto;
    padding: 10px 35px;
    height: auto;
  }
}


@media all and (max-width:768px) {
  .pro-form-box .form-flex .pro-sel-box {
    min-width: 120px;
    width: 120px;
    height: 45px;
  }

  .pro-form-box .form-flex .pro-search-box {
    width: calc(100% - 128px);
    height: 45px;
  }


  .pro-search-box .sub-btn {
    width: 33px;
    height: 33px;
  }
}

/* 마이페이지 탭 */
.mypage-tab-area .my-tab {
  border-radius: 32px;
  border: 1px solid #555;
  background-color: #f6f6f6;
  overflow-x: auto;

}

.mypage-tab-area .my-tab-scroll {
  display: flex;
  min-width: fit-content;

}

.mypage-tab-area .my-tab .a-btn {
  width: 16.6666%;
  padding: 20px 0;
}

.mypage-tab-area .my-tab .a-btn.on {
  background-color: #555555;
  color: #fff;
  border-radius: 32px;
}

@media all and (max-width:1024px) {
  .mypage-tab-area .my-tab .a-btn {
    width: fit-content;
    padding: 15px 13px;
    white-space: nowrap;
    order: 2;
  }

  .mypage-tab-area .my-tab .a-btn.on {
    order: 1;
  }
}


.brand-banner-li {
  display: flex;
  flex-wrap: wrap;
}

.brand-banner-li .banner-img {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/0.453;
  border: 1px solid #aaaaaa;
}

.brand-banner-li .banner-img:hover {
  background-color: #f1f1f1;
}

.brand-banner-li .banner-img i {
  display: block;
  max-width: 80%;
}

.brand-banner-li .banner-img i img {
  max-height: 100%;
}

.brand-banner-li .banner-img+.banner-img {
  border-left: none;
}

.brand-banner-li .banner-img:nth-child(5n+1) {
  border-left: 1px solid #aaa;
}

.brand-banner-li .banner-img:nth-child(n+6) {
  border-top: none;
}

@media all and (max-width:768px) {
  .brand-banner-li .banner-img {
    width: 50%;
  }

  .brand-banner-li .banner-img:nth-child(5n+1) {
    border-left: none;
  }

  .brand-banner-li .banner-img:nth-child(2n+1) {
    border-left: 1px solid #aaa;
  }

  .brand-banner-li .banner-img:nth-child(n+3) {
    border-top: none;
  }
}


/* 2025.04.17 카테고리 추가 퍼블리싱 */
.product-category-sub {
  display: flex;
  justify-content: center;
}

.product-category-sub .category-sub-title {
  display: none;
  cursor: pointer;
}

.product-category-sub .category-sub-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  max-width: 600px;
  width: 100%;
}

.product-category-sub .category-sub-menu a {
  font-size: 1.8rem;
}
.product-category-sub .category-sub-menu li.on a {
  text-decoration: underline;
  text-underline-offset: 6px;
  font-weight: 700;
  color: #f26521;
}

.swiper-container {
  overflow: hidden;
}

.main-banner-sde01 .swiper-slide {
  /* Swiper Grid가 자동으로 높이를 계산하도록 설정 */
  height: calc((100% - var(--gap)) / 2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-banner-sde01 .main-banner {
  width: 100%;
}

.main-banner-sde01 .main-banner .txt-box {
  aspect-ratio: 1/0.476;
}

/* 슬라이드 개별 아이템 스타일 */
.main-banner-sde02 .swiper{
  aspect-ratio: 1/0.453;
}
.main-banner-sde02 .swiper-slide {
  /* 한 컬럼 내에서 2줄을 정확히 나누기 위한 계산 */
  height: calc((100% - var(--gap)) / 2) !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-banner-sde02 .main-banner {
  width: 100%;
}

.main-banner-sde02 .main-banner .txt-box {
  aspect-ratio: 1/0.219;
}
@media all and (max-width:1024px){
  .main-banner-sde02 .swiper{
    aspect-ratio: 1/0.219;
  }
}