.category-items {
  display: flex;
  flex-wrap: wrap;
  padding: 0 var(--side-padding);
  row-gap: 10px;
  column-gap: 10px;
}

.category-item {
  width: calc(25% - 7.5px);
  background: #f1f1f1;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.category-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #9e9e9e;
}

@media only screen and (max-width: 991px) {
  .category-item {
    width: calc(33.3333333333% - 6.6666666667px);
  }
}
@media only screen and (max-width: 769px) {
  .category-item {
    width: calc(50% - 5px);
  }
}
.category-item__heading {
  padding: 3px;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.2px;
  min-height: 30px;
  max-height: 30px;
  height: 100%;
  font-size: 16px;
  line-height: 20px;
}

@media only screen and (max-width: 769px) {
  .category-item__heading {
    font-size: 14px;
    line-height: 17px;
  }
}
.category-item__heading .name {
  color: #000;
}

.category-item__heading .name span {
  font-weight: 700;
  font-family: var(--f-main-bold);
}

.category-item__heading .price {
  color: #9e9e9e;
}

.category-item .img-holder {
  position: relative;
  max-width: 545px;
  height: calc(25vw - 31px);
  margin: auto;
}

@media only screen and (max-width: 991px) {
  .category-item .img-holder {
    height: calc(33.3333333333vw - 31px);
  }
}
@media only screen and (max-width: 769px) {
  .category-item .img-holder {
    height: calc(75vw - 31px);
  }
}
.category-item .img-holder .inner-holder {
  position: relative;
  width: 75%;
  height: 100%;
  margin: auto;
}

.category-item .img-holder .inner-holder picture,
.category-item .img-holder .inner-holder img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.category-item:hover {
  background-color: #fff;
}

/*# sourceMappingURL=category.css.map */
