/*
 * Beyond Lines — replacement for the CSS custom properties that the original
 * Shopify theme injected via snippets/css-variables.liquid from theme settings.
 * Values mirror the store's real settings_schema defaults:
 *   type_primary_font = work_sans_n4  -> "Work Sans"
 *   max_page_width    = 90rem
 *   min_page_margin   = 20px
 * Colors are forced to the dark editorial base (the storefront ran dark, and
 * the real design tokens in beyond-lines.css override on top of these).
 */
:root {
  --font-primary--family: "Work Sans";
  --font-primary--style: normal;
  --font-primary--weight: 400;
  --page-width: 90rem;
  --page-margin: 20px;
  --color-background: #0c0c0d;
  --color-foreground: #f5f1e8;
  --style-border-radius-inputs: 4px;
}
