/* Sauna Supplies 4 the People -- shared site styles.
   Extracted from the duplicated per-page <style> blocks (Phase 1 audit
   found ~530 identical lines repeated across 36 files). This file
   covers design tokens, layout primitives, header/nav/footer, buttons,
   hero, and the informational-page (about/contact/guides) styles.
   Catalog/product-card styles: catalog.css. Product-detail styles: product.css. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy: #1B2A3C;
  --navy-light: #2A3F58;
  --trust-teal: #3C6E71;
  --sage: #7C9070;
  --gold: #C9A24A;
  --sand: #EDE4D3;
  --clay: #A85C32;
  --ivory: #FAF7F1;
  --light-bg: #F8F5EE;
  --ink: #23241F;
  --muted: #5c5c54;
  --border: #ddd4c2;
  --desc: #8a8578;
  --flame: #E15A1D;
  --flame-deep: #B84616;
}

html { color-scheme: light; }

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #FAF7F1;
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .wordmark, .price-display { font-family: 'Fraunces', serif; color: var(--navy); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Announcement bar */
.announce {
  background: var(--trust-teal);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 9px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 14px;
}
.announce .announce-sep {
  opacity: 0.5;
}
.announce .promo-code {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 11px;
  border-radius: 3px;
  font-size: 14px;
  font-family: 'Fraunces', serif;
}
@media (max-width: 640px) {
  .announce .announce-sep { display: none; }
}

/* Promo note on product detail pages */
.promo-note {
  margin: 16px 0 0;
  padding: 14px 18px;
  background: var(--light-bg);
  border: 1px dashed var(--gold);
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}
.promo-note .code-inline {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Fraunces', serif;
  padding: 3px 12px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.wordmark {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.wordmark .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.main-nav a:hover { color: var(--trust-teal); }
.cart-link { display: inline-flex; align-items: center; gap: 6px; }
.cart-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--trust-teal); color: #fff;
  font-size: 12px; font-weight: 700; border-radius: 100px;
}
.cart-badge.cart-badge-empty { background: var(--border); color: var(--muted); }
.cart-badge-inline { font-weight: 700; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}
.mobile-nav { display: none; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px 20px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
  }
  .mobile-nav a:last-child { border-bottom: none; }
}

/* Page hero */
.page-hero {
  background: var(--light-bg);
  text-align: center;
  padding: 56px 24px 48px;
}
.page-hero h1 { font-size: 40px; font-weight: 700; margin: 0 0 12px; }
.page-hero p { color: var(--desc); font-size: 17px; max-width: 620px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  padding: 18px 24px;
}
.breadcrumb a { color: var(--trust-teal); font-weight: 600; }
.breadcrumb .sep { margin: 0 6px; color: var(--border); }

/* Sections */
.section { padding: 64px 0; }
.section.bg-white { background: #fff; }
.section.bg-light { background: var(--light-bg); }
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading h2 { font-size: 30px; margin: 0 0 10px; }
.section-heading p { color: var(--desc); font-size: 16px; margin: 0; }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--trust-teal);
  margin-bottom: 8px;
}
.brand-block { margin-bottom: 56px; }
.brand-block:last-child { margin-bottom: 0; }
.brand-block-head { margin-bottom: 24px; }
.brand-block-head h3 { font-size: 24px; margin: 0 0 6px; }
.brand-block-head p { color: var(--desc); font-size: 15px; margin: 0; }

.btn {
  display: inline-block;
  text-align: center;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 4px;
  margin-top: auto;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: var(--trust-teal); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-full { width: 100%; padding: 15px 18px; font-size: 15px; }
.add-to-cart-added { background: var(--trust-teal) !important; }
.btn:disabled, .btn[aria-disabled="true"] {
  background: var(--border);
  color: var(--muted);
  cursor: not-allowed;
}
.btn:disabled:hover, .btn[aria-disabled="true"]:hover { background: var(--border); }

/* Category tiles (home / shop) */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.cat-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.cat-tile .icon-box {
  width: 64px; height: 64px;
  background: var(--light-bg);
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--trust-teal);
  font-size: 26px;
}
/* Category tile photo (Part 3/4/5) -- bleeds to the card edge, same
   pattern as .img-box on product cards, so a future category with a
   photo just drops into HOMEPAGE_CATEGORIES with no new CSS needed. */
