/* ===== Detail Page ===== */
.detail-page { padding: 0 16px 20px; }

.detail-hero {
  display: flex;
  justify-content: center;
  padding: 24px 0;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.detail-info { margin-bottom: 20px; }

.detail-name {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.detail-name-jp {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.detail-tags {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.detail-aesthetics {
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.detail-cards { margin-bottom: 24px; }

.detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}

.detail-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.detail-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.detail-description p { line-height: 1.8; }

.detail-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
}

.btn-fav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-pill);
  color: var(--accent);
  font-size: 14px;
  transition: all 0.2s;
}

.btn-fav:active {
  transform: scale(0.96);
}

.btn-fav.faved {
  background: rgba(196,168,104,0.1);
}
