body{
  margin:0;
  font-family:Arial,sans-serif;
  background:#fff;
  color:#222;
  line-height:1.6;
  /* Platz für fixierten Header */
  padding-top:110px;
}

.header-bar{
  position:fixed;
  top:0; left:0; right:0;
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  background:#fff;
  border-bottom:1px solid #ddd;
  z-index:1000;
  justify-content:flex-start; /* Logo links, Navigation rechts */
}

.header-bar a.logo-link{
  display:flex;
  align-items:center;
  margin-right:auto; /* drückt die Nav nach rechts */
}

.header-bar img{
  height:68px;
  width:auto;
}

.header-bar nav{
  display:flex;
  align-items:center;
  white-space:nowrap;
}

.header-bar nav a{
  margin-left:10px;
  text-decoration:none;
  color:#000;
  font-weight:bold;
}

.header-bar nav a:hover{
  text-decoration:underline;
}

/* Impressum + Datenschutz kleiner */
.header-bar nav a[href*="impressum"],
.header-bar nav a[href*="datenschutz"]{
  font-size:0.7em;
}

/* Container */
.container{
  max-width:1000px;
  margin:0 auto;
  padding:20px;
}

.red-h{
  color:red;
  font-weight:bold;
}

/* Startseite: Flasche klein halten */
.hero img{
  width:220px !important;
  max-width:220px !important;
  height:auto !important;
  flex:0 0 220px;
  max-height:420px !important;
}

/* Tablet/Mobil: Navigation darf umbrechen */
@media (max-width: 768px){
  .header-bar nav{
    width:100%;
    justify-content:flex-end;
    flex-wrap:wrap;
    gap:6px;
  }
  .header-bar nav a{
    margin-left:0;
  }
  .hero{
    flex-direction:column;
  }
}

/* Handy Hochformat: Logo kleiner + weniger Header-Abstand */
@media (max-width: 480px){
  .header-bar img{
    height:48px;
  }
  body{
    padding-top:90px;
  }
}

/* Bilder */
.geschichte-bild{
  display:block;
  width:70%;
  max-width:700px;
  margin:40px auto 0;
  border-radius:6px;
}

.container .rezeptur-bild{
  display:block;
  width:70% !important;
  max-width:700px;
  height:auto;
  margin:40px auto 0;
  border-radius:6px;
}

.flaschen-mix{
  display:block;
  width:100%;
  max-width:500px;
  margin:40px auto 60px;
}

/* Bestellen: Raster */
.produkt-liste{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:40px;
  align-items:end;
}

.produkt{
  text-align:center;
}

.produkt img{
  max-width:100%;
  height:auto;
}

.produkt-text{
  margin-top:12px;
  font-size:0.95rem;
}
