/* Product list cards */
.plist_page .products_div_C_right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

.plist_card {
  width: 100%;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
  padding: 18px 20px 16px;
  box-sizing: border-box;
}

.plist_main {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.plist_img {
  position: relative;
  flex: 0 0 260px;
  width: 260px;
  min-height: 220px;
  background: #f7f7f7;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}

.plist_img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.plist_img .plist_brand {
  left: auto;
  top: auto;
  right: 8px;
  bottom: 8px;
  width: 72px;
  height: auto;
  object-fit: contain;
}

.plist_info {
  flex: 1;
  min-width: 0;
}

.plist_model {
  display: block;
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
  text-decoration: none;
  text-transform: uppercase;
}

.plist_model:hover {
  color: #F55020;
}

.plist_specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}

.plist_col > h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #1f1f1f;
}

.plist_specs .products_canshu,
.plist_page .products_canshu,
.pdetail_page .products_canshu {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 5px 0;
  border-bottom: 1px dashed #e2e2e2;
}

.plist_specs .products_canshu:has(div:first-child:empty),
.plist_specs .products_canshu:has(div:nth-child(2):empty),
.plist_page .products_canshu:has(div:first-child:empty),
.plist_page .products_canshu:has(div:nth-child(2):empty),
.pdetail_page .products_canshu:has(div:first-child:empty),
.pdetail_page .products_canshu:has(div:nth-child(2):empty) {
  display: none;
}

.plist_specs .products_canshu div:nth-child(1),
.plist_page .products_canshu div:nth-child(1),
.pdetail_page .products_canshu div:nth-child(1) {
  width: auto;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}

.plist_specs .products_canshu div:nth-child(2),
.plist_page .products_canshu div:nth-child(2),
.pdetail_page .products_canshu div:nth-child(2) {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  color: #333;
  text-align: right;
  text-transform: none;
}

.plist_foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 12px;
}

.plist_desc {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #1f1f1f;
}

.plist_desc:empty {
  display: none;
}

.plist_btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.plist_chat,
.plist_quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 128px;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

.plist_chat {
  background: #F55020;
  color: #fff;
  border: 1px solid #F55020;
}

.plist_chat img,
.plist_chat svg {
  width: 18px;
  height: 18px;
  display: block;
}

.plist_chat:hover {
  background: #d94418;
  border-color: #d94418;
  color: #fff;
}

.plist_quote {
  background: #fff;
  color: #F55020;
  border: 1px solid #F55020;
}

.plist_quote:hover {
  background: #F55020;
  color: #fff;
}

@media (max-width: 992px) {
  .plist_img {
    flex-basis: 200px;
    width: 200px;
    min-height: 180px;
  }

  .plist_model {
    font-size: 24px;
  }

  .plist_specs {
    grid-template-columns: 1fr;
  }

  .plist_desc {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .plist_main,
  .plist_foot {
    flex-direction: column;
    align-items: stretch;
  }

  .plist_img {
    width: 100%;
    flex: 0 0 auto;
    min-height: 0;
    height: 200px;
  }

  .plist_btns {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Product detail */
.pdetail_page .products_div_C {
  align-items: flex-start;
}

.pdetail_main {
  flex: 1;
  min-width: 0;
  width: 82%;
}

.pdetail_card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
  padding: 20px;
  box-sizing: border-box;
}

.pdetail_top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.pdetail_gallery {
  position: relative;
  flex: 0 0 320px;
  width: 320px;
  min-width: 0;
}

.pdetail_gallery .swiper {
  width: 100%;
}

.pdetail_gallery .mySwiper2 {
  height: 280px;
  margin-bottom: 10px;
}

.pdetail_gallery .mySwiper2 .swiper-slide img,
.pdetail_gallery .mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7f7f7;
}

.pdetail_gallery .mySwiper {
  height: 72px;
}

.pdetail_gallery .mySwiper .swiper-slide {
  opacity: .45;
  cursor: pointer;
}

.pdetail_gallery .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.pdetail_brand {
  display: none;
  position: absolute;
  right: 8px;
  bottom: 88px;
  width: 72px;
  z-index: 2;
}

.pdetail_deve .pdetail_brand {
  display: block;
}

.pdetail_info {
  flex: 1;
  min-width: 0;
}

.pdetail_info h1 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
  text-transform: uppercase;
}

.pdetail_params {
  margin-top: 16px;
}

.pdetail_params h2 {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  font-size: 20px;
}

.pdetail_body {
  font-size: 16px;
  line-height: 1.7;
  overflow: auto;
}

.pdetail_body img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .pdetail_main {
    width: 100%;
  }

  .pdetail_top {
    flex-direction: column;
  }

  .pdetail_gallery {
    width: 100%;
    flex-basis: auto;
  }

  .pdetail_info h1 {
    font-size: 24px;
  }
}
