/* === Global === */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #fafafa;
  color: #222;
  line-height: 1.6;
}

/* === Header === */
header {
  background: #1b1b1b;       /* tiefes Schwarzgrau */
  padding: 20px;
  text-align: center;
  color: white;
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 1px;
}

/* === Banner === */
.banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* === Kategorien === */
#kategorien {
  text-align: center;
  margin: 25px 0;
}
#kategorien button {
  margin: 6px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #ccc;
  background: white;
  color: #222;
  cursor: pointer;
  transition: all 0.2s ease;
}
#kategorien button:hover,
#kategorien button.active {
  background: #1b1b1b;
  color: white;
}

/* === Produkte === */
.produkte {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 20px auto;
  max-width: 1200px;
}
.gericht {
  background: white;
  border-radius: 12px;
  padding: 15px;
  width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gericht:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.gericht img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* === Extras === */
.extras {
  display: none;
  text-align: center;
  font-size: 0.9em;
  padding: 8px;
  border: 1px solid #eee;
  margin-top: 8px;
  border-radius: 8px;
  background: #fafafa;
}

/* === Menge Steuerung === */
.menge-steuerung {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.menge-steuerung button {
  width: 32px;
  height: 32px;
  font-size: 18px;
  background: #1b1b1b;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.menge-steuerung input {
  width: 50px;
  text-align: center;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* === Warenkorb & Checkout === */
.warenkorb, .checkout {
  max-width: 650px;
  margin: 30px auto;
  padding: 25px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
}

.submit {
  background: #1b1b1b;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.submit:hover {
  background: #333;
}

/* Gold-Button für Barzahlung */
button[onclick*="barzahlungAbsenden"] {
  background: #c8a951 !important;
  color: #222 !important;
}

/* === Warenkorb Floating Button === */
#warenkorbButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  border: 2px solid #1b1b1b;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  font-size: 32px;
  display: none;
  transition: transform .2s ease;
}
#warenkorbButton:hover {
  transform: scale(1.1);
}

/* === Footer === */
footer {
  text-align: center;
  padding: 20px;
  background: #1b1b1b;
  color: white;
  margin-top: 60px;
  font-size: 14px;
}
footer a {
  color: #c8a951;
  font-weight: 600;
}
