/* Petal & Plumb — design system (extracted) */
/* ============================================================
   Petal & Plumb — Colors & Type
   A warm, editorial system for a Christian digital-goods studio.
   ============================================================ */

/* Webfonts loaded via Google Fonts <link> in index.html */
/* Display serif: Cormorant Garamond — elegant editorial, devotional feel  */
/* Body serif:    Lora — warm, readable, gentle contrast                  */
/* Script accent: Caveat — hand-touch for verses & marginalia (use sparingly) */
:root {
  /* ============================================================
     COLORS
     A warm cream foundation. Clay & sage as the botanical pair.
     Gold for sacred accents. Ink is brown, never black.
     ============================================================ */

  /* — Surfaces (warm neutrals, light → dark) — */
  --surface-1: #FBF6EC;   /* page background — warmest cream */
  --surface-2: #F5ECDB;   /* card / soft well */
  --surface-3: #EADFC8;   /* divider chip / quiet panel */
  --surface-4: #D9C9A8;   /* warm taupe accent surface */
  --surface-ink: #2E2520; /* dark mode surface (deep walnut) */

  /* — Ink (text / strokes) — */
  --ink-1: #2E2520;       /* primary text — warm walnut, never #000 */
  --ink-2: #5A4A40;       /* secondary text */
  --ink-3: #8A7868;       /* tertiary / captions */
  --ink-4: #B8A896;       /* hairline / disabled */
  --ink-on-dark: #FBF6EC; /* text on dark surface */

  /* — Brand: Clay (primary warm accent) — */
  --clay-50:  #FBEDE6;
  --clay-100: #F4D7C8;
  --clay-300: #DCA48B;
  --clay-500: #C2856F;    /* primary clay — buttons, links */
  --clay-700: #9A5E48;
  --clay-900: #6E3F2D;

  /* — Brand: Sage (secondary botanical) — */
  --sage-50:  #EEF1E8;
  --sage-100: #D9E0CC;
  --sage-300: #B0BFA0;
  --sage-500: #8FA38A;    /* primary sage */
  --sage-700: #6B7F66;
  --sage-900: #475544;

  /* — Brand: Gold (sacred accent — use sparingly) — */
  --gold-50:  #FAF1DD;
  --gold-300: #E0C283;
  --gold-500: #C8A974;    /* primary gold — verse marks, dividers */
  --gold-700: #9B8050;

  /* — Semantic — */
  --success: #6B7F66;       /* sage-700 */
  --warning: #C8A974;       /* gold-500 */
  --danger:  #B5573F;       /* deeper clay */
  --info:    #7A8FA3;       /* muted dusty blue */

  /* ============================================================
     TYPOGRAPHY
     Serif-forward. Display lines breathe. Body holds long reads.
     ============================================================ */

  --font-display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --font-body:    'Lora', Georgia, 'Times New Roman', serif;
  --font-script:  'Caveat', 'Snell Roundhand', cursive;
  --font-mono:    ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* Type scale (modular ~1.25) */
  --fs-display-1: 88px;
  --fs-display-2: 64px;
  --fs-h1:        48px;
  --fs-h2:        36px;
  --fs-h3:        28px;
  --fs-h4:        22px;
  --fs-body-lg:   19px;
  --fs-body:      17px;
  --fs-body-sm:   15px;
  --fs-caption:   13px;
  --fs-eyebrow:   12px;

  /* Line heights */
  --lh-tight:   1.05;
  --lh-display: 1.12;
  --lh-snug:    1.3;
  --lh-body:    1.65;
  --lh-loose:   1.8;

  /* Letter spacing */
  --ls-eyebrow:  0.18em;
  --ls-display: -0.01em;
  --ls-body:     0;

  /* ============================================================
     SPACING (8-pt grid, with intentional generous outers)
     ============================================================ */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* ============================================================
     RADII — soft but restrained. No pills except for tags.
     ============================================================ */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* ============================================================
     SHADOWS — warm, low-contrast, almost-not-there
     ============================================================ */
  --shadow-xs: 0 1px 2px rgba(60, 38, 25, 0.06);
  --shadow-sm: 0 2px 6px rgba(60, 38, 25, 0.07), 0 1px 2px rgba(60, 38, 25, 0.04);
  --shadow-md: 0 6px 18px rgba(60, 38, 25, 0.09), 0 2px 4px rgba(60, 38, 25, 0.04);
  --shadow-lg: 0 18px 40px rgba(60, 38, 25, 0.12), 0 4px 10px rgba(60, 38, 25, 0.05);
  --shadow-inset: inset 0 1px 0 rgba(255, 248, 235, 0.6), inset 0 -1px 0 rgba(60, 38, 25, 0.04);

  /* ============================================================
     BORDERS
     ============================================================ */
  --border-hairline: 1px solid rgba(60, 38, 25, 0.10);
  --border-soft:     1px solid rgba(60, 38, 25, 0.16);
  --border-strong:   1px solid var(--ink-1);
  --border-rule:     1px solid var(--surface-3);

  /* ============================================================
     MOTION
     ============================================================ */
  --ease-gentle:  cubic-bezier(0.32, 0.72, 0.36, 1);
  --ease-bloom:   cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:     140ms;
  --dur-base:     220ms;
  --dur-slow:     420ms;
}

