/*body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}*/
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: url('images/bg-pets.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
}

header, footer {
  background: #6cc6b6;
  color: white;
  padding: 1em;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1em;
  padding: 1em;
}

.product, .cart-item {
  background: white;
  padding: 1em;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  text-align: center;
}

.product img, .cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

button {
  background: #6cc6b6;
  color: white;
  border: none;
  padding: 0.5em 1em;
  margin-top: 0.5em;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #55aa99;
}
