/***** Related Products Styles *********/
a.related-product-link {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 10px;
  padding: 10px;
  margin-bottom: 20px;
  grid-template-areas: "related-product-img related-product-title" "related-product-img product-price";
  box-shadow: 0 0.21429rem 0.64286rem rgba(52, 58, 64, .2);
  border-radius: 7px;
  position: relative;
}

.related-product-featured {
  font-size: 12px;
  line-height: 21px;
  position: absolute;
  background: #fcb900;
  padding: 1px 10px;
  border-radius: 3px;
  right: 0px;
  bottom: 0px;
}

.related-product-img {
  grid-area: related-product-img;
  width: 70px;
  height: auto;
}

.related-product-title {
  font-size: 18px;
  line-height: 1.2em;
}

.related-products-section.homepage-products.featured-section ul.related-products-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}

.related-products-section.homepage-products.featured-section ul.related-products-list li {
  max-width: 200px;
}

.related-products-section.homepage-products.featured-section a.related-product-link {
  display: flex;
  flex-direction: column;
  box-shadow: none;
  color: #212529;
}

.related-products-section.homepage-products.featured-section .related-product-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.related-products-section.homepage-products.featured-section .related-product-title {
  text-align: center;
}