/* Util */
.util {
  display: flex;
  gap:20px;
  margin-bottom: 60px;
}

.util .filter-action-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  width: 210px;
  height: 60px;
  background-color: #191919;
  font-size: 1.8rem;
  color:#fff;
}

.util .filter-action-btn i {
  display: inline-block;
  width: 21px;
  height: 21px;
  background: url('/asset/img/icon/filter.png') no-repeat center / cover;
}

.util .search-form {
  width: calc(100% - 230px);
  height:60px; 
}

.util .search-form .search-input {
  position: relative;
  width: 100%;
  height: 100%;
  padding-right: 60px;
}

.util .search-form .search-input input {
  width: 100%;
  height: 100%;
  padding:0px 20px;
  font-size: 1.8rem;
  border:1px solid #959595;
  border-right: 0px;
}

.util .search-form .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:1024px) {
  .util {
    gap:12px;
  }

  .util .filter-action-btn {
    width: 170px;
    font-size: 1.7rem;
  }

  .util .search-form {
    width: calc(100% - 182px);
  }

  .util .filter-action-btn {
    height: 50px;
  }

  .util .search-form {
    height: 50px;
  }

  .util .search-form .search-input {
    padding-right: 50px;
  }

  .util .search-form .search-input input {
    padding: 0px 16px;
    font-size: 1.7rem;
  }

  .util .search-form .search-input button {
    width: 50px;
  }
}
@media screen and (max-width:768px) {
  .util {
    margin-bottom: 40px;
  }

  .util .filter-action-btn {
    gap:6px;
    width: 130px;
    font-size: 1.6rem;
  }

  .util .filter-action-btn i {
    width: 16px;
    height: 16px;
  }


  .util .search-form {
    width: calc(100% - 142px);
  }

  .util .filter-action-btn {
    height: 46px;
  }

  .util .search-form {
    height: 46px;
  }

  .util .search-form .search-input {
    padding-right: 46px;
  }

  .util .search-form .search-input input {
    font-size: 1.6rem;
  }

  .util .search-form .search-input button {
    width: 46px;
    background-size: auto 18px;
  }


  .util.util-w100{
    flex-wrap: wrap;
  }
  .util.util-w100 .filter-action-btn,
  .util.util-w100 .search-form{
    width: 100%;
  }
  .util.util-w100 .filter-action-btn{
    background-color: #959595;
  }

  .util.util-w100 .filter-action-btn i{
    width: 21px;
    height: 21px;
  }

} 
@media screen and (max-width:576px) {
  .util {
    gap:6px;
    margin-bottom: 30px;
  }

  .util .filter-action-btn {
    gap:4px;
    width: 80px;
    font-size: 1.3rem;
  }

  .util .filter-action-btn i {
    width: 12px;
    height: 12px;
  }


  .util .search-form {
    width: calc(100% - 86px);
  }

  .util .filter-action-btn {
    height: 38px;
  }

  .util .search-form {
    height: 38px;
  }

  .util .search-form .search-input {
    padding-right: 38px;
  }

  .util .search-form .search-input input {
    padding: 0px 10px;
    font-size: 1.3rem;
  }

  .util .search-form .search-input button {
    width: 38px;
    background-size: auto 16px;
  }
}


/* Filter Nav */
.filer-nav {
  display: block;
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  padding:80px 1.66667% 100px;
  background-color: #fff;
  z-index: 999;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: var(--transition-basic2);
}

.filer-nav.open {
  opacity: 1;
  visibility: visible;
}

.filter-nav-head {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  padding: 36px 0px 20px;
  background-color: #fff;
  text-align: center;
  z-index: 5;
}

.filter-nav-head p {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.filter-nav-head .nav-close {
  display: block;
  position: absolute;
  top:36px;
  left:1.6667%;
  width: 24px;
  height: 24px;
  background: url('/asset/img/icon/close05.png') no-repeat center / cover;
}

.filter-nav-area {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  border-top: 1px solid #d2d2d2;
}

.filter-nav-area .filter-block {
  position: relative;
  border-top: 1px solid #d2d2d2;
}

.filter-nav-area .filter-block:last-child {
  border-bottom: 1px solid #d2d2d2;
}

.filter-nav-area .filter-title {
  position: relative;
  padding: 20px 0px;
  cursor: pointer;
}

.filter-nav-area .filter-title::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  right: 0;
  width: 17px;
  height: 10px;
  transform: translateY(-50%) rotate(0deg);
  background: url('/asset/img/icon/select04.png') no-repeat center / cover;
  transition:var(--transition-basic);
}

