/*Variables*/
/*Mixins*/
.category-products {
  margin-bottom: 60px;
}
@media (min-width: 320px) {
  .category-products {
    margin-bottom: calc(5.2631578947vw + 43.1578947368px);
  }
}
@media (min-width: 1460px) {
  .category-products {
    margin-bottom: 120px;
  }
}
.category-products .items-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 768px) {
  .category-products .items-container {
    flex-direction: column;
  }
}
@media (min-width: 1520px) {
  .category-products .items-container .item:first-child:nth-last-child(4),
  .category-products .items-container .item:first-child:nth-last-child(4) ~ .item {
    max-width: calc(25% - 32px);
  }
  .category-products .items-container .item:first-child:nth-last-child(n+5),
  .category-products .items-container .item:first-child:nth-last-child(n+5) ~ .item {
    max-width: calc(20% - 34px);
    min-width: 0;
  }
  .category-products .items-container .item:first-child:nth-last-child(n+4) .details li,
  .category-products .items-container .item:first-child:nth-last-child(n+4) ~ .item .details li {
    flex-direction: column;
  }
  .category-products .items-container .item:first-child:nth-last-child(n+4) .details span,
  .category-products .items-container .item:first-child:nth-last-child(n+4) ~ .item .details span {
    text-align: left;
  }
}
.category-products .title {
  max-width: 760px;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (min-width: 320px) {
  .category-products .title {
    margin-bottom: calc(2.6315789474vw + 21.5789473684px);
  }
}
@media (min-width: 1460px) {
  .category-products .title {
    margin-bottom: 60px;
  }
}
.category-products .item {
  border: 1px solid #CCCCCF;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(33.3% - 30px);
  min-width: 280px;
}
@media (max-width: 768px) {
  .category-products .item {
    min-width: 100%;
  }
}
.category-products .item .item-title {
  text-align: center;
}
.category-products .img-container {
  height: 250px;
  position: relative;
}
.category-products .img-container picture {
  height: 100%;
}
.category-products .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.category-products .details {
  background-color: rgba(204, 204, 207, 0.12);
  padding: 30px 15px;
  flex-grow: 1;
}
.category-products .details ul {
  display: flex;
  flex-direction: column;
  max-width: 340px;
  margin: 0 auto;
}
.category-products .details li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.category-products .details li:last-child {
  margin-bottom: 0;
}
.category-products .details span:first-child {
  color: #ADADAD;
  margin-right: 15px;
  display: inline-block;
}
.category-products .details span:last-child {
  font-family: "Bold", sans-serif;
  color: #000000;
  text-align: right;
}
@media (min-width: 769px) and (max-width: 992px) {
  .category-products .details li {
    flex-direction: column;
  }
  .category-products .details span:last-child {
    text-align: left;
  }
}