.product-card {
  background-color: #ffffff;
  color: #000000;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.8rem 0 0.4rem;
}

.product-description {
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1;
  text-align: justify;
}

.cta-button {
  margin-top: 1rem;
}
