div.search-results {
  --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;
}
div.search-results.type-manual {
  --count: 3;
}
div.search-results.c-3, div.search-results.c-2, div.search-results.c-1 {
  --count: 3;
  max-width: min(var(--maxWidth), calc(var(--productMaxWidth) * var(--count)));
}
div.search-results.c-2 {
  --count: 2;
}
div.search-results.c-1 {
  --count: 1;
}
@media only screen and (max-width: 992px) {
  div.search-results {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  div.search-results.type-manual {
    grid-template-columns: repeat(1, 1fr);
  }
}
div.search-results div.result-item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
div.search-results div.result-item > a:hover {
  opacity: 0.7;
}
div.search-results div.result-item > a:hover span:after {
  transition: all 0.2s;
  right: 0.8rem;
}
div.search-results div.result-item > a 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;
}
div.search-results div.result-item > a span, div.search-results div.result-item > a > 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-inline: 20px;
  box-sizing: border-box;
  position: relative;
}
div.search-results div.result-item > a span::after, div.search-results div.result-item > a > 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;
}

div.pagination-container {
  display: flex;
  justify-content: center;
}

.sr-pagination {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 20px auto;
}

.sr-pagination .page-item.disabled {
  border: none;
  cursor: default;
  padding: 5px 0;
  pointer-events: none;
}

li.page-item.active a {
  color: #000 !important;
}

.sr-pagination .page-item:hover {
  background: #FFF;
  border: 1px solid #ddd;
}

.sr-pagination .page-item.item-nr {
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  align-content: center;
}

.sr-pagination .page-item.active {
  color: #000;
  background: #d6ece8;
  font-weight: bold;
  pointer-events: none;
}

.sr-pagination {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  text-align: center;
}

.sr-pagination .page-item {
  background: #FFF;
  padding: 9px 15px;
  margin: 3px;
  display: inline-block;
  border-radius: 0;
  text-align: center;
  border: 1px solid #c0c0c0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 13px;
  line-height: 20px;
}

.sr-pagination .page-item a {
  margin: auto;
  position: relative;
  top: 1px;
}

.sr-pagination .page-item.active {
  color: #000;
  background: #d6ece8;
  pointer-events: none;
}

h2.count-title {
  padding: 25px 0 !important;
  font-size: 25px !important;
  display: none;
}

h2.count-title > span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

li.page-item {
  line-height: 21px !important;
}

li.page-item.active {
  outline: 2px solid #348675;
  border: 0;
  width: 38px !important;
  height: 38px !important;
  margin-top: 5px;
}