.chanvre-related-products__heading {
  font-family: "Noto Sans", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--e-global-color-primary);
  margin-bottom: 15px;
}

.chanvre-related-carousel {
  position: relative;
  padding-bottom: 40px;
}

/*
 * Fallback layout shown before Slick has run (script blocked/slow to
 * load, JS disabled, etc.). Slick adds the "slick-initialized" class to
 * this same element the moment .slick() succeeds, which turns this whole
 * block off — otherwise the <li> slides are plain list items and stack
 * one under another.
 */
.chanvre-related-carousel:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--chanvre-carousel-gap, 20px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.chanvre-related-carousel:not(.slick-initialized) .chanvre-related-carousel__slide {
  padding: 0;
}

@media screen and (max-width: 1024px) {
  .chanvre-related-carousel:not(.slick-initialized) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .chanvre-related-carousel:not(.slick-initialized) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.chanvre-related-carousel .slick-list {
  margin: 0 calc(var(--chanvre-carousel-gap, 20px) / -2);
}

.chanvre-related-carousel .chanvre-related-carousel__slide {
  height: 100%;
  padding: 0 calc(var(--chanvre-carousel-gap, 20px) / 2);
  box-sizing: border-box;
}

.chanvre-related-carousel .chanvre-related-carousel__slide > .product {
  height: 100%;
}

.chanvre-related-carousel .slick-prev,
.chanvre-related-carousel .slick-next {
  position: absolute;
  top: 40%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  background: transparent;
  border: none;
}

.chanvre-related-carousel .slick-prev {
  left: -10px;
}

.chanvre-related-carousel .slick-next {
  right: -10px;
}

.chanvre-related-carousel .slick-prev::before,
.chanvre-related-carousel .slick-next::before {
  font-family: inherit;
  font-size: 20px;
  color: currentColor;
  opacity: 1;
}

.chanvre-related-carousel .slick-prev::before {
  content: "\2039";
}

.chanvre-related-carousel .slick-next::before {
  content: "\203A";
}

.chanvre-related-carousel .slick-dots {
  position: static;
  margin-top: 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .chanvre-related-products__heading {
    font-size: 30px;
    line-height: 1.3em;
  }
}