/* ============================================================
   Semantic element styles — opt-in via class for design surfaces
   ============================================================ */

.pp-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-3);
}

.pp-display-1 {
  font-family: var(--font-display);
  font-size: var(--fs-display-1);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  font-weight: 400;
  color: var(--ink-1);
  text-wrap: balance;
}

.pp-display-2 {
  font-family: var(--font-display);
  font-size: var(--fs-display-2);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  font-weight: 400;
  color: var(--ink-1);
  text-wrap: balance;
}

.pp-h1 { font-family: var(--font-display); font-size: var(--fs-h1); line-height: var(--lh-display); font-weight: 500; color: var(--ink-1); text-wrap: balance; letter-spacing: var(--ls-display); }
.pp-h2 { font-family: var(--font-display); font-size: var(--fs-h2); line-height: var(--lh-snug); font-weight: 500; color: var(--ink-1); text-wrap: balance; }
.pp-h3 { font-family: var(--font-display); font-size: var(--fs-h3); line-height: var(--lh-snug); font-weight: 500; color: var(--ink-1); }
.pp-h4 { font-family: var(--font-body);    font-size: var(--fs-h4); line-height: var(--lh-snug); font-weight: 600; color: var(--ink-1); }

.pp-lede {
  font-family: var(--font-display);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
  text-wrap: pretty;
}

.pp-body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  color: var(--ink-1);
  text-wrap: pretty;
}

.pp-body-sm {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  color: var(--ink-2);
}

.pp-caption {
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  line-height: var(--lh-snug);
  color: var(--ink-3);
}

.pp-script {
  font-family: var(--font-script);
  font-size: 36px;
  line-height: 1;
  color: var(--clay-700);
  font-weight: 500;
}

.pp-verse {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-h3);
  line-height: var(--lh-body);
  color: var(--ink-1);
  text-wrap: balance;
}

/* ---------- Components ---------- */
/* ============================================================
   Petal & Plumb — Marketing UI Kit styles
   Imports tokens from ../../colors_and_type.css
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--surface-1);
  color: var(--ink-1);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.pp-container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* =====================================
   Eyebrow + display + utility classes
   ===================================== */
.pp-gold-rule { display:block; width: 64px; height: 1px; background: var(--gold-500); margin: 14px 0 18px; }
.pp-link-gold { color: var(--ink-1); border-bottom: 1px solid var(--gold-500); padding-bottom: 2px; font-size: 14px; letter-spacing: 0.04em; transition: color 220ms var(--ease-gentle); }
.pp-link-gold:hover { color: var(--clay-700); }

