/* Pre-JS shell only: cannot override the React/theme loaders. */
[data-boot-loading] {
  min-height: 100svh;
  box-sizing: border-box;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #fcfaf5;
  color: #17130e;
  font-family: 'Kalameh', system-ui, sans-serif;
  text-align: center;
}
[data-boot-loading] .gs-loading-emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  border: 1px solid #ede6d9;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 40px #9a6a1c0a;
}
[data-boot-loading] .gs-loading-emblem::before,
[data-boot-loading] .gs-loading-emblem::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid #9a6a1c;
  border-radius: 50%;
  opacity: .12;
}
[data-boot-loading] .gs-loading-emblem::after { inset: -22px; opacity: .05; }
[data-boot-loading] .gs-loading-emblem img { width: 52px; height: 52px; }
[data-boot-loading] p { margin: 0; font-size: .9375rem; line-height: 1.8; color: #6b6155; }
[data-boot-loading] .gs-loading-track { display: block; width: 88px; height: 3px; overflow: hidden; border-radius: 99px; background: #ede6d9; }
[data-boot-loading] .gs-loading-track i { display: block; width: 40%; height: 100%; border-radius: inherit; background: #9a6a1c; }
@keyframes boot-breathe { 50% { transform: translateY(-3px); } }
@keyframes boot-travel { from { transform: translateX(220%); } to { transform: translateX(-110%); } }
@media (prefers-reduced-motion: no-preference) {
  [data-boot-loading] .gs-loading-emblem img { animation: boot-breathe 2.6s ease-in-out infinite; }
  [data-boot-loading] .gs-loading-track i { animation: boot-travel 1.7s ease-in-out infinite; }
}
