:root {
  --bg: #0e0e0e;
  --ink: #f2efe8;
  --sub: #9a9691;
  --accent: #c81e14;
  --line: #2a2a2a;
  --card: #161616;
}

* { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  margin: 0;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
}

header .logo {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 18px;
}

header nav a {
  color: var(--ink);
  text-decoration: none;
  margin-left: 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

#cart-count {
  color: var(--accent);
  font-weight: 700;
}

.hero {
  padding: 100px 24px 80px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero .tagline {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0 0 24px;
}

.hero .story {
  color: var(--sub);
  font-size: 14px;
  line-height: 1.9;
  text-align: left;
  white-space: pre-line;
}

.products {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.product-card .image {
  aspect-ratio: 1;
  background: #1c1c1c center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 12px;
}

.product-card .info {
  padding: 14px 16px 18px;
}

.product-card .name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

.product-card .price {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 24px;
  text-align: center;
  color: var(--sub);
  font-size: 12px;
}
