body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
  background-color: #5d37b6;
  color: #fff;
}

h1 {
  margin-bottom: 40px;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  text-decoration: none;
  color: #000;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: scale(1.05);
}

.store-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-info h2 {
  font-size: 18px;
  margin: 10px 0 5px;
  color: #333;
}

.product-info p {
  font-size: 14px;
  color: #444;
}
