.bravo-collections,
.bravo-collections * { box-sizing: border-box; }

.bravo-collections {
	--gold: #B88A3B;
	--gold-soft: #d6ab63;
	font-family: 'Inter', sans-serif;
	width: 100%;
}

/* ---------- KOP ---------- */
.bravo-collections .bcol-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	margin-bottom: 20px;
}

/* gecentreerde kop (geen rechterlink) */
.bravo-collections.bcol-centered .bcol-header {
	justify-content: center;
	text-align: center;
}

.bravo-collections .bcol-header h2 {
	margin: 0;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: #111;
}

.bravo-collections .bcol-viewall {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	color: #111;
	text-transform: uppercase;
	letter-spacing: 1px;
	white-space: nowrap;
}

.bravo-collections .bcol-viewall span { color: var(--gold); }

/* ---------- GRID ---------- */
.bravo-collections .bcol-grid {
	display: grid;
	grid-template-columns: repeat(var(--cols, 2), 1fr);
	gap: 12px;
}

/* ---------- KAART ---------- */
.bravo-collections .bcol-card {
	position: relative;
	display: block;
	height: 300px;
	overflow: hidden;
	border-radius: 6px;
	text-decoration: none;
	background: #1a1712;
	isolation: isolate;
}

.bravo-collections .bcol-img {
	position: absolute;
	inset: 0;
	background-color: #2a2520;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: transform .55s ease;
}

.bravo-collections.bcol-zoom .bcol-card:hover .bcol-img {
	transform: scale(1.06);
}

.bravo-collections .bcol-grad {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10,8,5,0) 38%, rgba(10,8,5,.55) 70%, rgba(10,8,5,.9) 100%);
	z-index: 2;
}

.bravo-collections .bcol-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: var(--label-pad, 22px);
	text-align: left;
}

.bravo-collections .bcol-content h3 {
	margin: 0;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: var(--label-size, 26px);
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
}

.bravo-collections .bcol-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	color: var(--gold-soft);
	position: relative;
	padding-bottom: 4px;
}

.bravo-collections .bcol-arrow {
	display: inline-block;
	transition: transform .3s ease;
}

.bravo-collections .bcol-line {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1.5px;
	width: 0;
	background: var(--gold);
	transition: width .35s ease;
}

.bravo-collections .bcol-card:hover .bcol-arrow { transform: translateX(5px); }
.bravo-collections .bcol-card:hover .bcol-line  { width: 100%; }

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
	.bravo-collections .bcol-grid { grid-template-columns: repeat(min(var(--cols, 2), 2), 1fr); }
}

/* ---------- MOBIEL ---------- */
@media (max-width: 749px) {
	/* Kop gecentreerd, rechterlink eronder gecentreerd */
	.bravo-collections .bcol-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 8px;
		margin-bottom: 16px;
	}
	.bravo-collections .bcol-header h2 { font-size: 22px; }

	/* 2x2 grid */
	.bravo-collections .bcol-grid { grid-template-columns: 1fr 1fr; }

	.bravo-collections .bcol-card { height: 230px; }

	.bravo-collections .bcol-content { padding: 16px; text-align: left; }

	.bravo-collections .bcol-content h3 { font-size: 20px; letter-spacing: .8px; }

	.bravo-collections .bcol-cta {
		font-size: 10px;
		letter-spacing: 1.2px;
		padding-bottom: 3px;
		/* op mobiel een vaste gouden onderlijn i.p.v. hover-groei */
		border-bottom: 1.5px solid var(--gold);
	}
	.bravo-collections .bcol-line { display: none; }
}
