.product-card {
  width: 395px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.badge {
  display: inline-block;
  background: red;
  color: white;
  font-size: 26px;
  padding: 6px 10px;
  border-radius: 5px;
  margin-bottom: 12px;
}

.discount {
  color: red;
  font-size: 16px;
  margin-bottom: 5px;
}

.image-box {
  height: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box img {
  max-width: 100%;
  max-height: 270px;
  object-fit: contain;
}

.info {
  margin-top: 10px;
}

.price {
  font-size: 25px;
  font-weight: 500;
  color: #000;
}

.price span {
  font-size: 16px;
  color: #777;
  text-decoration: line-through;
}

.sku,
.brand {
  color: #444;
  font-size: 16px;
  margin-top: 5px;
}

.name {
  font-size: 20px;
  color: #111;
  margin-top: 12px;
  line-height: 1.25;
}