.product-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
background-color:white !important;
border:none !important;
}

.product-card:hover {
  transform: translateY(-4px);
}

.card-body {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.card-title {
  min-height: 3rem;
}

.btn-warning {
  background-color: rgba(254, 209, 91, 1) !important;
  border-color: rgba(254, 209, 91, 1) !important;
  color: #000 !important;
}

.btn-warning:hover {
  background-color: #fdd256 !important;
  border-color: #fdd256 !important;
  color: #000 !important;
}

