/* =========================================================
   TraceMi – Main CSS entry point
   Imports all CSS modules in the correct cascade order.
   To add a new module, create the file and add an @import
   here in the appropriate position.
   ========================================================= */

/* 1. Design tokens – must come first so all variables are defined */
@import "variables.css";

/* 2. Reset & global element defaults */
/* Import the canonical full base.css from /assets to avoid duplication. */
@import url("../base.css");

/* 3. Page-level layout structures */
@import "layout.css";

/* 4. Reusable UI components */
@import "components.css";

/* 5. Page-specific styles */
@import "pages/my-items.css";

/* 6. Utility helper classes */
@import "utilities.css";

/* 7. Responsive overrides – must come last so they win the cascade */
@import "responsive.css";
