/* =========================================================================
   MoshTee design tokens
   Source of truth: projects/moshtee/brand.md

   ACCENT DISCIPLINE - blood is a scalpel.
   Permitted: badges, underlines, buttons, progress fill, focus rings, hover.
   FORBIDDEN: as a section background, and as body text.

   Measured contrast on --mt-ink (WCAG AA needs 4.5:1 text / 3:1 non-text):
     bone  on ink  16.22  pass
     blood on ink   2.51  FAILS EVEN 3:1  -> never a text colour
     steel on ink   3.88  fails 4.5:1     -> rules and borders only
     bone  on blood 6.46  pass            -> blood works as a FILL
   Use --mt-steel-text (5.73:1) for secondary type, never --mt-steel.
   ========================================================================= */
:root{
  --mt-ink:#0A0A0A;
  --mt-ink-raised:#141414;
  --mt-ink-sunk:#050505;

  --mt-bone:#EDE8DF;
  --mt-bone-dim:rgba(237,232,223,.66);
  --mt-steel-text:#8A8A8A;

  --mt-blood:#A3121F;
  --mt-blood-hover:#8C0F1A;

  --mt-steel:#6E6E6E;
  --mt-hairline:rgba(237,232,223,.12);
  --mt-hairline-strong:rgba(237,232,223,.30);
  --mt-radius:0;

  --mt-fs-eyebrow:13px;
  --mt-ls-eyebrow:.28em;
  --mt-fs-body:16px;
  --mt-fs-small:14px;
  --mt-fs-h2:clamp(24px,3.4vw,32px);
  --mt-fs-h1:clamp(38px,7vw,76px);

  --mt-space-1:4px;
  --mt-space-2:8px;
  --mt-space-3:12px;
  --mt-space-4:16px;
  --mt-space-5:24px;
  --mt-space-6:32px;
  --mt-space-7:48px;
  --mt-space-8:64px;
  --mt-container:1200px;
  --mt-band-pad:clamp(56px,8vw,96px);

  --mt-dur-fast:150ms;
  --mt-dur:250ms;
  --mt-ease:cubic-bezier(.2,.6,.2,1);
}

/* -------------------------------------------------------------------------
   Contrast repairs against the generated style.css.
   That sheet sets the loop price to blood (#A3121F) at 2.51:1 on ink. Blood is
   a fill colour, not a text colour, so the price goes bone. Do not "fix" this
   by lightening blood - that breaks the accent discipline in brand.md.
   ------------------------------------------------------------------------- */
body.dark-mode .product-item .price .amount,
body.dark-mode .product-item.style-1 .price .amount,
body.dark-mode .product-item.style-2 .price .amount,
.product-item .price .amount{
  color:var(--mt-bone) !important;
}

/* Secondary type was #6E6E6E at 3.88:1. Lift to the 5.73:1 token. */
.mt-legal-bar,
.mt-legal-bar div{
  color:var(--mt-steel-text) !important;
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    transition-duration:.01ms !important;
  }
}
