bd-product-card { 
    position: relative;

&.is-loading::before {
	content: ""; 
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: hsl(var(--white),0.65);
	backdrop-filter: blur(2px);
}
.image {
	margin: auto;
	width: 100%; 
}
.product-content {
	align-content: center;
}

.bd-add-to-cart {
  position: relative;
}

.bd-add-to-cart.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

 .bd-add-to-cart.is-loading::after {
	content: "";
	position: absolute;
	width: 1em;
	height: 1em;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin .6s linear infinite;
	display: flex;
}

 .slide {
	flex: 0 0 100%;
	

	.product-image {
aspect-ratio: 1;
	width: 100%;
	position: relative;
	}
  img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: flex;
}
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

    @media (max-width: 749px) {
       .product-content {
	text-align: center;
}
    }

}
