body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #333;
}

#product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 10px;
  padding: 10px;
  max-width: 200px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s;
  position: relative;
}
.product:hover {
  transform: scale(1.05);
}
.product img {
  max-width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
.product h2 {
  font-size: 18px;
  color: #333;
}
.product p {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}
.product .price {
  font-size: 16px;
  color: #e91e63;
  font-weight: bold;
}
.product .details {
  display: none;
  font-size: 12px;
  color: #555;
  margin-top: 10px;
}
.product .show-details {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 5px 10px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
}

#pagination {
  text-align: center;
  margin-top: 20px;
}
#pagination button {
  padding: 10px 20px;
  margin: 0 5px;
  border: none;
  background-color: #333;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}
#pagination button:disabled {
  background-color: #bbb;
  cursor: not-allowed;
}

/*# sourceMappingURL=styles.css.map */
