/* Real image override - clean final version */

.metal{
  background:url('../images/hero.jpg') center/cover no-repeat !important;
}
.metal > *{
  display:none !important;
}

.art{
  background:#f1f5f9 !important;
}
.art > *{
  display:none !important;
}

.grid4 > a:nth-child(1) .art{
  background:url('../images/brass-plate-strip.jpg') center/cover no-repeat !important;
}
.grid4 > a:nth-child(2) .art{
  background:url('../images/brass-bar.jpg') center/cover no-repeat !important;
}
.grid4 > a:nth-child(3) .art{
  background:url('../images/custom-brass-profiles.jpg') center/cover no-repeat !important;
}
.grid4 > a:nth-child(4) .art{
  background:url('../images/brass-tube.jpg') center/cover no-repeat !important;
}
.grid4 > a:nth-child(5) .art{
  background:url('../images/flexible-copper-connector.jpg') center/cover no-repeat !important;
}
.grid4 > a:nth-child(6) .art{
  background:url('../images/copper-strip-coil.jpg') center/cover no-repeat !important;
}
.grid4 > a:nth-child(7) .art{
  background:url('../images/copper-plate.jpg') center/cover no-repeat !important;
}
.grid4 > a:nth-child(8) .art{
  background:url('../images/copper-rod.jpg') center/cover no-repeat !important;
}

.photo{
  background:#f1f5f9 !important;
  overflow:hidden !important;
}
.photo img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}


/* Home products RFQ optimization */
.home-products-rfq .section-intro {
  max-width: 820px;
}

.product-rfq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.product-rfq-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 245px;
}

.product-rfq-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  color: #1f2937;
}

.product-rfq-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
  font-size: 14px;
}

.product-rfq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.product-rfq-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .16);
  color: #1f2937;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.product-rfq-actions a.product-rfq-wa {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
}

.product-rfq-note {
  margin-top: 26px;
  padding: 22px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product-rfq-note h3 {
  margin: 0 0 8px;
  color: #1f2937;
}

.product-rfq-note p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.product-rfq-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .product-rfq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .product-rfq-grid {
    grid-template-columns: 1fr;
  }

  .product-rfq-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-rfq-bottom-actions {
    width: 100%;
    justify-content: stretch;
  }

  .product-rfq-bottom-actions a {
    width: 100%;
  }
}


/* Home trust proof optimization */
.home-trust-proof {
  background: #f8fafc;
}

.home-trust-proof .section-intro {
  max-width: 860px;
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.trust-proof-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.trust-proof-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f2937;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 16px;
}

.trust-proof-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
  color: #1f2937;
}

.trust-proof-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
  font-size: 14px;
}

.trust-proof-cta {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.trust-proof-cta h3 {
  margin: 0 0 8px;
  color: #1f2937;
}

.trust-proof-cta p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.trust-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .trust-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-proof-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-proof-actions {
    width: 100%;
    justify-content: stretch;
  }

  .trust-proof-actions a {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .trust-proof-card {
    padding: 20px;
  }
}


/* Contact RFQ form optimization */
.contact-rfq-optimized .section-intro {
  max-width: 860px;
}

.rfq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.45fr;
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}

.rfq-guide-card,
.rfq-form-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.rfq-guide-card {
  padding: 24px;
  position: sticky;
  top: 90px;
}

.rfq-guide-card h3 {
  margin: 0 0 14px;
  color: #1f2937;
  font-size: 22px;
  line-height: 1.25;
}

.rfq-guide-card ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: #4b5563;
  line-height: 1.65;
}

.rfq-form-card {
  padding: 24px;
}

.rfq-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rfq-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rfq-form-grid span {
  font-weight: 800;
  color: #1f2937;
  font-size: 14px;
}

.rfq-form-grid input,
.rfq-form-grid select,
.rfq-form-grid textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  color: #1f2937;
  background: #ffffff;
  box-sizing: border-box;
}

.rfq-form-grid textarea {
  resize: vertical;
  min-height: 120px;
}

.rfq-full {
  grid-column: 1 / -1;
}

