/* Pour positionner correctement le bouton Quickview en absolute */
ul.products li.product {
  position: relative;
  overflow: hidden;
}

/* Bouton Quickview caché sous produit par défaut, animé */
ul.products li.product .quickview-btn {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(2,2,2,.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: bottom 0.3s ease;
  z-index: 5;
  width:100% !important;
}

/* Bouton Quickview apparait seulement sur produit actuellement survolé */
ul.products li.product:hover .quickview-btn {
  bottom: 50%; /* Positionnement à la moitié du produit */
  transform: translate(-50%, 50%); /* Centrage vertical et horizontal parfait */
}

/* Style pour popup Quickview - centré verticalement et horizontalement */
.quickview-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center; /* Centrage horizontal */
  align-items: center;     /* Centrage vertical */
  z-index: 9999;
}

.quickview-content {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  text-align:center;
}

.quickview-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
}

.quickview-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
/* Style du loading spinner */
.quickview-loading {
  display: flex;
  height: 200px;
  justify-content: center;
  align-items: center;
  color: #333;
}