/* ===== PrestaShop Magnifier (final) ===== */
.ps-magnifier-lens {
  position: absolute;
  pointer-events: none;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.25);
  box-shadow: 0 8px 25px rgba(0,0,0,.25);
  background-repeat: no-repeat;
  background-size: 220% 220%;
  display: none;
  z-index: 2147483647; /* max */
}
.ps-magnifier-lens::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(255,255,255,.15);
}
@media (hover: none) and (pointer: coarse) {
  .ps-magnifier-lens { display: none !important; }
}

/* ===== Taille description longue fiche produit ===== */
body#product #description .product-description,
body#product #description .product-description p,
body#product #description .product-description li {
  font-size: 17px !important;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 767px) {
  body#product #description .product-description,
  body#product #description .product-description p,
  body#product #description .product-description li {
    font-size: 16px !important;
    line-height: 1.65;
  }
}

/* Masquer la quantité sur fiche produit */
body#product .product-add-to-cart .control-label,
body#product .product-add-to-cart .product-quantity .qty {
  display: none !important;
}

/* Masquer la quantité dans l'aperçu rapide */
.quickview .product-add-to-cart .control-label,
.quickview .product-add-to-cart .product-quantity .qty {
  display: none !important;
}

/* Masquer la quantité dans le panier */
body#cart .cart-item .qty,
body#cart .cart-item .cart-line-product-quantity,
body#cart .cart-item .bootstrap-touchspin {
  display: none !important;
}