.rfq-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.rfq-submit-row button,
.rfq-submit-row a {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.rfq-submit-row button {
  background: #1f2937;
  color: #ffffff;
  border: 1px solid #1f2937;
}

.rfq-submit-row a {
  background: #25D366;
  color: #ffffff;
  border: 1px solid #25D366;
}

.rfq-small-note {
  margin: 14px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .rfq-layout {
    grid-template-columns: 1fr;
  }

  .rfq-guide-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .rfq-form-grid {
    grid-template-columns: 1fr;
  }

  .rfq-form-card,
  .rfq-guide-card {
    padding: 20px;
  }

  .rfq-submit-row button,
  .rfq-submit-row a {
    width: 100%;
  }
}


/* Product detail RFQ optimization */
.product-detail-rfq {
  background: #f8fafc;
}

.product-detail-rfq .section-intro {
  max-width: 900px;
}

.product-detail-rfq-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 24px;
  margin-top: 28px;
  align-items: start;
}

.product-spec-card,
.product-rfq-card-detail {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  padding: 24px;
}

.product-spec-card h3,
.product-rfq-card-detail h3 {
  margin: 0 0 16px;
  color: #1f2937;
  font-size: 22px;
  line-height: 1.25;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  overflow: hidden;
  border-radius: 14px;
}

.product-spec-table th,
.product-spec-table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, .10);
}

.product-spec-table th {
  width: 32%;
  color: #1f2937;
  background: #f3f4f6;
  font-weight: 900;
}

.product-spec-table td {
  color: #4b5563;
  line-height: 1.55;
}

.product-rfq-card-detail p {
  margin: 0 0 14px;
  color: #4b5563;
  line-height: 1.6;
}

.product-rfq-card-detail ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: #4b5563;
  line-height: 1.7;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.product-trust-row div {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.product-trust-row strong {
  display: block;
  color: #1f2937;
  font-size: 16px;
  margin-bottom: 6px;
}

.product-trust-row span {
  color: #4b5563;
  line-height: 1.5;
  font-size: 14px;
}

@media (max-width: 900px) {
  .product-detail-rfq-grid,
  .product-trust-row {
    grid-template-columns: 1fr;
  }

  .product-detail-actions a {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .product-spec-card,
  .product-rfq-card-detail {
    padding: 20px;
  }

  .product-spec-table,
  .product-spec-table tbody,
  .product-spec-table tr,
  .product-spec-table th,
  .product-spec-table td {
    display: block;
    width: 100%;
  }

  .product-spec-table th {
    border-bottom: none;
    padding-bottom: 6px;
  }

  .product-spec-table td {
    padding-top: 6px;
  }

  .product-spec-table tr {
    border-bottom: 1px solid rgba(15, 23, 42, .10);
  }
}


/* Products page RFQ catalog optimization */
.products-rfq-catalog {
  background: #f8fafc;
}

.products-rfq-catalog .section-intro {
  max-width: 920px;
}

.products-rfq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.products-rfq-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 245px;
}

.products-rfq-card h3 {
  margin: 0;
  color: #1f2937;
  font-size: 20px;
  line-height: 1.25;
}

.products-rfq-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
  font-size: 14px;
}

.products-rfq-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.products-rfq-card-actions a {
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, .16);
  text-decoration: none;
  color: #1f2937;
  font-weight: 800;
  font-size: 13px;
}

.products-rfq-card-actions a.products-rfq-wa {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
}

.products-rfq-checklist {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.products-rfq-checklist h2 {
  margin: 0 0 10px;
  color: #1f2937;
  font-size: 24px;
  line-height: 1.25;
}

.products-rfq-checklist p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.products-rfq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .products-rfq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .products-rfq-grid {
    grid-template-columns: 1fr;
  }

  .products-rfq-checklist {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-rfq-actions {
    width: 100%;
    justify-content: stretch;
  }

  .products-rfq-actions a {
    width: 100%;
  }
}


/* About page buyer trust optimization */
.about-buyer-trust {
  background: #f8fafc;
}

.about-buyer-trust .section-intro {
  max-width: 920px;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.about-trust-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.about-trust-card h3 {
  margin: 0 0 10px;
  color: #1f2937;
  font-size: 20px;
  line-height: 1.25;
}

.about-trust-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
  font-size: 14px;
}

.about-rfq-process {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}

.about-rfq-process h2,
.about-rfq-cta h3 {
  margin: 0 0 12px;
  color: #1f2937;
  line-height: 1.25;
}

.about-rfq-process ol {
  margin: 0;
  padding-left: 20px;
  color: #4b5563;
  line-height: 1.7;
}

.about-rfq-cta p {
  margin: 0 0 16px;
  color: #4b5563;
  line-height: 1.6;
}

.about-rfq-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-rfq-cta a {
  width: fit-content;
}

@media (max-width: 980px) {
  .about-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-rfq-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-trust-grid {
    grid-template-columns: 1fr;
  }

  .about-trust-card,
  .about-rfq-process {
    padding: 20px;
  }

  .about-rfq-cta a {
    width: 100%;
  }
}


/* Facebook copper brass RFQ landing page */
.fb-landing-hero {
  padding: 82px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 211, 102, .16), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 55%, #f3f4f6 100%);
}