/* =====================================
   Buttons
   ===================================== */
.pp-btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-gentle);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pp-btn-primary { background: var(--clay-500); color: var(--surface-1); }
.pp-btn-primary:hover { background: var(--clay-700); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.pp-btn-primary:active { transform: translateY(1px); box-shadow: none; }
.pp-btn-secondary { background: transparent; color: var(--ink-1); border-color: var(--ink-1); }
.pp-btn-secondary:hover { background: var(--ink-1); color: var(--surface-1); }
.pp-btn-ghost { background: transparent; color: var(--ink-1); padding: 12px 8px; }
.pp-btn-ghost:hover { color: var(--clay-700); }

/* =====================================
   Header
   ===================================== */
.pp-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  transition: background var(--dur-base) var(--ease-gentle), border-color var(--dur-base) var(--ease-gentle), backdrop-filter var(--dur-base);
  border-bottom: 1px solid transparent;
}
.pp-header.is-scrolled {
  background: rgba(251, 246, 236, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(60, 38, 25, 0.08);
}
.pp-header-inner {
  max-width: 1240px; margin: 0 auto; padding: 18px 32px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
}
.pp-brand img { display: block; height: 40px; }
.pp-nav { display: flex; gap: 26px; justify-content: center; }
.pp-nav a {
  font-family: var(--font-body); font-size: 14px; letter-spacing: 0.04em;
  color: var(--ink-1); padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-gentle), color var(--dur-base);
}
.pp-nav a:hover { border-bottom-color: var(--gold-500); }
.pp-header-actions { display: flex; gap: 4px; }
.pp-icon-btn {
  background: transparent; border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-1); font-size: 19px;
  transition: background var(--dur-base) var(--ease-gentle);
  position: relative;
}
.pp-icon-btn:hover { background: var(--surface-2); }
.pp-cart-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--clay-500); color: var(--surface-1);
  font-size: 10px; font-weight: 600;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
}

/* =====================================
   Hero
   ===================================== */
.pp-hero {
  max-width: 1240px; margin: 0 auto; padding: 80px 32px 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.pp-hero-text .pp-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.pp-hero-text h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1.04; letter-spacing: -0.015em; margin: 0;
  text-wrap: balance; color: var(--ink-1);
}
.pp-hero-text h1 em { font-style: italic; color: var(--clay-700); }
.pp-hero-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; line-height: 1.55; color: var(--ink-2);
  margin: 22px 0 28px; max-width: 500px; text-wrap: pretty;
}
.pp-hero-actions { display: flex; gap: 16px; align-items: center; }

.pp-hero-art {
  position: relative; aspect-ratio: 4 / 5;
  display: flex; flex-direction: column; align-items: center;
}
.pp-hero-frame {
  flex: 1; width: 100%;
  background: var(--surface-2);
  border: 1px solid rgba(60, 38, 25, 0.10);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pp-hero-frame::before {
  content: ""; position: absolute; inset: 18px;
  border: 1px solid var(--gold-500); opacity: 0.4;
  pointer-events: none;
}
.pp-hero-frame img { width: 65%; height: 65%; }
.pp-hero-caption {
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 18px;
}

/* =====================================
   Section / EyebrowSection
   ===================================== */
.pp-section { max-width: 1240px; margin: 0 auto; padding: 80px 32px; }
.pp-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 24px;
  border-bottom: 1px solid rgba(60, 38, 25, 0.10);
  padding-bottom: 18px;
}
.pp-section-title { margin: 8px 0 0; font-weight: 500; }

/* =====================================
   Product card + grid
   ===================================== */
