.wkhero {
	position: relative;
	max-width: 560px;
	margin: 0 auto;
	padding: 0 28px;
	box-sizing: border-box;
}

.wkhero-viewport {
	position: relative;
	/* overflow zichtbaar zodat de quote-bubbel rechts mag overhangen */
	overflow: visible;
}

/* Slides stapelen in dezelfde grid-cel: track houdt zijn natuurlijke hoogte. */
.wkhero-track {
	display: grid;
}

.wkhero-slide {
	grid-area: 1 / 1;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.wkhero-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

.wkhero-media {
	position: relative;
}

.wkhero .wkhero-media .wkhero-image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 24px !important;
	background: #f1f2f4;
	overflow: hidden;
}

/* Testimonial-bubbel rechtsboven — hangt iets over de rechterrand */
.wkhero-quote {
	position: absolute;
	top: 22px;
	right: -16px;
	max-width: 64%;
	margin: 0;
	z-index: 3;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.96);
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
	backdrop-filter: blur(2px);
}

.wkhero-quote blockquote {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 0.86em;
	font-weight: 600;
	line-height: 1.35;
	color: #222;
	quotes: "\201C""\201D";
}

.wkhero-quote blockquote::before { content: open-quote; }
.wkhero-quote blockquote::after { content: close-quote; }

.wkhero-quote figcaption {
	margin-top: 6px;
	font-size: 0.76em;
	color: #9098a0;
}

/* Productkaartje onderaan */
.wkhero-card {
	position: absolute;
	left: 18px;
	bottom: 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 18px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
	max-width: calc(100% - 36px);
	box-sizing: border-box;
	z-index: 3;
}

.wkhero-card-name {
	font-weight: 700;
	font-size: 1em;
	color: #1d1d1f;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.15s ease;
}

.wkhero-card-name:hover {
	color: #4caf50;
}

.wkhero-swatches {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.wkhero-swatch {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
	display: inline-block;
	text-decoration: none;
}

a.wkhero-swatch {
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

a.wkhero-swatch:hover {
	transform: scale(1.2);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(76, 175, 80, 0.4);
}

/* Navigatieknoppen */
.wkhero-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #444;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
	cursor: pointer;
	z-index: 5;
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.wkhero-nav:hover {
	background: #4caf50;
	color: #fff;
}

.wkhero-nav svg {
	width: 22px;
	height: 22px;
}

.wkhero-prev { left: 0; }
.wkhero-next { right: 0; }

/* Stippen */
.wkhero-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.wkhero-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #d3d7dc;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}

.wkhero-dot.is-active {
	background: #4caf50;
	transform: scale(1.25);
}

@media (max-width: 600px) {
	.wkhero { padding: 0 14px; }
	.wkhero-nav { width: 38px; height: 38px; }
	.wkhero-quote { max-width: 72%; top: 14px; right: -6px; }
	.wkhero-card { left: 12px; bottom: 12px; gap: 10px; padding: 10px 14px; }
}
