/* Minimal placeholder styling. Tokens-only per CLAUDE.md law 7 wherever
   styling exists: real color/spacing/typography values come from
   tenant_design_config.token_overrides (injected as CSS custom properties
   per page, see lib/render.mjs), never hardcoded here beyond structural
   layout. This is a build-time asset, copied as-is into dist/assets/. */

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: #1a1a1a;
  background: #fff;
}
.site-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.site-brand {
  font-weight: 700;
  text-decoration: none;
  color: var(--color-brand-primary, #1a1a1a);
}
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem;
}
.hero h1 { color: var(--color-brand-primary, #1a1a1a); }
.category-nav ul, .product-grid ul, .channel-badges {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.product-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}
.price-compare-at {
  color: #6a6a6a;
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.price-live {
  font-weight: 600;
}
.channel-badge {
  border: 1px solid var(--color-brand-accent, #ccc);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
}
.cart-widget--fallback {
  color: #6a6a6a;
  font-style: italic;
}
.site-footer {
  padding: 1rem 1.5rem;
  color: #6a6a6a;
  font-size: 0.85rem;
  border-top: 1px solid #e5e5e5;
}
