/* PlastiPrint site shell � shared header/footer styles, inlined into every public page */
:root {
  --primary: #4fa8de;
  --accent:  #ff7a1a;
  --text:    #1c1c1c;
  --muted:   #5a6b7a;
  --hint:    #8a97a3;
  --border:  #eef2f6;
  --panel:   #ffffff;
  --bg:      #f5f7fa;
  --footer-bg:    #12181f;
  --footer-fg:    #b9c4cd;
  --footer-muted: #7c8994;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: var(--primary); text-decoration: none; }
a:hover { filter: brightness(0.95); }
img { max-width: 100%; height: auto; display: block; }

/* Top nav (used on every public page) */
.pps-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.pps-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.pps-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 700; font-size: 18px;
  text-decoration: none;
}
.pps-brand img { width: 40px; height: 40px; border-radius: 8px; }
.pps-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.pps-nav a {
  color: var(--primary); font-weight: 600; font-size: 15px; text-decoration: none;
}

/* Footer */
.pps-footer {
  width: 100%;
  background: var(--footer-bg);
  color: var(--footer-fg);
  margin-top: 64px;
  font-family: var(--font);
}
.pps-footer * { box-sizing: border-box; }
.pps-footer-top {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 36px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.pps-footer-col {
  flex: 1 1 220px;
  display: flex; flex-direction: column; gap: 10px;
}
.pps-footer-brand { flex: 1 1 280px; }
.pps-footer-logo-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700; color: #fff;
}
.pps-footer-logo-row img { width: 36px; height: 36px; border-radius: 8px; }
.pps-footer-blurb { font-size: 14px; line-height: 1.5; margin: 0; color: #8a97a3; }
.pps-footer-heading {
  font-size: 14px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px;
}
.pps-footer-col a, .pps-static {
  font-size: 14px; color: var(--footer-fg); text-decoration: none;
  transition: color 0.2s ease;
}
.pps-footer-col a:hover { color: var(--primary); }
.pps-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1180px; margin: 0 auto;
  padding: 20px 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--footer-muted);
}
@media (max-width: 720px) {
  .pps-footer-top { padding: 40px 20px 28px; }
  .pps-footer-bottom { flex-direction: column; text-align: center; }
}
/* Accessibility: respect reduced motion preference */

/* Placeholder for products without a real photo yet */
img.pp-missing { outline: 1px dashed #c9d3dd; outline-offset: -4px; opacity: 0.7; }
img.pp-missing:hover { opacity: 0.9; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}