/* Product Filter */
.product-list .filter .filter-area-top {
  display: flex;
  margin-bottom: 30px;
}

.product-list .filter .filter-area-top .box:nth-child(1),
.product-list .filter .filter-area-top .box:nth-child(2),
.product-list .filter .filter-area-top .box:nth-child(3) {
  width: 14.2%;
}

.product-list .filter .filter-area-top .box:nth-child(4),
.product-list .filter .filter-area-top .box:nth-child(5) {
  width: 28.7%;
}

.product-list .filter .filter-area-top .box {
  padding: 0px 20px;
}

.product-list .filter .filter-area-top .box:not(:last-child) {
  border-right: 1px solid #bfbfbf;
}

.product-list .filter .filter-area-top p {
  height: 56px;
  margin-bottom: 20px;
  font-size: 2.4rem;
}

.product-list .filter .filter-area-top ul {
  display: flex;
  flex-wrap: wrap;
  gap:20px;
}

.product-list .filter .filter-area-top  li {
  flex:1 1 calc(100% - 10px);
  max-width: 100%;
}

.product-list .filter .filter-area-top ul.two-col li {
  flex:1 1 calc(50% - 10px);
  max-width: 50%;
}

.product-list .filter .filter-area-top label {
  display: flex;
  align-items: center;
  gap:10px;
  position: relative;
  width: 100%;
}

