:root {
  --cream: #F7F4EC;
  --white: #FFFEFA;
  --beige: #F0EDE2;
  --green-dark: #3E4A36;
  --terracotta: #A8643C;
  --text-sub: #8C8577;
  --text-faint: #A09A8C;
  --border: #E8E2D4;
  --serif: Georgia, "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: -apple-system, "Hiragino Sans", "Yu Gothic", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--serif);
  color: var(--green-dark);
  line-height: 1.7;
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }

/* ヘッダー */
.site-header { text-align: center; padding: 64px 24px 8px; }
.wordmark { font-size: 32px; font-weight: normal; letter-spacing: 1px; }

/* プロダクト一覧 */
.products { flex: 1; padding: 32px 24px 64px; }
.product-grid {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  max-width: 720px; margin: 0 auto;
}

.product-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; width: 260px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s, box-shadow 0.15s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); }

.product-thumb {
  background: linear-gradient(160deg, #F2EFE6, #EAE9DC);
  padding: 26px 0; display: flex; align-items: center; justify-content: center;
}
.product-thumb img { width: 88px; height: 88px; border-radius: 20px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10); }

.product-body { padding: 18px 20px 20px; }
.product-name { font-size: 20px; font-weight: normal; }
.product-desc { font-size: 13px; color: var(--text-sub); margin-top: 6px; }
.product-badge {
  display: inline-block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.5px;
  color: var(--terracotta); background: var(--beige); border-radius: 10px; padding: 3px 10px; margin-top: 12px;
}
.product-link { font-size: 13px; color: var(--terracotta); margin-top: 12px; }

/* 「今後追加」プレースホルダー */
.product-card.is-tbd {
  border: 2px dashed #C9C2B0; background: transparent; box-shadow: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-faint); min-height: 248px; cursor: default;
}
.product-card.is-tbd:hover { transform: none; box-shadow: none; }
.tbd-mark { font-size: 34px; }
.tbd-label { font-size: 13px; margin-top: 8px; }

/* フッター */
.site-footer { text-align: center; padding: 24px; }
.site-footer p { font-size: 12px; color: var(--text-faint); }

/* レスポンシブ（モバイル） */
@media (max-width: 640px) {
  .wordmark { font-size: 26px; }
  .product-grid { flex-direction: column; align-items: center; }
  .product-card { width: 100%; max-width: 300px; }
}
