body {
  margin:0;
  background:#0b0d10;
  color:#f9fafb;
  font-family: system-ui, -apple-system, sans-serif;
}

.site-header {
  background:#facc15;
  height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom:3px solid #d4b008;
  margin-bottom:1.5rem;
}

/* 3-Spalten-Layout: links – mitte – rechts */
.site-header-inner {
  width:100%;
  max-width:1200px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding:0 1.5rem;
}

/* Unsichtbarer Block, damit das Logo zentriert bleibt */
.header-spacer { }

.site-header-logo img {
  height:80px;
  cursor:pointer;
  display:block;
  margin:0 auto;
}

/* Warenkorb rechts */
.site-header-cart {
  display:flex;
  justify-content:flex-end;
}

.site-header-cart a {
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  text-decoration:none;
  color:#111827;
  font-weight:600;
  padding:.45rem .8rem;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.15);
  background:rgba(255,255,255,.55);
}

.site-header-cart a:hover {
  background:#fefce8;
}

.cart-icon {
  font-size:1.15rem;
  line-height:1;
}

.cart-count {
  min-width:1.4rem;
  height:1.4rem;
  border-radius:999px;
  background:#111827;
  color:#f9fafb;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.75rem;
  font-weight:700;
}
