
body {
  margin: 0;
  font-family: system-ui;
  background: #f5f5f5;
  color: #333;
}
header {
  padding: 3rem 1rem;
  text-align: center;
  background: #fff;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem;
}
.product {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  height: 360px;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.product::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 0;
}
.product .content {
  position: relative;
  z-index: 1;
}
.product h2 {
  margin: 0 0 0.5rem;
}
.product a {
  display: inline-block;
  background: white;
  color: black;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-top: 1rem;
  text-decoration: none;
}
footer {
  padding: 2rem;
  text-align: center;
  background: #eee;
  font-size: 0.9rem;
}
