.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  background: #f9f9f9;
}

.product-card img {
  max-width: 100%;
  border-radius: 4px;
  margin-bottom: 8px;
}

.product-name {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1.1em;
}

.product-price,
.product-min,
.product-desc {
  font-size: 0.95em;
  margin-bottom: 4px;
}

footer {
  margin-top: 30px;
  font-size: 0.95em;
  text-align: center;
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
