/* Powłoka startowa: gość na łączu komórkowym widział biel do czasu pobrania
   i sparsowania paczki JS. Osobny, mały arkusz (nie inline <style>): CSP
   gardendostawa.pl ma `style-src 'self'` bez 'unsafe-inline' — inline'owy blok
   był blokowany na produkcji i powłoka nie działała. Plik jest ładowany
   blokująco w <head>, więc nadal działa przed CSS-em z bundla. */
:root { color-scheme: light; }
html, body { margin: 0; min-height: 100%; background: #faf7f0; color: #26302b; }
body { font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif; }
.gd-startup {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  box-sizing: border-box;
}
.gd-startup__logo { width: 64px; height: 64px; }
.gd-startup__title { margin: 0; font-size: 1.5rem; font-weight: 700; }
.gd-startup__message { margin: 0; color: #6b7770; }
.gd-startup__spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #e0d8c8;
  border-top-color: #1f6d52;
  border-radius: 50%;
  animation: gd-startup-spin 0.8s linear infinite;
}
@keyframes gd-startup-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .gd-startup__spinner { animation-duration: 1.8s; } }
