.c-product {
  display: block;
  height: 400px;
  background: #fff;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 1599.98px) {
  .c-product {
    height: 360px;
  }
}
.c-product:hover .c-product__image img {
  transform: scale(1.1);
}
.c-product:hover .c-product__info:after {
  right: -5px;
}
.c-product:hover .c-product__info:before {
  right: 59px;
}
.c-product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 242px;
}
@media (max-width: 1599.98px) {
  .c-product__image {
    height: 200px;
  }
}
.c-product__image img {
  width: auto;
  object-fit: contain;
  max-height: 80%;
  max-width: 60%;
  /*transition: transform 0.3s ease-in-out;*/
}
.c-product__info {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: calc(100% - 24px);
  background: #fbf6ee;
  border-radius: 6px;
  padding: 20px 80px 15px 18px;
}
.c-product__info:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("/wp-content/themes/viajero/images/ofertas/offer-arrow.svg") no-repeat center center;
  background-size: 24px 18px;
  width: 64px;
  height: 100%;
  transition: right 0.3s ease-in-out;
}
.c-product__info:before {
  content: "";
  position: absolute;
  top: 15%;
  right: 64px;
  width: 1px;
  height: 70%;
  border-left: 1px dashed #c6c6c6;
  transition: right 0.3s ease-in-out;
}
.c-product__title {
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.2;
  color: #000;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  max-height: 2.4em;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}
@media (max-width: 1599.98px) {
  .c-product__title {
    font-size: 1em;
  }
}
.c-product__description {
  font-size: 0.75em;
  margin: 8px 0 0 0;
  color: #000;
}
.c-product__price {
  font-family: "Poppins", sans-serif;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1;
  margin: 10px 0 0 0;
  color: #000;
}
.c-product__discount {
  color: #e30a17;
  opacity: 0.5;
  font-size: 0.6em;
  text-decoration: line-through;
}
.c-product__category {
  background: #ff6600;
  position: absolute;
  top: -12px;
  left: 15px;
  border-radius: 6px;
  font-size: 0.8125em;
  font-weight: bold;
  color: #fff;
  padding: 2px 6px;
  min-width: 120px;
  text-align: center;
}
.c-product__category:hover, .c-product__category:active, .c-product__category:focus, .c-product__category:visited {
  color: #fff;
}