.fb-landing-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
}

.fb-landing-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  color: #111827;
  letter-spacing: -1.5px;
}

.fb-landing-subtitle {
  max-width: 820px;
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.fb-landing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.fb-landing-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .12);
  color: #1f2937;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

.fb-landing-actions,
.fb-form-actions,
.fb-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fb-landing-quote-box {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .10);
}

.fb-landing-quote-box h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 28px;
}

.fb-landing-quote-box p,
.fb-landing-quote-box li {
  color: #4b5563;
  line-height: 1.6;
}

.fb-landing-quote-box ul {
  margin: 14px 0 20px;
  padding-left: 20px;
}

.fb-products,
.fb-trust,
.fb-rfq-form {
  background: #f8fafc;
}

.fb-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.fb-product-card,
.fb-trust-grid article,
.fb-rfq-card,
.fb-rfq-checklist {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.fb-product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 245px;
}

.fb-product-card h3,
.fb-trust-grid h3,
.fb-rfq-checklist h3 {
  margin: 0 0 8px;
  color: #1f2937;
  line-height: 1.25;
}

.fb-product-card p,
.fb-trust-grid p,
.fb-rfq-checklist p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
  font-size: 14px;
}

.fb-product-actions {
  margin-top: auto;
}

.fb-product-actions a {
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, .16);
  color: #1f2937;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.fb-product-actions a.fb-wa {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
}

.fb-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.fb-trust-grid strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #1f2937;
  color: #ffffff;
  margin-bottom: 14px;
}

.fb-rfq-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.fb-rfq-checklist {
  margin-top: 22px;
}

.fb-rfq-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fb-rfq-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fb-rfq-card span {
  font-weight: 900;
  color: #1f2937;
  font-size: 14px;
}

.fb-rfq-card input,
.fb-rfq-card textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  box-sizing: border-box;
}

.fb-rfq-card textarea {
  min-height: 116px;
  resize: vertical;
}

.fb-full,
.fb-form-actions {
  grid-column: 1 / -1;
}

.fb-form-actions button,
.fb-form-actions a {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
}

.fb-form-actions button {
  background: #1f2937;
  color: #ffffff;
  border: 1px solid #1f2937;
}

.fb-form-actions a {
  background: #25D366;
  color: #ffffff;
  border: 1px solid #25D366;
}

.fb-landing-mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .fb-products-grid,
  .fb-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fb-landing-hero-grid,
  .fb-rfq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  .fb-landing-hero {
    padding: 54px 0 42px;
  }

  .fb-products-grid,
  .fb-trust-grid,
  .fb-rfq-card {
    grid-template-columns: 1fr;
  }

  .fb-landing-actions a,
  .fb-form-actions button,
  .fb-form-actions a {
    width: 100%;
  }

  .fb-landing-mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 99999;
    display: grid;
    grid-template-columns: 1.25fr 1fr .9fr;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(15, 23, 42, .12);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .22);
  }

  .fb-landing-mobile-cta a {
    min-height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 8px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
  }

  .fb-mobile-wa {
    background: #25D366;
    color: #ffffff;
  }

  .fb-mobile-rfq {
    background: #1f2937;
    color: #ffffff;
  }

  .fb-mobile-products {
    background: #f3f4f6;
    color: #1f2937;
    border: 1px solid rgba(15, 23, 42, .10);
  }
}


/* Flexible copper connector placeholder */
.fb-product-placeholder {
  background:
    linear-gradient(135deg, rgba(184, 115, 51, .18), rgba(212, 175, 55, .18)),
    #f8fafc;
}

.fb-product-placeholder > div {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
}

.fb-product-placeholder strong {
  color: #1f2937;
  font-size: 18px;
  line-height: 1.25;
}

.fb-product-placeholder span {
  color: #6b7280;
  font-size: 13px;
}


