.category-items-wrapper {
  padding: 60px 0;
}
.category-items-wrapper .inner-wrapper {
  padding: 0 20px;
}
@media only screen and (min-width: 1200px) {
  .category-items-wrapper .inner-wrapper {
    padding: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .category-items-wrapper .inner-wrapper .intro {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1200px) {
  .category-items-wrapper .inner-wrapper .intro .column.img-wrapper {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
@media only screen and (min-width: 1200px) {
  .category-items-wrapper .inner-wrapper .intro .column.content-wrapper {
    flex: 0 0 70%;
    max-width: 70%;
    align-items: center;
    display: flex;
    padding-left: 60px;
  }
}
.category-items-wrapper .inner-wrapper .intro .column.content-wrapper .title {
  color: #3b7e01;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.category-items-wrapper .inner-wrapper .intro .column.content-wrapper .description {
  color: #303030;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}
.category-items-wrapper .inner-wrapper .intro .column.content-wrapper .product-count {
  color: #000;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}
.top-rated-products {
  padding: 0;
  margin-bottom: 30px;
}
.top-rated-products .inner-wrapper .title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.top-rated-products .inner-wrapper .products-list::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.top-rated-products .inner-wrapper .products-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.top-rated-products .inner-wrapper .products-list::-webkit-scrollbar-thumb {
  background-color: green;
  border-radius: 10px;
  border: 3px solid #f1f1f1;
}
.top-rated-products .inner-wrapper .products-list::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.top-rated-products .inner-wrapper .products-list * {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}
@media only screen and (min-width: 600px) and (orientation: landscape), only screen and (min-width: 768px) and (orientation: portrait) {
  .top-rated-products .inner-wrapper .products-list {
    display: flex;
    margin: 0 -7.5px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.top-rated-products .inner-wrapper .products-list .item {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 600px) and (orientation: landscape), only screen and (min-width: 768px) and (orientation: portrait) {
  .top-rated-products .inner-wrapper .products-list .item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 7.5px;
  }
}
@media only screen and (min-width: 992px) {
  .top-rated-products .inner-wrapper .products-list .item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media only screen and (min-width: 1200px) {
  .top-rated-products .inner-wrapper .products-list .item {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.top-rated-products .inner-wrapper .products-list .item:not(:first-child) {
  margin-top: 15px;
}
.top-rated-products .inner-wrapper .products-list .item:nth-child(2), .top-rated-products .inner-wrapper .products-list .item:nth-child(3), .top-rated-products .inner-wrapper .products-list .item:nth-child(4), .top-rated-products .inner-wrapper .products-list .item:nth-child(5) {
  margin-top: 0;
}
.top-rated-products .inner-wrapper .products-list .item .item-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
}
.top-rated-products .inner-wrapper .products-list .item .item-inner a {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  flex: 1;
}
.top-rated-products .inner-wrapper .products-list .item .item-inner a:hover .img-wrapper img {
  height: 110%;
}
.top-rated-products .inner-wrapper .products-list .item .item-inner a .img-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
.top-rated-products .inner-wrapper .products-list .item .item-inner a .img-wrapper img {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  height: 100%;
  transition: all 0.35s ease-in-out;
}
.top-rated-products .inner-wrapper .products-list .item .item-inner a .img-wrapper .product-category-name {
  position: absolute;
  bottom: 0;
  padding: 4px 20px;
  background: #000;
  color: #fff;
  border-top-right-radius: 20px;
  font-size: 12px;
  display: inline-flex;
  width: auto;
}
.top-rated-products .inner-wrapper .products-list .item .item-inner a .content-wrapper {
  flex: 1;
  padding: 10px 20px;
}
@media only screen and (min-width: 1200px) {
  .top-rated-products .inner-wrapper .products-list .item .item-inner a .content-wrapper {
    position: relative;
    padding-bottom: 60px;
  }
}
.top-rated-products .inner-wrapper .products-list .item .item-inner a .content-wrapper .product-name {
  color: #000;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  .top-rated-products .inner-wrapper .products-list .item .item-inner a .content-wrapper .product-name {
    min-height: 45px;
  }
}
.top-rated-products .inner-wrapper .products-list .item .item-inner a .content-wrapper .read-more {
  margin-top: 20px;
  font-weight: 500;
  color: #3b7e00;
  text-decoration: underline;
}
@media only screen and (min-width: 1200px) {
  .top-rated-products .inner-wrapper .products-list .item .item-inner a .content-wrapper .read-more {
    position: absolute;
    left: 20px;
    bottom: 20px;
  }
}
.search-products-section {
  padding: 0;
}
.search-products-section .inner-wrapper .title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}
