body {
  font-family: sans-serif;
  margin: 0;
  padding: 20px;
  background: #f9f9f9;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

#searchInput {
  display: block;
  margin: 0 auto 20px;
  padding: 10px;
  width: 100%;
  max-width: 400px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 10px;
}

.product-name {
  font-weight: bold;
  margin-bottom: 5px;
  color: #0077cc;
  text-decoration: none;
}

.product-description {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 10px;
}

.product-price {
  font-weight: bold;
  font-size: 1.1em;
  color: #333;
}

#loadMoreBtn {
  display: block;
  margin: 30px auto;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background-color: #0077cc;
  color: white;
  cursor: pointer;
}

#loadMoreBtn:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}
