/* Shared chrome for non-LP pages (privacy, terms, shipping, returns,
   contact, track, about, medical-advisory). Each page also has its
   own page-specific <style> block for unique components. */

:root {
  --bg: #fff8f0;
  --bg-2: #ffffff;
  --ink: #1f1410;
  --ink-2: #5c4838;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --orange-tint: #fff3e6;
  --line: rgba(31,20,16,0.10);
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--orange); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-back {
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.nav-back:hover { color: var(--orange); }
.nav-cart { color: var(--ink); }

/* Policy / static page article */
.policy-page { padding: 56px 0 96px; max-width: 760px; margin: 0 auto; }
.policy-page h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--ink);
}
.policy-meta { color: var(--ink-2); font-size: 14px; margin: 0 0 36px; }
.policy-page h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  color: var(--ink);
}
.policy-page p,
.policy-page li { font-size: 16px; line-height: 1.65; color: var(--ink); }
.policy-page ul,
.policy-page ol { padding-left: 22px; margin: 12px 0 20px; }
.policy-page li { margin-bottom: 6px; }
.policy-page strong { font-weight: 700; }

/* Reusable orange "callout" block for guarantee, highlight, etc. */
.policy-callout {
  background: rgba(234,88,12,0.08);
  border-left: 3px solid var(--orange);
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  margin: 12px 0 28px;
}
.policy-callout p { margin: 0; font-weight: 500; }

/* Footer (mirrors the LP footer) */
.footer { background: var(--orange-dark); color: #fff; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 34px; filter: brightness(0) invert(1); margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.85); margin: 0; }
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.20);
  font-size: 11.5px;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
  text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .policy-page { padding: 32px 0 56px; }
  .footer { padding: 32px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
