
:root {
  --off-white: #faf9f7;
  --cream: #faf9f7;
  --cream-warm: #f4f1ec;
  --sand: #e8e3db;
  --accent: #b8866b;
  --accent-light: #d4a98a;
  --accent-dark: #96684e;
  --charcoal: #2d2d2d;
  --charcoal-light: #404040;
  --charcoal-dark: #1a1a1a;
  --text: #2d2d2d;
  --text-secondary: #6b6560;
  --text-light: #9a928a;
  --text-muted: #9a928a;
  --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Products Listing ===== */
.section { max-width: 900px; margin: 0 auto; padding: 48px 20px; }
.section h2 { font-size: 1.3rem; color: var(--charcoal); margin-bottom: 24px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); font-weight: 500; }
.section > p { margin-bottom: 16px; color: var(--text-secondary); }
.cat-title { font-size: 1.1rem; color: var(--accent); margin: 32px 0 16px; padding-left: 12px; border-left: 4px solid var(--accent); font-weight: 500; }
.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-bottom: 16px; }
.product { background: #fff; border-radius: 8px; padding: 24px; border: 1px solid var(--sand); transition: box-shadow var(--transition); }
.product:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.product { cursor: default; }
.product h3 { font-size: 0.95rem; color: var(--charcoal); margin-bottom: 8px; font-weight: 500; }
.product h3 a { color: var(--charcoal); }
.product h3 a:hover { color: var(--accent); }
.product p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.8; }
.product .price { font-size: 1.1rem; color: var(--accent); font-weight: 600; margin-top: 12px; }
.product .price small { font-size: 0.7rem; color: var(--text-secondary); font-weight: normal; }
.product .specs { margin-top: 8px; font-size: 0.75rem; color: var(--text-secondary); }
.product .specs span { display: inline-block; background: var(--cream); padding: 2px 8px; border-radius: 10px; margin: 2px; cursor: default; }
.buy-btn { display: inline-block; background: var(--accent); color: #fff; padding: 8px 20px; border-radius: 6px; font-size: 0.8rem; font-weight: 500; margin-top: 12px; transition: background var(--transition); }
.buy-btn:hover { background: var(--accent-dark); color: #fff; text-decoration: none; }
.detail-btn { display: inline-block; background: var(--charcoal); color: var(--cream); padding: 8px 20px; border-radius: 6px; font-size: 0.8rem; font-weight: 500; margin-top: 12px; transition: background var(--transition); }
.detail-btn:hover { background: var(--charcoal-light); text-decoration: none; }
.furusato { background: var(--charcoal-dark); color: var(--cream); border-radius: 12px; padding: 32px; margin: 32px 0; }
.furusato h2 { color: var(--accent); border-bottom-color: var(--accent); }
.furusato p { color: rgba(255,255,255,0.6); }
.furusato-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 16px; }
.furusato-item { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 20px; cursor: default; }
.furusato-item h3 { font-size: 0.9rem; color: var(--accent-light); margin-bottom: 4px; font-weight: 500; }
.furusato-item .amount { font-size: 1rem; color: #fff; margin-top: 8px; }
.photo-banner { display: flex; gap: 0; overflow: hidden; height: 200px; margin-top: 64px; }
.photo-banner img { flex: 1; object-fit: cover; min-width: 0; }

@media (max-width: 768px) {
  .photo-banner { height: 140px; }
  .photo-banner img:nth-child(3) { display: none; }
  .section { padding-top: 24px; }
}
