/* MSBS Cart colour palette: Electric Volt — colours only (light + dark mode),
   independent of the theme/layout. Loads after store.css; the admin's own
   custom colours (Settings → Colours → Custom) replace this entirely. */
:root {
  --brand: #7c3aed;
  --brand-dark: #612db9;
  --brand-tint: #f2ebfd;
  --brand-ink: #ffffff;
  --brand-dark-ink: #ffffff;
  --accent: #a3e635;
  --accent-ink: #212529;
  --surface: #f4f4f8;
  --line: #e4e4ee;
  --line-soft: #ededf4;
  --mark-bg: #e6f7c3;
}

html[data-theme="dark"] {
  --brand: #9b69f1;
  --brand-dark: #8459cd;
  --brand-tint: #2b1d43;
  --brand-ink: #ffffff;
  --brand-dark-ink: #ffffff;
  --accent: #b9ec62;
  --accent-ink: #212529;
  --ink: #e8e6f2;
  --muted: #9793ab;
  --surface: #14121e;
  --card-bg: #0f0d17;
  --body-bg: #0a0910;
  --line: #262138;
  --line-soft: #1c1830;
  --header-bg: rgba(10, 9, 16, .94);
  --mark-bg: #3f5215;
}
