/* Each Product Card */
.product-card {
  background-color: #1b1329;
  margin: 3%;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: white;
}

.product-card:hover {
  cursor:pointer;
  transform: scale(1.05);
  box-shadow: 0 0 15px red;
}

.product-card img {
  width: 80%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card div.d-flex {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  line-height: 2em;
  height: 50px;
  transform: translateY(-40px);
}



p.note{
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 20%;
}

@media (max-width: 991px) {
  p.note{
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0;
  }
}