/* Policy, contact, and checkout pages */
.policy-page { padding-top: 5rem; padding-bottom: 3rem; min-height: 60vh; }
.policy-page .container { max-width: 48rem; }
.policy-header { margin-bottom: 2rem; }
.policy-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
}
.policy-updated { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.policy-body h2 {
  font-size: 1.125rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--gold-light);
}
.policy-body p, .policy-body li {
  line-height: 1.65;
  color: var(--text-secondary);
}
.policy-body ul { padding-left: 1.25rem; }
.policy-body a { color: var(--gold-light); }
.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.site-header--compact { position: relative; }
.site-header--compact .header-nav { display: none; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  width: 100%;
}
@media (min-width: 600px) { .footer-legal { justify-content: flex-start; } }
.footer-legal a { font-size: 0.8125rem; font-weight: 600; }

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
@media (min-width: 600px) { .footer-payments { justify-content: flex-end; } }
.footer-payments__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-right: 0.25rem;
}
.pay-logo {
  height: 28px;
  width: auto;
  display: block;
  border-radius: 4px;
}

.footer-business {
  width: 100%;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.checkout-page { padding: 5rem 0 3rem; }
.checkout-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.checkout-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.checkout-card h2 {
  font-size: 1.125rem;
  margin: 0 0 1rem;
}
.checkout-order-lines {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.9375rem;
}
.checkout-order-lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.checkout-total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-light);
}
.checkout-secure-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  padding: 0.75rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.checkout-payments { margin: 1rem 0; }
.checkout-empty {
  text-align: center;
  padding: 2rem;
}
#authorize-card-fields .form-row { margin-bottom: 0.75rem; }
