/** Shopify CDN: Minification failed

Line 155:0 Unexpected "}"

**/
.product-new-display {
  --pnd-padding-bottom: 100%;
  --pnd-media-bg: rgba(0, 0, 0, 0);
}

/* Header grid */
.product-new-display__wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.4rem;
}
@media screen and (min-width: 750px) {
  .product-new-display__wrapper {
    gap: 3.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .product-new-display__wrapper {
    gap: 4.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .product-new-display__wrapper_no-heading {
    gap: 4rem;
  }
}

.product-new-display__subtitle,
.product-new-display__title {
  margin: 0;
}

.product-new-display__button {
  grid-row: 2;
  grid-column: span 2;
}
@media screen and (min-width: 576px) {
  .product-new-display__button {
    grid-row: unset;
    grid-column: 2;
    margin-left: auto;
  }
}
@media screen and (max-width: 575px) {
  .product-new-display__top + .product-new-display__button {
    grid-row: 3;
  }
}

.product-new-display__content {
  grid-column: span 2;
}

.product-new-display__empty {
  padding: 1.2rem 0;
  opacity: 0.8;
}

/* ===== GRID ===== */
.product-new-display__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* mobile 2 cols */
  gap: 1.2rem;
}

@media screen and (min-width: 750px) {
  .product-new-display__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* desktop 4 cols */
    gap: 1.6rem;
  }
}

/* Mobile: show only 4 items (2x2) */
@media screen and (max-width: 749px) {
  .product-new-display__grid > .product-new-display__item:nth-child(n + 5) {
    display: none;
  }
}

/* ===== CARD ===== */
.product-new-display__card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-new-display__media {
  position: relative;
  background: var(--pnd-media-bg);
  border-radius: 0.4rem;
  overflow: hidden;
}

.product-new-display__media::before {
  content: "";
  display: block;
  padding-bottom: var(--pnd-padding-bottom);
}

.product-new-display__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--duration-default, 300ms), transform 700ms;
}

/* hover swap */
.product-new-display__img--main {
  opacity: 1;
}
.product-new-display__img--hover {
  opacity: 0;
}
.product-new-display__item--has-hover:hover .product-new-display__img--hover {
  opacity: 1;
}
.product-new-display__item--has-hover:hover .product-new-display__img--main {
  opacity: 0;
}



/* meta */
.product-new-display__meta {
  padding-top: 1.2rem;
  display: flex;              /* ⬅️ important */
  flex-direction: column;     /* ⬅️ vertical stack */
  gap: 0.6rem;
  align-items: flex-start;
  text-align: left;
  height: 100%;               /* ⬅️ fill available space */
}

.product-new-display__product-title {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
  color: #000 !important;
  width: 100%;

 /* text-transform: lowercase; tout en minuscule */
}

/* Première lettre en majuscule 
.product-new-display__product-title::first-letter {
  /* text-transform: uppercase;*/
}

.product-new-display__price,
.product-new-display__price * {
  color: #000 !important;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.1;
  text-align: left !important;
  justify-content: flex-start !important;
}

/* Mobile typography */
@media screen and (max-width: 575px) {
  .product-new-display__meta {
    padding-top: 0.8rem;
    gap: 0.4rem;
  }

  .product-new-display__product-title {
    font-size: 1.4rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .product-new-display__price,
  .product-new-display__price * {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.2;
  }

}

/* Desktop align price baseline */
@media screen and (min-width: 990px) {
  .product-new-display__meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-height: 6.8rem;
  }

  .product-new-display__product-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;

    line-height: 1.2;
    max-height: calc(1.2em * 2);
  }

  .product-new-display__price {
    margin-top: auto;
  }
}


/* Make each grid cell stretch and the card fill the cell */
.product-new-display__item {
  height: 100%;
}

.product-new-display__card {
  height: 100%;
  display: flex;            /* key */
  flex-direction: column;   /* key */
}

/* Media stays on top, keeps its ratio */
.product-new-display__media {
  flex: 0 0 auto;
}

/* Meta takes remaining space, so price can be pushed to bottom */
.product-new-display__meta {
  flex: 1 1 auto;           /* key */
  display: flex;            /* key */
  flex-direction: column;   /* key */
  gap: 0.6rem;
  padding-top: 1.2rem;
}

/* Push price to the bottom of meta */
.product-new-display__price {
  margin-top: auto;         /* key */
}