body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff7e6; /* soft cream background */
}

header {
  background: #ff4d6d; /* strawberry pink */
  color: #fff;
  padding: 20px;
  text-align: center;
}

nav {
  background: #ff7f50; /* coral orange */
  padding: 12px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
  text-align: center;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  max-width: 100%;
  border-radius: 10px;
}

.price {
  color: #28a745; /* fresh green */
  font-size: 18px;
  font-weight: bold;
}

button {
  background: #ff4d6d;
  color: #fff;
  border: none;
  padding: 10px 15px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
}

button:hover {
  background: #ff7f50;
}

footer {
  background: #ff4d6d;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}
