@charset "UTF-8";
/*
    ÉQUIPEMENTS
*/
/*
    MIXINS
*/
/**
 * Liste des breakpoints
 */
/**
 * Gestion des breakpoints
 */
/**
 * Adaptation responsive des tailles de police
 */
.nvn-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .nvn-products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .nvn-products {
    grid-template-columns: repeat(4, 1fr);
  }
}
.nvn-products li {
  list-style: none;
}

.loop-product {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}
.loop-product img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.loop-product:hover img {
  transform: scale(1.1);
}
.loop-product::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(175deg, rgba(119, 110, 110, 0.04) 45%, #000000 85%);
  mix-blend-mode: multiply;
}

.loop-product__title {
  font-size: 1rem;
  font-size: clamp(1rem, 0.7692307692rem + 0.7692307692vw, 1.25rem);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 0 62px 15px 15px;
  font-weight: 700;
  line-height: 1.4;
  text-wrap: balance;
  color: white;
}

.loop-product__link {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  background: var(--wp--preset--color--mint);
  transition: 0.5s ease background;
}
.loop-product__link svg {
  fill: black;
}
.loop-product:hover .loop-product__link {
  background: var(--wp--preset--color--lemon);
}