.filter-nav-area .filter-title p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.filter-nav-area .filter-menu {
  height: 0;
  overflow: hidden;
	transition:var(--transition-basic);
}

.filter-nav-area .filter-menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -10px -20px;
  padding: 10px 0px 20px;
}

.filter-nav-area .filter-menu li {
  flex:1 1 33.33%;
  max-width: 33.33%;
  padding: 10px 20px;
}

.filter-nav-area .filter-menu label {
  display: flex;
  align-items: center;
  gap:6px;
  position: relative;
  width: 100%;
}

.filter-nav-area .filter-menu input {
  display: block;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.filter-nav-area .filter-menu i {
  display: block;
  width:16px;
  height:16px;
  background: url('/asset/img/icon/chk02_off.png') no-repeat center / cover;
}

.filter-nav-area .filter-menu span {
  display: block;
  width: calc(100% - 22px);
  font-size: 1.6rem;
  line-height: 1;
}

.filter-nav-area .filter-menu input:checked + i {
  background-image: url('/asset/img/icon/chk02_on.png');
}

.filter-nav-area .btm {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
}

.filter-nav-area .result-area {
  display: none;
  position: relative;
  max-height: 112px;
  height: 100%;
  overflow-y: auto;
  padding: 20px 0px;
  border-top: 1px solid #d2d2d2;
}

.filter-nav-area .result-area dl {
  display: flex;
  flex-wrap: wrap;
  gap:10px;
  padding: 0px 1.6667%;
}

.filter-nav-area .result-area dd {
  display: inline-flex;
  justify-content:center;
  align-items: center;
  gap:10px;
  height: 30px;
  padding: 0px 20px;
  border-radius: 20px;
  background-color: #f5f5f5;
  font-size: 1.6rem;
}

.filter-nav-area .result-area button {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url('/asset/img/icon/close06.png') no-repeat center / cover;
}

.filter-nav-area .result-btns {
  display: flex;
  align-items: center;
  gap:10px;
  padding: 20px 1.66667%;
  border-top: 1px solid #d2d2d2;
}

.filter-nav-area .result-btns button {
  height: 60px;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  font-size: 2rem;
}

.filter-nav-area .result-btns button.result-reset-btn {
  flex:1 1 calc(30% - 5px);
  max-width: 30%;
  border:1px solid #d2d2d2;
}

.filter-nav-area .result-btns button.result-reset-btn i {
  display: inline-block;
  width:26px;
  height: 23px;
  background: url('/asset/img/icon/reset02.png') no-repeat center / auto 23px;
}

.filter-nav-area .result-btns button.result-search-btn {
  flex:1 1 calc(70% - 5px);
  max-width: 70%;
  font-weight: 700;
  color:#fff;
  background-color: #504943;
}

.filter-nav-area .filter-block.active .filter-title::after {
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width:1024px) {
  .filer-nav {
    padding: 62px 1.6667% 86px;
  }

  .filter-nav-head {
    padding: 26px 0px 16px;
  }

  .filter-nav-head p {
    font-size: 2rem;
  }

  .filter-nav-head .nav-close {
    top:26px;
    width: 20px;
    height: 20px;
    background-size: auto 20px;
  }

  .filter-nav-area .filter-title {
    padding: 16px 0px;
  }

  .filter-nav-area .filter-title p {
    font-size: 1.9rem;
  }

  .filter-nav-area .filter-menu ul {
    margin: -10px -12px;
    padding: 10px 0px 16px;
  }

  .filter-nav-area .filter-menu li {
    padding: 10px 12px;
  }

  .filter-nav-area .result-area {
    padding: 16px 0px;
  }

  .filter-nav-area .result-btns {
    padding: 16px 1.66667%
  }

  .filter-nav-area .result-btns button {
    gap:6px;
    height: 50px;
    font-size:1.8rem;
  }

  .filter-nav-area .result-btns button.result-reset-btn i {
    background-size:auto 18px;
  }
}
@media screen and (max-width:768px) {
  .filter-nav-area .filter-title::after {
    height: 8px;
    background-size: auto 8px;
  }

  .filter-nav-area .filter-title p {
    font-size: 1.8rem;
  }

  .filter-nav-area .filter-menu i {
    width:14px;
    height:14px;
    background-size: auto 14px;
  }

  .filter-nav-area .filter-menu span {
    font-size: 1.4rem;
  }

  .filter-nav-area .result-area dd {
    gap:6px;
    height: 26px;
    padding:0px 12px;
    font-size: 1.4rem;
  }

  .filter-nav-area .result-btns button {
    gap:4px;
    height: 42px;
    font-size: 1.6rem;
  }

  .filter-nav-area .result-btns button.result-reset-btn i {
    width: 21px;
    background-size:auto 14px;
  }
}
@media screen and (max-width:576px) {
  .filter-nav-area .filter-title {
    padding: 12px 0px;
  }

  .filter-nav-area .filter-title p {
    font-size: 1.6rem;
  }

  .filter-nav-area .filter-menu ul {
    margin: -8px;
    padding: 6px 0px 10px;
  }

  .filter-nav-area .filter-menu li {
    flex:1 1 50%;
    max-width: 50%;
    padding: 8px;
  }

  .filter-nav-area .filter-menu label {
    gap:4px;
  }

  .filter-nav-area .filter-menu i {
    width: 12px;
    height: 12px;
    background-size: auto 12px;
  }

  .filter-nav-area .filter-menu span {
    font-size: 1.5rem;
  }

  .filter-nav-area .result-area {
    max-height: 80px;
    padding: 8px 0px;
  }

  .filter-nav-area .result-area dd {
    height: 22px;
    padding:0px 8px;
    font-size: 1.2rem;
  }

  .filter-nav-area .result-btns {
    gap:4px;
  }

  .filter-nav-area .result-area button {
    width: 8px;
    height: 8px;
    background-size: auto 8px;
  }

  .filter-nav-area .result-btns button.result-reset-btn {
    flex:1 1 calc(30% - 2px);
  }

  .filter-nav-area .result-btns button.result-reset-btn i {
    width: 16px;
    background-size: auto 12px;
  }

  .filter-nav-area .result-btns button.result-search-btn {
    flex:1 1 calc(70% - 2px);
  }

  .filter-nav-area .result-btns {
    padding: 8px 1.66667%
  }

  .filter-nav-area .result-btns button {
    height: 36px;
    font-size:1.3rem;
  }
}


/* Product Common */
@media screen and (min-width:769px) {
  .product .container {
    width: 100%;
    padding:0px 4.16667%;
  }
}


/* Product Head */
.product-head {
  text-align: center;
  padding: 100px 0px 60px;
}

.product-head-tit {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size:8rem;
  font-weight: 600;
  line-height: 1;
  transition: opacity 1.2s ease, transform 1.2s ease;
  margin-bottom: 30px;
}

.product-head-txt {
  font-size: 2rem;
  font-weight: 700;
  color:#dc1e1e;
}

@media screen and (max-width:1024px) {
  .product-head-tit {
    font-size: 7rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width:768px) {
  .product-head {
    padding: 80px 0px 40px;
  }

  .product-head-tit {
    font-size: 4rem;
  }

  .product-head-txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:576px) {
  .product-head {
    padding: 60px 0px 30px;
  }

  .product-head-tit {
    font-size:3.2rem;
    margin-bottom: 12px;
  }

  .product-head-txt {
    font-size: 1.6rem;
  }
}


/* Product List */
.product-list .list {
  display: flex;
  flex-wrap: wrap;
  margin:-24px -12px;
}

.product-list .list li {
  flex:1 1 50%;
  max-width: 50%;
  padding:24px 12px;
}

.product-list .list li.hide {
  display: none;
}

.product-list .list .thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(550/550*100%);
  margin-bottom: 30px;
  border-radius: 10px;
  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: 2rem;
}

.product-list .list .cont .price {
  display: flex;
  flex-direction: column;
  gap:6px;
  margin: 10px 0px 30px;
}

.product-list .list .cont .price span.original-price {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
  font-size: 2.4rem;
  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;
  text-decoration-line: line-through;
  text-decoration-thickness: 2px;
  font-size: 1.8rem;
  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;
  width: calc(50% - 5px);
  height: 30px;
  padding: 0px 12px;
  border-radius: 20px;
  border:1px solid #bfbfbf;
  background-color: #f5f5f5;
  text-align: center;
  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: 1.8rem;
  color:#fff;
  transition: var(--transition-basic);
}

@media screen and (max-width:1024px) {
  .product-list .list .thumb {
    margin-bottom: 20px;
  }

  .product-list .list .cont .name {
    font-size: 1.9rem;
  }

  .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 dd {
    padding: 0px 6px;
    font-size: 1.5rem;
  }

  .product-list .btn {
    margin-top: 80px;
  }

  .product-list .more-btn {
    width: 300px;
    height: 60px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width:768px) {
  .product-list .list {
    margin:-16px -8px;
  }

  .product-list .list li {
    padding:16px 8px;
  }

  .product-list .list .cont .name {
    font-size: 1.8rem;
  }

  .product-list .list .cont .price span.original-price {
    font-size: 2.2rem;
  }

  .product-list .list .cont .price span.sale-price {
    font-size: 1.6rem;
  }

  .product-list .list .cont .hashtag dd {
    font-size: 1.4rem;
  }

  .product-list .more-btn {
    width: 240px;
    height: 50px;
    font-size: 1.6rem;
  }

}
@media screen and (max-width:576px) {
  .product-list .list {
    margin:-12px -4px;
  }

  .product-list .list li {
    padding:12px 4px;
  }

  .product-list .list .thumb {
    margin-bottom: 12px;
  }

  .product-list .list .cont .name {
    font-size: 1.3rem;
  }

  .product-list .list .cont .price {
    gap:4px;
    margin: 6px 0px 16px;
  }

  .product-list .list .cont .price span.original-price {
    font-size: 2rem;
  }

  .product-list .list .cont .price span.sale-price {
    font-size: 1.3rem;
  }

  .product-list .list .cont .hashtag {
    gap:4px;
  }

  .product-list .list .cont .hashtag dd {
    width: calc(50% - 2px);
    height: 22px;
    padding: 0px 2px;
    font-size: 1.1rem;
  }

  .product-list .btn {
    margin-top: 40px;
  }

  .product-list .more-btn {
    width: 180px;
    height: 42px;
    font-size: 1.4rem;
  }

}


/* Product Detail */
.product-detail .main-image .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  background-color: #f5f5f5;
}

.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(220/220*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: 100%;
  margin:40px 0px 80px;
}

.product-detail .product-hashtag {
  font-size:1.8rem;
  font-weight: 700;
  line-height: 1;
  color:#737373;
}  

.product-detail .product-name {
  font-size: 3.6rem;
  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.4rem;
  font-weight: 700;
  color:#dc1e1e;
}

.product-detail .product-price span.original-price {
  text-decoration-line: line-through;
  text-decoration-thickness: 2px;
  font-size: 2rem;
  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:7px;
  left: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.product-detail .option dd {
  font-size: 1.6rem;
}

.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.4rem;
  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:10px;
  left: 0;
  font-size: 1.6rem;
  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: 60px;
  height: 30px;
  border:1px solid #bfbfbf;
  text-align: center;
  font-size: 1.6rem;
}

.product-detail .product-actions {
  display: flex;
  gap:10px;
  margin-top: 40px;
}

.product-detail .product-actions .actions-btn {
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  transition: var(--transition-basic);
  border:1px solid #191919;
  background-color: #fff;
}

.product-detail .product-actions .actions-btn01 {
  width:60px;
  height:60px;
  background: url('/asset/img/icon/cart.png') no-repeat center / 30px auto;
}

.product-detail .product-actions .actions-btn02,
.product-detail .product-actions .actions-btn03 {
  width: calc(50% - 40px);
}

.product-detail .product-actions .actions-btn02 {
  color:#fff;
  background-color: #191919;
}

.product-detail .product-actions .actions-btn03 {
  border-color: transparent;
  background-color: #f5f5f5;
}

.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: 2px;
  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: 1.8rem;
  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: 30px;
}

