body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fafafa;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
}

#categoryFilter {
  padding: 8px;
  font-size: 16px;
}

.product-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.product-name {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
  text-align: center;
}

.product-price {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.product-description {
  font-size: 14px;
  color: #666;
  text-align: center;
}
