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

:root {
  --cream: #FBF8F3;
  --dark: #3A2210;
  --brown: #7A4A2E;
  --gold: #C4845A;
  --mid: #9B7B68;
  --light: #EEE2D4;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 150, 110, 0.2);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--dark);
  text-decoration: none;
}
.nav-back {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .3s;
}
.nav-back:hover { color: var(--gold); }
.nav-back::before { content: '←'; }

/* HERO */
.cat-hero {
  height: 50vh;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.cat-hero-bg {
  position: absolute;
  inset: 0;
}
.cat-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 56px;
}
.cat-hero-emoji {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}
.cat-hero-illust {
  width: 180px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.35));
}
.cat-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.cat-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.cat-subtitle {
  font-size: 0.75rem;
  color: rgba(248,244,238,0.55);
  letter-spacing: 0.2em;
  margin-top: 10px;
}

/* PRODUCTS SECTION */
.products-section {
  padding: 80px 48px 120px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-note {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--mid);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light);
}

/* リスト形式レイアウト */
.products-grid {
  display: flex;
  flex-direction: column;
  max-width: 720px;
}

.product-img { display: none; }

.product-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--light);
  background: none;
  overflow: visible;
  transition: opacity .3s;
}
.product-card:first-child { border-top: 1px solid var(--light); }
.product-card:hover { opacity: 0.65; }

.product-body {
  flex: 1;
  padding: 0;
}
.product-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.75rem;
  color: var(--mid);
  line-height: 1.9;
  letter-spacing: 0.05em;
  min-height: 0;
}
.product-footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 0;
  border-top: none;
  min-width: 130px;
  text-align: right;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--brown);
  letter-spacing: 0.05em;
}
.product-price span {
  font-size: 0.7rem;
  color: var(--mid);
  letter-spacing: 0.1em;
  margin-left: 2px;
}
.product-tag {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 8px;
}

/* FOOTER */
footer {
  padding: 48px;
  text-align: center;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--cream);
  margin-bottom: 12px;
  display: block;
}
.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(248,244,238,0.25);
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .cat-hero-content { padding: 0 24px 40px; }
  .products-section { padding: 48px 20px 80px; }
  .products-grid { max-width: 100%; }
  .product-card { gap: 20px; padding: 24px 0; }
  .product-footer { min-width: 90px; }
}