/* Facebook landing product images - stable version */
.fb-products-grid {
  align-items: stretch;
}

.fb-product-card {
  overflow: hidden;
}

.fb-product-image {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  background: #f3f4f6;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.fb-product-placeholder {
  background:
    linear-gradient(135deg, rgba(184, 115, 51, .18), rgba(212, 175, 55, .18)),
    #f8fafc;
}

.fb-product-placeholder > div {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
}

.fb-product-placeholder strong {
  color: #1f2937;
  font-size: 18px;
  line-height: 1.25;
}

.fb-product-placeholder span {
  color: #6b7280;
  font-size: 13px;
}

.fb-product-card h3 {
  min-height: 52px;
  display: flex;
  align-items: flex-start;
}

.fb-product-card p {
  min-height: 44px;
}

.fb-product-actions {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .fb-product-image {
    height: 190px;
  }
}

@media (max-width: 760px) {
  .fb-product-image {
    height: 170px;
  }

  .fb-product-card h3,
  .fb-product-card p {
    min-height: auto;
  }
}



/* Home factory photo proof section */
.home-image-proof-section {
  background: #ffffff;
}

.home-image-proof-section .section-intro {
  max-width: 900px;
}

.home-image-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.home-image-proof-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.home-proof-image {
  width: 100%;
  height: 220px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-proof-placeholder {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .08), rgba(184, 115, 51, .10)),
    #f8fafc;
  text-align: center;
}

.home-proof-placeholder > div {
  padding: 18px;
}

.home-proof-placeholder strong {
  display: block;
  margin-bottom: 6px;
  color: #334155;
  font-size: 15px;
}

.home-proof-placeholder span {
  color: #64748b;
  font-size: 13px;
}

.home-image-proof-content {
  padding: 18px 20px 20px;
}

.home-image-proof-content h3 {
  margin: 0 0 8px;
  color: #1f2937;
  font-size: 20px;
  line-height: 1.25;
}

.home-image-proof-content p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
  font-size: 14px;
}

.home-proof-placeholder {
  background:
    linear-gradient(135deg, rgba(184, 115, 51, .16), rgba(212, 175, 55, .16)),
    #f8fafc;
}

.home-proof-placeholder > div {
  text-align: center;
  padding: 18px;
}

.home-proof-placeholder strong {
  display: block;
  color: #1f2937;
  font-size: 18px;
  margin-bottom: 6px;
}

.home-proof-placeholder span {
  color: #6b7280;
  font-size: 13px;
}

.home-image-proof-cta {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.home-image-proof-cta h3 {
  margin: 0 0 8px;
  color: #1f2937;
}

.home-image-proof-cta p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.home-image-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .home-image-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-image-proof-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-image-proof-actions {
    width: 100%;
    justify-content: stretch;
  }

  .home-image-proof-actions a {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .home-image-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-image {
    height: 190px;
  }
}


/* Home product card images */
.product-rfq-card {
  overflow: hidden;
}

.product-rfq-image {
  width: 100%;
  height: 170px;
  border-radius: 14px;
  background: #f3f4f6;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-rfq-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-rfq-placeholder {
  background:
    linear-gradient(135deg, rgba(184, 115, 51, .16), rgba(212, 175, 55, .16)),
    #f8fafc;
}

.product-rfq-placeholder > div {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  padding: 14px;
  box-sizing: border-box;
}

.product-rfq-placeholder strong {
  color: #1f2937;
  font-size: 17px;
  line-height: 1.25;
}

.product-rfq-placeholder span {
  color: #6b7280;
  font-size: 13px;
}

.product-rfq-card h3 {
  min-height: 52px;
  display: flex;
  align-items: flex-start;
}

.product-rfq-card p {
  min-height: 44px;
}

.product-rfq-actions {
  margin-top: auto;
}

@media (max-width: 760px) {
  .product-rfq-image {
    height: 165px;
  }

  .product-rfq-card h3,
  .product-rfq-card p {
    min-height: auto;
  }
}


/* Home FAQ section */
.home-faq-section {
  background: #f8fafc;
}

.home-faq-section .section-intro {
  max-width: 920px;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.home-faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  overflow: hidden;
}

.home-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  color: #1f2937;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  position: relative;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 800;
  color: #25D366;
}

.home-faq-item[open] summary::after {
  content: "−";
}

.home-faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: #4b5563;
  line-height: 1.65;
  font-size: 15px;
}

