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

/* Top bar */
.topbar {
  background: #a33;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 12px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: black;
  font-size: 14px;
}

.cart {
  font-size: 16px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 40px;
  letter-spacing: 5px;
}

.hero p {
  color: gray;
}

/* Products */
#products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px;
}

.card {
  text-align: center;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card h2 {
  font-size: 16px;
}

.card p {
  font-size: 14px;
}

button {
  background: black;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

button:hover {
  background: #333;
}