.pp-product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px 32px;
}
.pp-product {
  display: flex; flex-direction: column; gap: 12px;
  color: var(--ink-1);
  transition: transform var(--dur-base) var(--ease-gentle);
}
.pp-product:hover { transform: translateY(-3px); }
.pp-product-img {
  aspect-ratio: 4 / 5; border-radius: var(--radius-xs);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow var(--dur-base) var(--ease-gentle);
}
.pp-product:hover .pp-product-img { box-shadow: var(--shadow-md); }
.pp-product-img img { width: 60%; height: 60%; opacity: 0.85; }
.pp-product-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.pp-product-badge-outline { background: var(--surface-1); color: var(--ink-1); border: 1px solid rgba(60,38,25,0.12); }
.pp-product-badge-gold { background: var(--gold-500); color: var(--ink-1); }
.pp-product-badge-sage { background: var(--sage-100); color: var(--sage-900); }
.pp-product-eyebrow { font-size: 10px; letter-spacing: 0.24em; margin-top: 4px; }
.pp-product-rule { height: 1px; background: rgba(60, 38, 25, 0.16); width: 100%; }
.pp-product-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; line-height: 1.15; margin: 0;
  color: var(--ink-1); text-wrap: balance;
}
.pp-product-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 2px; }
.pp-product-price { font-family: var(--font-body); font-size: 15px; color: var(--ink-2); display: inline-flex; gap: 8px; align-items: center; }
.pp-product-price s { color: var(--ink-3); }
.pp-product-add {
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent; border: 1px solid var(--ink-1);
  color: var(--ink-1); cursor: pointer; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-gentle);
}
.pp-product-add:hover { background: var(--clay-500); border-color: var(--clay-500); color: var(--surface-1); }

/* =====================================
   Feature panel — asymmetric two-col
   ===================================== */
.pp-feature {
  max-width: 1240px; margin: 0 auto; padding: 80px 32px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  align-items: center;
}
.pp-feature-art {
  background: var(--surface-3);
  aspect-ratio: 4 / 5; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pp-feature-art img { width: 65%; }
.pp-feature-caption {
  position: absolute; bottom: -28px; left: 0;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.pp-feature-text .pp-eyebrow { font-size: 11px; letter-spacing: 0.32em; }
.pp-feature-text h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 56px; line-height: 1.08; margin: 0;
  color: var(--ink-1); letter-spacing: -0.01em; text-wrap: balance;
}
.pp-feature-text .pp-lede {
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; line-height: 1.55; color: var(--ink-2);
  margin: 20px 0 24px; max-width: 480px;
}
.pp-feature-list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.pp-feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink-2);
}
.pp-feature-list i { color: var(--clay-500); font-size: 18px; }
.pp-feature-actions { display: flex; align-items: center; gap: 24px; }
.pp-feature-price { font-family: var(--font-display); font-size: 36px; color: var(--ink-1); }

/* =====================================
   Verse block
   ===================================== */
.pp-verse-block {
  text-align: center;
  padding: 96px 32px;
}
.pp-verse-cream { background: var(--surface-2); }
.pp-verse-dark { background: var(--surface-ink); color: var(--surface-1); }
.pp-verse-fleur { color: var(--gold-500); font-family: var(--font-display); font-size: 40px; display: block; margin-bottom: 18px; line-height: 1; }
.pp-verse-text {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.3;
  margin: 0 auto; max-width: 720px; text-wrap: balance;
  color: inherit; font-weight: 400;
}
.pp-verse-rule { display: block; width: 48px; height: 1px; background: var(--gold-500); margin: 28px auto 14px; opacity: 0.7; }
.pp-verse-cite {
  font-family: var(--font-body); font-style: normal;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-700);
}
.pp-verse-dark .pp-verse-cite { color: var(--gold-300); }

/* =====================================
   Newsletter
   ===================================== */
