#product-block {
  margin-bottom: 50px;
}
#product-block .block__title {
  font-size: 36px;
  line-height: 39px;
  color: #3B84CE;
  font-family: 'Playfair', sans-serif;
  margin-bottom: 40px;
  font-weight: 600;
}
#product-block .product__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 30px;
}
#product-block .cats__holder {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
#product-block .cats__holder .cat__item {
  cursor: pointer;
  transition: color .3s ease-in;
  font-size: 20px;
  line-height: 23px;
  color: #3B84CE;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
}
#product-block .cats__holder .cat__item.active, #product-block .cats__holder .cat__item:hover {
  border-bottom: 2px solid #3B84CE;
}
#product-block .products {
  width: 100%;
  overflow: hidden;
}
#product-block .products .swiper-wrapper {
  align-items: stretch;
}
#product-block .products .product__item {
  background: #FFFFFF;
  border: 1px solid #C8D8DF;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 25px;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
#product-block .products .product__item .sale__tag {
  position: absolute;
  right: 0;
  top: 20px;
  padding: 2px 12px;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  background-color: #3B84CE;
}
#product-block .products .product__item .item__image {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
}
#product-block .products .product__item .item__title {
  font-size: 20px;
  line-height: 26px;
  color: #383838;
  font-weight: 600;
  margin-bottom: 5px;
}
#product-block .products .product__item .item__desc {
  font-size: 14px;
  line-height: 16px;
  color: rgba(56, 56, 56, 0.5);
  font-weight: 400;
  margin-bottom: 15px;
}
#product-block .products .product__item .price__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  margin-top: auto;
}
#product-block .products .product__item .price__holder .price {
  font-size: 26px;
  line-height: 34px;
  color: #3B84CE;
  font-weight: 800;
  margin-right: 10px;
}
#product-block .products .product__item .price__holder .old__price {
  font-size: 14px;
  line-height: 16px;
  color: rgba(56, 56, 56, 0.5);
  text-decoration: line-through;
}
#product-block .products .product__item button.btn {
  max-width: 100%;
}

@media (max-width: 498px) {
  #product-block .block__title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  #product-block .cats__holder .cat__item {
    width: 100%;
    font-size: 16px;
    line-height: 20px;
  }
}

/*# sourceMappingURL=block.css.map */
