.card-custom {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 450px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card-custom a {
  text-decoration: none;
  color: #1a1b22;
}
.card-custom img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.card-custom .card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-custom .card-title,
.card-custom .card-address {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-custom .card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-custom .cart-comment {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .card-custom {
    margin: 1rem;
  }
}

/*# sourceMappingURL=card.css.map */
