/* ── Card Image Count Badge ("+N more") ──────────────── */
.catalog-card-img-more-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.45);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 10;
	border-radius: 4px;
}

.catalog-card-img-more-badge {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.5);
	line-height: 1;
	font-family: 'Roboto', sans-serif;
}

.catalog-card-img-more-text {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.85);
	margin-top: 4px;
	font-weight: 500;
}

/* Show overlay only on the last visible slide */
.catalog-card-slider .catalog-slide:last-child .catalog-card-img-more-overlay {
	display: flex;
}

/* ── Card image count (compact variant) ──────────────── */
.catalog-card-img-count {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0,0,0,0.6);
	color: #fff;
	font-size: 0.75rem;
	padding: 2px 8px;
	border-radius: 10px;
	z-index: 12;
	display: flex;
	align-items: center;
	gap: 4px;
	pointer-events: none;
	backdrop-filter: blur(4px);
}

.catalog-card-img-count i {
	font-size: 0.7rem;
}
