// Product Images.
.elementor-widget-woocommerce-product-images {
	// Base Theme Widget Styles.
	&.vamtam-has-theme-widget-styles {
		div.images {
			margin: 0px;

			img {
				transition-duration: 0s;
			}

			.flex-control-thumbs {
				display: flex;
				flex-direction: column;
				max-width: 100px;
				gap: 10px;

				.woocommerce & {
					margin-right: 10px;
				}

				.woocommerce div.product & li {
					width: 100%;

					&:last-child {
						margin-bottom: 0;
					}
				}
			}

			.flex-viewport {
				.woocommerce-product-gallery__image {
					transition: opacity .3s ease;
					&:not(.flex-active-slide) {
						opacity: 0;
					}
				}
			}
		}

		.woocommerce-product-gallery {
			display: flex;
			flex-direction: row-reverse;

			> :is(.flex-viewport, .flex-control-thumbs, .woocommerce-product-gallery__wrapper) {
				flex: 1;
			}

			img:hover {
				filter: none;
			}
		}

		span.onsale {
			top: 0;
			background-color: var(--vamtam-accent-color-1);
		}

		.woocommerce-product-gallery {
			&.vamtam-hide {
				opacity: 0 !important;
			}
		}

		.flex-control-thumbs img {
			object-fit: cover;
		}
	}
}
