body {
  font-family: 'Poppins', sans-serif;
  margin: 20;
  padding: 0;
  background-color: #f7f7f7;
}

.container {
  width: 100%;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.back-btn {
  font-size: 24px;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 20px;
}

h1 {
  font-size: 24px;
  font-weight: bold;
}

.search-bar {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.search-bar input, .search-bar select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
}

.search-bar select {
  flex-shrink: 0;
  width: 200px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.product-card p {
  font-size: 14px;
  color: #555;
}
