/* Loader boot — style cho #initial-loader trong index.html: chỉ logo nằm giữa màn hình.
   Đồng bộ giá trị với .loading-shell trong src/scss/loading-page.scss —
   sửa kích thước/màu thì sửa cả hai nơi. Để ở file CSS thật (không inline <style>)
   vì vite-plugin-node-polyfills parse nhầm inline style thành JS gây warning. */

#initial-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* logo-mau.svg đã crop hết padding trong suốt — kích thước do CSS kiểm soát thật.
   Co giãn theo viewport, chặn 150px (mobile) – 280px (desktop). */
#initial-loader img {
    width: clamp(150px, 25vw, 280px);
}
