/**
 * ProductGallery Shortcode Styles
 *
 * @package AmericanEagleCore\Shortcode\ProductGallery
 */

.product-gallery {
	position: relative;
	width: 100%;
    margin-bottom: 10px;
}

.product-gallery__figure {
	position: relative;
	margin: 0;
	overflow: hidden;
}

.product-gallery__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.product-gallery__img--primary {
	position: relative;
	z-index: 1;
}

.product-gallery__img--hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.4s ease;
	will-change: opacity;
}

.product-gallery__figure:hover .product-gallery__img--hover {
	opacity: 1;
}
