#productsProduct_list #pageTitle .page-title {
  display: none;
}

#pdtList .divider {
  margin-top: calc(var(--divider-gap) - 60px);
}

#listWrap {
  display: flex;
  justify-content: space-between;
  column-gap: 80px;
}

#pdtList .list-area {
  flex: 1;
}

#pdtList .product-list {
  --grid-num: 3;
  --grid-t-num: 2;
  --grid-m-num: 2;
}

#pdtList .product-list .image {
  width: 100%;
  height: auto;
  aspect-ratio: 427/400;
  border: 1px solid #ccc;
  padding: 10px;
  position: relative;
  overflow: hidden;
}

#pdtList .product-list .new .image {
  border: 2px solid var(--color-sub);
}

#pdtList .product-list .new .image::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  width: 42px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(/themes/basic/assets/images/products/label_new.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#pdtList .product-list .image .bg {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s;
}

#pdtList .product-list .image:hover .bg{
  transform: scale(1.1);
}

#pdtList .product-list .text {
  margin: 15px 0 0 5px;
}

#pdtList .product-list .text p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#pdtList .product-list ~ .pagination-area {
  margin-top: 40px;
}

#pdtList .category-snb {
  width: 260px;
  max-height: 80vh;
  overflow-y: auto;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

#pdtList .category-snb li {
  background-color: #f7f8f9;
  padding: 15px 25px;
  border-bottom: 1px solid #fff;
}

#pdtList .category-snb li a {
  width: 100%;
  display: block;
  color: #aaa;
  font-size: var(--f16);
}

#pdtList .category-snb li.active {
  background-color: var(--color-dark);
}

#pdtList .category-snb li.active a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #fff;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1360px)*/
@media all and (min-width: 1024px) and (max-width: 1360px) {
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #productsProduct_list #breadCrumbs {
    margin: 40px 0 0;
  }

  #listWrap {
    column-gap: 60px;
  }

  #pdtList .category-snb {
    width: 200px;
  }

  #pdtList .category-snb li {
    padding: 12px 20px;
  }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  #productsProduct_list #breadCrumbs {
    margin: 20px 0 30px;
  }

  #pdtList .divider {
    margin-top: 40px;
  }

  #pdtList .title-wrap {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
    margin-bottom: 20px;
  }

  #listWrap {
    flex-direction: column;
    row-gap: 40px;
  }

  #pdtList .product-list {
    column-gap: 10px;
  }

  #pdtList .product-list .text {
    margin: 10px 0 0 0;
  }

  #pdtList .product-list .text h4 {
    font-size: 14px;
  }

  #pdtList .category-snb {
    width: 100%;
    max-height: 50vh;
    position: static;
  }

  #pdtList .category-snb li {
    display: none;
    transition: all 0.5s;
  }

  #pdtList .category-snb li.active,
  #pdtList .category-snb.open li.active {
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
  }

  #pdtList .category-snb li.active::after {
    content: "";
    display: block;
    background: url("/themes/basic/assets/images/products/dropdown_arrow.svg")
      no-repeat center center;
    width: 12px;
    height: auto;
    aspect-ratio: 11/6;
    transition: all 0.5s;
  }

  #pdtList .category-snb.open li.active::after {
    transform: rotate(180deg);
  }

  #pdtList .category-snb li.active a {
    pointer-events: none;
  }

  #pdtList .category-snb.open li {
    display: block;
  }

  #pdtList .category-snb.open::-webkit-scrollbar {
    width: 3px;
    height: 3px;
  }
}
