.product-gallery {
	position: relative;
}

.product-gallery .slides {
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-gallery .slides > li {
	position: relative;
	text-align: center;
}

.product-gallery .slides img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 4px;
}

.product-gallery__thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
}

.product-gallery__thumbs li {
	flex: 0 0 auto;
}

.product-gallery__thumbs li a {
	display: block;
	width: 72px;
	height: 72px;
	border: 2px solid #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	background: #fff;
}

.product-gallery__thumbs li.current a,
.product-gallery__thumbs li a:hover {
	border-color: #c0392b;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.product-gallery__thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-gallery .slides .lupa {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.85) url(../images/lupa.png) center no-repeat;
	border-radius: 50%;
	pointer-events: none;
}

@media (max-width: 768px) {
	.product-gallery__thumbs li a {
		width: 56px;
		height: 56px;
	}
}
