
/* Arreglar altura de los títulos en productos PeC-Shop */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
}
.woocommerce div.product .pec-label {
    color: #555;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    margin-right: 5px;
    text-transform: uppercase;
}
.woocommerce ul.products li.product {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.woocommerce div.product .woocommerce-product-details__short-description {
    max-height: 180px;
    overflow: hidden;
}

