.categoryOverview.rf, .rf.productList {
  --productMaxWidth: 300px;
  --count: 4;
  display: grid;
  grid-template-columns: repeat(var(--count), 1fr);
  max-width: var(--maxWidth);
  width: 100%;
  margin-inline: auto;
  gap: 2.2rem;
}
@media only screen and (max-width: 992px) {
  .categoryOverview.rf, .rf.productList {
    grid-template-columns: repeat(2, 1fr);
  }
}
.categoryOverview.rf.c-3, .categoryOverview.rf.c-2, .categoryOverview.rf.c-1, .rf.productList.c-3, .rf.productList.c-2, .rf.productList.c-1 {
  --count: 3;
  max-width: min(var(--maxWidth), calc(var(--productMaxWidth) * var(--count)));
}
.categoryOverview.rf.c-2, .rf.productList.c-2 {
  --count: 2;
}
.categoryOverview.rf.c-1, .rf.productList.c-1 {
  --count: 1;
}
.categoryOverview.rf > a, .categoryOverview.rf > .productItem, .rf.productList > a, .rf.productList > .productItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.categoryOverview.rf > a:hover, .categoryOverview.rf > .productItem:hover, .rf.productList > a:hover, .rf.productList > .productItem:hover {
  opacity: 0.7;
}
.categoryOverview.rf > a:hover span:after, .categoryOverview.rf > .productItem:hover span:after, .rf.productList > a:hover span:after, .rf.productList > .productItem:hover span:after {
  transition: all 0.2s;
  right: 0.8rem;
}
.categoryOverview.rf > a img, .categoryOverview.rf > .productItem img, .rf.productList > a img, .rf.productList > .productItem img {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: var(--productMaxWidth);
  border: 1px solid #C1C1C1;
  box-sizing: border-box;
  max-height: 250px;
  object-fit: contain;
}
.categoryOverview.rf > a span, .categoryOverview.rf > a > a, .categoryOverview.rf > .productItem span, .categoryOverview.rf > .productItem > a, .rf.productList > a span, .rf.productList > a > a, .rf.productList > .productItem span, .rf.productList > .productItem > a {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  min-height: 50px;
  color: #fff;
  background: transparent linear-gradient(101deg, #348675 0%, #23695A 100%) 0% 0% no-repeat padding-box;
  font-family: "Ubuntu", sans-serif;
  padding: 12px 30px 12px 20px;
  height: 100%;
  box-sizing: border-box;
  position: relative;
}
.categoryOverview.rf > a span::after, .categoryOverview.rf > a > a::after, .categoryOverview.rf > .productItem span::after, .categoryOverview.rf > .productItem > a::after, .rf.productList > a span::after, .rf.productList > a > a::after, .rf.productList > .productItem span::after, .rf.productList > .productItem > a::after {
  position: absolute;
  top: 0;
  right: 1rem;
  content: "";
  width: 100%;
  height: 100%;
  background-position: center;
  background-position-x: right;
  background-repeat: no-repeat;
  background-size: 20px;
  background-image: url(/static/frontend/Custom/Custom/en_US/images/arrow-right.svg);
  transition: all 0.2s;
}

body:has(.categoryOverview, .rf.productCategories) .breadcrumbs {
  display: none !important;
}

.breadcrumb.rf {
  margin-inline: auto;
  max-width: var(--maxWidth);
  display: flex;
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: -20px;
}
@media only screen and (max-width: 992px) {
  .breadcrumb.rf {
    margin-top: -35px;
  }
}
.breadcrumb.rf li {
  color: #000;
}
.breadcrumb.rf li:nth-child(1) {
  opacity: 0.4;
}
.breadcrumb.rf li:not(:nth-last-child(1)):after {
  content: "/";
  padding-inline: 8px;
}
.breadcrumb.rf a {
  font-family: "Poppins", sans-serif;
  color: inherit;
  font-size: 15px;
}