/* 05, productkaart: gedeeld door de slider, het productgrid en de wishlist */

.swipe-kaart {
	position: relative;
	display: flex;
	flex-direction: column;
}

.swipe-kaart__link {
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-decoration: none;
	color: inherit;
}

.swipe-kaart__beeld {
	position: relative;
	aspect-ratio: var(--swipe-beeld);
	overflow: hidden;
	background: var(--swipe-vlak);
}

.swipe-kaart__foto {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.swipe-kaart:hover .swipe-kaart__foto {
	transform: scale(1.03);
}

.swipe-kaart__titel {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
}

.swipe-kaart__prijs {
	font-size: 15px;
	color: var(--swipe-tekst);
}

.swipe-kaart__prijs del {
	opacity: 0.5;
	margin-right: 6px;
}

/* Verkocht */
.swipe-kaart__vlag {
	position: absolute;
	left: 12px;
	bottom: 12px;
	padding: 4px 10px;
	background: var(--swipe-wit);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.swipe-kaart--verkocht .swipe-kaart__foto {
	opacity: 0.7;
}

/* Hoek rechtsboven, hier hangt het wishlist-hartje in */
.swipe-kaart__hoek {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
}
