/* ==========================================================================
   Producten & Diensten — detail page + overview block (uses wsc-core tokens)
   ========================================================================== */

/* ---------- Detail ---------- */
.wsc-cat-head { max-width: 760px; }
.wsc-cat-head__icon { width: 56px; height: 56px; margin-bottom: 18px; color: var(--wsc-accent-2); }
.wsc-cat-head__icon .wsc-mark { width: 56px; height: 56px; }
.wsc-cat-head__price { font-family: var(--wsc-font-head); font-weight: 700; color: var(--wsc-accent-2); font-size: 18px; margin-top: 10px; }

.wsc-cat-intro { display: grid; gap: clamp(24px, 4vw, 48px); align-items: center; }
.wsc-cat-intro.has-img { grid-template-columns: 1.05fr .95fr; }
@media (max-width: 800px) { .wsc-cat-intro.has-img { grid-template-columns: 1fr; } }
.wsc-cat-intro__img { border-radius: var(--wsc-radius-lg); overflow: hidden; box-shadow: var(--wsc-shadow); }
.wsc-cat-intro__img img { display: block; width: 100%; height: 100%; object-fit: cover; }

.wsc-cat-features { list-style: none; padding: 0; margin: 10px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; max-width: 820px; }
@media (max-width: 640px) { .wsc-cat-features { grid-template-columns: 1fr; } }
.wsc-cat-features li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--wsc-ink-2); }
.wsc-cat-features .wsc-dot { margin-top: 7px; flex: none; width: 11px; height: 11px; border-radius: 3px; background: var(--wsc-accent); }

.wsc-cat-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.wsc-cat-cta__text { flex: 1 1 420px; }
.wsc-cat-cta__text h2 { margin: 0 0 8px; }
.wsc-cat-cta__text .wsc-lead { margin: 0; }

/* ---------- Overview + related cards ---------- */
.wsc-cat-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.wsc-cat-filter { cursor: pointer; font-weight: 600; font-size: 13.5px; color: var(--wsc-ink-2); border: 1px solid var(--wsc-line); background: var(--wsc-surface); border-radius: 999px; padding: 8px 16px; transition: border-color .15s, color .15s, background .15s; }
.wsc-cat-filter:hover { border-color: var(--wsc-ink); color: var(--wsc-ink); }
.wsc-cat-filter.is-active { background: var(--wsc-accent); border-color: var(--wsc-accent); color: var(--wsc-ink); }

.wsc-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .wsc-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .wsc-cat-grid { grid-template-columns: 1fr; } }
.wsc-cat-card { position: relative; display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: inherit; background: var(--wsc-surface); border: 1px solid var(--wsc-line); border-radius: var(--wsc-radius); padding: clamp(20px, 2.4vw, 28px); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.wsc-cat-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(20,22,27,.09); border-color: var(--wsc-line-2); }
.wsc-cat-card.is-hidden { display: none; }
.wsc-cat-card__icon { width: 30px; height: 30px; color: var(--wsc-accent-2); display: inline-flex; }
.wsc-cat-card__icon .wsc-mark { width: 30px; height: 30px; }
.wsc-cat-card__cat { font-family: var(--wsc-font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--wsc-accent-2); }
.wsc-cat-card h3 { margin: 0; }
.wsc-cat-card__tag { color: var(--wsc-ink-2); font-size: 14.5px; margin: 0; }
.wsc-cat-card__more { color: var(--wsc-accent-2); font-weight: 600; font-size: 14px; margin-top: auto; }

.wsc-band--dark .wsc-cat-card { background: #1B1E25; border-color: rgba(255,255,255,.08); }
.wsc-band--dark .wsc-cat-card h3 { color: #fff; }