.cat-tile-image {
  background: var(--light-bg);
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cat-tile-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-tile-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.cat-tile h3 { font-size: 21px; margin: 0 0 8px; }
.cat-tile p { color: var(--desc); font-size: 14.5px; margin: 0 0 20px; }
.cat-tile-body .btn { margin-top: auto; }

/* Hero (home) */
.hero {
  background: var(--light-bg);
  padding: 76px 24px;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 12.5px; font-weight: 700;
  color: var(--trust-teal); margin-bottom: 14px;
}
.hero h1 { font-size: 46px; line-height: 1.1; margin: 0 0 10px; }
.hero-tagline {
  font-family: 'Fraunces', serif; font-weight: 600; font-style: italic;
  font-size: 21px; color: var(--trust-teal); margin: 0 0 18px;
}
.hero p { color: var(--muted); font-size: 17.5px; margin: 0 0 28px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  aspect-ratio: 3/2;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-image .placeholder-text { font-family: 'Fraunces', serif; color: var(--sage); font-size: 16px; }
.hero-image picture { width: 100%; height: 100%; display: block; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
}

/* Trust badges */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: center;
  padding: 30px 0;
}
.trust-row .badge {
  font-size: 14px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.trust-row .badge:before { content: "\2713"; color: var(--trust-teal); font-weight: 700; }

/* Value props */
.value-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px;
  text-align: center;
}
.value-grid h3 { font-size: 18px; margin: 0 0 8px; }
.value-grid p { color: var(--desc); font-size: 14.5px; margin: 0; }

/* "Shop With Confidence" cards (Part 8) -- the star row is a decorative
   accent, not a rating claim: it's aria-hidden and never paired with a
   score or review count, unlike the Trustpilot widget in .review-trust. */
.confidence-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px;
  text-align: center;
}
.confidence-card { padding: 0 8px; }
.confidence-stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 14px; }
.confidence-card h3 { font-size: 18px; margin: 0 0 8px; }
.confidence-card p { color: var(--desc); font-size: 14.5px; margin: 0; line-height: 1.6; }

/* CTA band */
.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 56px 24px;
}
.cta-band h2 { color: #fff; font-size: 28px; margin: 0 0 12px; }
.cta-band p { color: #d7dde3; margin: 0 0 24px; }
.cta-band .btn { background: var(--gold); }
.cta-band .btn:hover { background: #b28f3f; }

/* Footer */
footer {
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 44px;
}
.footer-grid h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--navy); margin: 0 0 16px; font-weight: 700;
}
.footer-grid p { color: var(--muted); font-size: 14px; margin: 10px 0 0; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: var(--muted); font-size: 14.5px; }
.footer-grid ul li a:hover { color: var(--trust-teal); }
.footer-tagline { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 260px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px;
  font-size: 13px; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--trust-teal); }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Guides / About / Contact simple content pages */
.prose { max-width: 760px; margin: 0 auto; font-size: 16px; color: var(--ink); }
.prose h2 { font-size: 26px; margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); margin: 0 0 16px; }
.prose ul { color: var(--muted); margin: 0 0 16px; padding-left: 22px; }
.prose ul li { margin-bottom: 6px; }
.legal-review-note {
  margin-top: 40px; padding: 16px 20px;
  background: var(--light-bg); border: 1px solid var(--border); border-radius: 8px;
  font-size: 13px; font-style: italic; color: var(--muted);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto;
}
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 30px;
}
.contact-card h3 { font-size: 18px; margin: 0 0 14px; }
.contact-card p { color: var(--muted); margin: 0 0 8px; }
.contact-card a { color: var(--trust-teal); font-weight: 600; }
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   JOIN THE PEOPLE / PEOPLE'S PRICE (2026-08-19)
   Reuses the site's existing warm-tan/orange/green/cream tokens (--sand,
   --clay, --sage, --light-bg) rather than introducing a new palette --
   they were already in :root, just lightly used elsewhere (stars, cart
   notice). No new custom properties needed.
   ========================================================================== */

