.category-image.rf {
  display: flex;
  max-height: 405px;
  background: var(--accent);
  position: relative;
}
.category-image.rf::before {
  content: "";
  position: absolute;
  width: 35%;
  height: 100%;
  background: var(--accent);
  top: 0;
  left: 0;
}
.category-image.rf:after {
  content: "";
  background-image: url(/media/icons/leafWhite.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  position: absolute;
  bottom: 20px;
  left: -10px;
  height: 95px;
  width: 95px;
}
.category-image.rf .wrapper {
  position: absolute;
  width: 100%;
  max-width: var(--maxWidth);
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  min-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .category-image.rf .wrapper {
    left: 0;
    transform: unset;
    padding: 30px 20px 20px 20px;
  }
}
.category-image.rf .wrapper h1, .category-image.rf .wrapper .navigateTo, .category-image.rf .wrapper a {
  width: max-content;
  color: #fff;
}
.category-image.rf .wrapper h1 {
  margin-bottom: 15px;
  max-width: 75%;
  font-size: 2.9rem;
}
@media (max-width: 1320px) {
  .category-image.rf .wrapper .innerWrapper {
    padding-left: 40px;
  }
}
.category-image.rf .wrapper .navigateTo {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .category-image.rf .wrapper .navigateTo {
    display: none !important;
  }
}
.category-image.rf .wrapper .navigateTo span, .category-image.rf .wrapper .navigateTo a {
  padding-block: 14px;
}
.category-image.rf .wrapper .navigateTo span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  min-width: min(20vw, 400px);
  font-size: 1.3rem;
  padding-bottom: 10px;
}
.category-image.rf .wrapper .navigateTo a {
  padding-right: 2rem;
  background-position: center;
  background-position-x: right;
  background-repeat: no-repeat;
  background-size: 13px;
  background-image: url(/static/frontend/Custom/Custom/en_US/images/arrow-right.svg);
  margin-bottom: -7px;
}
.category-image.rf .wrapper .navigateTo a:hover {
  opacity: 0.7;
}
.category-image.rf .img-wrapper {
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.category-image.rf .img-wrapper .image {
  display: block;
  width: 100%;
  max-width: min(900px, 70vw);
}
.category-image.rf .img-wrapper figure img {
  max-height: 405px;
}
.category-image.rf .afterBanner {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
}

body:has(.rf.productCategories) .sections.nav-sections {
  margin-bottom: 0;
}

.rf.productCategories {
  display: flex;
  width: max-content;
  margin-inline: auto;
  align-items: center;
  list-style: none;
  color: inherit;
  gap: 3rem;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 20px;
}
@media only screen and (max-width: 992px) {
  .rf.productCategories {
    display: none !important;
  }
}
.rf.productCategories.mainCat {
  margin-top: -5px;
  margin-bottom: 3px;
}
.rf.productCategories a {
  color: #0F1010;
  font-weight: 400;
}
.rf.productCategories a:hover {
  opacity: 0.7;
}
.rf.productCategories li {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.rf.productCategories li:nth-child(1) {
  font-size: 13px;
}
.rf.productCategories strong a {
  color: var(--accent);
}