.product-detail .product-detail-area .title p {
  font-size: 2.4rem;
  font-weight: 700;
}

.product-detail .product-editor {
  padding-bottom: 130px;
}

.product-detail .product-editor .textarea {
  min-height: 610px;
  padding: 80px 0px;
  /* border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa; */
}

.product-detail .product-editor .btn {
  display: flex;
  justify-content: center;
  padding-top: 80px;
  border-top: 1px solid #aaaaaa;
}

.product-detail .product-editor .btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 60px;
  background-color: #191919;
  font-size: 1.8rem;
  color:#fff;
  transition: var(--transition-basic);
}

.product-detail .product-related .related-area {
  position: relative;
}

.product-detail .product-related .prev,
.product-detail .product-related .next {
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 13px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
}

.product-detail .product-related .prev {
  left: -3%;
  background-image: url('/asset/img/common/prd_si_prev.png');
}

.product-detail .product-related .next {
  right: -3%;
  background-image: url('/asset/img/common/prd_si_next.png');
}

.product-detail .product-related .pagination {
  display: none;
}

.product-detail .product-related .thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(440/440*100%);
  margin-bottom: 20px;
  background-color: #f5f5f5;
  overflow: hidden;
}

.product-detail .product-related .thumb img {
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%) scale(1);
  width: 70%;
  height: auto;
}

