/* Overrides for product cards on shop & category grids */

/* 1) Fix title block height so all cards align */
.products-grid .bc-name{
  height:40px;
  min-height:75px;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}

/* 自动缩放容器：真实文本包一层 .bc-name-inner，允许 transform:scale */
.products-grid .bc-name-inner{
  display:inline-block;
  transform-origin:left center;
}

/* 2) Keep price on a single line with consistent height */
.products-grid .bc-price{
  min-height:22px;
  margin-top:4px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* 3) Pin action buttons row to the bottom and unify height */
.products-grid .bc-actions{
  margin-top:auto;
  min-height:40px;
}