.home-faq-cta {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.home-faq-cta h3 {
  margin: 0 0 8px;
  color: #1f2937;
  line-height: 1.25;
}

.home-faq-cta p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.home-faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .home-faq-grid {
    grid-template-columns: 1fr;
  }

  .home-faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-faq-actions {
    width: 100%;
    justify-content: stretch;
  }

  .home-faq-actions a {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .home-faq-item summary {
    padding: 18px 48px 18px 18px;
    font-size: 16px;
  }

  .home-faq-item summary::after {
    right: 18px;
  }

  .home-faq-item p {
    padding: 0 18px 18px;
  }
}


/* Facebook landing FAQ section */
.fb-faq-section {
  background: #ffffff;
}

.fb-faq-section .section-intro {
  max-width: 920px;
}

.fb-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.fb-faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  overflow: hidden;
}

.fb-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 52px 20px 22px;
  color: #1f2937;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  position: relative;
}

.fb-faq-item summary::-webkit-details-marker {
  display: none;
}

.fb-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 800;
  color: #25D366;
}

.fb-faq-item[open] summary::after {
  content: "−";
}

.fb-faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: #4b5563;
  line-height: 1.65;
  font-size: 15px;
}

.fb-faq-cta {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.fb-faq-cta h3 {
  margin: 0 0 8px;
  color: #1f2937;
  line-height: 1.25;
}

.fb-faq-cta p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.fb-faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .fb-faq-grid {
    grid-template-columns: 1fr;
  }

  .fb-faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .fb-faq-actions {
    width: 100%;
    justify-content: stretch;
  }

  .fb-faq-actions a {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .fb-faq-item summary {
    padding: 18px 48px 18px 18px;
    font-size: 16px;
  }

  .fb-faq-item summary::after {
    right: 18px;
  }

  .fb-faq-item p {
    padding: 0 18px 18px;
  }
}


/* Quick RFQ navigation link */
.quick-rfq-nav {
  font-weight: 900;
  color: #25D366 !important;
}

.quick-rfq-footer {
  font-weight: 800;
}


/* Junkai unified button system */
main a.jk-btn,
section a.jk-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease !important;
}

main a.jk-btn:hover,
section a.jk-btn:hover {
  transform: translateY(-1px);
  opacity: .94;
}

main a.jk-btn-whatsapp,
section a.jk-btn-whatsapp {
  background: #25D366 !important;
  background-color: #25D366 !important;
  color: #ffffff !important;
  border: 1px solid #25D366 !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .28) !important;
}

main a.jk-btn-rfq,
section a.jk-btn-rfq {
  background: #111827 !important;
  background-color: #111827 !important;
  color: #ffffff !important;
  border: 1px solid #111827 !important;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .18) !important;
}

main a.jk-btn-product,
section a.jk-btn-product {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #111827 !important;
  border: 1px solid rgba(17, 24, 39, .18) !important;
  box-shadow: 0 8px 20px rgba(17, 24, 39, .06) !important;
}

main a.jk-btn-email,
section a.jk-btn-email {
  background: #2563eb !important;
  background-color: #2563eb !important;
  color: #ffffff !important;
  border: 1px solid #2563eb !important;
  box-shadow: 0 12px 28px rgba(37, 99, 235, .24) !important;
}

/* Smaller buttons inside product cards */
.product-rfq-actions a.jk-btn,
.products-rfq-card-actions a.jk-btn,
.fb-product-actions a.jk-btn,
.product-detail-actions a.jk-btn {
  min-height: 42px !important;
  padding: 0 18px !important;
  font-size: 14px !important;
}

/* CTA groups keep clean spacing */
.hero-actions,
.fb-landing-actions,
.product-rfq-actions,
.products-rfq-card-actions,
.fb-product-actions,
.home-faq-actions,
.fb-faq-actions,
.trust-proof-actions,
.home-image-proof-actions,
.product-detail-actions,
.rfq-submit-row,
.fb-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Mobile: important CTA buttons become easier to tap */
@media (max-width: 760px) {
  main a.jk-btn,
  section a.jk-btn {
    min-height: 48px !important;
    width: 100%;
  }

  .product-rfq-actions a.jk-btn,
  .products-rfq-card-actions a.jk-btn,
  .fb-product-actions a.jk-btn {
    width: auto;
    flex: 1 1 auto;
  }
}