.product-detail .product-related .cont .name {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
  font-size: 2rem;
}

@media screen and (max-width:1024px) {
  .product-detail .product-gallery .thumbnail-list {
    margin-top: 6px;
  }

  .product-detail .product-info {
    margin: 30px 0px 60px;
  }

  .product-detail .product-hashtag {
    font-size: 1.7rem;
  }  

  .product-detail .product-name {
    font-size: 3.2rem;
    margin: 0px 0px 6px;
  }

  .product-detail .product-price {
    gap:12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .product-detail .product-price span.sale-price {
    font-size: 2.3rem;
  }

  .product-detail .product-price span.original-price {
    font-size: 1.9rem;
  }

  .product-detail .product-options .option:not(:last-child) {
    margin-bottom: 20px;
  }

  .product-detail .option dl {
    padding-left:80px;
  }

  .product-detail .option dt {
    font-size: 1.5rem;
  }

  .product-detail .option dd {
    font-size: 1.5rem;
  }

  .product-detail .option dd:not(:last-child) {
    margin-bottom: 6px;
  }

  .product-detail .option-hashtag dd {
    gap:6px;
  }

  .product-detail .option-hashtag span {
    height: 26px;
    padding: 0px 8px;
    font-size: 1.3rem;
  }
  
  .product-detail .product-counts {
    padding-top: 20px;
    margin-top: 20px;
  }

  .product-detail .product-counts dl {
    padding-left: 80px;
  }

  .product-detail .product-counts dt {
    top: 7px;
    font-size: 1.5rem;
  }

  .product-detail .product-counts button {
    width: 30px;
    height: 30px;
  }

  .product-detail .product-counts input {
    width: 60px;
    height: 30px;
    font-size: 1.5rem;
  }

  .product-detail .product-actions {
    gap:6px;
    margin-top: 30px;
  }

  .product-detail .product-actions .actions-btn {
    height: 50px;
    font-size: 1.5rem;
  }

  .product-detail .product-actions .actions-btn01 {
    width: 50px;
    background-size: 26px auto;
  }

  .product-detail .product-actions .actions-btn02, .product-detail .product-actions .actions-btn03 {
    width: calc(50% - 28px);
  }

  .product-detail .product-editor .editor-tab button {
    height: 48px;
    font-size: 1.7rem;
  }

  .product-detail .product-detail-area .title {
    margin-bottom: 20px;
  }

  .product-detail .product-detail-area .title p {
    font-size: 2.3rem;
  }

  .product-detail .product-editor {
    padding-bottom: 100px;
  }

  .product-detail .product-editor .textarea {
    min-height: 520px;
    padding: 60px 0px;
  }

  .product-detail .product-editor .btn {
    padding-top: 60px;
  }

  .product-detail .product-editor .btn a {
    width: 240px;
    height: 50px;
    font-size: 1.7rem;
  }

  .product-detail .product-related .thumb {
    margin-bottom: 16px;
  }

  .product-detail .product-related .cont .name {
    font-size: 1.9rem;
  }
}
@media screen and (max-width:768px) {
  .product-detail .product-gallery .thumbnail-list {
    margin-top: 4px;
  }

  .product-detail .product-hashtag {
    font-size: 1.6rem;
  }

  .product-detail .product-name {
    font-size:2.6rem;
    margin:2px 0px 6px;
  }

  .product-detail .product-price {
    gap:8px;
  }

  .product-detail .product-price span.sale-price {
    font-size: 2.2rem;
  }

  .product-detail .product-price span.original-price {
    font-size: 1.8rem;
  }

  .product-detail .option dl {
    padding-left: 70px;
  }

  .product-detail .option dt {
    font-size: 1.4rem;
  }

  .product-detail .option dd {
    font-size: 1.4rem;
  }

  .product-detail .option-hashtag span {
    height: 24px;
    padding: 0px 6px;
    font-size: 1.2rem;
  }

  .product-detail .product-counts dl {
    padding-left: 70px;
  }

  .product-detail .product-counts dt {
    font-size: 1.4rem;
  }

  .product-detail .product-counts input {
    font-size: 1.4rem;
  }

  .product-detail .product-actions .actions-btn {
    font-size: 1.4rem;
  }

  .product-detail .product-editor .editor-tab button {
    height: 42px;
    font-size: 1.6rem;
  }

  .product-detail .product-detail-area .title p {
    font-size:2.2rem;
  }

  .product-detail .product-editor .textarea {
    min-height: 460px;
    padding: 40px 0px;
  }

  .product-detail .product-editor .btn a {
    height: 42px;
    font-size: 1.6rem;
  }

  .product-detail .product-related .cont .name {
    font-size: 1.8rem;
  }

  .product-detail .product-related .prev, .product-detail .product-related .next {
    display: none;
  }

  .product-detail .product-related .pagination {
    display: block;
    position: relative;
    width: 100%;
    height: 3px;
    margin-top: 30px;
    background-color: #f5f5f5;
  }

  .product-detail .product-related .pagination .swiper-pagination-progressbar-fill {
    background-color: #dc1e1e; 
  }
}
@media screen and (max-width:576px) {
  .product-detail .product-info {
    margin: 20px 0px 40px;
  }

  .product-detail .product-hashtag {
    font-size: 1.3rem;
  }

  .product-detail .product-name {
    font-size: 2.2rem;
  }

  .product-detail .product-price {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .product-detail .product-price span.sale-price {
    font-size: 2rem;
  }

  .product-detail .product-price span.original-price {
    font-size: 1.6rem;
  }

  .product-detail .product-options .option:not(:last-child) {
    margin-bottom: 16px;
  }

  .product-detail .option dl {
    padding-left:60px;
  }

  .product-detail .option dt {
    top: 4px;
    font-size: 1.3rem;
  }

  .product-detail .option dd {
    font-size: 1.3rem;
  }

  .product-detail .option dd:not(:last-child) {
    margin-bottom: 4px;
  }

  .product-detail .option-hashtag dd {
    gap:4px;
  }

  .product-detail .option-hashtag span {
    height: 22px;
    font-size: 1.1rem;
  }

  .product-detail .product-counts {
    padding-top: 12px;
    margin-top: 12px;
  }

  .product-detail .product-counts dt {
    font-size: 1.3rem;
  }

  .product-detail .product-counts input {
    width: 44px;
    height: 26px;
    font-size: 1.3rem;
  }

  .product-detail .product-counts button {
    width: 26px;
    height: 26px;
    background-size: 9px auto;
  }

  .product-detail .product-actions {
    gap:4px;
  }

  .product-detail .product-actions .actions-btn {
    height: 44px;
    font-size: 1.3rem;
  }

  .product-detail .product-actions .actions-btn01 {
    width: 44px;
    background-size: 23px auto;
  }

  .product-detail .product-actions .actions-btn02, .product-detail .product-actions .actions-btn03 {
    width: calc(50% - 24px);
  }

  .product-detail .product-editor .editor-tab li::before {
    height: 2px;
  }

  .product-detail .product-editor .editor-tab button {
    height: 36px;
    font-size: 1.3rem;
  }

  .product-detail .product-detail-area .title {
    margin-bottom: 12px;
  }

  .product-detail .product-detail-area .title p {
    font-size: 2rem;
  }

  .product-detail .product-editor {
    padding-bottom: 80px;
  }

  .product-detail .product-editor .textarea {
    min-height: 380px;
    padding: 30px 0px;
  }

  .product-detail .product-editor .btn {
    padding-top: 40px;
  }

  .product-detail .product-editor .btn a {
    width: 180px;
    height: 38px;
    font-size: 1.3rem;
  }

  .product-detail .product-related .thumb {
    margin-bottom: 10px;
  }

  .product-detail .product-related .cont .name {
    font-size: 1.4rem;
  }

  .product-detail .product-related .pagination {
    margin-top: 20px;
  }
}
