/**
 * /collecties/ archive chrome — intro band, grid, cards.
 * Replaces the inline-style soup that used to live in PHP. Plugin-only.
 */

.wccb-collections-page {
	max-width: var(--container-max, 1200px);
	margin: 0 auto;
	/* Horizontal gutter = the canonical --page-pad token so the archive grid
	   aligns pixel-for-pixel with the homepage grid (which also uses --page-pad). */
	padding: 24px var(--page-pad, 24px);
}

/* ─── Intro band ───────────────────────────────────────────────────────── */

.wccb-collections-intro {
	margin: 0 0 24px;
	padding: 32px 0;
	border-bottom: 1px solid var(--border, #E4DED3);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
}
.wccb-collections-intro__copy {
	flex: 1 1 auto;
	min-width: 0;
}
.wccb-collections-intro__eyebrow {
	font-family: var(--font-body, "Inter Tight", sans-serif);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ink-muted, #75706A);
	font-weight: 600;
	margin-bottom: 14px;
}
.wccb-collections-intro__title {
	font-family: var(--font-display, "Fraunces", serif);
	font-size: clamp(36px, 6vw, 64px);
	line-height: .98;
	letter-spacing: -.02em;
	margin: 0 0 16px;
	color: var(--ink, #15140F);
}
.wccb-collections-intro__title-em {
	font-style: italic;
}
.wccb-collections-intro__lede {
	max-width: 560px;
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink-2, #3A372F);
	margin: 0;
}
.wccb-collections-intro__cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 48px;
	padding: 0 22px;
	background: var(--ink, #15140F);
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	font-family: var(--font-body, "Inter Tight", sans-serif);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .02em;
	transition: background .2s ease;
}
.wccb-collections-intro__cta:hover {
	background: var(--accent, #B54A2B);
}
.wccb-collections-intro__cta i {
	width: 16px;
	height: 16px;
}

/* ─── Grid ─────────────────────────────────────────────────────────────── */

.wccb-collections-grid-wrap {
	position: relative;
	min-height: 200px;
}
.wccb-collections-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(28px, 3vw, 48px);
	margin: 48px 0;
}
.wccb-collections-grid.is-empty {
	grid-template-columns: 1fr;
}
@media (max-width: 1023px) {
	.wccb-collections-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
	.wccb-collections-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Card ─────────────────────────────────────────────────────────────── */

/* Clean editorial card — NO border / background / box-shadow / hover-lift.
   The visual is owned entirely by the shared theme `.wh-card`; this surface
   class only needs to be layout-neutral so the archive matches the homepage. */
.wccb-collection-card {
	display: block;
	text-decoration: none;
	color: inherit;
}
/* ─── Personaliseer CTA (single product) ───────────────────────────────── */

.wccb-personaliseer {
	margin: 24px 0;
}
.wccb-personaliseer__specs {
	display: flex;
	gap: 32px;
	padding: 20px 0;
	margin: 0;
	border-block: 1px solid var(--border, #E4DED3);
	font-family: var(--font-body, "Inter Tight", sans-serif);
	font-size: 13px;
}
.wccb-personaliseer__spec dt {
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ink-muted, #75706A);
}
.wccb-personaliseer__spec dd {
	margin: 4px 0 0;
	font-weight: 600;
	color: var(--ink, #15140F);
}
.wccb-personaliseer__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 54px;
	margin-top: 18px;
	padding: 0 28px;
	background: var(--accent, #B54A2B);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-family: var(--font-body, "Inter Tight", sans-serif);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .02em;
	cursor: pointer;
	transition: background .2s ease;
}
.wccb-personaliseer__btn:hover {
	background: var(--accent-ink, #7C2F15);
}
.wccb-personaliseer__btn i {
	width: 16px;
	height: 16px;
}
.wccb-personaliseer__status {
	display: block;
	margin-top: 10px;
	font-size: 12px;
	color: var(--ink-muted, #75706A);
	text-align: center;
}
.wccb-personaliseer__hint {
	margin-top: 14px;
	font-size: 12px;
	color: var(--ink-muted, #75706A);
	line-height: 1.5;
	text-align: center;
}
