.cards {
  display: grid;
  grid-gap: 20px;
  // padding: 0.5rem;
  width: 100%;
  height: 100%;

  .product-card {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    // min-height: 390px;
  }
  .product-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .product-image-wrapper:hover {
    transform: scale(1.02);
  }
  .product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  .product-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white-color);
    flex-grow: 1;
  }
  .product-title h2 {
    margin-top: 12px;
    font-size: 18px;
    color: var(--white-color);
    max-width: 90%;
    overflow: hidden;
  }
  .section-product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    // gap: 5px;
  }
  .product-price {
    font-size: 18px;
    font-weight: bold;
    width: 35%;
  }
  .product-prev-price{
    font-size:16px;;
  }
  .product-prev-price-wrapper {
    color: var(--secondary-color-alt3);
    width: 65%;
  }
  .product-discount{
    font-size:14px;
  }
  .product-title-text{
    cursor: pointer;
    transition: color 0.2s ease;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .product-title-text:hover {
    color: var(--primary-color, #940b92);
  }
  .product-card-clickable {
    cursor: pointer;
  }
  .product-card-note {
    color: var(--secondary-color);
    font-size: 1.1rem;
    white-space: break-spaces;
  }
  .product-card-footer {
    text-align: center;
  }
  .add-to-cart-progress {
    display: inline;
  }
.content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}
.product-card-rating-wrapper{
  margin-top: 10px;
}
}
