/* MSBS Cart colour palette: Sunset Orange — 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: #e85d04;
  --brand-dark: #b54903;
  --brand-tint: #fdefe6;
  --brand-ink: #ffffff;
  --brand-dark-ink: #ffffff;
  --accent: #ffba08;
  --accent-ink: #212529;
  --ink: #2b2118;
  --muted: #7d6f61;
  --surface: #faf5ef;
  --card-bg: #fffdfa;
  --body-bg: #fffcf8;
  --line: #f0e6da;
  --line-soft: #f6efe6;
  --header-bg: rgba(255, 252, 248, .94);
  --mark-bg: #ffe9b3;
}

html[data-theme="dark"] {
  --brand: #fc8840;
  --brand-dark: #d67436;
  --brand-tint: #472612;
  --brand-ink: #ffffff;
  --brand-dark-ink: #ffffff;
  --accent: #ffc83d;
  --accent-ink: #212529;
  --ink: #f2e9e1;
  --muted: #b09c8c;
  --surface: #241a12;
  --card-bg: #1c140d;
  --body-bg: #140e09;
  --line: #3a2b1e;
  --line-soft: #2d2117;
  --header-bg: rgba(20, 14, 9, .92);
  --mark-bg: #6b4a15;
}
