.product-images-gallery {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 32rem;
	gap: 1rem 0.75rem;
	align-items: start;
	margin-left: auto;
	margin-right: auto;
}

.product-images-option {
	display: contents;
}

.product-images-input {
	position: fixed;
	top: 0;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.product-images-main {
	display: none;
	order: -1;
	flex: 0 0 100%;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.product-images-input:checked + .product-images-main {
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-images-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0;
}

.product-images-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.25s ease;
	mix-blend-mode: multiply;
}

.product-images-main:hover .product-images-slide img {
	transform: scale(1.03);
}

.product-images-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 5rem;
	height: 5rem;
	padding: 0.35rem;
	border: 2px solid #e7dfd1;
	border-radius: 0.85rem;
	background: #fff;
	cursor: pointer;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-images-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-images-input:checked + .product-images-main + .product-images-thumb {
	border-color: #d5a63c;
	box-shadow: 0 12px 25px rgba(100, 77, 24, 0.12);
	transform: translateY(-1px);
}

.product-images-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 100%;
	width: 100%;
	aspect-ratio: 1 / 1;
	border: 1px dashed #d9cfbf;
	border-radius: 1rem;
	background: rgba(232, 211, 170, 0.12);
	color: #6c655b;
	padding: 1rem;
	text-align: center;
}

@media (max-width: 767px) {
	.product-images-thumb {
		width: 4.25rem;
		height: 4.25rem;
	}
}