/* Nav CTA chip */
.nav-join-cta {
  background: var(--clay); color: #fff !important;
  padding: 7px 14px; border-radius: 100px; font-weight: 700; font-size: 13.5px;
}
.nav-join-cta:hover { background: var(--navy); }
.ss4p-joined .nav-join-cta { background: var(--sage); }
.announce a { color: #fff; text-decoration: underline; font-weight: 600; }

/* Shared People's Price block -- product cards + product detail page */
.pp-block { margin: 10px 0; }
.pp-teaser {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--clay); margin-bottom: 8px;
}
.pp-flame { font-size: 14px; }
.pp-join-btn {
  display: block; width: 100%; text-align: center;
  background: var(--sand); border: 1.5px solid var(--clay); color: var(--navy);
  font-weight: 700; font-size: 13.5px; padding: 10px 14px; border-radius: 7px;
  cursor: pointer; font-family: 'Public Sans', sans-serif;
}
.pp-join-btn:hover { background: var(--clay); color: #fff; }
.pp-unlocked-view {
  background: var(--light-bg); border: 1.5px solid var(--sage); border-radius: 8px;
  padding: 12px 14px;
}
.pp-line { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.pp-label { font-size: 13px; color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.pp-value { font-family: 'Fraunces', serif; font-weight: 700; font-size: 16px; color: var(--navy); }
.pp-value.pp-strike { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: line-through; }
.pp-price-line .pp-label, .pp-price-line .pp-value { color: var(--sage); }
.pp-save {
  margin-top: 6px; padding-top: 6px; border-top: 1px dashed var(--border);
  font-size: 13px; font-weight: 700; color: var(--clay); text-align: center;
}
.pp-why { margin-top: 12px; padding: 12px 14px; background: var(--sand); border-radius: 8px; }
.pp-why h4 { margin: 0 0 6px; font-size: 14px; color: var(--navy); }
.pp-why p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.pp-map-locked .pp-join-btn { width: auto; display: inline-block; padding: 10px 18px; }

/* Pledge modal */
.pledge-modal-overlay {
  position: fixed; inset: 0; background: rgba(27, 42, 60, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 1000;
}
.pledge-modal-overlay[hidden] { display: none; }
.pledge-modal {
  background: #fff; border-radius: 14px; max-width: 480px; width: 100%;
  max-height: calc(100vh - 40px); overflow-y: auto;
  padding: 40px 32px 32px; position: relative; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.pledge-modal-close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  font-size: 26px; line-height: 1; color: var(--muted); cursor: pointer; padding: 4px 8px;
  z-index: 1;
}
.pledge-modal-close:hover { color: var(--navy); }
.pledge-modal-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 8px;
}
.pledge-modal h2 { margin: 0 0 6px; font-size: 24px; }
.pledge-modal-tagline { font-family: 'Fraunces', serif; font-weight: 600; color: var(--trust-teal); font-size: 15px; margin: 0 0 16px; }
.pledge-modal p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; text-align: left; }
.pledge-statement {
  background: var(--sand); border-left: 3px solid var(--clay); border-radius: 0 8px 8px 0;
  padding: 16px 18px; font-family: 'Fraunces', serif; font-style: italic; font-size: 16px;
  color: var(--navy); text-align: left; margin: 0 0 18px; position: relative;
}
.pledge-quote-mark { color: var(--clay); font-size: 26px; margin-right: 2px; }
.pledge-confirm-btn { background: var(--clay); }
.pledge-confirm-btn:hover { background: var(--navy); }
.pledge-modal-note { text-align: center; font-size: 12.5px; color: var(--muted); margin: 12px 0 0; }
body.pledge-modal-open { overflow: hidden; }

/* Pledge form fields */
.pledge-honeypot { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.pledge-field { text-align: left; margin-bottom: 16px; }
.pledge-field > label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.pledge-field input[type="text"], .pledge-field input[type="email"] {
  width: 100%; padding: 11px 12px; font-size: 15px; font-family: 'Public Sans', sans-serif;
  border: 1px solid var(--border); border-radius: 5px; background: #fff; color: var(--ink);
}
.pledge-field input:focus { outline: none; border-color: var(--trust-teal); }
.pledge-choice-row {
  display: flex; align-items: center; gap: 9px; padding: 8px 4px; font-size: 14px; color: var(--ink);
  cursor: pointer; border-radius: 6px;
}
.pledge-choice-row:hover { background: var(--light-bg); }
.pledge-choice-row input { flex-shrink: 0; }
.pledge-consent-row {
  display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink);
  margin: 0 0 14px; line-height: 1.5; text-align: left; cursor: pointer;
}
.pledge-consent-row input { margin-top: 3px; flex-shrink: 0; }
.pledge-consent-optional { color: var(--muted); font-size: 13px; }
.pledge-step[hidden] { display: none; }
.pledge-success-flame { font-size: 44px; margin-bottom: 6px; }
.pledge-success-sub { font-family: 'Fraunces', serif; font-weight: 600; color: var(--sage); font-size: 17px; text-align: center; margin: 0 0 22px; }
.pledge-code-box {
  background: var(--sand); border: 1.5px dashed var(--clay); border-radius: 10px;
  padding: 20px; margin: 0 0 22px; text-align: center;
}
.pledge-code-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.pledge-code-value { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; }
.pledge-success-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.pledge-success-actions .btn, .pledge-success-actions .btn-outline { flex: 1; min-width: 160px; margin-top: 0; }

/* Homepage People's Price callout -- deliberately the most visually
   prominent section on the page after the hero (client instruction
   2026-08-20: customer must notice "People's Price" and the unlock CTA
   immediately, without studying the page). Bright orange (--flame) is
   reserved for this section's headline/CTA/savings figures so it reads
   as a premium brand advantage, not a clearance-sale red. */
.pp-homepage-section { background: var(--sand); padding: 64px 0; border-top: 3px solid var(--flame); }
.pp-hp-intro { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.pp-hp-headline {
  font-size: 44px; font-weight: 700; line-height: 1.12; margin: 0 0 10px; text-wrap: balance;
}
.pp-hp-highlight { color: var(--flame); }
.pp-hp-tagline {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px; color: var(--navy);
  margin: 0 0 18px;
}
.pp-hp-copy { color: var(--ink); font-size: 16px; line-height: 1.65; margin: 0 auto; max-width: 52ch; }
.btn-pp-primary {
  background: var(--flame); color: #fff; font-weight: 800; font-size: 17px;
  text-transform: uppercase; letter-spacing: 0.03em; padding: 18px 36px; border-radius: 8px;
  box-shadow: 0 10px 26px rgba(225,90,29,0.32);
}
.btn-pp-primary:hover { background: var(--flame-deep); }
.pp-hp-unlocked-banner {
  background: var(--sage); color: #fff; border-radius: 12px; padding: 34px 32px;
  text-align: center; max-width: 680px; margin: 0 auto;
}
.pp-hp-unlocked-banner h2 { color: #fff; margin: 0 0 10px; font-size: 32px; font-weight: 700; text-wrap: balance; }
.pp-hp-unlocked-banner p { color: rgba(255,255,255,0.92); margin: 0 auto 22px; max-width: 44ch; font-size: 16px; }
.pp-hp-unlocked-banner .btn { background: #fff; color: var(--navy); font-weight: 700; padding: 14px 28px; }
.pp-hp-unlocked-banner .btn:hover { background: var(--navy); color: #fff; }

/* People's Price savings tiers (homepage + /join-the-people, shared markup) */
.pp-savings-block { max-width: 1000px; margin: 0 auto 40px; }
.pp-savings-heading {
  text-align: center; font-family: 'Fraunces', serif; font-weight: 700; font-size: 24px;
  color: var(--navy); margin-bottom: 22px;
}
.pp-savings-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.pp-savings-tile {
  background: #fff; border: 1.5px solid var(--border); border-top: 3px solid var(--sage); border-radius: 12px;
  padding: 22px 12px; text-align: center; box-shadow: 0 4px 14px rgba(27,42,60,0.06);
}
.pp-savings-range { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.pp-savings-amount {
  font-family: 'Fraunces', serif; font-weight: 800; font-size: 25px; color: var(--flame);
  letter-spacing: 0.01em;
}
.pp-hp-cta2 {
  max-width: 580px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 34px 32px;
}
.pp-hp-cta2 h3 { margin: 0 0 8px; font-size: 21px; }
.pp-hp-cta2 p { color: var(--muted); font-size: 14px; margin: 0 0 20px; }

@media (max-width: 760px) {
  .pp-savings-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-hp-headline { font-size: 32px; }
}
@media (max-width: 420px) {
  .pp-savings-grid { grid-template-columns: 1fr; }
  .btn-pp-primary { width: 100%; padding: 17px 20px; }
}

/* The People -- community/customer-story page (2026-08-20) */
.the-people-hero { background: var(--sand); }
.the-people-hero .page-hero-actions { margin-top: 26px; }
.the-people-hero .page-hero-note { font-size: 12.5px; color: var(--muted); margin: 14px auto 0; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-flow: dense;
  align-items: start;
  gap: 26px;
}
.story-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(27,42,60,0.05);
}
.story-card-featured { grid-column: span 2; border-top: 3px solid var(--flame); }
@media (max-width: 620px) { .story-card-featured { grid-column: span 1; } }
.story-card-image { aspect-ratio: 4 / 5; background: var(--light-bg); }
.story-card-featured .story-card-image { aspect-ratio: 16 / 10; }
.story-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.story-card-body { padding: 20px 22px 24px; }
.story-stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; margin-bottom: 10px; }
.story-quote { font-family: 'Fraunces', serif; font-size: 16.5px; line-height: 1.55; color: var(--ink); margin: 0 0 14px; }
.story-card-featured .story-quote { font-size: 19px; }
.story-name { font-size: 13.5px; font-weight: 700; color: var(--navy); margin: 0; }
.story-location { font-size: 12.5px; color: var(--muted); font-weight: 400; }

.story-card-textonly .story-card-body { padding: 26px 24px; }
.story-card-textonly { display: flex; align-items: center; background: var(--sand); border: none; }

@media (max-width: 480px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-card-featured .story-quote { font-size: 17px; }
}

.people-cta-band .btn-pp-primary { margin-right: 12px; }
.people-cta-band .btn-outline-light {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.55);
  display: inline-block; text-align: center; font-weight: 600; font-size: 14px;
  padding: 11px 18px; border-radius: 4px; margin-top: 10px;
}
.people-cta-band .btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
@media (max-width: 480px) {
  .people-cta-band .btn-pp-primary { margin: 0 0 12px; display: block; }
  .people-cta-band .btn-outline-light { display: block; }
}

/* Cart savings */
.cart-line-pp { font-size: 12.5px; font-weight: 700; color: var(--clay); margin: 4px 0; }
.cart-line-retail-strike { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.cart-summary-savings span { color: var(--sage); font-weight: 700; }

/* Cart "People's Price Code" box */
.pp-code-box-cart { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.pp-code-box-cart label { display: block; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 8px; }
.pp-code-row { display: flex; gap: 8px; }
.pp-code-row input {
  flex: 1; min-width: 0; padding: 9px 11px; font-size: 14px; border: 1px solid var(--border);
  border-radius: 5px; font-family: 'Public Sans', sans-serif; text-transform: uppercase;
}
.pp-code-row input:focus { outline: none; border-color: var(--trust-teal); }
.pp-code-row .btn-outline { padding: 9px 16px; margin-top: 0; white-space: nowrap; }
.pp-code-message { font-size: 12.5px; margin-top: 8px; }
.pp-code-message-success { color: var(--sage); font-weight: 700; }
.pp-code-message-error { color: var(--clay); }
.pp-code-join-link {
  display: inline; background: none; border: none; padding: 0; margin-left: 4px;
  color: var(--trust-teal); font-weight: 700; text-decoration: underline; cursor: pointer;
  font-size: inherit; font-family: inherit;
}
.pp-code-unlocked {
  margin-bottom: 18px; padding: 10px 14px; background: var(--sage-tint, rgba(110,138,92,0.13));
  border: 1px solid var(--sage); border-radius: 8px; color: var(--sage); font-weight: 700; font-size: 13.5px; text-align: center;
}
