/* ==========================================================================
   POLICY PAGES — generic typography spec for legal/informational pages
   (Shipping Policy, and future pages like Privacy Policy / Terms / Refunds).
   Layered on top of styles.css: reuses the storefront's theme color
   variables (var(--text-main), var(--text-muted), etc.) and font stack
   (var(--font-display)/var(--font-sans)) so these pages match the rest of
   the site's type family — only size, weight, spacing here.
   ========================================================================== */

.pp-hero {
  text-align: center;
  padding: 5rem 0 1.5rem;
}

.pp-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-main);
  margin: 0 0 16px;
}

.pp-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

.pp-section {
  padding: 2.5rem 0 6rem;
  text-align: left;
}

.pp-body {
  max-width: 800px;
  margin: 0 auto;
}

.pp-body p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.pp-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.3;
  color: var(--text-main);
  margin: 40px 0 16px;
}

.pp-body h2:first-child {
  margin-top: 0;
}

.pp-body ul {
  margin: 0 0 24px;
  padding-left: 22px;
}

.pp-body ul li {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pp-body strong {
  color: var(--text-main);
  font-weight: 600;
}

.pp-body a {
  color: var(--accent-primary);
}

@media (max-width: 640px) {
  .pp-hero { padding: 3.5rem 0 1rem; }
  .pp-title { font-size: 32px; }
  .pp-subtitle { font-size: 19px; }
  .pp-section { padding: 1.75rem 0 4rem; }
  .pp-body p, .pp-body ul li { font-size: 16px; }
  .pp-body h2 { font-size: 22px; margin: 32px 0 12px; }
}
