body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fffafc;
  color: #333;
}

.site-header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

.logo img {
  height: 60px;
  display: block;
  margin: auto;
}

.header-icons {
  display: flex;
  gap: 1rem;
  font-weight: bold;
}

.header-icons a {
  text-decoration: none;
  color: black;
}

.nav-separator {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}

.header-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: white;
}

.header-nav li {
  margin: 0 20px;
}

.header-nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.hero {
  position: relative;
  text-align: center;
  color: white;
}

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

.hero-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 1rem;
  border-radius: 8px;
}

.categories,
.promo {
  margin-top: 2rem;
  text-align: center;
}

.categories img,
.promo img {
  width: 80%;
  border-radius: 8px;
}

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