.storefront-booting {
  --seo-primary: #5f2688;
  --seo-primary-strong: #481c71;
  --seo-soft: #f3e9f8;
  --seo-border: #e1cee9;
}

[data-storefront-theme='emerald'] {
  --seo-primary: #047857;
  --seo-primary-strong: #065f46;
  --seo-soft: #ecfdf5;
  --seo-border: #a7f3d0;
}

[data-storefront-theme='ocean'] {
  --seo-primary: #075985;
  --seo-primary-strong: #0c4a6e;
  --seo-soft: #f0f9ff;
  --seo-border: #bae6fd;
}

[data-storefront-theme='berry'] {
  --seo-primary: #9d174d;
  --seo-primary-strong: #831843;
  --seo-soft: #fdf2f8;
  --seo-border: #fbcfe8;
}

[data-storefront-theme='terracotta'] {
  --seo-primary: #9a3412;
  --seo-primary-strong: #7c2d12;
  --seo-soft: #fff7ed;
  --seo-border: #fed7aa;
}

[data-storefront-theme='graphite'] {
  --seo-primary: #334155;
  --seo-primary-strong: #1e293b;
  --seo-soft: #f8fafc;
  --seo-border: #cbd5e1;
}

.storefront-booting body {
  margin: 0;
}

.storefront-booting #root {
  display: grid;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: linear-gradient(180deg, var(--seo-soft), #fff 24rem);
  place-items: center;
}

.storefront-booting #root::before {
  width: 2.75rem;
  height: 2.75rem;
  border: 0.25rem solid var(--seo-border);
  border-top-color: var(--seo-primary);
  border-radius: 50%;
  animation: storefront-boot-spin 700ms linear infinite;
  content: '';
}

.storefront-booting #root > * {
  display: none;
}

@keyframes storefront-boot-spin {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-reduced-motion: reduce) {
  .storefront-booting #root::before {
    animation: none;
    border-color: var(--seo-primary);
  }
}

.seo-shell {
  max-width: 1200px;
  margin: auto;
  padding: 24px;
  color: #211b24;
  font:
    16px/1.5 system-ui,
    sans-serif;
}

.seo-shell a {
  color: var(--seo-primary, #5f2688);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.seo-card {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--seo-border, #eadff0);
  border-radius: 18px;
}

.seo-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.seo-price {
  color: var(--seo-primary-strong, #68249a);
  font-size: 1.25rem;
  font-weight: 750;
}

.seo-breadcrumbs {
  margin-bottom: 20px;
}

.seo-description {
  max-width: 72ch;
}
