* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f0f0f0;
  font-family: Georgia, serif;
}

.product-card {
  background-color: #d3d3d3;
  width: 300px;
  min-height: 400px;
  margin: 40px auto;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
  border: 4px solid transparent;
  border-image: repeating-linear-gradient(
    45deg,
    #e05c1a,
    #e05c1a 8px,
    #f5b942 8px,
    #f5b942 16px
  ) 10;
}

.product-card:hover .product-price {
  visibility: visible;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.product-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 14px 0 10px;
}

.product-description {
  font-size: 15px;
  max-height: 100px;
  overflow-y: scroll;
  line-height: 1.5;
  margin-bottom: 12px;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  visibility: hidden;
  display: block;
}