/* Product card hover image swap */

.bsp-product-card-images {
	position: relative;
	width: 100%;
	height: 100%;
}

.bsp-product-card-images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: opacity 0.35s ease;
}

.bsp-product-card-images--contain img {
	object-fit: contain;
}

.bsp-product-card-images__primary {
	position: relative;
	z-index: 1;
}

.bsp-product-card-images.has-secondary .bsp-product-card-images__secondary {
	position: absolute;
	inset: 0;
	z-index: 2;
	opacity: 0;
}

.bsp-featured-products__card-media:hover .bsp-product-card-images.has-secondary .bsp-product-card-images__secondary,
.bsp-featured-products__card-media:focus-within .bsp-product-card-images.has-secondary .bsp-product-card-images__secondary,
.bsp-todays-deals__card-media:hover .bsp-product-card-images.has-secondary .bsp-product-card-images__secondary,
.bsp-todays-deals__card-media:focus-within .bsp-product-card-images.has-secondary .bsp-product-card-images__secondary,
.bsp-todays-deals__media-link:hover .bsp-product-card-images.has-secondary .bsp-product-card-images__secondary,
.bsp-todays-deals__media-link:focus-within .bsp-product-card-images.has-secondary .bsp-product-card-images__secondary,
.bsp-sp__related-image:hover .bsp-product-card-images.has-secondary .bsp-product-card-images__secondary,
.bsp-sp__related-image:focus-within .bsp-product-card-images.has-secondary .bsp-product-card-images__secondary,
.bsp-sp__bt-thumb:hover .bsp-product-card-images.has-secondary .bsp-product-card-images__secondary,
.bsp-sp__bt-thumb:focus-within .bsp-product-card-images.has-secondary .bsp-product-card-images__secondary {
	opacity: 1;
}

@media (hover: none) {
	.bsp-product-card-images.has-secondary .bsp-product-card-images__secondary {
		display: none;
	}
}
