.related-products-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 32px;
}

.carousel-wrapper::-webkit-scrollbar {
  height: 8px;
}

.carousel-wrapper::-webkit-scrollbar-thumb {
  background-color: #b7dbe7b2;
  border-radius: 4px;
}

.carousel-wrapper::-webkit-scrollbar-track {
  background-color: #b7dbe74d;
}

.carousel-item {
  flex: 0 0 auto;
  width: 300px;
  margin-right: 15px;
  text-align: center;
}

.carousel-item img {
  width: 302px;
  height: 302px;
  max-width: 302px !important;
}

.carousel-item h3 {
  color: #001f2acc;
  font-weight: 400;
  font-size: 20px;
}

.carousel-item p > a {
  color: #001f2a;
  font-weight: 400;
  font-size: 16px;
}

.carousel-prev svg {
  position: relative;
  top: 2px;
}

.carousel-next svg {
  position: relative;
  top: 2px;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-150%);
  background: white;
  border: 1px solid #e4e9ea;
  padding: 14px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel-prev {
  left: 0;
}
.carousel-next {
  right: 0;
}
