.desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.products_cat {
	height: 100%
}

.desc.expanded {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}

.desc.has-less-lines .btn_read_more {
  display: none !important;
}

.btn_read_more {
  z-index: 10;
  cursor: pointer;
  display: none; /* Скрываем по умолчанию */
}

.btn_read_more.visible {
  display: flex; /* Показываем когда нужно */
}

.btn_read_more.active .btn_read_more_icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}