.product-list .filter .filter-area-top input {
  display: block;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.product-list .filter .filter-area-top i {
  display: block;
  width:18px;
  height:18px;
  background: url('/asset/img/icon/chk02_off.png') no-repeat center / cover;
}

.product-list .filter .filter-area-top span {
  display: block;
  width: calc(100% - 28px);
  font-size: 1.8rem;
  line-height: 1;
}

.product-list .filter .filter-area-top input:checked + i {
  background-image: url('/asset/img/icon/chk02_on.png');
}

.product-list .filter .filter-area-btm {
  padding: 50px;
  background-color: #f5f5f5;
}

.product-list .filter .filter-area-btm .box {
  display: flex;
  align-items: center;
}

.product-list .filter .filter-area-btm .box p {
  width: 100px;
  font-size: 2.4rem;
}

.product-list .filter .filter-area-btm .box ul {
  width: calc(100% - 100px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap:10px;
}

.product-list .filter .filter-area-btm .box ul label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-list .filter .filter-area-btm .box ul input {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.product-list .filter .filter-area-btm .box ul span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0px 20px;
  border-radius: 20px;
  border:1px solid #bfbfbf;
  background-color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.product-list .filter .filter-area-btm .box ul input:checked + span {
  background-color: #191919;
  border-color: #191919;
  color:#fff;
}

.product-list .filter .filter-area-btm .line {
  display: block;
  width: 100%;
  height: 1px;
  margin: 30px 0px;
  background-color: #bfbfbf;
}

.product-list .filter .filter-area-btm .reset-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  width: 120px;
  height: 40px;
  margin-right: 20px;
  border-radius: 20px;
  border:1px solid #bfbfbf;
  background-color: #e5e5e5;
}

.product-list .filter .filter-area-btm .reset-btn::before {
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  background: url('/asset/img/icon/reset01.png') no-repeat center / cover;
}

.product-list .filter .filter-area-btm .reset-btn span {
  font-size: 1.8rem;
  font-weight: 700;
}

.product-list .filter .filter-area-btm .result-area {
  width: calc(100% - 140px);
}

.product-list .filter .filter-area-btm .result-area dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap:10px;
}

.product-list .filter .filter-area-btm .result-area dd {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap:4px;
  height: 30px;
  padding: 0px 10px;
  background-color: #fff;
  border:1px solid #bfbfbf;
  font-size: 1.6rem;
}

.product-list .filter .filter-area-btm .result-area dd button {
  display: inline-block;
  width:9px;
  height: 9px;
  background: url('/asset/img/icon/close07.png') no-repeat center / cover;
}

@media screen and (max-width:1536px) {
  .product-list .filter .filter-area-top .box {
    padding: 0px 12px;
  }

  .product-list .filter .filter-area-top p {
    height: 48px;
    font-size: 2rem;
  }

  .product-list .filter .filter-area-top ul {
    gap:12px;
  }

  .product-list .filter .filter-area-top li {
    flex:1 1 calc(100% - 6px);
  }

  .product-list .filter .filter-area-top ul.two-col li {
    flex:1 1 calc(50% - 6px);
  }

  .product-list .filter .filter-area-top span {
    font-size: 1.6rem;
  }

  .product-list .filter .filter-area-btm {
    padding: 30px;
  }

  .product-list .filter .filter-area-btm .box p {
    font-size: 2rem;
  }

  .product-list .filter .filter-area-btm .box ul span  {
    font-size: 1.6rem;
  }

  .product-list .filter .filter-area-btm .reset-btn span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1366px) {
  .product-list .filter .filter-area-top .box:nth-child(1), 
  .product-list .filter .filter-area-top .box:nth-child(2), 
  .product-list .filter .filter-area-top .box:nth-child(3) {
    width: 20%;
  }

  .product-list .filter .filter-area-top .box:nth-child(4),
  .product-list .filter .filter-area-top .box:nth-child(5) {
    width: 20%;
  }

  .product-list .filter .filter-area-top p {
    height: 42px;
    font-size: 1.8rem;
  }

  .product-list .filter .filter-area-top ul.two-col li {
    flex:1 1 100%;
    max-width: 100%;
  }

  .product-list .filter .filter-area-top span {
    font-size: 1.5rem;
  }

  .product-list .filter .filter-area-btm .box p {
    font-size: 1.8rem;
  }

  .product-list .filter .filter-area-btm .box ul {
    gap:6px;
  }

  .product-list .filter .filter-area-btm .box ul span {
    font-size: 1.5rem;
  }

  .product-list .filter .filter-area-btm .line {
    margin: 20px 0px;
  }

  .product-list .filter .filter-area-btm .reset-btn span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width:1200px) {
  .product-list .filter .filter-area-top .box {
    padding: 0px 10px;
  }

  .product-list .filter .filter-area-top label {
    gap:6px;
  }

  .product-list .filter .filter-area-top i {
    width: 16px;
    height: 16px;
  }

  .product-list .filter .filter-area-top span {
    width: calc(100% - 22px);
    font-size: 1.4rem;
  }

  .product-list .filter .filter-area-btm .box p {
    width:80px;
  }

  .product-list .filter .filter-area-btm .box ul {
    width: calc(100% - 80px);
  }

  .product-list .filter .filter-area-btm .box ul span {
    padding: 0px 16px;
  }

  .product-list .filter .filter-area-btm .reset-btn {
    width: 100px;
    margin-right: 12px;
  }

  .product-list .filter .filter-area-btm .result-area {
    width: calc(100% - 112px);
  }
}
@media screen and (max-width:1024px) {
  /* .product-list {
    min-width: 1024px;
  } */
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Product Search */
.product-list .search {
  display:flex;
  justify-content: flex-end;
  margin: 100px 0px 40px;
}

.product-list .search form {
  display: flex;
  max-width: 640px;
  width: 100%;
  gap:10px;
}

.product-list .search-select {
  width: 160px;
  height: 60px;
  border:1px solid #959595;
}

.product-list .search-select select {
  width: 100%;
  height: 100%;
  padding: 0px 20px;
  font-size: 2rem;
  background-position: right 20px center;
  background-image: url('/asset/img/icon/select04.png');
}

.product-list .search-input {
  position: relative;
  width: calc(100% - 170px);
  height: 60px;
  padding-right:60px;
  border:1px solid #959595;
}

.product-list .search-input input {
  width: 100%;
  height: 100%;
  padding:0px 20px;
  font-size: 2rem;
}

.product-list .search-input button {
  display: block;
  position: absolute;
  top:0;
  right: 0;
  width: 60px;
  height: 100%;
  background:#191919 url('/asset/img/icon/search.png') no-repeat center ;
}

@media screen and (max-width:1200px) {
  .product-list .search-select select  {
    font-size: 1.8rem;
  }

  .product-list .search-input input {
    font-size:1.8rem;
  }
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Product List */
.product-list .list {
  display: flex;
  flex-wrap: wrap;
  margin: -25px -10px;
}

.product-list .list li {
  flex:1 1 25%;
  max-width: 25%;
  padding: 25px 10px;
}

.product-list .list li.hide {
  display: none;
}

.product-list .list .thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(440/440*100%);
  margin-bottom: 30px;
  background-color: #f5f5f5;
  overflow: hidden;
}

.product-list .list .thumb img {
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%) scale(1);
  width: 95%;
  height: auto;
}

.product-list .list .cont .name {
  font-size: 2.4rem;
}

.product-list .list .cont .price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap:10px;
  margin: 10px 0px 24px;
}

.product-list .list .cont .price span.original-price {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
  max-width: 215px;
  font-size: 2.8rem;
  font-weight: 700;
  overflow: hidden;
}

.product-list .list .cont .price span.sale-price {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
  max-width: 150px;
  text-decoration-line: line-through;
  text-decoration-thickness: 2px;
  font-size: 2rem;
  color:#737373;
  overflow: hidden;
}

.product-list .list .cont .hashtag {
  display: flex;
  flex-wrap: wrap;
  gap:10px
}

