/* MSBS Cart colour palette: Tech Blue — 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: #0071e3;
  --brand-dark: #0058b1;
  --brand-tint: #e6f1fc;
  --brand-ink: #ffffff;
  --brand-dark-ink: #ffffff;
  --accent: #f56300;
  --accent-ink: #212529;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --surface: #f5f5f7;
  --card-bg: #ffffff;
  --body-bg: #ffffff;
  --line: #e8e8ed;
  --line-soft: #f2f2f5;
  --header-bg: rgba(255, 255, 255, .8);
  --mark-bg: #fde8d2;
}

html[data-theme="dark"] {
  --brand: #3d9eff;
  --brand-dark: #3486d9;
  --brand-tint: #112c47;
  --brand-ink: #212529;
  --brand-dark-ink: #212529;
  --accent: #ff8b3d;
  --accent-ink: #212529;
  --ink: #f5f5f7;
  --muted: #86868b;
  --surface: #1d1d1f;
  --card-bg: #161617;
  --body-bg: #000000;
  --line: #2c2c2e;
  --line-soft: #232325;
  --header-bg: rgba(0, 0, 0, .8);
  --mark-bg: #5c3a16;
}
