/* =====================================================================
   DEBBIE DID STUFF — Writer & Storyteller
   Brand stylesheets — red / black / cream
   Fonts: Playfair Display (serif headings) + Open Sans (body)
   ===================================================================== */

:root {
  /* Brand palette */
  --red: #c80000;
  --red-dark: #a00000;
  --red-deep: #7a0000;
  --red-soft: #f4e0e0;

  --black: #1a1a1a;
  --charcoal: #2a2a2a;
  --ink: #111;

  /* Darker taupe palette — warm, elegant, no harsh black backgrounds */
  --cream: #e8e0d5;
  --cream-2: #ddd3c6;
  --light-gray: #d6ccbf;
  --paper: #f5f1ea;
  --taupe: #5c5347;
  --taupe-dark: #4a4239;
  --taupe-darker: #3d362e;

  --text: #2b2b2b;
  --text-light: #6b6b6b;
  --text-muted: #8a8a8a;

  --line: #e3ddd3;
  --line-strong: #d6cec1;

  --gold: #b8860b;
  --green: #2f6b4f;

  /* Typography */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script: "Tangerine", "Brush Script MT", cursive;
  --font-body: "Open Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --max-width: 1200px;
  --max-width-narrow: 820px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(26,26,26,.06);
  --shadow: 0 8px 28px rgba(26,26,26,.10);
  --shadow-lg: 0 18px 50px rgba(26,26,26,.16);
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Elegant black flourish border around the entire page */
  border: 8px solid var(--black);
  border-top: none;
  min-height: 100vh;
}
img { max-width: 100%; display: block; height: auto; }

/* More visible scrollbar */
::-webkit-scrollbar { width: 14px; height: 14px; }
::-webkit-scrollbar-track { background: var(--cream-2); border-left: 1px solid var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 7px; border: 3px solid var(--cream-2); }
::-webkit-scrollbar-thumb:hover { background: var(--taupe-dark); }
::-webkit-scrollbar-corner { background: var(--cream-2); }
html { scrollbar-color: var(--taupe) var(--cream-2); scrollbar-width: auto; }

/* Bottom "go back to home page" button */
.back-home-bar { text-align: center; padding: 36px 20px 48px; background: var(--paper); border-top: 1px solid var(--light-gray); }
.back-home-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: var(--taupe); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .95rem; border-radius: var(--radius); text-decoration: none; transition: background .2s ease, transform .2s ease; border: none; cursor: pointer; }
.back-home-btn:hover { background: var(--taupe-dark); transform: translateY(-2px); }
.back-home-btn svg { width: 18px; height: 18px; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-deep); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 700; line-height: 1.18; color: var(--black); letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-width-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-dark { background: var(--taupe-darker); color: var(--cream); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--cream); }
.bg-red { background: var(--red); color: #fff; }
.bg-red h1,.bg-red h2,.bg-red h3 { color: #fff; }
.bg-soft { background: var(--red-soft); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}
.eyebrow::before, .eyebrow.center::after {
  content: ""; width: 34px; height: 2px; background: var(--red); display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: inline-block; }

/* script accent */
.script { font-family: var(--font-script); font-weight: 700; color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: all var(--transition); cursor: pointer; text-align: center;
  border: 2px solid transparent; line-height: 1;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,0,0,.28); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--charcoal); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--red); color: var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-disabled, .btn-outline.btn-disabled, .btn-primary.btn-disabled { background: var(--cream-2); border-color: var(--light-gray); color: var(--taupe); cursor: not-allowed; opacity: .6; pointer-events: none; }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--black); color: var(--black); }
