/* =========================================================
   Product Detail (page: product-detail)
   - Output by shortcode: [product_detail_from_pid]
========================================================= */

.pdetail{
  padding: 10px 0 60px;
}

/* Head */
.pdetailHead{
  margin: 10px 0 26px;
}

.pdetailHead__row{
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 10px;
}

.pdetailHead__num{
  font-size: 14px;
  font-weight: 700;
}

.pdetailHead__bar{
  width: 44px;
  height: 2px;
  background: #111;
  transform: translateY(-6px);
}

.pdetailHead__title{
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}

/* Section 1 */
.pdetailHero__grid{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 54px;
  align-items: start;
}

.pdetailHero__left img{
  width: 100%;
  height: auto;
  display: block;
}

.pdetailHero__desc h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.pdetailHero__desc p{
  margin: 0;
  font-size: 14px;
  line-height: 2.0;
}

.pdetailHero__products{
  display: flex;
  gap: 38px;
  margin-top: 22px;
  align-items: flex-end;
}

.pdetailHero__products figure{
  margin: 0;
}

.pdetailHero__products img{
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Section 2 */
.pdetailFeature{
  margin-top: 56px;
}

.pdetailFeature__grid{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 54px;
  align-items: start;
}

.pdetailFeature__left img{
  width: 100%;
  height: auto;
  display: block;
}

.pdetailFeature__right h4{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
}

.pdetailFeature__right p{
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 2.0;
}

/* Section 3 */
.pdetailSpec{
  margin-top: 40px;
}

.pdetailSpec__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.pdetailSpec table{
  width: 100%;
  border-collapse: collapse;
}

.pdetailSpec th,
.pdetailSpec td{
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.6;
  border-bottom: 1px solid #eee;
}

.pdetailSpec th{
  width: 34%;
  font-weight: 700;
  background: #fafafa;
}

/* CTA */
.pdetailCta{
  margin-top: 38px;
}

.pdetailCta__btn{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 62px;
  background: #d83a2f;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 991px){

  .pdetailHead__title{
    font-size: 26px;
  }

  .pdetailHero__grid,
  .pdetailFeature__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pdetailHero__products{
    gap: 18px;
    flex-wrap: wrap;
  }

  .pdetailSpec__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

