.product_show {
  background-color: #f9f6f9;
  padding: 2.1rem 0 10rem;
}
.product_show .main {
  margin-top: 4.7rem;
}
.product_show .lt {
  flex: 1;
  max-width: 59.9rem;
  padding-bottom: 0.6%;
}
.product_show .lt h1 {
  font-size: 4.8rem;
  line-height: 6.5rem;
  font-weight: 600;
}
.product_show .lt p{
  font-size: 1.7rem;
  line-height: 2.5rem;
  color: #161616; 
  margin: 1rem 0;
}
.product_show .lt .code {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.9rem;
  color: #0e202a;
  opacity: 0.8;
  gap: 0.9rem;
  margin-top: 1.2rem;
}
.product_show .lt .code::before {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-block;
  content: '';
  flex-shrink: 0;
  transition: all 0.3s;
  background: url("../img/pd-code.svg") no-repeat center / contain;
}
.product_show .lt .mass {
  border-top: 1px solid rgba(93, 105, 112, 0.24);
  margin-top: 5rem;
  padding-top: 1.8rem;
}
.product_show .lt .mass strong {
  font-size: 1.7rem;
  color: #0e202a;
  opacity: 0.8;
  font-weight: 400;
  text-transform: uppercase;
}
.product_show .lt .mass ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.4rem;
}
.product_show .lt .mass li {
  position: relative;
  font-size: 1.7rem;
  font-weight: 500;
  color: #171717;
  transition: all 0.3s;
  cursor: pointer;
  background-color: #fff;
  border-radius: 7px;
  border: 1px solid #cccccc;
  padding: 1.35rem 2.25rem;
}
.product_show .lt .mass li::after {
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 2px solid var(--secondary);
  border-radius: 7px;
  content: '';
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
}
.product_show .lt .mass li.active,
.product_show .lt .mass li:hover {
  border-color: transparent;
}
.product_show .lt .mass li.active::after,
.product_show .lt .mass li:hover::after {
  opacity: 1;
}
.product_show .lt .con {
  margin-top: 5.8rem;
}
.product_show .lt .price {
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product_show .lt .price ins{
  font-size: inherit;
  color: inherit;
  text-decoration: inherit;
}
.product_show .lt .price del {
  font-size: 2.2rem;
  font-weight: 400;
  color: #898b8c;
  order: 9;
}
.product_show .lt .quantity {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 0.5rem;
}
.product_show .lt .quantity .label {
  font-size: 1.7rem;
  color: #0e202a;
  opacity: 0.8;
  text-transform: uppercase;
}
.product_show .lt .quantity .qty {
  display: grid;
  grid-template-columns: 3.9rem 5.6rem 3.8rem;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #d8d8d8;
  height: 3.6rem;
}
.product_show .lt .quantity .qty button {
  display: block;
  transition: all 0.3s;
  background: url("../img/minus.svg") no-repeat center / 42%;
  content: '';
}
.product_show .lt .quantity .qty .plus {
  background-image: url("../img/add.svg");
}
.product_show .lt .quantity .qty input {
  font-size: 2rem;
  color: #0e202a;
  display: block;
  width: 100%;
  text-align: center;
  padding: 0 1rem;
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}
.product_show .rt {
  width: 43.6805556%;
}
.product_show .box {
  border-radius: 2rem;
  border: 1.4rem solid rgba(74, 39, 72, 0.2);
  background-color: #fff;
  text-align: center;
  padding: 3.6rem 2rem 3.8rem;
  border-top-width: 1.3rem;
  border-bottom-width: 1.3rem;
}
.product_show .box strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
}
.product_show .box p {
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: #0e202a;
  opacity: 0.75;
  max-width: 51.2rem;
  margin: 1.8rem auto 0;
}
.product_show .box .btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 44.4rem;
  margin: 5.8rem auto 0;
  gap: 2rem 1rem;
}
.product_show .box .btns .btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  gap: 1rem;
}
.product_show .box .btns .btn::before {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  content: '';
  flex-shrink: 0;
  background: url("../img/icon-cart-w.svg") no-repeat center / contain;
}
.product_show .box .btns .btn:hover {
  background-color: var(--primary);
}
.product_show .box .btns .btn_line {
  flex: 1;
  min-width: unset;
  padding: 0 1rem;
}
.product_show .advantages {
  margin-top: 3rem;
  text-align: center;
}
.product_show .advantages span {
  font-size: 1.8rem;
  color: #0e202a;
}
.product_show .advantages span span::before {
  content: ' | ';
  margin: 0 0.9rem;
}
.product_show .advantages span span:first-child::before {
  display: none;
}
.product_spec {
  padding: 10rem 0 5rem;
}
.product_spec .grid {
  display: grid;
  grid-template-columns: 20.34722% 1fr;
  border-radius: 1.2rem;
  background-color: #f9fafb;
}
.product_spec .rt table tr:first-child th:first-child {
  border-top-left-radius: 1.2rem;
}
.product_spec .rt table tr:last-child th:first-child {
  border-bottom-left-radius: 1.2rem;
}
.product_spec .rt table tr:last-child td,
.product_spec .rt table tr:last-child th {
  border-bottom: none;
}
.product_spec .rt table tr:last-child td::before,
.product_spec .rt table tr:last-child th::before {
  display: none;
}
.product_spec .rt table td,
.product_spec .rt table th {
  font-size: 1.7rem;
  line-height: 2.5rem;
  color: #161616;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid rgba(22, 22, 22, 0.14);
  padding: 1.5rem 3.3rem 1.3rem;
}
.product_spec .rt table td:first-child,
.product_spec .rt table th:first-child,
.product_spec .rt table td:last-child,
.product_spec .rt table th:last-child {
  position: relative;
  border-bottom-color: transparent;
}
.product_spec .rt table td:first-child::before,
.product_spec .rt table th:first-child::before,
.product_spec .rt table td:last-child::before,
.product_spec .rt table th:last-child::before {
  width: calc(100% - 3.3rem);
  bottom: -1px;
  content: '';
  height: 1px;
  border-bottom: 1px solid rgba(22, 22, 22, 0.14);
  position: absolute;
}
.product_spec .rt table td:first-child,
.product_spec .rt table th:first-child {
  border-bottom-color: var(--bg);
}
.product_spec .rt table td:first-child::before,
.product_spec .rt table th:first-child::before {
  right: 0;
}
.product_spec .rt table td:last-child::before,
.product_spec .rt table th:last-child::before {
  left: 0;
}
.product_spec .rt table th {
  background-color: var(--bg);
  font-weight: 600;
  width: 22.84%;
}
.product_spec.product_spec2 .rt table th{
  background-color: #F5F5F5;
}
.product_spec .rt table td {
  width: 27.4%;
  padding-left: 2.9rem;
  word-break: break-all;
}
.product_spec .lt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
.product_spec .lt .img {
  width: 100%;
  padding-bottom: 100%;
}
.product_spec .lt .img:hover img {
  transform: scale(1.02);
}
.product_spec .lt .more {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--secondary);
  gap: 1.1rem;
  margin: auto 1rem 0;
}
 .product_desc .item.item.faq_col .desc ul li:nth-child(2n) p:last-child{
  background-color: transparent !important;
 }
