.product-card {
  background-color: #e3e3ce;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
  padding: 12px;
  margin: 30px; 
}

.product-image {
object-position: top;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.product-title {
  font-size: 1rem;
  margin: 12px 0;
  color: #333;
  font-family: 'Playwrite DK Loopet', sans-serif;;
  font-weight: bold;
}

.product-button {
  margin-top: auto;
  padding: 8px 16px;
  background-color: white;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family:'Courier New', Courier, monospace;
  transition: background-color 0.3s ease;
}