/* ===== STYLE 6 – Indie Bookstore System ===== */

:root {
  --bg: #f5f1e8;          /* warm cream */
  --text: #1f1f1f;        /* soft black */
  --accent: #c0392b;      /* Bloodsucker red (default) */
  --accent-soft: rgba(192, 57, 43, 0.12);
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  font-size: 18px;
}