.product_spec .lt .more .btn_circle {
  width: 3.6rem;
  background-color: var(--secondary);
}
.product_spec .lt .more .btn_circle::after {
  transform: rotate(-45deg);
}
.product_spec .lt .more:hover {
  color: var(--primary);
}
.product_spec .lt .more:hover .btn_circle {
  background-color: var(--primary);
}
.product_spec .lt .more:hover .btn_circle::after {
  transform: rotate(0);
}
.product_desc {
  padding: 5rem 0 5.75rem;
}
.product_desc .item {
  margin-bottom: 1rem;
}
.product_desc .item:last-child {
  margin-bottom: 0;
}
.product_desc .item.active .title {
  background-color: var(--primary);
  color: #fff;
}
.product_desc .item.active .title i {
  border-color: #fff;
}
.product_desc .item.active .title i::before,
.product_desc .item.active .title i::after {
  background-color: #fff;
}
.product_desc .item.active .title i::after {
  opacity: 0;
  transform: rotate(45deg);
}
.product_desc .item .title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 6px;
  background-color: rgba(239, 239, 239, 0.6);
  font-size: 2rem;
  font-weight: 500;
  color: #020e28;
  gap: 1.1rem;
  padding: 1.7rem 2.5rem;
}
.product_desc .item .title i {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  border: 2px solid #020e28;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.product_desc .item .title i::before,
.product_desc .item .title i::after {
  position: absolute;
  width: 45.8%;
  height: 2px;
  background-color: #020e28;
  content: '';
  transition: all 0.3s;
}
.product_desc .item .title i::after {
  width: 2px;
  height: 45.8%;
}
.product_desc .item .desc {
  display: none;
  font-size: 1.8rem;
  line-height: 3rem;
  color: rgba(21, 15, 53, 0.75);
  padding: 2.6rem 0 3.8rem;
}
.product_desc .item .desc ul li {
  display: flex;
  align-items: flex-start;
}
.product_desc .item .desc ul li:nth-child(even) p:last-child {
  background-color: #f7f6f9;
}
.product_desc .item .desc ul li + li {
  margin-top: 2rem;
}
.product_desc .item .desc ul p {
  border-radius: 2px;
  flex: 1;
  padding: 0.3rem 5rem 0.4rem 2.2rem;
}
.product_desc .item .desc ul p:first-child {
  width: 25.7%;
  flex: unset;
  padding-left: 2.6rem;
}
.product_services {
  padding: 5.75rem 0 5.6rem;
}
.product_services .head h2 {
  font-size: 3.6rem;
  line-height: 1.3;
}
.product_services .product_services_swiper {
  margin-top: 3.1rem;
  overflow: hidden;
  border-radius: 1rem;
}
.product_services .product_services_swiper .swiper-slide {
  max-width: 329px;
}
.product_services .product_services_swiper .item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product_services .product_services_swiper .item:hover img {
  transform: scale(1.02);
}
.product_services .product_services_swiper .img {
  border-radius: 1rem;
  padding-bottom: 76.8997%;
}
.product_services .product_services_swiper .title {
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: 600;
  color: #0e202a;
  margin-top: 2.1rem;
}
.product_services div.swiper-scrollbar {
  position: static;
  width: 100%;
  height: 3px;
  background: #e5e5e5;
  margin-top: 5rem;
}
.product_services div.swiper-scrollbar .swiper-scrollbar-drag {
  height: 4px;
  background: var(--secondary);
  top: -1px;
}
.contact_intro {
  padding-bottom: 3.2rem;
}
.contact_form {
  padding-top: 3.2rem;
}
.product_related {
  padding: 6.1rem 0 11rem;
}
.product_related .product_related_swiper {
  margin-top: 2.9rem;
}
.product_related .product_related_swiper .swiper-slide {
  max-width: 460px;
}
.product_related .swiper_btns {
  top: 46%;
}
.product_related p.center:has(.btn_line) {
  margin-top: 2.5rem;
}
table.variations{
  display: none;
}
.single_variation_wrap{
  display: none !important;
}
.woocommerce .quantity .qty{
  width: auto !important;
}
.woo_product_data{
  display: none !important;
}
.woo_product_data:has(.variations_form){
  display: block !important;
}
.woocommerce-product-details__short-description{
  display: none;
}

.product_gallery{
  padding: 4rem 0;
}
.product_gallery .swiper-slide .img{
  aspect-ratio: 800/500;
}
.product_gallery .swiper-slide p{
  font-size: 1.7rem;
  color: #666;
  line-height: 2.7rem;
  margin-top: 2rem;
  text-align: center;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
.product_gallery .swiper-slide a{
  display: block;
  width: 100%;
  height: 100%;
}
.swiper_gallery{
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .product_show {
    padding: 20px 0 50px;
  }
  .product_show .main {
    margin-top: 30px;
  }
  .product_show .lt {
    max-width: unset;
    padding: 0;
    width: 100%;
  }
  .product_show .lt h1 {
    font-size: 25px;
    line-height: 1.3;
  }
  .product_show .lt .code {
    font-size: 14px;
    margin-top: 10px;
    gap: 8px;
  }
  .product_show .lt .code::before {
    width: 15px;
    height: 15px;
  }
  .product_show .lt .mass {
    margin-top: 22px;
    padding-top: 16px;
  }
  .product_show .lt .mass strong {
    font-size: 16px;
  }
  .product_show .lt .mass ul {
    gap: 10px;
    margin-top: 12px;
  }
  .product_show .lt .mass li {
    font-size: 14px;
    padding: 10px 20px;
  }
  .product_show .lt .con {
    margin-top: 30px;
  }
  .product_show .lt .price {
    font-size: 22px;
  }
  .product_show .lt .price del {
    font-size: 16px;
  }
  .product_show .lt .quantity {
    gap: 10px;
    margin-bottom: 0;
  }
  .product_show .lt .quantity .label {
    font-size: 14px;
  }
  .product_show .lt .quantity .qty {
    grid-template-columns: 30px 40px 30px;
    height: 35px;
  }
  .product_show .lt .quantity .qty input {
    font-size: 14px;
    padding: 0 10px;
  }
  .product_show .rt {
    width: 50%;
  }
  .product_show .box {
    border-width: 5px;
    border-radius: 10px;
    padding: 20px;
  }
  .product_show .box strong {
    font-size: 18px;
  }
  .product_show .box p {
    font-size: 14px;
    line-height: 1.5;
    max-width: unset;
    margin-top: 10px;
  }
  .product_show .box .btns {
    margin-top: 20px;
    max-width: unset;
    gap: 14px 10px;
  }
  .product_show .box .btns .btn {
    gap: 8px;
  }
  .product_show .box .btns .btn::before {
    width: 14px;
    height: 14px;
  }
  .product_show .box .btns .btn_line {
    padding: 0 10px;
  }
  .product_show .advantages {
    margin-top: 16px;
  }
  .product_show .advantages span {
    font-size: 14px;
  }
  .product_show .advantages span span::before {
    margin: 0 8px;
  }
  .product_spec {
    padding: 50px 0;
  }
  .product_spec .grid {
    border-radius: 10px;
    grid-template-columns: 30% 1fr;
  }
  .product_spec .lt {
    gap: 20px;
    padding-bottom: 20px;
  }
  .product_spec .lt .more {
    font-size: 14px;
    gap: 10px;
  }
  .product_spec .lt .more .btn_circle {
    width: 40px;
  }
  .product_spec .rt {
    overflow: auto;
    border-radius: 10px;
  }
  .product_spec .rt::-webkit-scrollbar {
    display: none;
  }
  .product_spec .rt table tr:first-child th:first-child {
    border-top-left-radius: 10px;
  }
  .product_spec .rt table tr:last-child th:first-child {
    border-bottom-left-radius: 10px;
  }
  .product_spec .rt table td,
  .product_spec .rt table th {
    font-size: 14px;
    padding: 14px 10px;
    min-width: 200px;
  }
  .product_spec .rt table td:first-child::before,
  .product_spec .rt table th:first-child::before,
  .product_spec .rt table td:last-child::before,
  .product_spec .rt table th:last-child::before {
    width: calc(100% - 10px);
  }
  .product_spec .rt table th {
    min-width: 150px;
  }
  .product_desc {
    padding: 50px 0;
  }
  .product_desc .item .title {
    font-size: 18px;
    gap: 10px;
    padding: 14px 20px;
  }
  .product_desc .item .title i {
    width: 20px;
    height: 20px;
  }
  .product_desc .item .desc {
    font-size: 14px;
    line-height: 1.5;
    padding: 20px 0;
  }
  .product_desc .item .desc ul li + li {
    margin-top: 12px;
  }
  .product_desc .item .desc ul p {
    padding: 5px 20px;
  }
  .product_desc .item .desc ul p:first-child {
    padding-left: 20px;
  }
  .product_services {
    padding: 50px 0;
    overflow: hidden;
  }
  .product_services .head h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .product_services .product_services_swiper {
    margin-top: 30px;
    overflow: unset;
  }
  .product_services .product_services_swiper .swiper-slide {
    max-width: 274px;
  }
  .product_services .product_services_swiper .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .product_services div.swiper-scrollbar {
    margin-top: 30px;
  }
  .contact_intro {
    padding-bottom: 30px;
  }
  .contact_form {
    padding-top: 30px;
  }
  .product_related {
    padding: 50px 0;
    overflow: hidden;
  }
  .product_related .swiper_content {
    padding-top: 0;
    padding-bottom: 0;
    overflow: unset;
  }
  .product_related .product_related_swiper {
    margin-top: 30px;
  }
  .product_related .product_related_swiper .swiper-slide {
    max-width: 313px;
  }
  .product_related p.center:has(.btn_line) {
    margin-top: 40px;
  }
  .product_related .swiper_btns.middle {
    position: static;
    width: 100%;
    padding: 0 30px;
    justify-content: flex-end;
    margin-top: 30px;
    transform: translateX(0);
  }
}
@media screen and (max-width: 576px) {
  .product_show .rt {
    width: 100%;
  }
  .product_spec .grid {
    grid-template-columns: 1fr;
  }
  .product_related .swiper_btns.middle {
    padding: 0 20px;
  }
}
/*# sourceMappingURL=product.css.map */