18 lines
605 B
CSS
18 lines
605 B
CSS
|
|
/* Shop CSS — hand-written, zero-framework stylesheet.
|
||
|
|
Layered cascade: later layers beat earlier ones, no !important needed.
|
||
|
|
|
||
|
|
This file runs alongside app-shop.css during migration (Phases 1-4).
|
||
|
|
After Phase 5 it replaces app-shop.css entirely. */
|
||
|
|
|
||
|
|
@layer reset, primitives, tokens, components, layout, utilities, overrides;
|
||
|
|
|
||
|
|
@import "./shop/reset.css";
|
||
|
|
|
||
|
|
/* Theme primitives and tokens stay in their existing files.
|
||
|
|
They'll be wrapped in @layer during Phase 1. */
|
||
|
|
|
||
|
|
@import "./shop/components.css";
|
||
|
|
@import "./shop/layout.css";
|
||
|
|
@import "./shop/utilities.css";
|
||
|
|
@import "./shop/overrides.css";
|