h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Oswald", sans-serif;
  font-weight: 600;
}
p {
  font-family: "Poppins", "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
div,
span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

/* text css start  */
.ph-coil-section {
  max-width: 1350px;
  margin: 20px auto;
  background: #ffffff;
  padding: 10px 30px;
  /* border-radius: 12px; */
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); */
}

.ph-coil-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #6e2e1e;
  margin-bottom: 20px;
}

.ph-coil-text {
  font-size: 1rem;
  color: #333333;
  line-height: 1.7;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 600px) {
  .ph-coil-section {
    padding: 25px 20px;
    margin: 20px;
  }
  .ph-coil-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .ph-coil-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* text css end  */

.pc-wrapper-unique {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  background: #f3f5f7;
  color: #222;
}

/* apply predictable box-sizing only inside our wrapper (no global tag selectors) */
.pc-wrapper-unique *,
.pc-wrapper-unique *::before,
.pc-wrapper-unique *::after {
  box-sizing: border-box;
}

.pc-heading-unique {
  margin: 0 0 18px 0;
  color: #0a58ca;
  font-weight: 600;
  font-size: 28px;
}

/* ---------------- Products grid (force 3 columns desktop) ---------------- */
.pc-products-grid-unique {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

/* anchor as a grid item — use class selector (not tag) */
.pc-products-grid-unique > .pc-product-link-unique {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  align-self: stretch;
}

/* card */
.pc-products-card-unique {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
}

/* image area */
.pc-products-imgwrap-unique {
  width: 100%;
  padding-top: 64%;
  position: relative;
  background: #ffffff;
}
.pc-products-imgwrap-unique .pc-products-img-unique {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  object-fit: contain;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border-radius: 6px;
  /* background: linear-gradient(90deg, #ffffff, #fafafa); */
}

/* content */
.pc-products-content-unique {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

.pc-products-title-unique {
  font-size: 22px;
  color: #333333;
  font-weight: 600;
  margin: 0;
}

.pc-products-specs-unique {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pc-products-specs-unique td {
  padding: 8px 6px;
  vertical-align: top;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}
.pc-products-specs-unique td.pc-specs-key-unique {
  width: 38%;
  color: #6b6b6b;
  font-weight: 600;
}
.pc-products-specs-unique td.pc-specs-val-unique {
  color: #333;
  text-align: left;
}

/* bottom inquiry area */
.pc-products-inquiry-unique {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: linear-gradient(180deg, rgba(245, 245, 245, 0.6), transparent);
}
.pc-products-sendtext-unique {
  font-weight: 600;
  color: #6e2e1e;
  cursor: pointer;
  user-select: none;
}
.pc-products-whatsappbtn-unique {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #6e2e1e;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(183, 28, 28, 0.12);
  pointer-events: auto;
}
.pc-products-whatsappbtn-unique .pc-whatsapp-svg-unique {
  width: 20px;
  height: 20px;
}

/* responsive breakpoints (only class selectors used) */
@media (max-width: 960px) {
  .pc-products-grid-unique {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .pc-wrapper-unique {
    padding: 16px;
  }
  .pc-products-grid-unique {
    grid-template-columns: 1fr;
  }
  .pc-products-title-unique {
    font-size: 16px;
  }
  .pc-products-inquiry-unique {
    padding: 12px;
  }
  .pc-products-imgwrap-unique {
    padding-top: 62%;
  }
}

/* small safe rule to ensure links inside cards don't inherit unwanted styles */
.pc-product-link-unique,
.pc-products-whatsappbtn-unique {
  text-decoration: none;
}

a {
  text-decoration: none;
}
