@media (min-width: 769px) {
	.single-product div.product .woocommerce-product-gallery {
		align-items: start;
		display: grid !important;
		gap: 14px;
		grid-template-areas: "thumbs image";
		grid-template-columns: 88px minmax(0, 1fr);
	}

	.single-product div.product .woocommerce-product-gallery > .flex-viewport,
	.single-product div.product .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper {
		grid-area: image;
		min-width: 0;
		width: 100% !important;
	}

	.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs {
		display: flex !important;
		flex-direction: column;
		gap: 10px;
		grid-area: thumbs;
		margin: 0 !important;
		max-height: min(75vh, 760px);
		overflow-x: hidden;
		overflow-y: auto;
		padding: 0 4px 0 0 !important;
		width: 88px !important;
	}

	.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs li {
		float: none !important;
		margin: 0 !important;
		width: 100% !important;
	}

	.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs img {
		aspect-ratio: 1;
		border: 1px solid transparent;
		display: block;
		height: auto;
		object-fit: cover;
		opacity: .6;
		width: 100%;
	}

	.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs img.flex-active,
	.single-product div.product .woocommerce-product-gallery ol.flex-control-thumbs img:hover {
		border-color: currentColor;
		opacity: 1;
	}
}
