/* products-detail */
.products-detail {
  padding-top: 30px;
}

.products-detail .title {
  font-family: 'Montserrat-ExtraBold';
}

.products-detail .lt-nav {
  margin-bottom: 20px;
}

.products-detail .swiper-gallery .swiper-container {
  border-radius: 10px;
}

.products-detail .swiper-gallery .swiper-slide {
  text-align: center;
}

.products-detail .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 554 / 554;
}

.products-detail .swiper-thumbs {
  display: none;
}

.products-detail .top-wrap .title {
  text-align: left;
}

.products-detail .sub-info {
  color: #CDCDCE;
  margin-top: 10px;
  margin-bottom: 20px;
}

.products-detail .sub-info>*:not(:last-child) {
  margin-bottom: 12px;
}

.products-detail .sub-info strong {
  color: #fff;
  font-family: 'Montserrat-Bold';
}

.products-detail .btn-wrap {
  margin-top: 20px;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -10px;
}

.products-detail .btn {
  width: 180px;
  padding: 7px 15px;
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.products-detail .btn:first-child {
  background: var(--style-color);
}

.products-detail .btn:last-child {
  background: var(--sub-color);
}

.products-detail .btn:last-child i {
  font-size: inherit;
  line-height: 1;
  margin-right: 9px;
}

.products-detail .item-wrap {
  margin-top: 30px;
}

.products-detail .item:not(:last-child) {
  margin-bottom: 30px;
}

.products-detail .item-info {
  color: #CDCDCE;
  margin-top: 10px;
}

.products-detail .item-info h2 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'Montserrat-Bold';
}

.products-detail .item-info h3 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 5px;
  font-family: 'Montserrat-Bold';
}

.products-detail .table-info {
  margin-top: 30px;
  color: #CDCDCE;
}

.products-detail .table-info table tr:first-child {
  color: #fff;
  font-family: 'Montserrat-Bold';
}

.products-detail .table-info table th, .products-detail .table-info table td {
  border-color: #fff;
}

.products-detail .item-iframe {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin-top: 30px;
  background: #333;
  aspect-ratio: 1000 / 561;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .products-detail .lt-nav {
    max-width: 554px;
    margin-left: auto;
    margin-right: auto;
  }

  .products-detail .swiper-pagination {
    display: none;
  }

  .products-detail .swiper-thumbs {
    margin-top: 30px;
    max-width: 620px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .products-detail .swiper-thumbs .swiper-slide {
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
  }

  .products-detail .swiper-thumbs .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid var(--sub-color);
    opacity: 0;
  }

  .products-detail .swiper-thumbs .swiper-slide-thumb-active::after {
    opacity: 1;
  }

  .products-detail .prev-btn, .products-detail .next-btn {
    width: 42px;
    height: 42px;
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
    background: var(--style-color);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .products-detail .prev-btn {
    transform: translate(-50%, -50%);
  }

  .products-detail .next-btn {
    transform: translate(50%, -50%);
  }

  .products-detail .swiper-button-disabled {
    display: none;
  }
}

@media (min-width: 1200px) {
  .products-detail {
    padding-top: 60px;
  }

  .products-detail .top-wrap {
    display: flex;
    align-items: center;
  }

  .products-detail .lt-nav {
    width: 554px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .products-detail .rt-content {
    flex: 1;
    padding-left: 60px;
  }

  .products-detail .sub-info {
    margin-top: 17px;
    margin-bottom: 37px;
  }

  .products-detail .btn-wrap {
    margin-top: 37px;
    margin-left: -25px;
    margin-right: -25px;
  }

  .products-detail .btn {
    width: 220px;
    padding-top: 10px;
    padding-bottom: 9px;
    margin-left: 25px;
    margin-right: 25px;
  }

  .products-detail .item-wrap {
    margin-top: 60px;
  }

  .products-detail .item:not(:last-child) {
    margin-bottom: 60px;
  }

  .products-detail .item-info {
    margin-top: 17px;
  }

  .products-detail .table-info {
    margin-top: 60px;
  }

  .products-detail .table-info table td {
    padding-top: 21px;
    padding-bottom: 21px;
  }

  .products-detail .item-iframe {
    margin-top: 60px;
  }
}

@media (min-width: 1440px) {
  .products-detail {
    padding-top: 100px;
  }

  .products-detail .rt-content {
    padding-left: 75px;
  }

  .products-detail .btn {
    font-size: 26px;
  }

  .products-detail .item-wrap {
    margin-top: 100px;
  }

  .products-detail .item:not(:last-child) {
    margin-bottom: 100px;
  }

  .products-detail .table-info table tr:first-child {
    font-size: 26px;
  }
}


/* related */
.related {
  padding: 30px 0;
}

.related .title {
  margin-bottom: 30px;
  font-family: 'Montserrat-ExtraBold';
}

.related .scale-img {
  border-radius: 10px;
}

.related .scale-img img {
  width: 100%;
  aspect-ratio: 435 / 435;
}

.related .tit {
  margin-top: 11px;
  margin-bottom: 7px;
  font-family: 'Montserrat-Bold';
}

.related .btn {
  width: 180px;
  margin-top: 20px;
  padding: 7px 15px;
  border-radius: 4px;
  background: var(--style-color);
}

@media (min-width: 1200px) {
  .related {
    padding: 60px 0 64px;
  }

  .related .title {
    margin-bottom: 60px;
  }

  .related .tit {
    margin-top: 22px;
    margin-bottom: 13px;
  }

  .related .tit:hover {
    color: var(--style-color);
  }

  .related .btn {
    width: 220px;
    margin-top: 37px;
    padding-top: 10px;
    padding-bottom: 9px;
    transition: all .3s;
  }

  .related .btn:hover {
    color: var(--style-color);
    background: #fff;
  }
}

@media (min-width: 1440px) {
  .related {
    padding-top: 100px;
  }

  .related .btn {
    font-size: 26px;
  }
}