/* Pure Copper Tube detail gallery */
.pure-copper-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 34px;
  align-items: start;
}

.pure-copper-gallery {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
}

.pure-copper-thumbs {
  display: grid;
  gap: 10px;
}

.pure-copper-thumbs button {
  width: 96px;
  height: 76px;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.pure-copper-thumbs button.active,
.pure-copper-thumbs button.is-active {
  border-color: #b56a23;
  box-shadow: 0 0 0 3px rgba(181, 106, 35, .16);
}

.pure-copper-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pure-copper-main-image {
  min-height: 460px;
  border-radius: 22px;
  background: #f3f4f6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pure-copper-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pure-copper-summary {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.pure-copper-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.pure-copper-spec-table th,
.pure-copper-spec-table td {
  border-bottom: 1px solid rgba(15, 23, 42, .10);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

@media (max-width: 980px) {
  .pure-copper-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .pure-copper-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pure-copper-gallery {
    grid-template-columns: 1fr;
  }

  .pure-copper-thumbs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .pure-copper-thumbs button {
    flex: 0 0 86px;
    width: 86px;
    height: 68px;
  }

  .pure-copper-main-image {
    min-height: 280px;
  }
}
/* Homepage B2B RFQ conversion improvements */
html {
  scroll-padding-top: 110px;
}

main {
  overflow: visible;
}

section {
  scroll-margin-top: 110px;
}

.home-hero-upgrade {
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.product-card {
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.product-image {
  height: 210px;
  width: 100%;
  overflow: hidden;
  background: #f8fafc;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  background:
    linear-gradient(135deg, rgba(184, 115, 51, .10), rgba(37, 99, 235, .08)),
    #f8fafc;
  text-align: center;
  color: #334155;
}

.product-image-placeholder > div {
  padding: 18px;
}

.product-image-placeholder strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.product-image-placeholder span {
  display: block;
  color: #64748b;
  font-size: 13px;
}

.product-card-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-card h3,
.product-card p {
  margin: 0;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.5;
  min-height: 0;
  max-height: none;
  overflow: visible;
}

.product-card h3 {
  color: #1f2937;
  font-size: 20px;
}

.product-card p {
  color: #4b5563;
  font-size: 14px;
}

.product-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-actions a.jk-btn {
  flex: 1 1 130px;
  min-height: 42px !important;
  padding: 0 16px !important;
  border-radius: 10px !important;
  white-space: normal !important;
  text-align: center;
}

.home-products-rfq .product-rfq-note {
  clear: both;
}

.quick-rfq-form-actions button.jk-btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.mobile-fixed-cta {
  z-index: 60;
}

body {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 78px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 92px;
  }

  section {
    scroll-margin-top: 92px;
  }

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

  .product-image {
    height: 190px;
  }
}

.hero-rfq-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #e2e8f0;
  font-size: 15px;
  line-height: 1.55;
}

.hero-rfq-points li {
  position: relative;
  padding-left: 24px;
}

.hero-rfq-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, .16);
}

.home-quick-rfq-section {
  background: #fff;
}

.home-quick-rfq-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: start;
}

.home-quick-rfq-layout .section-intro {
  max-width: 620px;
  color: #64748b;
}

.quick-rfq-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.quick-rfq-checklist span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid #dbe3ec;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-weight: 800;
  font-size: 13px;
}

.home-quick-rfq-form {
  border-radius: 20px;
}

.home-quick-rfq-form input,
.home-quick-rfq-form textarea {
  width: 100%;
}

.quick-rfq-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.quick-rfq-form-actions .btn {
  margin-right: 0;
  border: 0;
  cursor: pointer;
}

.floating-whatsapp-rfq {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .25);
}

