.items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  margin: 15px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 16px;
}

.product-image img {
  display: block;
  max-height: 200px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.product-info {
  font-size: 14px;
  text-align: justify;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-btn {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.product-btn button {
  background-color: #8fc2d3;
  border: none;
  color: white;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-btn button:hover {
  background-color: #7ab5c8;
}