.pp-newsletter {
  background: var(--surface-2);
  border-top: 1px solid rgba(60,38,25,0.08);
  border-bottom: 1px solid rgba(60,38,25,0.08);
}
.pp-newsletter-inner {
  max-width: 640px; margin: 0 auto;
  padding: 80px 32px; text-align: center;
}
.pp-newsletter h2 { font-weight: 400; }
.pp-newsletter-form {
  display: flex; gap: 8px; max-width: 440px; margin: 0 auto;
}
.pp-newsletter-form input {
  flex: 1; font-family: var(--font-body); font-size: 15px;
  padding: 14px 18px; border-radius: var(--radius-md);
  border: 1px solid rgba(60,38,25,0.18); background: var(--surface-1);
  color: var(--ink-1); transition: border-color var(--dur-base);
}
.pp-newsletter-form input:focus { outline: none; border-color: var(--clay-500); }

/* =====================================
   Footer
   ===================================== */
.pp-footer {
  background: var(--surface-ink); color: var(--surface-1);
  padding: 80px 0 32px;
}
.pp-footer-top {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 64px;
}
.pp-footer-brand img { display: block; margin-bottom: 18px; filter: brightness(0) invert(1) sepia(0.2); }
.pp-footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pp-footer-cols .pp-eyebrow { color: var(--gold-300); display: block; margin-bottom: 14px; }
.pp-footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pp-footer-cols a { color: rgba(251, 246, 236, 0.78); font-size: 14px; }
.pp-footer-cols a:hover { color: var(--surface-1); border-bottom: 1px solid var(--gold-500); padding-bottom: 1px; }
.pp-footer-rule { max-width: 1240px; margin: 64px auto 28px; padding: 0 32px; }
.pp-footer-rule::after { content: ""; display: block; height: 1px; background: rgba(251, 246, 236, 0.12); }
.pp-footer-bottom {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(251, 246, 236, 0.55);
}
.pp-footer-bottom .pp-caption { color: inherit; font-size: 12px; }

/* =====================================
   Cart drawer
   ===================================== */
.pp-cart-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(46, 37, 32, 0.45);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-gentle);
}
.pp-cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.pp-cart-drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 90vw;
  background: var(--surface-1);
  padding: 24px 28px;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-bloom);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.pp-cart-drawer.is-open { transform: translateX(0); }
