#productsProduct_view #pageTitle .page-title {
  display: none;
}

#productsProduct_view #breadCrumbs {
  margin: 40px 0 0;
}

#pdtView.divider {
  margin-top: calc(var(--divider-gap) - 40px);
}

#productInfoWrap {
  display: flex;
  column-gap: 80px;
  margin-bottom: var(--divider-gap);
}

/* slider */
#productSlider {
  position: relative;
  width: 100%;
  max-width: 650px;
}

#productSlider .product-thumb {
  margin-top: 20px;
}

#productSlider .product-view {
  border: 1px solid #ccc;
}

#productSlider .slick-track {
  margin: 0;
}

#productSlider .slide-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

#productSlider .slide-item .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 90% auto;
  background-position: center;
  background-repeat: no-repeat;
}

#productSlider .product-thumb {
  --slider-space: 15px;
  /* 슬라이더 간격 */
}

#productSlider .product-thumb .slick-list {
  margin: 0 calc(var(--slider-space) / -2);
}

#productSlider .product-thumb .slide-item {
  cursor: pointer;
  margin: 2px calc(var(--slider-space) / 2);
  border: 1px solid #ccc;
  transition: all 0.3s;
}

#productSlider .product-thumb .slide-item.slick-current {
  box-shadow: 0 0 0 2px var(--color-primary);
  border-color: transparent;
}

#productInfo {
  position: relative;
  flex: 1;
  margin-top: 10px;
}

#productInfo .category {
  font-size: var(--f16);
  color: var(--color-mute);
}

#productInfo .brand {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  position: absolute;
  top: 0;
  right: 0;
  max-width: 80%;
}

#productInfo .brand img {
  max-height: 20px;
}

#productInfo .product-code {
  color: var(--color-dark);
}

#productInfo .product-desc {
  margin: 10px 0 40px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 40px;
}

#productInfo .desc-box {
  background-color: #fafafa;
  padding: 35px;
}

#productInfo .desc-box p {
  font-size: var(--f16);
  font-weight: 400;
  color: var(--color-mute);
  line-height: 1.8;
}

#productInfo .btn {
  min-width: 200px;
  background-color: var(--color-dark);
  border-color: var(--color-dark);
  border-radius: 0;
  margin-top: 40px;
  --btn-font-size: var(--f20);
}

#pdtNav {
  position: sticky;
  top: var(--header-height);
  z-index: 1;
  background-color: #fff;
}

#pdtNav ul {
  position: relative;
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#pdtNav ul::-webkit-scrollbar {
  display: none;
}

#pdtNav ul li {
  position: relative;
  z-index: 1;
  flex: 1;
  background-color: #fff;
  border: 1px solid #e5e5e5;
}

#pdtNav ul li~li {
  margin-left: -1px;
}

#pdtNav ul li a {
  display: block;
  color: #aaa;
  font-size: var(--f20);
  font-weight: 600;
  text-align: center;
  padding: 16px 30px;
}

#pdtNav ul li.active {
  border-color: var(--color-dark);
}

#pdtNav ul li.active a {
  font-weight: 700;
  background-color: var(--color-dark);
  color: #fff;
}

#productDetailWrap {
  background-color: #fafafa;
  padding-bottom: var(--divider-gap);
}

#productDetail {
  padding-top: var(--divider-gap);
}

#productDetail .section {
  margin-bottom: var(--divider-gap);
}

#productDetail .section:last-child {
  margin-bottom: 0;
}

#productDetail .title {
  margin-bottom: 40px;
}

#productDetail .title h3 {
  line-height: 1;
}

#productDetail .btn-area {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#productDetail .video-content {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}

#productDetail .video-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#productDetail .video-content~.video-content {
  margin-top: 30px;
}

#productDetail .detail-content {
  min-height: 250px;
}

/* 카테고리 */
#pdtView .all-category {
  --divider-gap: 80px;
}

#pdtView .all-category .title {
  margin-bottom: 40px;
}

#pdtView .categort-list {
  --grid-num: 5;
  --grid-t-num: 4;
  --grid-m-num: 2;
  gap: 0;
}

#pdtView .categort-list li {
  transition: all 0.5s ease-in-out;
}

#pdtView .categort-list li a {
  width: 100%;
  display: block;
  padding: 15px;
  font-size: var(--f16);
}

