/* PCCT product pages — mobile responsive overrides (shared) */
/* Inline styles win specificity, so mobile overrides need !important. */

/* ---------- Header: desktop default (nav + CTA visible, burger hidden) ---------- */
.pp-burger,
.pp-menu {
  display: none !important;
}

@media (max-width: 767px) {
  /* Hide desktop nav + CTA row, show hamburger */
  .pp-nav,
  .pp-cta {
    display: none !important;
  }
  .pp-burger {
    display: inline-flex !important;
  }

  header > div {
    height: 64px !important;
    padding: 0 16px !important;
    gap: 12px !important;
  }
  header img {
    height: 40px !important;
  }

  /* ---------- Hero: collapse 2-col grid to 1 col, image first ---------- */
  .pp-hero {
    padding: 0 16px !important;
  }
  .pp-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .pp-hero-left {
    position: static !important;
    padding: 20px 0 0 !important;
  }
  #main-image-container {
    max-height: none !important;
  }
  #gallery-thumbs {
    height: 60px !important;
  }
  #gallery-thumbs button {
    height: 60px !important;
  }
  .pp-hero-content {
    padding: 8px 0 64px !important;
    max-width: 100% !important;
  }
  .pp-hero-content h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  /* ---------- Stats / chips / tables ---------- */
  .pp-stats {
    gap: 10px !important;
  }
  .pp-stats > div {
    padding: 16px 14px !important;
  }
  .pp-stats > div > div:first-child {
    font-size: 20px !important;
  }
  .pp-pkg {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .pp-pkg > span {
    font-size: 14px !important;
  }

  /* ---------- Placement steps ---------- */
  .pp-step {
    padding: 18px !important;
  }

  /* ---------- Quote section ---------- */
  #quote {
    padding: 26px 20px !important;
  }
  #quote h2 {
    font-size: 24px !important;
  }
  #quote .pp-cta-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  #quote .pp-cta-row a {
    justify-content: center !important;
    height: 52px !important;
    padding: 0 20px !important;
  }

  /* ---------- Products range section ---------- */
  #products {
    padding: 64px 16px 72px !important;
  }

  /* ---------- Footer ---------- */
  footer {
    padding: 24px 16px !important;
  }
  footer > div {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}

/* ---------- WhatsApp float ---------- */
.pp-wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 28px -10px rgba(37, 211, 102, 0.8);
}

/* ---------- EmailJS form ---------- */
.pp-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .pp-form-grid {
    grid-template-columns: 1fr;
  }
}
.pp-form input,
.pp-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid oklch(0.5 0.02 250);
  border-radius: 10px;
  background: oklch(0.32 0.03 250);
  color: oklch(0.97 0.004 90);
  font-size: 15px;
  padding: 13px 14px;
  font-family: inherit;
}
.pp-form input::placeholder,
.pp-form textarea::placeholder {
  color: oklch(0.7 0.01 250);
}
.pp-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border: 0;
  border-radius: 10px;
  background: oklch(0.66 0.17 155);
  color: oklch(0.2 0.02 250);
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
}
.pp-form-status {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.pp-form-status.ok {
  color: oklch(0.8 0.15 155);
}
.pp-form-status.err {
  color: #ffb4a2;
}