.product-list .list .cont .hashtag dd {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 110px;
  height: 30px;
  padding: 0px 12px;
  border-radius: 20px;
  border:1px solid #bfbfbf;
  background-color: #f5f5f5;
  font-size: 1.6rem;
  line-height: 1;
}

.product-list .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.product-list .more-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 70px;
  background-color: #191919;
  font-size: 2rem;
  color:#fff;
  transition: var(--transition-basic);
}

@media screen and (max-width:1536px) {
  .product-list .list .cont .name {
    font-size: 2rem;
  } 

  .product-list .list .cont .price span.original-price {
    font-size: 2.4rem;
  }

  .product-list .list .cont .price span.sale-price {
    font-size: 1.8rem;
  }

  .product-list .list .cont .hashtag dd {
    font-size: 1.4rem;
  }

  .product-list .more-btn {
    width: 300px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1366px) {
  .product-list .list .cont .name {
    font-size: 1.8rem;
  }

  .product-list .list .cont .price span.original-price {
    font-size: 2.3rem;
  }

  .product-list .list .cont .price span.sale-price {
    font-size: 1.7rem;
  }

  .product-list .list .cont .hashtag {
    gap:6px;
  }

  .product-list .list .cont .hashtag dd {
    font-size: 1.3rem;
  }
}
@media screen and (max-width:1200px) {
  .product-list .list .cont .price {
    flex-wrap: wrap;
    gap:6px;
  }

  .product-list .list .cont .price span.original-price {
    max-width: 100%;
    width: 100%;
  }

  .product-list .list .cont .price span.sale-price {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Product Detail */
.product-detail .product-detail-head {
  display: flex;
  gap:100px;
  padding-bottom: 130px;
}

.product-detail .product-gallery {
  width: 655px;
}

.product-detail .product-gallery .main-image {
  position: relative;
  width: 100%; 
}

.product-detail .product-gallery .main-image .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(665/655*100%);
  background-color: #f5f5f5;
  overflow: hidden;
}

.product-detail .product-gallery .main-image .img img {
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: auto;
}

.product-detail .product-gallery .thumbnail-list {
  margin-top: 10px;
}

.product-detail .product-gallery .thumbnail-list .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(123/123*100%);
  background-color: #f5f5f5;
  overflow: hidden;
  cursor: pointer;
}

.product-detail .product-gallery .thumbnail-list .img img {
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: auto;
}

.product-detail .product-info {
  width: calc(100% - 755px);
}

.product-detail .product-hashtag {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color:#737373;
}  

.product-detail .product-name {
  font-size: 4.2rem;
  margin: 0px 0px 10px;
}

.product-detail .product-price {
  display: flex;
  align-items: flex-end;
  gap:20px;
  padding-bottom:25px;
  margin-bottom:25px;
  border-bottom:1px solid #aaaaaa;
} 

.product-detail .product-price span {
  display: block;
}

.product-detail .product-price span.sale-price {
  font-size: 2.8rem;
  font-weight: 700;
  color:#dc1e1e;
}

.product-detail .product-price span.original-price {
  text-decoration-line: line-through;
  text-decoration-thickness: 2px;
  font-size: 2.4rem;
  color:#737373;
}

.product-detail .product-options .option:not(:last-child) {
  margin-bottom: 30px;
}

.product-detail .option dl {
  position: relative;
  padding-left: 100px;
}

.product-detail .option dt {
  position: absolute;
  top:4px;
  left: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.product-detail .option dd {
  font-size: 1.8rem;
}

.product-detail .option dd:not(:last-child) {
  margin-bottom: 10px;
}

.product-detail .option-hashtag dd {
  display: flex;
  flex-wrap: wrap;
  gap:10px;
}

.product-detail .option-hashtag span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 110px;
  height: 30px;
  padding: 0px 12px;
  border-radius: 20px;
  border:1px solid #bfbfbf;
  background-color: #f5f5f5;
  font-size: 1.6rem;
  line-height: 1;
}

.product-detail .product-counts {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #aaaaaa;
}

.product-detail .product-counts dl {
  position: relative;
  padding-left: 100px;
}

.product-detail .product-counts dt {
  position: absolute;
  top:4px;
  left: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.product-detail .product-counts .counts-wrap {
  display: flex;
}

.product-detail .product-counts button {
  display: block;
  width: 30px;
  height: 30px;
  border:1px solid #bfbfbf;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px auto;
}

.product-detail .product-counts button.minus-btn {
  border-right: 0px;
  background-image: url('/asset/img/sub/product/count_btn_minus.png');
}

.product-detail .product-counts button.plus-btn {
  border-left: 0px;
  background-image: url('/asset/img/sub/product/count_btn_plus.png');
}

.product-detail .product-counts input {
  width: 50px;
  height: 30px;
  border:1px solid #bfbfbf;
  text-align: center;
  font-size: 1.8rem;
}

.product-detail .product-actions {
  display: flex;
  gap:10px;
  margin-top: 40px;
}

.product-detail .product-actions .actions-btn {
  flex: 1 1 calc(33.33% - 5px);
  max-width: 33.33%;
  height: 70px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  transition: var(--transition-basic);
  border:1px solid #191919;
  background-color: #fff;
}

.product-detail .product-actions .actions-btn02 {
  color:#fff;
  background-color: #191919;
}

.product-detail .product-actions .actions-btn03 {
  border-color: transparent;
  background-color: #e5e5e5;
}

.product-detail .product-editor .editor-tab {
  display: flex;
  border-bottom: 1px solid #aaaaaa;
}

.product-detail .product-editor .editor-tab li {
  flex:1 1;
  position: relative;
}

.product-detail .product-editor .editor-tab li::before {
  content: "";
  display: block;
  position: absolute;
  left:0;
  bottom:-1px;
  width: 100%;
  height: 3px;
  background-color:#191919;
  opacity: 0;
}

.product-detail .product-editor .editor-tab button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: 2rem;
  color:#737373;
}

.product-detail .product-editor .editor-tab li.on::before {
  opacity: 1;
}

.product-detail .product-editor .editor-tab li.on button {
  font-weight: 500;
  color:#191919;
}

.product-detail .product-editor .editor-con {
  position: relative;
}

.product-detail .product-editor .editor-con > li {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.product-detail .product-editor .editor-con > li.on {
  display: block;
  height:auto;
  position:relative;
  animation: contents-on ease-in-out .5s forwards;
}

.product-detail .product-detail-area .title {
  margin-bottom: 20px;
}

.product-detail .product-detail-area .title p {
  font-size: 2.8rem;
}

.product-detail .product-editor {
  padding-bottom: 130px;
}

.product-detail .product-editor .textarea {
  min-height: 610px;
  padding: 80px 0px;
  text-align: center;
}

.product-detail .product-editor .textarea::after {
  content: "";
  display: block;
  clear: both;
}

.product-detail .product-editor .textarea img {
  float: none !important;
}

.product-detail .product-editor .btn {
  display: flex;
  justify-content: center;
  padding-top: 80px;
  border-top: 1px solid #aaa;
}

.product-detail .product-editor .btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 70px;
  background-color: #191919;
  font-size: 2rem;
  color:#fff;
  transition: var(--transition-basic);
}

/* .product-detail .product-related .list {
  display: flex;
  flex-wrap: wrap;
  margin: -25px -10px;
}

.product-detail .product-related .list li {
  flex:1 1 25%;
  max-width: 25%;
  padding: 25px 10px;
} */

.product-detail .product-related .product-related-wrap {
  position: relative;
}

.product-detail .product-related .prev,
.product-detail .product-related .next {
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  width: 48px;
  height:31px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 31px;
  z-index: 995;
  cursor: pointer;
}

.product-detail .product-related .prev {
  left: -32px;
  background-image: url('/asset/img/sub/product/arr_prev.png');
}

.product-detail .product-related .next {
  right: -32px;
  background-image: url('/asset/img/sub/product/arr_next.png');
}

.product-detail .product-related .list .thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(550/440*100%);
  margin-bottom: 30px;
  background-color: #f5f5f5;
  overflow: hidden;
}

