/* styles/pc.css - mirrors styles/laptop.css */
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1rem;
  width: 300px;
  text-align: center;
}
.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.product-card h2 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}
.product-card p {
  margin: 0.25rem 0;
  color: #333;
}
