body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
}

.site-header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
}

.nav-links a {
  margin: 0 15px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: black;
  text-decoration: none;
}

.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: auto;
}

.hero-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
}

.featured {
  padding: 60px 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card img {
  width: 100%;
  height: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 60px 40px;
  background: #f7f7f7;
}