.btn-light { background: #fff; color: var(--red); }
.btn-light:hover { background: var(--cream); color: var(--red-deep); }
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,248,245,.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: all var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); background: rgba(250,248,245,.97); }
.navbar-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 74px;
}
.navbar-brand { display: flex; align-items: center; gap: 11px; color: var(--black); }
.navbar-brand:hover { color: var(--black); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 800; font-size: 1.15rem;
  flex-shrink: 0; box-shadow: 0 3px 10px rgba(200,0,0,.3);
  overflow: hidden;
}
.brand-mark img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .name { font-family: var(--font-serif); font-weight: 700; font-size: 1.2rem; letter-spacing: -.01em; }
.brand-text .tag { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-light); font-weight: 600; }
.navbar-links { display: flex; align-items: center; gap: 4px; }
.navbar-links a {
  color: var(--text); font-weight: 600; font-size: .92rem;
  padding: 10px 14px; border-radius: 8px; position: relative;
}
.navbar-links a:hover { color: var(--red); background: var(--red-soft); }
.navbar-links a.active { color: var(--red); }
.navbar-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--red); border-radius: 2px;
}
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 999px; background: var(--black); color: #fff;
  font-weight: 700; font-size: .85rem; transition: all var(--transition);
}
.cart-btn:hover { background: var(--red); color: #fff; }
.cart-count {
  background: var(--red); color: #fff; font-size: .68rem; font-weight: 800;
  min-width: 19px; height: 19px; border-radius: 999px; display: grid; place-items: center;
  padding: 0 5px;
}
.cart-btn:hover .cart-count { background: #fff; color: var(--red); }
.nav-toggle {
  display: none; font-size: 1.6rem; color: var(--black); padding: 6px 10px;
  background: transparent; line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 80px 0 90px;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy h1 .accent { color: var(--red); font-style: italic; }
.hero-tagline {
  font-family: var(--font-serif); font-style: italic; font-size: 1.3rem;
  color: var(--charcoal); margin-bottom: 26px; max-width: 540px;
}
.hero-sub { font-size: 1.08rem; color: var(--text-light); max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-social { display: flex; align-items: center; gap: 14px; }
.hero-social span { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); }
.hero-social a {
  width: 40px; height: 40px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; color: var(--black); border: 1px solid var(--line);
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.hero-social a:hover { background: var(--red); color: #fff; transform: translateY(-3px); border-color: var(--red); }
.hero-social svg { width: 19px; height: 19px; }

.hero-visual { position: relative; }
.hero-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4; background: var(--taupe-darker);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--red); color: #fff; border-radius: 50%;
  width: 116px; height: 116px; display: grid; place-items: center; text-align: center;
  font-family: var(--font-serif); font-weight: 700; font-size: .82rem; line-height: 1.25;
  box-shadow: var(--shadow); transform: rotate(-8deg);
  padding: 12px;
}
.hero-badge small { display: block; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; opacity: .9; font-weight: 600; font-family: var(--font-body); }

/* floating signatures */
.sig-row { display: flex; gap: 16px; align-items: center; justify-content: center; margin-top: 30px; opacity: .9; }
.sig-row img { width: 38px; height: 38px; }
.sig-row span { font-family: var(--font-script); font-size: 1.5rem; color: var(--red); }

/* ---------- Section heading ---------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.section-head p { color: var(--text-light); font-size: 1.05rem; }
.section-head.left { text-align: left; margin-left: 0; }

/* ---------- Meet Debbie & Maggie (tag grids) ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.duo-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; text-align: center; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.duo-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.duo-photo {
  width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 22px;
  overflow: hidden; border: 5px solid #fff; box-shadow: var(--shadow);
  background: var(--cream-2);
}
.duo-photo img { width: 100%; height: 100%; object-fit: cover; }
.duo-photo.maggie { border-color: var(--red-soft); }
.duo-card h3 { margin-bottom: 6px; }
.duo-card .role { color: var(--red); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.duo-card .blurb { color: var(--text-light); margin-bottom: 22px; font-size: .98rem; }
.tag-grid { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.tag {
  padding: 7px 15px; border-radius: 999px; font-size: .78rem; font-weight: 700;
  letter-spacing: .03em; background: var(--red-soft); color: var(--red-deep);
}
.tag.dark { background: var(--black); color: #fff; }
.tag.outline { background: transparent; border: 1px solid var(--line-strong); color: var(--text); }

/* ---------- Content category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card {
  display: block; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 22px; text-align: center;
  transition: all var(--transition); color: var(--text);
}
.cat-card:hover { color: var(--text); transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--red); }
.cat-card .cat-icon {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--red-soft); color: var(--red); display: grid; place-items: center; font-size: 1.6rem;
}
.cat-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.cat-card p { font-size: .88rem; color: var(--text-light); margin: 0; }

/* ---------- Featured stories / issue cards ---------- */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.story-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.story-thumb { aspect-ratio: 16/10; background: var(--cream-2); position: relative; overflow: hidden; }
.story-thumb img { width: 100%; height: 100%; object-fit: cover; }
.story-issue {
  position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.story-body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.story-body .meta { font-size: .76rem; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.story-body h3 { margin-bottom: 10px; font-size: 1.25rem; }
.story-body .excerpt { color: var(--text-light); font-size: .94rem; flex: 1; margin-bottom: 18px; }
.story-link { font-weight: 700; color: var(--red); font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.story-link:hover { gap: 11px; }

/* ---------- Issue archive list ---------- */
.issue-list { display: flex; flex-direction: column; gap: 20px; }
.issue-row {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 28px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.issue-row:hover { box-shadow: var(--shadow); border-color: var(--red); transform: translateX(4px); }
.issue-num {
  width: 100px; height: 100px; border-radius: var(--radius); background: var(--black); color: #fff;
  display: grid; place-items: center; text-align: center; flex-shrink: 0;
}
.issue-num .n { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 800; line-height: 1; }
.issue-num .lbl { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
.issue-info h3 { font-size: 1.3rem; margin-bottom: 6px; }
.issue-info .date { color: var(--red); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.issue-info p { color: var(--text-light); font-size: .94rem; margin: 0; }
.issue-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }

/* ---------- Story reading layout ---------- */
.story-read { max-width: var(--max-width-narrow); margin: 0 auto; }
.story-read .issue-badge { display: inline-block; background: var(--red); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.story-read h1 { margin-bottom: 12px; }
.story-read .byline { color: var(--text-light); font-style: italic; margin-bottom: 30px; font-family: var(--font-serif); font-size: 1.05rem; }
.story-read .lead { font-size: 1.18rem; color: var(--charcoal); margin-bottom: 28px; font-weight: 500; }
.story-read p { font-size: 1.06rem; margin-bottom: 1.35em; }
.story-read h2 { margin: 1.6em 0 .5em; font-size: 1.6rem; }
.story-read .divider { text-align: center; color: var(--red); letter-spacing: .8em; margin: 2em 0; font-weight: 700; }
.story-read .pullquote {
  border-left: 4px solid var(--red); padding: 8px 0 8px 24px; margin: 28px 0;
  font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--charcoal);
}
.sign-off { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.sign-off .heart { display: inline-block; width: 24px; height: 24px; vertical-align: middle; margin-right: 6px; }
.sign-off .name { font-family: var(--font-script); font-size: 2rem; color: var(--red); }

/* checklist box */
.checklist {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 34px; margin: 36px 0; box-shadow: var(--shadow-sm);
}
.checklist h3 { color: var(--red); margin-bottom: 6px; }
.checklist .sub { color: var(--text-light); margin-bottom: 22px; font-style: italic; }
.checklist-section { margin-bottom: 22px; }
.checklist-section h4 { font-size: 1.05rem; margin-bottom: 10px; color: var(--black); display: flex; align-items: center; gap: 8px; }
.checklist-section h4 .star { color: var(--red); }
.checklist-section ul { list-style: none; padding-left: 4px; }
.checklist-section li { padding: 4px 0 4px 26px; position: relative; font-size: .96rem; }
.checklist-section li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 800; }

/* ---------- Shop / product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.product-img { aspect-ratio: 1; background: var(--cream-2); overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-body .cat { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); font-weight: 800; margin-bottom: 8px; }
.product-body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.product-body .desc { color: var(--text-light); font-size: .9rem; flex: 1; margin-bottom: 16px; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 700; color: var(--black); }
.product-price small { font-size: .8rem; color: var(--text-muted); font-weight: 400; }
.add-cart {
  background: var(--black); color: #fff; padding: 11px 18px; border-radius: 999px;
  font-weight: 700; font-size: .82rem; transition: all var(--transition); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
}
.add-cart:hover { background: var(--red); color: #fff; }
.add-cart svg { width: 16px; height: 16px; }
.add-cart.added { background: var(--green); }

/* ---------- Shopping cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(26,26,26,.5); z-index: 1100;
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 440px; max-width: 92vw;
  background: var(--cream); z-index: 1200; transform: translateX(100%);
  transition: transform var(--transition); display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.3rem; display: flex; align-items: center; gap: 10px; }
.cart-head h3 .count { background: var(--red); color: #fff; font-size: .72rem; font-family: var(--font-body); border-radius: 999px; padding: 2px 9px; }
.cart-close { font-size: 1.6rem; color: var(--text-light); line-height: 1; padding: 4px; }
.cart-close:hover { color: var(--red); }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-light); }
.cart-empty .icon { font-size: 3rem; margin-bottom: 14px; opacity: .4; }
.cart-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item:last-child { border-bottom: none; }
.cart-item img { width: 70px; height: 70px; border-radius: var(--radius-sm); object-fit: cover; background: var(--cream-2); }
.cart-item .ci-name { font-weight: 700; font-size: .92rem; line-height: 1.3; margin-bottom: 6px; }
.cart-item .ci-price { color: var(--red); font-weight: 700; font-size: .88rem; }
.qty-control { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line-strong); border-radius: 999px; overflow: hidden; margin-top: 6px; }
.qty-control button { width: 28px; height: 28px; font-size: 1.1rem; color: var(--text); background: #fff; line-height: 1; }
.qty-control button:hover { background: var(--red-soft); color: var(--red); }
.qty-control span { min-width: 32px; text-align: center; font-weight: 700; font-size: .88rem; }
.cart-item .ci-remove { color: var(--text-muted); font-size: .78rem; margin-top: 6px; display: block; }
.cart-item .ci-remove:hover { color: var(--red); }
.cart-foot { border-top: 1px solid var(--line); padding: 22px 24px; background: var(--paper); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-subtotal .lbl { font-weight: 700; color: var(--text); }
.cart-subtotal .amt { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--black); }
.cart-note { font-size: .76rem; color: var(--text-muted); text-align: center; margin-bottom: 14px; line-height: 1.5; }
.cart-foot .btn { margin-bottom: 10px; }
.cart-foot .continue { text-align: center; }
.cart-foot .continue a { font-size: .85rem; font-weight: 600; color: var(--text-light); }

/* ---------- Newsletter ---------- */
.newsletter-hero { text-align: center; padding: 80px 0 50px; }
.newsletter-form { max-width: 540px; margin: 0 auto; }
.form-row { display: flex; gap: 10px; }
.form-row input { flex: 1; }
.input, .textarea, .select {
  width: 100%; padding: 14px 18px; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); background: #fff; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,0,0,.12);
}
.textarea { min-height: 130px; resize: vertical; }
.perks { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
.perk { text-align: center; }
.perk .icon { width: 56px; height: 56px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: grid; place-items: center; margin: 0 auto 14px; font-size: 1.5rem; }
.perk h4 { font-size: 1.05rem; margin-bottom: 6px; }
.perk p { font-size: .88rem; color: var(--text-light); margin: 0; }

/* issue preview card on newsletter page */
.issue-preview {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-sm); max-width: 620px; margin: 0 auto;
}
.issue-preview .label { color: var(--red); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; margin-bottom: 10px; }
.issue-preview h3 { margin-bottom: 10px; }
.issue-preview p { color: var(--text-light); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.contact-info h3 { margin-bottom: 14px; }
.contact-info p { color: var(--text-light); margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail .icon { width: 44px; height: 44px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex-shrink: 0; }
.contact-detail .label { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-weight: 700; }
.contact-detail .value { font-weight: 700; color: var(--black); }
.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: .85rem; margin-bottom: 7px; color: var(--text); }
.form-group .req { color: var(--red); }
.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: .92rem; font-weight: 600; }
.form-msg.success { background: #e6f4ea; color: var(--green); border: 1px solid #bfe3cf; }
.form-msg.error { background: var(--red-soft); color: var(--red-deep); border: 1px solid #f0c8c8; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: var(--paper); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.08rem; color: var(--black);
}
.faq-q .toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex-shrink: 0; transition: transform var(--transition); font-size: 1.2rem; line-height: 1; }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); background: var(--red); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-a-inner { padding: 0 24px 22px; color: var(--text-light); }

/* ---------- Footer ---------- */
.footer { background: var(--taupe-darker); color: #d6ccbf; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-brand .brand-mark { box-shadow: none; }
.footer-brand .name { font-family: var(--font-serif); font-weight: 700; font-size: 1.2rem; color: #fff; }
.footer-brand .tag { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: #9a948a; font-weight: 600; }
.footer p { color: #a39d93; font-size: .92rem; margin-bottom: 18px; max-width: 320px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #b8b2a8; font-size: .92rem; }
.footer-links a:hover { color: var(--red); }
.footer-social { display: flex; gap: 12px; margin-bottom: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--taupe); display: grid; place-items: center; color: #fff; transition: all var(--transition); }
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid #333; padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: .82rem; color: #807a70; margin: 0; }
.footer-bottom .sigs { display: flex; align-items: center; gap: 10px; }
.footer-bottom .sigs img { width: 22px; height: 22px; opacity: .8; }

/* ---------- AI chat widget ---------- */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 900; }
.chat-toggle {
  display: inline-flex; align-items: center; gap: 9px; padding: 0 20px 0 16px; height: 52px;
  border-radius: 30px; background: var(--red); color: #fff; font-weight: 700; font-size: .95rem;
  letter-spacing: .01em; box-shadow: 0 8px 24px rgba(200,0,0,.4);
  transition: all var(--transition); position: relative; font-family: var(--font-display);
}
.chat-toggle:hover { transform: scale(1.04); }
.chat-toggle svg { width: 24px; height: 24px; flex-shrink: 0; }
.chat-toggle .chat-label { white-space: nowrap; }
.chat-toggle .dot { position: absolute; top: 6px; right: 6px; width: 12px; height: 12px; background: #ffd23f; border-radius: 50%; border: 2px solid var(--red); }
.chat-panel {
  position: absolute; bottom: 76px; right: 0; width: 360px; max-width: calc(100vw - 48px);
  height: 480px; background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden;
  transform: scale(.9) translateY(10px); opacity: 0; pointer-events: none;
  transition: all var(--transition); transform-origin: bottom right;
}
.chat-panel.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.chat-head { background: var(--red); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.chat-head .avatar { width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--red); display: grid; place-items: center; font-weight: 800; font-family: var(--font-serif); }
.chat-head h4 { color: #fff; font-size: 1rem; margin: 0; }
.chat-head .status { font-size: .72rem; opacity: .85; font-weight: 400; }
.chat-head .close { margin-left: auto; color: #fff; font-size: 1.3rem; line-height: 1; opacity: .85; }
.chat-head .close:hover { opacity: 1; }
.chat-body { flex: 1; overflow-y: auto; padding: 18px; background: var(--cream); }
.chat-msg { margin-bottom: 14px; max-width: 86%; }
.chat-msg.bot { }
.chat-msg.user { margin-left: auto; }
.chat-bubble { padding: 11px 15px; border-radius: 14px; font-size: .9rem; line-height: 1.5; }
.chat-msg.bot .chat-bubble { background: #fff; color: var(--text); border-bottom-left-radius: 4px; border: 1px solid var(--line); }
.chat-msg.user .chat-bubble { background: var(--red); color: #fff; border-bottom-right-radius: 4px; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.chat-chip { padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--red); color: var(--red); font-size: .78rem; font-weight: 600; transition: all var(--transition); }
.chat-chip:hover { background: var(--red); color: #fff; }
.chat-input-row { padding: 12px; border-top: 1px solid var(--line); background: var(--paper); display: flex; gap: 8px; }
.chat-input-row input { flex: 1; padding: 11px 14px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: .88rem; }
.chat-input-row input:focus { outline: none; border-color: var(--red); }
.chat-input-row button { width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.chat-input-row button:hover { background: var(--red-deep); }
.chat-typing { display: inline-flex; gap: 4px; padding: 14px 16px; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--text-muted); animation: blink 1.4s infinite both; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100% { opacity: .2; } 40% { opacity: 1; } }

/* ---------- Puzzles ---------- */
.puzzle-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.puzzle-tab { padding: 9px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line-strong); font-weight: 700; font-size: .85rem; color: var(--text); transition: all var(--transition); }
.puzzle-tab.active, .puzzle-tab:hover { background: var(--red); color: #fff; border-color: var(--red); }
.puzzle-type-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 24px; }
.puzzle-type { padding: 7px 16px; border-radius: 8px; background: var(--cream-2); font-weight: 700; font-size: .82rem; color: var(--text-light); border: 1px solid var(--line); }
.puzzle-type.active { background: var(--black); color: #fff; border-color: var(--black); }

/* crossword */
.crossword-wrap { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.crossword { display: grid; gap: 2px; background: var(--black); padding: 2px; border-radius: 4px; }
.cw-cell { width: 38px; height: 38px; background: #fff; position: relative; display: grid; place-items: center; }
.cw-cell.block { background: var(--black); }
.cw-cell input { width: 100%; height: 100%; border: none; text-align: center; text-transform: uppercase; font-weight: 700; font-size: 1.05rem; color: var(--black); background: transparent; }
.cw-cell input:focus { background: var(--red-soft); outline: 1px solid var(--red); }
.cw-cell .num { position: absolute; top: 1px; left: 3px; font-size: .55rem; color: var(--text-muted); font-weight: 700; line-height: 1; }
.cw-clues { flex: 1; min-width: 260px; max-width: 380px; }
.cw-clues h4 { margin-bottom: 12px; color: var(--red); }
.cw-clues ol { padding-left: 22px; }
.cw-clues li { padding: 5px 0; font-size: .92rem; cursor: pointer; border-bottom: 1px dashed var(--line); }
.cw-clues li:hover { color: var(--red); }
.cw-clues li .n { font-weight: 800; color: var(--black); }

/* word search */
.ws-wrap { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; align-items: flex-start; }
.ws-grid { display: grid; gap: 2px; padding: 10px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); user-select: none; }
.ws-cell { width: 34px; height: 34px; display: grid; place-items: center; font-weight: 700; font-size: .95rem; color: var(--black); background: var(--cream); border-radius: 4px; cursor: pointer; transition: background var(--transition); }
.ws-cell.selected { background: var(--red); color: #fff; }
.ws-cell.found { background: #c8e6c9; color: var(--green); }
.ws-words { min-width: 200px; max-width: 280px; }
.ws-words h4 { margin-bottom: 12px; color: var(--red); }
.ws-words ul { list-style: none; }
.ws-words li { padding: 6px 0; font-size: .92rem; font-weight: 600; border-bottom: 1px dashed var(--line); display: flex; align-items: center; gap: 8px; }
.ws-words li.found { text-decoration: line-through; color: var(--green); }
.ws-words li .check { color: var(--green); font-weight: 800; }

/* puzzle message toast */
.puzzle-msg { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--black); color: #fff; padding: 14px 24px; border-radius: var(--radius); font-weight: 600; font-size: .92rem; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: all .3s ease; z-index: 900; max-width: 90vw; text-align: center; }
.puzzle-msg.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* puzzle actions */
.puzzle-actions { display: flex; gap: 10px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.puzzle-actions .btn { font-size: .85rem; }

/* puzzle info */
.puzzle-info { max-width: 600px; margin: 0 auto 30px; text-align: center; }
.puzzle-info h3 { margin-bottom: 8px; }
.puzzle-info p { color: var(--text-light); font-style: italic; }

@media print {
  .navbar, .footer, .cart-drawer, .cart-overlay, .chat-widget, .puzzle-actions, .puzzle-type-row, .puzzle-tabs, .cta-band { display: none !important; }
  .puzzle-msg { display: none !important; }
  body { background: #fff; }
  .crossword-wrap, .ws-wrap { break-inside: avoid; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--taupe-darker); color: var(--cream); padding: 60px 0 56px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(200,0,0,.25), transparent 60%); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: #d8d2c8; max-width: 600px; margin: 0 auto; font-size: 1.08rem; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; font-size: .82rem; color: #b8b2a8; margin-bottom: 18px; }
.breadcrumb a { color: #d8d2c8; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { opacity: .5; }

/* ---------- Legal / prose pages ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin: 1.6em 0 .5em; }
.prose h3 { margin: 1.4em 0 .4em; }
.prose p { margin-bottom: 1.2em; }
.prose ul.bullet { list-style: disc; padding-left: 24px; margin-bottom: 1.2em; }
.prose ul.bullet li { margin-bottom: .5em; }
.prose .updated { color: var(--text-muted); font-size: .85rem; font-style: italic; margin-bottom: 30px; }
.prose .dropcap::first-letter { font-family: var(--font-serif); font-size: 3.4rem; float: left; line-height: .82; padding: 4px 12px 0 0; color: var(--red); font-weight: 700; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }

/* ---------- Digital business card ---------- */
.card-page { min-height: 100vh; background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%); display: flex; align-items: center; justify-content: center; padding: 30px 20px; }
.card-wrap { width: 100%; max-width: 440px; background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; text-align: center; }
.card-hero { background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%); color: #fff; padding: 40px 30px 30px; position: relative; }
.card-hero .photo { width: 130px; height: 130px; border-radius: 50%; border: 5px solid #fff; overflow: hidden; margin: 0 auto 16px; box-shadow: var(--shadow); background: #fff; }
.card-hero .photo img { width: 100%; height: 100%; object-fit: cover; }
.card-hero h1 { color: #fff; font-size: 1.7rem; margin-bottom: 4px; }
.card-hero .title { font-family: var(--font-serif); font-style: italic; opacity: .92; font-size: 1.05rem; }
.card-body { padding: 26px 26px 30px; }
.card-body .tagline { color: var(--text-light); font-style: italic; margin-bottom: 20px; font-size: .95rem; }
.card-actions { display: flex; gap: 10px; margin-bottom: 18px; }
.card-actions .btn { flex: 1; }
.card-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
.card-link { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--text); font-weight: 600; font-size: .9rem; transition: all var(--transition); }
.card-link:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.card-link .icon { width: 36px; height: 36px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex-shrink: 0; }
.card-link .icon svg { width: 18px; height: 18px; }
.card-link .meta { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.card-link .meta .l { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.card-feature { display: flex; gap: 12px; padding: 16px; border-radius: var(--radius-sm); background: var(--cream-2); margin-bottom: 10px; align-items: center; }
.card-feature .icon { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; flex-shrink: 0; font-size: 1.3rem; }
.card-feature .t { font-weight: 700; font-size: .92rem; }
.card-feature .d { font-size: .8rem; color: var(--text-light); }
.card-sig { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.card-sig img { width: 26px; height: 26px; }
.card-sig span { font-family: var(--font-script); font-size: 1.6rem; color: var(--red); }

/* about overlay (for card) */
.about-overlay { position: fixed; inset: 0; background: rgba(26,26,26,.6); z-index: 1500; display: none; align-items: center; justify-content: center; padding: 20px; }
.about-overlay.open { display: flex; }
.about-modal { background: var(--paper); border-radius: var(--radius-lg); max-width: 520px; max-height: 85vh; overflow-y: auto; padding: 34px; position: relative; box-shadow: var(--shadow-lg); }
.about-modal .close { position: absolute; top: 16px; right: 18px; font-size: 1.6rem; color: var(--text-light); line-height: 1; }
.about-modal h2 { margin-bottom: 6px; }
.about-modal .role { color: var(--red); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; margin-bottom: 18px; }
.about-modal p { color: var(--text); margin-bottom: 1.1em; font-size: .98rem; }
.about-modal .dropcap::first-letter { font-family: var(--font-serif); font-size: 3.2rem; float: left; line-height: .85; padding: 4px 10px 0 0; color: var(--red); font-weight: 700; }

/* ---------- Digital Card: Share / QR / Send / Homescreen (Debbie's palette) ---------- */

/* QR display card — shown alongside the business card, clean & independent */
.qr-display-card {
  width: 100%; max-width: 440px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: center;
  padding: 30px 26px;
}
.qr-display-card .qr-label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--red); font-weight: 700; margin-bottom: 8px;
}
.qr-display-card h3 {
  font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 6px; color: var(--black);
}
.qr-display-card .qr-sub-text {
  font-size: .88rem; color: var(--text-light); margin-bottom: 20px;
}
.qr-display-card .qr-img-box {
  background: #fff; border-radius: var(--radius); padding: 16px;
  display: inline-block; box-shadow: var(--shadow-sm); margin-bottom: 16px;
  border: 1px solid var(--line);
}
.qr-display-card .qr-img-box img {
  display: block; width: 200px; height: 200px; border-radius: 8px;
}
.qr-display-card .qr-hint-text {
  font-size: .8rem; color: var(--text-muted); font-style: italic; margin-bottom: 16px;
}
.qr-display-card .qr-dl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; background: var(--red); color: #fff;
  border-radius: var(--radius-sm); font-weight: 700; font-size: .88rem;
  text-decoration: none; transition: all .2s ease;
}
.qr-display-card .qr-dl-btn:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,0,0,.3);
}

/* Owner-only section label */
.card-section-label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--red); font-weight: 700; margin: 24px 0 12px; text-align: center;
}

/* Two-button grid: Display QR + Send Your Card */
.share-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px;
}
.share-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 10px; background: var(--cream-2);
  border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--text); font-size: .82rem; font-weight: 600;
  font-family: var(--font-body); cursor: pointer;
  transition: all .2s ease; text-align: center;
}
.share-btn:hover {
  background: var(--red-soft); border-color: var(--red);
  transform: translateY(-2px); color: var(--red);
}
.share-btn .share-icon { font-size: 26px; color: var(--red); line-height: 1; }

/* Send Card expandable menu */
.send-menu {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, margin-top .35s ease;
  display: flex; flex-direction: column; gap: 8px; margin-top: 0;
}
.send-menu.open { max-height: 260px; margin-top: 10px; }
.send-option {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 18px; background: var(--cream-2);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  text-decoration: none; color: var(--text);
  font-size: .9rem; font-weight: 500; font-family: var(--font-body);
  cursor: pointer; transition: all .2s ease; width: 100%; text-align: left;
}
.send-option:hover {
  background: var(--red-soft); border-color: var(--red);
  transform: translateX(4px); color: var(--red);
}
.send-option .send-icon { font-size: 20px; color: var(--red); width: 24px; text-align: center; flex-shrink: 0; }
.send-option .send-label { flex: 1; }
.send-option .send-arrow { color: var(--text-muted); font-size: 16px; }

/* Add to Home Screen section */
.homescreen-section { margin-top: 20px; }
.homescreen-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px; background: var(--cream-2);
  border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--text); font-size: .88rem; font-weight: 600;
  font-family: var(--font-body); cursor: pointer; transition: all .2s ease;
}
.homescreen-btn:hover {
  background: var(--red-soft); border-color: var(--red);
  transform: translateY(-2px); color: var(--red);
}
.homescreen-btn .hs-icon { font-size: 22px; }
.homescreen-tips {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, margin-top .35s ease;
}
.homescreen-tips.open { max-height: 520px; margin-top: 12px; }

/* Platform selector tabs (iPhone / Android) */
.hs-platform-tabs {
  display: flex; gap: 8px; margin-bottom: 14px;
}
.hs-tab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 10px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff;
  color: var(--muted); font-size: .82rem; font-weight: 600;
  font-family: var(--font-body); cursor: pointer; transition: all .2s ease;
}
.hs-tab:hover { border-color: var(--red); color: var(--red); }
.hs-tab.active {
  background: var(--red); border-color: var(--red); color: #fff;
  box-shadow: 0 3px 10px rgba(200,0,0,.28);
}
.hs-tab-icon { font-size: 18px; line-height: 1; }
.hs-platform-panel { animation: hsFade .25s ease; }
@keyframes hsFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.hs-step {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 14px; margin-bottom: 8px;
  background: var(--cream-2); border-radius: var(--radius-sm);
}
.hs-num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hs-step p { font-size: .82rem; color: var(--text); line-height: 1.5; margin: 0; text-align: left; }
.hs-step strong { color: var(--red); }

/* QR Code modal overlay */
.qr-overlay {
  position: fixed; inset: 0; background: rgba(26,26,26,.88);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center;
  z-index: 10000; opacity: 0; pointer-events: none;
  transition: opacity .3s ease; padding: 20px;
}
.qr-overlay.active { opacity: 1; pointer-events: auto; }
.qr-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px 28px;
  max-width: 340px; width: 100%; text-align: center;
  box-shadow: var(--shadow-lg); position: relative;
  transform: scale(.92); transition: transform .3s ease;
}
.qr-overlay.active .qr-card { transform: scale(1); }
.qr-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; color: var(--text-light);
  font-size: 28px; cursor: pointer; line-height: 1; transition: color .2s;
}
.qr-close:hover { color: var(--red); }
.qr-card h2 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--black); margin-bottom: 6px; }
.qr-sub { font-size: .85rem; color: var(--text-light); margin-bottom: 20px; }
.qr-image-wrap {
  background: #fff; border-radius: var(--radius); padding: 16px;
  display: inline-block; box-shadow: var(--shadow-sm); margin-bottom: 16px;
  border: 1px solid var(--line);
}
#qrImage { display: block; width: 240px; height: 240px; border-radius: 8px; }
.qr-hint { font-size: .78rem; color: var(--text-muted); margin-bottom: 16px; font-style: italic; }
.qr-download {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; background: var(--red); color: #fff;
  border-radius: var(--radius-sm); font-weight: 700; font-size: .88rem;
  text-decoration: none; transition: all .2s ease;
}
.qr-download:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,0,0,.3); }

/* Card layout: side-by-side on desktop, stacked on mobile */
.card-layout {
  display: flex; gap: 30px; align-items: flex-start; justify-content: center;
  flex-wrap: wrap; max-width: 940px; margin: 0 auto;
}
.card-layout .card-wrap { flex-shrink: 0; }
.card-layout .qr-display-card { flex-shrink: 0; }
@media (max-width: 960px) {
  .card-layout { flex-direction: column; align-items: center; }
}

/* ---------- Stats / banner ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 800; color: var(--red); line-height: 1; }
.stat .lbl { font-size: .82rem; color: var(--text-light); margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

/* CTA band */
.cta-band { background: var(--red); color: #fff; padding: 56px 0; text-align: center; }
.cta-band .cta-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 26px; }
.cta-band .cta-inner p { margin: 0; }
.cta-band .btn-light { background: #fff; color: var(--red); }
.cta-band .btn-light:hover { background: var(--black); color: #fff; }

/* ---------- Utility & responsive ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-2-narrow { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.hidden { display: none; }
.center { text-align: center; }
.round-img { border-radius: 50%; overflow: hidden; }
.shadow { box-shadow: var(--shadow); }
.rounded { border-radius: var(--radius); }
.fade-in { animation: fadeIn .6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .duo { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-row { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .perks { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .navbar-links {
    position: fixed; top: 74px; left: 0; right: 0; background: var(--paper);
    flex-direction: column; align-items: stretch; gap: 0; padding: 10px 0;
    box-shadow: var(--shadow); border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform var(--transition); max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .navbar-links.open { transform: translateY(0); }
  .navbar-links a { padding: 14px 24px; border-radius: 0; }
  .navbar-links a.active::after { display: none; }
  .navbar-actions .cart-btn span:not(.cart-count) { display: none; }
  .nav-toggle { display: block; }
  .story-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .issue-row { grid-template-columns: 80px 1fr; gap: 18px; }
  .issue-row .issue-actions { grid-column: 1 / -1; flex-direction: row; }
  .issue-num { width: 70px; height: 70px; }
  .issue-num .n { font-size: 1.9rem; }
  .crossword-wrap, .ws-wrap { flex-direction: column; align-items: center; }
  .cw-cell { width: 32px; height: 32px; }
  .ws-cell { width: 28px; height: 28px; font-size: .82rem; }
  .hero-badge { width: 90px; height: 90px; font-size: .72rem; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cw-cell { width: 28px; height: 28px; }
  .cw-cell input { font-size: .9rem; }
  .ws-cell { width: 24px; height: 24px; font-size: .75rem; }
  .form-row { flex-direction: column; }
  .hero-badge { display: none; }
}

/* print */
@media print {
  .navbar, .chat-widget, .cart-widget, .footer, .btn { display: none !important; }
  body { background: #fff; }
}
/* =====================================================================
   CARD SHOWCASE PAGE — Slave Card + QR Code Side by Side
   (Scoped with dcard- and showcase- prefixes to avoid conflicts)
   ===================================================================== */

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(320px, 400px) 1fr;
  gap: 48px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.showcase-card-col, .showcase-qr-col {
  display: flex;
  flex-direction: column;
}
.showcase-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
  text-align: center;
}

/* ---------- Slave Card (dcard- scoped) ---------- */
.dcard-shell {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26,26,26,.14);
  overflow: hidden;
  position: relative;
}
.dcard-hero {
  background: linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 100%);
  text-align: center;
  padding: 34px 22px 26px;
  position: relative;
}
.dcard-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: #c80000;
}
.dcard-avatar {
  width: 108px; height: 108px;
  border-radius: 50%;
  border: 4px solid #c80000;
  object-fit: cover;
  margin: 0 auto 14px;
  background: #fff;
}
.dcard-hero h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px; font-weight: 700;
  color: #fff; letter-spacing: .3px;
  margin-bottom: 3px;
}
.dcard-subtitle {
  font-size: 12px; font-weight: 600;
  color: #c80000;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px;
}
.dcard-tagline {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 13.5px; font-style: italic;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  max-width: 270px; margin: 0 auto;
}
.dcard-content { padding: 20px 18px 8px; }

/* Save to Contacts */
.dcard-save {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%;
  background: #c80000; color: #fff;
  font-size: 14.5px; font-weight: 700;
  padding: 13px 16px;
  border: none; cursor: pointer;
  border-radius: 12px;
  transition: background .22s, transform .22s;
  margin-bottom: 12px;
  font-family: inherit;
}
.dcard-save:hover { background: #a00000; transform: translateY(-1px); }
.dcard-save-icon { font-size: 18px; font-weight: 800; line-height: 1; }

/* Contact Debbie dropdown */
.dcard-contact-dd { position: relative; margin-bottom: 12px; }
.dcard-contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: #1a1a1a; color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 12px 16px;
  border: none; cursor: pointer;
  border-radius: 12px;
  transition: background .22s;
  font-family: inherit;
}
.dcard-contact-btn:hover { background: #2a2a2a; }
.sc-contact-icon { display: flex; align-items: center; color: #c80000; }
.sc-contact-label { flex: 1; text-align: left; }
.sc-contact-caret { font-size: 10px; color: rgba(255,255,255,.7); transition: transform .22s; }
.dcard-contact-menu {
  max-height: 0; overflow: hidden;
  transition: max-height .22s, margin .22s;
  background: #fff;
  border: 1px solid #e3ddd3;
  border-radius: 12px;
  margin-top: 0;
}
.dcard-contact-menu.open {
  max-height: 240px;
  margin-top: 8px;
  box-shadow: 0 8px 22px rgba(26,26,26,.10);
}
.sc-contact-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid #e3ddd3;
  transition: background .22s;
}
.sc-contact-opt:last-child { border-bottom: none; }
.sc-contact-opt:hover { background: #f0ede8; }
.sc-co-icon { display: flex; align-items: center; color: #c80000; flex-shrink: 0; }
.sc-co-text { display: flex; flex-direction: column; min-width: 0; }
.sc-co-title { font-size: 13.5px; font-weight: 700; color: #1a1a1a; }
.sc-co-detail { font-size: 11.5px; color: #666; }

/* About Debbie button */
.dcard-about {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%;
  background: linear-gradient(135deg, #c80000 0%, #a00000 100%);
  color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 12px 16px;
  border: none; cursor: pointer;
  border-radius: 12px;
  margin-bottom: 14px;
  transition: background .22s, transform .22s, box-shadow .22s;
  font-family: inherit;
}
.dcard-about:hover { background: linear-gradient(135deg, #a00000 0%, #7a0000 100%); transform: translateY(-1px); box-shadow: 0 5px 16px rgba(200,0,0,.22); }

/* Quick-link grid */
.dcard-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.dcard-quick {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 12px 6px;
  background: #f0ede8;
  border: 1.5px solid transparent;
  border-radius: 12px;
  transition: all .22s;
  text-align: center;
}
.dcard-quick:hover {
  border-color: #c80000; background: #fff;
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,0,0,.08);
}
.dq-icon { display: flex; align-items: center; color: #1a1a1a; }
.dcard-quick:hover .dq-icon { color: #c80000; }
.dq-label { font-size: 11.5px; font-weight: 600; color: #1a1a1a; }

/* Feature buttons */
.dcard-feature {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f0ede8;
  border: 1.5px solid transparent;
  transition: all .22s;
  margin-bottom: 10px;
}
.dcard-feature:hover {
  border-color: #c80000; background: #fff;
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,0,0,.08);
}
.df-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.df-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.df-title { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.df-sub { font-size: 11.5px; color: #666; line-height: 1.4; }
.dcard-feature.dcard-feature-red {
  background: linear-gradient(135deg, #c80000 0%, #a00000 100%);
  border: none;
}
.dcard-feature.dcard-feature-red:hover {
  background: linear-gradient(135deg, #a00000 0%, #7a0000 100%);
  box-shadow: 0 6px 18px rgba(200,0,0,.25); transform: translateY(-1px);
}
.dcard-feature.dcard-feature-red .df-title,
.dcard-feature.dcard-feature-red .df-sub { color: #fff; }

/* Signature */
.dcard-sig {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 0 4px;
  margin-top: 6px;
  border-top: 1px solid #e3ddd3;
}
.dcard-sig img { width: 22px; height: 22px; object-fit: contain; }
.dcard-sig span {
  font-family: "Tangerine", "Brush Script MT", cursive;
  font-size: 22px; font-weight: 700;
  color: #c80000;
}

/* Card footer */
.dcard-footer {
  text-align: center;
  padding: 14px 20px 18px;
  font-size: 10.5px;
  color: #8a8a8a;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  border-top: 1px solid #e3ddd3;
}

/* ---------- QR Code Showcase Panel ---------- */
.qr-showcase-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26,26,26,.14);
  padding: 36px 32px 32px;
  text-align: center;
  position: relative;
  max-width: 440px;
}
.qr-showcase-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, #c80000 0%, #a00000 100%);
  border-radius: 20px 20px 0 0;
}
.qr-showcase-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem; font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.qr-showcase-sub {
  font-size: .92rem; color: #666;
  margin-bottom: 24px; line-height: 1.55;
}
.qr-showcase-img-box {
  display: flex; justify-content: center;
  margin-bottom: 14px;
}
.qr-showcase-img-box img {
  width: 220px; height: 220px;
  border-radius: 10px;
  border: 1px solid #e3ddd3;
  background: #fff;
}
.qr-showcase-hint {
  font-size: .82rem; color: #8a8a8a;
  margin-bottom: 18px;
}
.qr-showcase-dl {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px;
  background: #c80000; color: #fff;
  font-size: .9rem; font-weight: 600;
  border-radius: 12px;
  transition: background .22s, transform .22s;
}
.qr-showcase-dl:hover { background: #a00000; transform: translateY(-1px); }

/* Divider + link to card */
.qr-showcase-divider {
  height: 1px;
  background: #e3ddd3;
  margin: 28px 0 24px;
}
.qr-showcase-link-label {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 14px;
}
.qr-showcase-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
  font-size: 1rem; font-weight: 600;
  border-radius: 12px;
  transition: transform .22s, box-shadow .22s;
}
.qr-showcase-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,26,26,.25);
}
.ql-icon { display: flex; align-items: center; color: #c80000; }
.ql-text { font-family: "Playfair Display", Georgia, serif; }
.ql-arrow { font-size: 1.1rem; color: rgba(255,255,255,.6); }

/* ---------- About Debbie overlay (sc- scoped) ---------- */
.sc-about-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.sc-about-overlay.open { display: flex; }
.sc-about-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 440px; width: 100%;
  max-height: 86vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
  position: relative;
}
.sc-about-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff; font-size: 20px;
  border: none; cursor: pointer;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background .22s;
}
.sc-about-close:hover { background: #c80000; }
.sc-about-header {
  background: linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 20px 20px 0 0;
  padding: 28px 24px 22px;
  text-align: center;
  position: relative;
}
.sc-about-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: #c80000;
}
.sc-about-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 3px solid #c80000;
  object-fit: cover;
  margin: 0 auto 12px;
  background: #fff;
}
.sc-about-header h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px; font-weight: 700; color: #fff;
  margin-bottom: 4px;
}
.sc-about-role {
  font-size: 11px; font-weight: 600;
  color: #c80000;
  letter-spacing: 2px; text-transform: uppercase;
}
.sc-about-body { padding: 26px 26px 30px; }
.sc-about-body p {
  font-size: 14.5px; line-height: 1.7;
  color: #333; margin-bottom: 14px;
}
.sc-about-body p.sc-dropcap::first-letter {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px; font-weight: 700;
  color: #c80000;
  float: left; line-height: 1;
  margin: 3px 7px 0 0;
}
.sc-about-sig {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid #e3ddd3;
}
.sc-about-sig img { width: 22px; height: 22px; object-fit: contain; }
.sc-about-sig span {
  font-family: "Tangerine", "Brush Script MT", cursive;
  font-size: 24px; font-weight: 700;
  color: #c80000;
}

/* ---------- Responsive: stack vertically on mobile ---------- */
@media (max-width: 820px) {
  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showcase-qr-col { order: 2; }
  .qr-showcase-card { margin: 0 auto; }
}
@media (max-width: 480px) {
  .dcard-content { padding: 18px 14px 8px; }
  .dcard-avatar { width: 96px; height: 96px; }
  .dcard-hero h2 { font-size: 24px; }
  .qr-showcase-card { padding: 28px 20px 24px; }
  .qr-showcase-img-box img { width: 180px; height: 180px; }
  .qr-showcase-link { font-size: .9rem; padding: 12px 18px; }
}
