/* 产品真实图片 */
.prod-real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .6s ease;
}
.prod-card:hover .prod-real-img { transform: scale(1.04); }

/* 无产品提示 */
.no-products-msg {
  text-align: center; padding: 80px 40px;
  border: 1px dashed rgba(184,149,74,0.2);
}
.npm-icon { font-size: 32px; color: var(--gold-pale); margin-bottom: 16px; }
.npm-title { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.npm-desc { font-size: 14px; color: var(--ink-ghost); max-width: 400px; margin: 0 auto; line-height: 1.7; }

/* Bespoke CTA strip */
.bespoke-cta-strip {
  background: var(--ink);
  padding: 64px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
}
.bcs-kicker { font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold-l); margin-bottom: 12px; }
.bcs-title { font-family: var(--serif); font-size: clamp(28px,3vw,42px); font-weight: 300; color: #fff; line-height: 1.15; margin-bottom: 14px; }
.bcs-title em { font-style: italic; color: var(--gold-l); }
.bcs-desc { font-size: 14px; color: rgba(255,255,255,0.5); max-width: 480px; line-height: 1.8; font-weight: 300; }
.bcs-ctas { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Reveal 动画（兼容 .in 和 .visible 两种类名）── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in,
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* 产品卡片隐藏（JS筛选用） */
.prod-card.hidden { display: none; }
.series-card.hidden { display: none; }

@media (max-width: 768px) {
  .bespoke-cta-strip { flex-direction: column; align-items: flex-start; padding: 48px 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .series-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr !important; }
}