.product-detail .product-related .list .thumb img {
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%) scale(1);
  width: 70%;
  height: auto;
}

.product-detail .product-related .list .cont .name {
  font-size: 2.4rem;
}

.product-detail .product-related .list .cont .price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap:10px;
  margin: 10px 0px 24px;
}

.product-detail .product-related .list .cont .price span {
  display: block;
}

.product-detail .product-related .list .cont .price span.original-price {
  font-size: 2.8rem;
  font-weight: 700;
}

.product-detail .product-related .list .cont .price span.sale-price {
  text-decoration-line: line-through;
  text-decoration-thickness: 2px;
  font-size: 2rem;
  color:#737373;
}

.product-detail .product-related .list .cont .hashtag {
  display: flex;
  flex-wrap: wrap;
  gap:10px
}

.product-detail .product-related .list .cont .hashtag dd {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 110px;
  height: 30px;
  padding: 0px 12px;
  border-radius: 20px;
  border:1px solid #bfbfbf;
  background-color: #f5f5f5;
  font-size: 1.6rem;
  line-height: 1;
}

@media screen and (max-width:1536px) {
  .product-detail .product-detail-head {
    gap:60px;
  }

  .product-detail .product-info {
    width: calc(100% - 715px);
  }
}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Keyframes */
@keyframes contents-on {
  from { opacity: 0; }
  to { opacity: 1; }
}