* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #222;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #000;
  color: #fff;
}

header a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
}

.cart-count {
  background: orange;
  color: #000;
  padding: 3px 8px;
  border-radius: 50%;
  font-size: 14px;
}

.hero {
  background: url('https://picsum.photos/1200/400') no-repeat center center/cover;
  height: 400px;
}

.container {
  width: 90%;
  margin: auto;
  padding: 20px 0;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.product {
  border: 1px solid #ddd;
  text-align: center;
  padding: 10px;
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

button {
  background: orange;
  border: none;
  padding: 10px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
  margin-top: 20px;
}