/**
 * Product modal — moved out of shop.scss so it applies wherever the modal is rendered, and not
 * only under `.container-filters-result .result`. Since the header cart opens a product modal,
 * one is injected at body level on pages that never load shop.css — and shop.css cannot be
 * loaded site-wide, it opens on `body .header { height: 264px }`.
 *
 * Kept at `.modal .modal-lg` rather than an id: the card modals and the cart-opened one must not
 * diverge. Nothing here matches the cookie-consent modal, the only other .modal-lg on the site.
 */
.modal .modal-lg .modal-content button.close {
  border-radius: 20px;
  border: none;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 30px !important;
  z-index: 50;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  padding: 0 0 3px 0;
}
.modal .modal-lg .modal-content button.close span {
  top: -6px;
  position: absolute;
  left: 10px;
}
.modal .modal-lg .modal-content .container-slider-products .item img {
  width: 100px;
  max-width: 100%;
}
.modal .modal-lg .modal-content .alert-article {
  border-radius: 5px;
}
.modal .modal-lg .modal-content .alert-article:before {
  position: absolute;
  top: 7px;
  left: 15px;
  font-size: 14px;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f071" !important;
}
.modal .modal-lg .modal-content .container-etiquette-absolute {
  top: 15px;
  left: 10px;
}
.modal .modal-lg .modal-content .container-explications {
  display: none;
  padding: 0 20px;
  width: 100%;
  background-color: #ffe6b7;
}
.modal .modal-lg .modal-content .container-explications i {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
}
.modal .modal-lg .modal-content button.add-to-cart {
  padding: 8px 15px 9px 15px;
}