.pp-cart-header { display: flex; justify-content: space-between; align-items: center; }
.pp-cart-rule { height: 1px; background: rgba(60,38,25,0.12); margin: 16px 0; }
.pp-cart-empty { text-align: center; padding: 64px 16px; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.pp-cart-items { list-style: none; padding: 0; margin: 0; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.pp-cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; }
.pp-cart-thumb { width: 64px; height: 80px; border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pp-cart-thumb img { width: 55%; }
.pp-cart-item-text { display: flex; flex-direction: column; gap: 4px; }
.pp-cart-item-title { font-family: var(--font-display); font-size: 18px; line-height: 1.2; color: var(--ink-1); }
.pp-cart-item-price { font-family: var(--font-body); font-size: 14px; color: var(--ink-2); }
.pp-cart-remove { background: transparent; border: none; cursor: pointer; color: var(--ink-3); font-size: 16px; padding: 4px; }
.pp-cart-remove:hover { color: var(--clay-700); }
.pp-cart-total { display: flex; justify-content: space-between; align-items: center; margin: 8px 0 16px; }
.pp-cart-total-amount { font-family: var(--font-display); font-size: 28px; color: var(--ink-1); }
.pp-cart-checkout { width: 100%; justify-content: center; padding: 16px; }

/* =====================================
   Inline SVG icons (replaces Phosphor font)
   ===================================== */
.pp-ico { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; flex: none; }
.pp-feature-list svg { width: 18px; height: 18px; color: var(--clay-500); flex: none; }

/* =====================================
   Mobile menu (responsive enhancement)
   ===================================== */
.pp-menu-toggle { display: none; background: transparent; border: none; cursor: pointer; width: 40px; height: 40px; border-radius: var(--radius-md); color: var(--ink-1); font-size: 22px; align-items: center; justify-content: center; }
.pp-menu-toggle:hover { background: var(--surface-2); }
.pp-mobile-menu { display: none; }

/* =====================================
   Responsive
   ===================================== */
@media (max-width: 1080px) {
  .pp-hero { gap: 56px; padding: 64px 32px 80px; }
  .pp-feature { gap: 56px; }
  .pp-nav { gap: 18px; }
}
@media (max-width: 920px) {
  .pp-nav { display: none; }
  .pp-menu-toggle { display: inline-flex; }
  .pp-header-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .pp-hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 28px 64px; }
  .pp-hero-art { max-width: 440px; margin: 0 auto; width: 100%; order: 2; }
  .pp-hero-text { order: 1; }
  .pp-feature { grid-template-columns: 1fr; gap: 40px; padding: 64px 28px; }
  .pp-feature-art { max-width: 460px; }
  .pp-feature-caption { bottom: -24px; }
  .pp-footer-top { grid-template-columns: 1fr; gap: 40px; }
  .pp-product-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .pp-section { padding: 64px 28px; }
  .pp-verse-block { padding: 72px 28px; }
}
@media (max-width: 600px) {
  :root { --fs-h2: 30px; }
  .pp-header-inner { padding: 14px 18px; }
  .pp-hero { padding: 36px 18px 52px; }
  .pp-hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .pp-hero-actions .pp-btn { justify-content: center; }
  .pp-section { padding: 52px 18px; }
  .pp-section-head { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 32px; }
  .pp-product-grid { grid-template-columns: 1fr; gap: 36px; max-width: 380px; margin: 0 auto; }
  .pp-feature { padding: 52px 18px; }
  .pp-feature-actions { gap: 16px; }
  .pp-verse-block { padding: 56px 20px; }
  .pp-newsletter-inner { padding: 56px 20px; }
  .pp-newsletter-form { flex-direction: column; }
  .pp-newsletter-form .pp-btn { justify-content: center; }
  .pp-footer { padding: 56px 0 28px; }
  .pp-footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pp-footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* Inline brand SVGs (wordmark in header, monogram in footer) */
.pp-brand svg { display: block; height: 40px; width: auto; }
.pp-footer-brand svg { display: block; height: 84px; width: auto; margin-bottom: 18px; }

/* Mobile menu open state */
.pp-mobile-menu.is-open {
  display: block; position: fixed; inset: 0; z-index: 60;
  background: rgba(251, 246, 236, 0.98);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 84px 28px 28px;
}
.pp-mobile-menu .pp-menu-close { position: absolute; top: 16px; right: 16px; }
.pp-mobile-menu nav { display: flex; flex-direction: column; gap: 2px; max-width: 480px; margin: 0 auto; }
.pp-mobile-menu nav a {
  font-family: var(--font-display); font-size: 30px; font-weight: 400;
  color: var(--ink-1); padding: 14px 0;
  border-bottom: 1px solid rgba(60, 38, 25, 0.08);
}
.pp-mobile-menu nav a:hover { color: var(--clay-700); }

/* =====================================
   Real brand wordmark (script) + Etsy tailoring
   ===================================== */
.pp-brand .pp-wordmark { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.pp-wordmark-name { font-family: var(--font-script); font-size: 36px; font-weight: 600; color: var(--clay-500); line-height: 0.85; }
.pp-wordmark-tag { font-family: var(--font-body); font-size: 8.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-3); margin-top: 3px; }
.pp-header .pp-btn-primary { padding: 9px 18px; font-size: 14px; }

/* 4-up product grid (matches the 4 live Etsy listings) */
.pp-product-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px 28px; }
.pp-product-add svg { width: 14px; height: 14px; }
@media (max-width: 980px) { .pp-product-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 44px 28px; } }
@media (max-width: 600px) { .pp-product-grid-4 { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

/* Footer social row */
.pp-footer-social { display: flex; gap: 14px; margin-top: 16px; }
.pp-footer-social a { display: inline-flex; color: rgba(251,246,236,0.78); }
.pp-footer-social a:hover { color: var(--gold-300); }
.pp-footer-social svg { width: 20px; height: 20px; }
