/*
 * OPTIMIZATION NOTE (2026-07-28):
 * bootstrap.min.css and slick.css were REMOVED from here because @import
 * makes the browser fetch them AGAIN, serially, blocking first paint --
 * even though head.blade.php already links both files directly.
 * That was 2 duplicate, render-blocking downloads on every single page.
 *
 * The remaining files below are still loaded via @import, which is still
 * not ideal (each @import is a separate serial request that blocks
 * rendering until it resolves). For a bigger win, concatenate
 * style.css + header.css + home.css + product.css + media.css into this
 * file directly (or build them with Laravel Mix/Vite) instead of
 * @import-ing them. Left as @import here so nothing breaks without a
 * build step, but this is the next thing to fix.
 */
@import url('./style.css');
@import url('./header.css');
@import url('./home.css');
@import url('./product.css');
@import url('./media.css');