#pdtView .categort-list li:hover {
  background-color: var(--color-dark);
}

#pdtView .categort-list li:hover 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) {
  #pdtView .divider {
    margin-top: calc(var(--divider-gap) - 60px);
  }

  #productInfoWrap {
    flex-direction: column;
    row-gap: 40px;
  }

  /* slider */
  #productSlider {
    max-width: 100%;
  }

  #productInfo {
    margin-top: 0;
  }

  #productInfo .brand img {
    max-height: 16px;
  }

  #productInfo .btn {
    margin: 40px auto 0;
  }

  #pdtNav {
    top: var(--header-height-t);
  }

  #pdtNav .container{
    width: 100%;
  }

  #productDetail .title {
    margin-bottom: 35px;
  }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  #productsProduct_view #breadCrumbs {
    margin: 20px 0 -30px;
  }

  #pdtView .divider {
    margin-top: var(--divider-gap);
  }

  #productInfoWrap {
    flex-direction: column;
    row-gap: 30px;
  }

  /* slider */
  #productSlider {
    max-width: 100%;
  }

  #productSlider .product-thumb {
    margin-top: 10px;
    --slider-space: 10px;
    /* 슬라이더 간격 */
  }

  #productInfo {
    margin-top: 0;
  }

  #productInfo .brand {
    gap: 10px;
  }

  #productInfo .brand img {
    max-height: 15px;
  }

  #productInfo .product-desc {
    margin: 10px 0 30px;
    padding-bottom: 30px;
  }

  #productInfo .desc-box {
    padding: 30px;
  }

  #productInfo .btn {
    min-width: 180px;
    margin: 40px auto 0;
  }

  #pdtNav {
    top: var(--header-height-m);
  }
  
  #pdtNav .container{
    width: 100%;
  }

  #pdtNav ul li a{
    padding: 13px 20px;
  }

  #productDetail .title {
    margin-bottom: 30px;
  }

  #productDetail .title h3 {
    font-size: 22px;
  }

  #productDetail .video-content~.video-content {
    margin-top: 20px;
  }

  #productDetail .detail-content {
    min-height: 150px;
  }
}

/* top-banner css*/
#topBanner {
  max-width: calc(100% - var(--margin-left));
}

#topBanner {
  --banner-height: 220px;
  width: 100%;
  height: var(--banner-height);
  background-color: var(--color-sub);
  margin: 0 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

#topBanner::before {
  --border-left: 120px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: var(--banner-height) solid var(--color-sub);
  border-left: var(--border-left) solid transparent;

  position: absolute;
  top: 0;
  left: calc(-1 * var(--border-left));
}

#topBanner .content-bg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  position: absolute;
  pointer-events: none;
}

#topBanner .content-bg.obj1 {
  max-width: 300px;
  bottom: -29.5%;
  right: 17.68%;
}

#topBanner .content-bg.obj2 {
  max-width: 520px;
  bottom: -6.8%;
  right: 0;
}

#topBanner .content {
  padding-left: 4%;
}

#topBanner h2 {
  color: #fff;
  line-height: 1;
}

#topBanner .route-box {
  display: flex;
  position: relative;
  margin-bottom: 15px;
}

#topBanner .route-box p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  height: 20px;
  display: inline-flex;
  align-items: center;
}

#topBanner .route-box p::before {
  content: "";
  display: inline-block;
  background: url("/themes/basic/assets/images/arrow_right.svg") no-repeat;
  width: 6px;
  height: 10px;
  margin: 0 16px;
  filter: brightness(0) invert(1);
}

#topBanner .route-box .home::before {
  display: none;
}

#topBanner .route-box .home img {
  cursor: pointer;
  width: 18px;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

/* 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) {
  #topBanner::before {
    --border-left: 90px;
  }

  #topBanner .content-bg {
    zoom: 0.9;
  }
}

/* Moble ( ~ 767px)*/
@media all and (max-width: 767px) {
  #topBanner {
    --banner-height: 150px;
  }

  #topBanner::before {
    --border-left: 70px;
  }

  #topBanner .content-bg {
    zoom: 0.5;
    opacity: 0.5;
  }

  #topBanner .route-box p {
    font-size: 13px;
  }

  #topBanner .route-box p::after {
    margin: 0 12px;
  }

  #topBanner .route-box .home img {
    width: 12px;
  }
}

/* top_banner css end */