@media (max-width: 900px) {
  .home-quick-rfq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .floating-whatsapp-rfq {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-rfq-points {
    font-size: 14px;
  }

  .quick-rfq-form-actions,
  .quick-rfq-form-actions .btn {
    width: 100%;
  }

  .quick-rfq-checklist span {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    text-align: center;
  }
}

/* Product page stability fixes */
.products-rfq-catalog {
  padding-top: 58px;
  padding-bottom: 42px;
}

.products-rfq-catalog .section-intro {
  max-width: 880px;
  margin-bottom: 0;
}

.product-page-grid,
.related-products-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-page-grid {
  margin-top: 28px;
}

.product-related-section {
  padding-top: 42px;
  padding-bottom: 64px;
}

.product-related-section .head {
  margin-bottom: 24px;
}

.product-related-section .head h2 {
  margin-top: 0;
}

.products-rfq-catalog .product-card,
.product-related-section .product-card {
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.products-rfq-catalog .product-image,
.product-related-section .product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.products-rfq-catalog .product-image img,
.product-related-section .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.products-rfq-catalog .product-card-content,
.product-related-section .product-card-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.products-rfq-catalog .product-card h3,
.products-rfq-catalog .product-card p,
.product-related-section .product-card h3,
.product-related-section .product-card p {
  white-space: normal !important;
  overflow-wrap: break-word;
  line-height: 1.5;
  overflow: visible;
  max-height: none;
  min-height: 0;
}

.products-rfq-catalog .product-actions,
.product-related-section .product-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.products-rfq-catalog .product-actions a.jk-btn,
.product-related-section .product-actions a.jk-btn {
  flex: 1 1 130px;
  border-radius: 10px !important;
  white-space: normal !important;
  text-align: center;
  margin-right: 0;
}

.products-rfq-checklist {
  margin-top: 28px;
  margin-bottom: 0;
}

.products-rfq-actions a.jk-btn {
  white-space: normal !important;
}

/* CRO stage 2: RFQ clarity and contact fallback */
.rfq-reply-note,
.fb-rfq-note {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  color: #4b5563;
  font-size: .94rem;
  line-height: 1.55;
}

.facebook-rfq-guide {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.facebook-rfq-guide span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .10);
  color: #374151;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.contact-rfq-page {
  background: #f8fafc;
}

.contact-rfq-hero,
.contact-rfq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
  gap: 30px;
  align-items: start;
}

.contact-rfq-card,
.contact-rfq-form {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.contact-rfq-card h2 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.contact-rfq-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: #374151;
  line-height: 1.75;
}

.contact-rfq-card p {
  margin: 0;
  color: #4b5563;
}

.contact-rfq-actions {
  margin-top: 22px;
}

.contact-rfq-form input,
.contact-rfq-form textarea,
.home-quick-rfq-form input,
.home-quick-rfq-form textarea,
.fb-rfq-card input,
.fb-rfq-card textarea {
  font-size: 16px;
}

main a.jk-btn:focus-visible,
section a.jk-btn:focus-visible,
button.jk-btn:focus-visible,
.fb-rfq-card input:focus,
.fb-rfq-card textarea:focus,
.home-quick-rfq-form input:focus,
.home-quick-rfq-form textarea:focus,
.contact-rfq-form input:focus,
.contact-rfq-form textarea:focus {
  outline: 3px solid rgba(37, 211, 102, .32);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .contact-rfq-hero,
  .contact-rfq-layout {
    grid-template-columns: 1fr;
  }

  .facebook-rfq-guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 86px;
  }

  .hero-actions,
  .fb-landing-actions,
  .contact-rfq-actions,
  .quick-rfq-form-actions,
  .fb-form-actions {
    flex-wrap: wrap;
  }

  .home-trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-trust-bar .metric {
    min-width: 0;
    padding: 14px 10px;
  }

  .home-trust-bar .metric span {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .facebook-rfq-guide {
    grid-template-columns: 1fr;
  }

  .contact-rfq-card,
  .contact-rfq-form {
    padding: 20px;
  }

  .contact-rfq-form .field,
  .home-quick-rfq-form .field,
  .fb-rfq-card label {
    width: 100%;
  }
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 8px;
    transition: background-color 0.2s;
}
.whatsapp-btn:hover {
    background-color: #1ebe57;
}
.whatsapp-btn i {
    margin-right: 6px;
}

.product-card .product-actions .whatsapp-btn {
  flex: 1 1 130px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.products-rfq-catalog .product-actions a.jk-btn,
.fb-products-grid .fb-product-actions a.jk-btn,
.fb-landing-actions a.jk-btn,
.fb-form-actions a.jk-btn {
  min-height: 44px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 760px) {
  .products-rfq-catalog {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .product-related-section {
    padding-top: 34px;
    padding-bottom: 48px;
  }

  .product-page-grid,
  .related-products-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .products-rfq-catalog .product-image,
  .product-related-section .product-image {
    height: 190px;
  }

  .products-rfq-catalog .product-actions a.jk-btn,
  .product-related-section .product-actions a.jk-btn {
    flex: 1 1 100%;
  }
}
