/* [project]/app/globals.css [app-client] (css) */
:root {
  --red: #c00;
  --ink: #1d1d1f;
  --muted: #6b6b70;
  --line: #e4e4e7;
  --bg: #f6f6f7;
  --card: #fff;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  font: 16px / 1.5 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

a {
  color: inherit;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.preview-bar {
  color: #6b5200;
  text-align: center;
  background: #fff4cc;
  padding: 4px 16px;
  font-size: 13px;
}

.site-header {
  background: var(--red);
  color: #fff;
}

.header-inner {
  justify-content: space-between;
  align-items: center;
  height: 60px;
  display: flex;
}

.brand {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand span {
  opacity: .8;
  font-weight: 400;
}

.site-header nav {
  gap: 20px;
  font-size: 14px;
  display: flex;
}

.site-header nav a {
  opacity: .9;
  text-decoration: none;
}

.site-header nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

main {
  min-height: 60vh;
  padding-top: 32px;
  padding-bottom: 48px;
}

h1 {
  margin: 0 0 24px;
  font-size: 32px;
}

h2 {
  margin: 32px 0 16px;
  font-size: 20px;
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

.eyebrow {
  color: var(--red);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.badge {
  color: #6b5200;
  vertical-align: middle;
  background: #fff4cc;
  border-radius: 999px;
  margin-left: 8px;
  padding: 1px 8px;
  font-size: 12px;
  display: inline-block;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.page-list {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.page-card {
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  text-decoration: none;
  transition: border-color .15s;
  display: flex;
}

.page-card:hover {
  border-color: var(--red);
}

.page-card strong {
  font-size: 18px;
}

.breadcrumb {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 14px;
}

.hero {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  border-radius: 12px;
  padding: 28px;
}

.hero .eyebrow {
  display: block;
}

.hero h1 {
  margin: 4px 0 0;
  display: inline;
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.product-card {
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  display: flex;
}

.product-image {
  aspect-ratio: 1;
  background: var(--bg);
  color: #c9c9ce;
  border-radius: 8px;
  place-items: center;
  margin-bottom: 6px;
  font-size: 48px;
  font-weight: 800;
  display: grid;
  overflow: hidden;
}

.product-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.product-card code {
  color: var(--muted);
  word-break: break-all;
  font-size: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 16px;
  font-size: 13px;
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/