/*
 * theme.css - Centrobruk child theme entry point (GLOBAL)
 *
 * Loaduje sie NA KAZDEJ STRONIE (przez theme.yml: assets.css.all):
 *   1. _hummingbird.css  - kopia parent theme (baseline ~365kb)
 *   2. custom/_variables - brand colors + spacings
 *   3. custom/_header    - topbar, header, mega menu
 *   4. custom/_footer    - stopka
 *
 * Per-page CSS (_home.css / _product.css / _cart.css / _category.css) jest
 * zarejestrowane w config/theme.yml z page-specific keys (index/product/cart/etc),
 * PS laduje TYLKO na odpowiadajacych stronach - performance win.
 *
 * Zasada: custom/* OVERRIDE hummingbird (po baseline, wyzsza specyficznosc).
 */

@import url('./_hummingbird.css');
@import url('./custom/_variables.css');
@import url('./custom/_header.css');
@import url('./custom/_footer.css');
