.ti_card_product {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  min-width: 15rem;
}
@media (max-width: 560px) {
  .ti_card_product {
    min-width: auto;
  }
}
.ti_card_product__head .imagen {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 560px) {
  .ti_card_product__head .imagen {
    aspect-ratio: 16/10;
  }
}
.ti_card_product__head .imagen img {
  height: 85%;
  width: 85%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s ease;
}
.ti_card_product__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ti_card_product__wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}
.ti_card_product__body {
  padding: 1rem;
}
.ti_card_product__content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.125rem;
  height: 2.7rem;
}
.ti_card_product__shopping {
  margin-top: 1.5rem;
}
.ti_card_product__shopping > a {
  position: relative;
  z-index: 2;
}
.ti_card_product:hover .imagen img {
  transform: scale(1.15);
}/*# sourceMappingURL=index.css.map */