
/* AZ Backgrounds
   - Background uniquement sur le carré photo produit
   - Opacité 1 (pas de transparence)
   - Override du fond blanc du thème
*/

#product .product-cover,
#product .product-cover img {
  background: transparent !important;
}

.azbg-target{
  position: relative !important;
  overflow: hidden;
}
.azbg-target::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--azbg-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;               /* PAS DE TRANSPARENCE */
  pointer-events:none;
  z-index: 0;
}
.azbg-target > *{
  position: relative;
  z-index: 1;
}
