.related-products-wrapper {
  position: relative;
  padding-top: var(--wp--preset--spacing--2);
}

.related-products-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 260px);
  background-color: var(--wp--preset--color--custom-beige);
  z-index: -1;
}

#produits-similaires {
  justify-content: center;
  align-items: center;
  margin: var(--wp--preset--spacing--2) auto 0 auto;
}

#produits-similaires h2 {
  margin: 0;
  text-align: center;
}

.related-products {
  width: 100%;
}

.related-products-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto var(--wp--preset--spacing--3);
}

.related-products-nav-prev,
.related-products-nav-next {
  width: 39px;
  height: 39px;
  background-color: var(--wp--preset--color--custom-beige);
  background-image: url(https://www.univrmenuiserie.fr/wp-content/themes/univr/assets/chart/arrow-slider.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100%;
  cursor: pointer;
}

.related-products-nav-prev {
  transform: rotate(180deg);
}

.related-products-nav-prev:hover,
.related-products-nav-next:hover {
  background-image: url(https://www.univrmenuiserie.fr/wp-content/themes/univr/assets/chart/arrow-slider-hover.svg);
}

.related-products-nav-all {
  margin-right: var(--wp--preset--spacing--2);
} 

.related-products-slider {
  width: 100%;
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
}

.related-products .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--wp--preset--spacing--1);
  text-decoration: none;
  overflow: hidden;
}

.related-product-item-thumb {
  position: relative;
  display: flex;
}

.related-product-item-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.related-product-item-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: all 0.3s;
}

.related-product-item-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://www.univrmenuiserie.fr/wp-content/themes/univr/assets/chart/arrow-articles.svg);
  background-size: 39px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: rotate(90deg);
  transition: all 0.3s;
}

.related-product-item-thumb:hover::before,
.related-product-item-thumb:hover::after {
  opacity: 1;
}

.related-product-item-title {
  font-size: var(--wp--preset--font-size--5);
  color: var(--wp--preset--color--kaki);
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
}

.related-products .swiper-slide p {
  margin: 0;
}

.related-product-item-taxonomies .tag {
  transition: all 0.3s;
}

.related-product-item-taxonomies .tag:hover {
  color: var(--wp--preset--color--custom-blanc);
  background-color: var(--wp--preset--color--custom-kaki);
}

.related-product-item-read-more div {
  cursor: pointer;
}

@media (max-width: 768px) {
  #produits-similaires h2 {
    margin-bottom: var(--wp--preset--spacing--2);
  }
}