.related-products {
  display: block;
}

.related-products__heading {
  margin: 0;
  font-family: "Bricolage Grotesque";
  font-weight: 700;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 0.64px;
  text-transform: uppercase;
  position: relative;

  @media (max-width:768px) {
    text-align: center;
  }

  &:before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    height: 3px;
    background-color: #DADADA;
    width: 64px;

    @media (max-width:768px) {
      display: none;
    }
  }
}

.wrapper-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4rem;

}

.custom-swiper-arrows {
  display: flex;
  align-items: center;
  gap: 1.3rem;

  @media (max-width:640px) {
    display: none;
  }

  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    cursor: pointer;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #002573;

    div {
      display: flex;
    }

    path {
      stroke: white;
    }
  }

  .swiper-button-prev-custom.swiper-button-disabled,
  .swiper-button-next-custom.swiper-button-disabled {
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;

    path {
      stroke: #502380;
    }
  }
}