/** Shopify CDN: Minification failed

Line 25:14 Expected identifier but found whitespace
Line 25:16 Unexpected "{"
Line 25:26 Expected ":"
Line 26:10 Expected identifier but found whitespace
Line 26:12 Unexpected "{"
Line 26:22 Expected ":"
Line 27:12 Expected identifier but found whitespace
Line 27:14 Unexpected "{"
Line 27:24 Expected ":"
Line 28:13 Expected identifier but found whitespace
... and 5 more hidden warnings

**/
:root {
  /* Fonts — names match @font-face declarations in theme.liquid */
  --n-font-body: "Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --n-font-heading: "Editorial", Georgia, serif;
  --n-font-mono: "Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --n-font-pro: "Pro", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  /* Colors */
  --n-bg: #FFFAEA;
  --n-surface: {{ settings.n_surface }};
  --n-ink: {{ settings.n_ink }};
  --n-green: {{ settings.n_green }};
  --n-border: {{ settings.n_border }};
  --n-announce-bg: {{ settings.n_announce_bg }};

  /* Radius */
  --n-r-sm: 12px;
  --n-r-md: 18px;
  --n-r-lg: 999px;

  /* Spacing scale */
  --n-space-0: 0px;
  --n-space-1: 8px;
  --n-space-2: 12px;
  --n-space-3: 16px;
  --n-space-4: 20px;
  --n-space-5: 24px;
  --n-space-6: 32px;
  --n-space-7: 40px;

  /* Header controls */
  --n-header-pad-y: 14px;
  --n-header-pad-x: 16px;
  --n-iconbtn-size: 56px;
}

body {
  font-family: var(--n-font-body);
  background: var(--n-bg);
  color: var(--n-ink);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--n-font-heading);
}