/* cookies */
.cookie-banner {
  position: fixed;
  width: 18%;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.9);
  color: white;
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: 800px;
  margin: 0 auto;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#accept-all {
  background: #4CAF50;
  color: white;
}

#save-settings {
  background: #58ad5b;
}

.cookie-buttons a {
  color: #4CAF50;
  align-self: center;
}
/*erste Seite*/
body {
  font-family: bold, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

.main-header-flex {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  background: #000000;
  color: #fff;
  padding: 0 32px;
  min-height: 60px;
}

.produkt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px auto;
  max-width: 1200px;
  justify-items: center;
}

.produkt-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 24px 18px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  width: 100%;
  max-width: 320px;
}

.produkt-card:hover {
  box-shadow: 0 8px 32px rgba(255,0,0,0.15);
  transform: translateY(-6px) scale(1.03);
}

.produkt-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.produkt-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (max-width: 900px) {
  .produkt-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .produkt-grid {
    grid-template-columns: 1fr;
  }
}

#logo-container {
  position: absolute;
  top: -17px;    /* Abstand von oben */
  left: 30px;   /* Abstand von links */
  z-index: 10;  /* Damit es über anderen Elementen liegt */
}

.main-header-flex h1 {
  grid-column: 2;
  text-align: center;
  font-size: 32px;
  margin: 0;
}

#search-form {
  grid-column: 3;
  justify-self: end;
  max-width: 400px;
  margin-left: 0;
}

#logo {
  width: 140px;
}

main {
  padding: 2rem;
  text-align: center;
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
}

footer {
  background: #000000;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  position: relative;
  bottom: 0;
  width: 100%;
  border-top: #ff0000 4px solid;
}

.social-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1em;
}

.social-icon {
  width: 32px;
  height: 32px;
  margin: 0 6px;
  vertical-align: middle;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.18);
  filter: brightness(1.2);
}

.kundenkonto-btn {
  position: absolute;
  top: 3px;
  right: 12px;
  z-index: 2000;
  display: inline-block;
  padding: 12px 32px;
  background: #ff0000;
  color: #fff;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
}
.kundenkonto-btn:hover {
  background: #c00;
}

/* Allgemeine Button-Styling */
button {
  padding: 20px 50px;
  font-size: 32px;
  color: #ffffff;
  background-color: #000000;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #1f1f1f;
}

.button-container {
  display: flex;
  justify-content: center; /* Zentriert die Buttons horizontal */
  gap: 32px;
  align-items: center; /* Zentriert die Buttons vertikal (falls nötig) */
  flex-wrap: wrap; /* Falls die Buttons nicht in eine Zeile passen */
  margin-top: 20px;
  text-align: center; /* Zentriert den Text innerhalb des Containers */
}

.red-bar, .red-bar1 {
  background-color: red; /* Roter Hintergrund */
  color: white; /* Weiße Schrift */
  padding: 5px 10px; /* Innenabstand */
  font-size: 24px; /* Schriftgröße */
  font-weight: bold; /* Fettschrift */
  border-radius: 3px; /* Abgerundete Ecken */
  text-align: center; /* Zentrierter Text */
  transform: rotate(-25deg); /* Dreht den Balken um 15 Grad */
  position: relative; /* Positionierung relativ zum Button */
  top: 0px; /* Verschiebt den Balken nach oben */
  z-index: 1; /* Stellt sicher, dass der Balken über dem Button liegt */
}

.red-bar {left : 200px; }
.red-bar1 { left: 180px; }

.button-with-bar, .button-with-bar1 {
  display: flex; 
  align-items: center; /* Zentriert den Balken horizontal */
} 

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px auto ;
  max-width: 800px;
  width: 100%;
}
.video-container video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

main h1 {
  font-size: 36px; /* Große Schrift für Überschrift */
  color: #ffffff; /* Schwarze Schrift */
  margin-bottom: 20px; /* Abstand nach unten */
  margin-left: 20px;
}

h2 {
  font-size: 40px; 
  color: #000000; 
  margin-bottom: 24px; 
  margin-top: 20px;
  margin-left: 20px;
}

main p {
  font-size: 26px;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 36px;
  margin-top: 18px;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Styling für Footer-Buttons */
.footer-button {
  padding: 5px 10px;
  font-size: 16px;
  color: #ffffff;
  background-color: #000000;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin: 5px;
}

.footer-button:hover {
  background-color: #1f1f1f;
}

/*topper*/
nav {
  background: #555555;
  padding: 15px 0;
  font-size: 16px;
  width: 100%;
  margin: 0;
  border-radius: 0;
  justify-content: space-between;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 48px;
}
nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.kundenkonto-btn {
margin-right: 32px;
}

nav a:hover {
  background-color: #747474;
  border-radius: 10px;
}

/*Dark theme if user prefers dark mode
@media (prefers-color-scheme: dark) {
  body {
    background-color: #303030;
    color: #ffffff;
  }
}*/


/* Spezifisches Styling für Buttons mit Info-Icons */
.button-with-info {
  position: relative;
  padding: 50px 100px; /* Überschreibt das allgemeine Padding */
  font-size: 24px; /* Überschreibt die allgemeine Schriftgröße */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
  flex-wrap: wrap;
}
.button-with-info:hover {
  background-color: #1f1f1f; /* Ändert die Hintergrundfarbe beim Hover */
}

/* Styling für den Info-Icon */
.info-icon {
  display: inline-block;
  margin-left: 8px;
  width: 18px;
  height: 18px;
  background: #ff0000;
  color: #000000;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  line-height: 18px;
  vertical-align: middle;
}

.info-icon .info-text {
  display: none;
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 13px;
  white-space: pre-line;
  z-index: 10;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.info-icon:hover .info-text,
.info-icon:focus .info-text {
  display: block;
}


/*Konfigurator*/

/* Konfigurator - Allgemeine Stile */
.option {
  border: 2px solid #000000;
  color: #000000;
  margin: 12px;
  padding: 10px 28px;
  display: inline-block;
  width: auto;
  background-color: #ffffff;
  font-size: 28px;
  text-align: center;
  border-radius: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Animation für Hover */
  flex-wrap: wrap;
}

.option label {
  width: 100%;
  height: 100%;

  cursor: pointer;
  white-space: nowrap;
  padding: 15px 0; /* optional, für mehr Klickfläche */
}

.option:hover {
  transform: scale(1.05); /* Vergrößert den Button leicht beim Hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten beim Hover */
  background-color:#dadada;
}

.selected {
  border-color: #ff0000;
  background: #000000;
}

/* Fortschrittsanzeige */
.progress-container {
  width: 100%;
  background: #e0e0e0;
  margin: 20px 0;
}

.progress-bar {
  height: 10px;
  background: #4CAF50;
  width: 0%;
  transition: width 0.3s;
}

/* Preis-Anzeige */
#total-price, #price-per-portion, #portion-count {
  font-size: 24px;
  font-weight: bold;
}

div > p {
  font-size: 22px;
  color: #000000;
  margin: 30px;
}

/* Allgemeine Button-Stile */
.select-btn,
.navigation #next-btn {
  background: #000000;
  color: white;
  padding: 10px 20px;
  margin: 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 32px;
  transition: background-color 0.3s ease;
}

.navigation #next-btn:hover,
.select-btn:hover {
  background-color: #3e3e3e; /* Hover-Effekt */
}

/* Kategorien */
.category {
  margin-bottom: 10px;
  margin-top: 40px;
  font-size: 22px;
}


.category h3 {
  font-size: 30px;
  margin: 20px;
}

.select-input {
  margin-right: 10px;
}

/* Slider - Allgemeine Stile */
.slider-container {
  margin: 20px 0;
  text-align: center; /* Zentriert den gesamten Slider */
  position: relative;
}

#beta-alanin-slider,
#koffeinmenge-slider {
  -webkit-appearance: none; /* Entfernt das Standarddesign des Sliders */
  appearance: none;
  width: 80%; /* Breite des Sliders */
  height: 10px; /* Höhe des Sliders */
  background: linear-gradient(90deg, #ffffff 0%, #000000 100%); /* Farbverlauf */
  border-radius: 5px; /* Abgerundete Ecken */
  outline: none; /* Entfernt den Fokusrahmen */
  transition: background 0.3s ease; /* Weicher Übergang bei Änderungen */
  cursor: pointer;
}

#beta-alanin-slider::-webkit-slider-thumb,
#koffeinmenge-slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Entfernt das Standarddesign des Schiebereglers */
  appearance: none;
  width: 20px; /* Breite des Schiebereglers */
  height: 20px; /* Höhe des Schiebereglers */
  background: #000000; /* Farbe des Schiebereglers */
  border-radius: 50%; /* Runde Form */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Schatten für einen 3D-Effekt */
  transition: transform 0.2s ease; /* Animation beim Bewegen */
}

#beta-alanin-slider::-webkit-slider-thumb:hover,
#koffeinmenge-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2); /* Vergrößert den Schieberegler beim Hover */
  background: #000000; /* Ändert die Farbe beim Hover */
}

#beta-alanin-slider::-moz-range-thumb,
#koffeinmenge-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #000000;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

#beta-alanin-slider::-moz-range-thumb:hover,
#koffeinmenge-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  background: #000000;
}

/* Abstand unter dem Koffein-Slider erhöhen */
#koffeinmenge-slider + .slider-labels {
  margin-top: 16px;
  margin-bottom: 24px; 
  gap: 120px; 
}

/* Abstand unter dem Beta-Alanin-Slider */
#beta-alanin-slider + .slider-labels {
  margin-top: 16px;
  margin-bottom: 24px;
  gap: 120px; /* Wie gehabt, da weniger Labels */
  justify-content: space-around;
}

/* Slider-Labels */
.slider-labels {
  display: flex;
  justify-content: space-evenly; 
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  color: #000000;
  gap: 100px; 
}

.slider-labels span {
  cursor: pointer; /* Zeigt den Mauszeiger als Hand an */
  transition: color 0.3s ease; /* Weicher Übergang bei Hover */
}

.slider-labels span:hover {
  color: #000000; /* Ändert die Farbe beim Hover */
  font-weight: bold; /* Hebt das Label hervor */
}

/* Slider-Werte */
#beta-alanin-value,
#koffeinmenge-value {
  font-weight: bold;
  color: #000000;
  margin-top: 10px;
  font-size: 16px;
}

#koffeinmenge-value {
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 18px;
}

#beta-alanin-value {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Styling für Warnhinweise */
#koffein-warning,
#beta-alanin-warning {
  font-size: 18px; /* Größere Schrift */
  font-weight: bold; /* Fettschrift */
  color: #ff0000; /* Auffällige rote Farbe */
  background-color: #ffe6e6; /* Heller roter Hintergrund */
  padding: 10px; /* Innenabstand für mehr Platz */
  border: 2px solid #ff0000; /* Rote Umrandung */
  border-radius: 0px; /* Abgerundete Ecken */
  margin-top: 15px; /* Abstand nach oben */
  text-align: center; /* Zentrierter Text */
  display: none; /* Standardmäßig ausgeblendet */
}

/* Optional: Animation für das Aufpoppen */
#koffein-warning.show,
#beta-alanin-warning.show {
  display: block; /* Sichtbar machen */
  animation: fadeIn 0.5s ease-in-out; /* Weiche Einblendung */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* In deiner style.css */
#custom-alert {
  background: #ffe6e6;
  color: #d8000c;
  border: 2px solid #d8000c;
  border-radius: 8px;
  padding: 18px 24px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 20px auto;
  max-width: 500px;
  display: none;
  z-index: 1001;
}

.question-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 32px 24px;
  margin: 60px auto 60px auto; /* mehr Abstand oben/unten */
  font-size: 22px;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.answers {
  margin-top: 24px;
}
.answer-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 30px;
  font-size: 22px;
  margin: 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.answer-btn:hover {
  background: #ff0000;
}

.back-btn {
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 10px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.back-btn:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

.result-box h2 {
  margin-bottom: 24px;
  color: #ff0000;
  font-size: 28px;
  letter-spacing: 1px;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #ff0000;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 12px;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
}

input[type="checkbox"]:checked {
  background-color: #ff0000;
  border-color: #ff0000;
}

input[type="checkbox"]:checked:after {
  content: "✔";
  color: #fff;
  font-size: 18px;
  position: absolute;
  left: 4px;
  top: 0px;
}

input[type="checkbox"]:focus {
  outline: 2px solid #000;
  box-shadow: 0 0 0 2px #ff0000;
}

.fragebogen label {
  color: #000000;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.fragebogen label:hover {
  color: #ff0000;
}

#config-options {
  max-width: 100%;
  padding-left: 10px;
  margin: 0 auto;
  text-align: left;
  color: #000000;
}

@media (max-width: 700px) {
  .category, .question-box {
    max-width: 98vw;
    padding: 18px 4vw;
  }
  .option {
    font-size: 18px;
    padding: 14px 8px;
  }
}

#empfehlung-karten-container {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 32px 0 0 0;
  flex-wrap: wrap;
}

.empfehlung-karte h4 {
  color: #ff0000;
  margin: 0 0 8px 0;
  font-size: 20px;
}
.empfehlung-karte.active {
  border: 3px solid #ff0000;
  box-shadow: 0 0 16px #ff000055;
  background: #fff7f7;
}

#confirm-slider-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #00000066;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
#confirm-slider-modal > div {
  background: #fff;
  color: #c00;
  padding: 32px 24px;
  border-radius: 16px;
  max-width: 400px;
  margin: auto;
  text-align: center;
  border: 3px solid #c00;
  box-shadow: 0 4px 32px #0002;
  font-size: 1.2em;
}
#confirm-slider-modal button {
  margin: 10px 20px;
  padding: 10px 30px;
  font-size: 1em;
  border-radius: 8px;
  border: none;
  background: #000000;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
#confirm-slider-modal button:hover {
  background: #1f1f1f;
}

.koffein-info-box {
  background: #f7f7fa;
  color: #222;
  border-left: 4px solid #ff0000;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 0 auto 24px auto;
  max-width: 480px;
  font-size: 1.1em;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: left;
  animation: fadeIn 0.5s;
}

#search-form {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 24px 0 12px auto;
  gap: 8px;
  max-width: 400px;
}

#search-input {
  padding: 10px 16px;
  font-size: 18px;
  border: 2px solid #ff0000;
  border-radius: 8px 0 0 8px;
  outline: none;
  width: 70%;
  transition: border 0.2s;
}

#search-input:focus {
  border-color: #000;
}

#search-form button[type="submit"] {
  position:relative;
  padding: 10px 24px;
  font-size: 18px;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background 0.2s;
}

#search-form button[type="submit"]:hover {
  background: #c00;
}

/* Dropdown-Stil für Suchergebnisse */
#search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  color: #222;
  border: 1.5px solid #ff0000;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 100;
  max-height: 260px;
  overflow-y: auto;
  top: calc(100% - 2px);
  display: none; /* Standardmäßig ausgeblendet */
}

#search-results.active {
  display: block;
}

#search-results div {
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.2s;
}

#search-results div:hover {
  background: #ffeaea;
}

/*Blogseite*/

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 40px auto;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  min-height: 340px;
  max-width: 420px;
  font-size: 20px;
}

.blog-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 18px;
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(255,0,0,0.13);
  transform: translateY(-4px) scale(1.02);
}

.blog-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.65);
  justify-content: center;
  align-items: center;
}

.blog-modal-content {
  background: #fff;
  border-radius: 18px;
  max-width: 700px;
  width: 90%;
  margin: 40px auto;
  padding: 36px 28px 24px 28px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  animation: blogModalIn 0.2s;
}

@keyframes blogModalIn {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.blog-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.2em;
  color: #c00;
  cursor: pointer;
  font-weight: bold;
}

@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-modal-content { padding: 18px 8px; }
}

/* FAQ-Stil */
.faq-list {
  max-width: 700px;
  margin: 40px auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 8px;
}

.faq-question {
  position: relative;
  width: 100%;
  background: #000000;
  color: #fff;
  border: none;
  text-align: left;
  padding: 18px 40px 18px 16px; /* Rechts mehr Platz für den Pfeil */
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: background 0.2s;
}

.faq-question::before {
  content: "";
  position: absolute;
  right: 18px; /* Rechtsbündig */
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border: solid #fff;
  border-width: 0 3px 3px 0; /* Dünnerer Pfeil */
  display: inline-block;
  padding: 6px; /* Kleinerer Pfeil */
  transition: transform 0.3s;
}

.faq-question.active::before {
  transform: translateY(-50%) rotate(135deg);
}

.faq-question:hover, .faq-question.active {
  background: #303030;
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #222;
  padding: 0 16px;
  border-radius: 0 0 8px 8px;
  font-size: 1.1em;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
}

.faq-answer.show {
  padding: 16px 16px 24px 16px;
  max-height: 400px; /* groß genug für die Antwort */
}

body.FAQ-page h2,
body.FAQ-page main h2 {
  color: #000000;
  font-size: 32px;
  margin-top: 32px;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 1px;
}

/* Kontaktseite*/
.kontakt-form {
  max-width: 420px;
  margin: 40px auto;
  background: #fff;
  padding: 28px 22px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kontakt-form label {
  font-weight: bold;
  margin-bottom: 4px;
}

.kontakt-form input,
.kontakt-form textarea {
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 1em;
}

.kontakt-form textarea {
  resize: vertical;
}

.kontakt-form .checkboxes label {
  font-weight: normal;
  display: block;
  margin-bottom: 6px;
}

.kontakt-form button[type="submit"] {
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
}

.kontakt-form button[type="submit"]:hover {
  background: #c00;
}

.form-message {
  margin-top: 12px;
  font-weight: bold;
  color: #008800;
}

/*Probe*/

#paket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 80px;
  margin: 40px auto 32px auto;
  max-width: 1400px;
  justify-items: center;
}
@media (max-width: 1200px) {
  #paket-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  #paket-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  #paket-grid { grid-template-columns: 1fr; }
  .paket-card { max-width: 98vw; }
}

.paket-card {
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  padding: 60px 18px 24px 18px;
  text-align: center;
  width: 100%;
  max-width: 320px;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
  position: relative;
  font-size: 18px;
  border: 2px solid #ff0000;
  margin-bottom: 18px;
}
.paket-card.selected {
  border: 2.5px solid #ff0000;
  box-shadow: 0 4px 18px #ff6c6c;
  background: #ffffff;
  transform: scale(1.02);
}
.paket-card:hover {
  box-shadow: 0 8px 32px #ffeded;
  transform: translateY(-6px) scale(1.03);
  border: 2px solid #ff6c6c;
}
.paket-card input[type="checkbox"] {
  position: absolute;
  top: 18px;
  left: 18px;
  transform: scale(1.4);
  accent-color: #ff0000;
}
.paket-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ff0000;
}
.paket-desc {
  margin-bottom: 10px;
  color: #444;
}
.paket-preis {
  font-size: 1.2em;
  font-weight: bold;
  color: #000;
  margin-top: 8px;
}

.proben-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border: 1.5px solid #ff0000;
  border-radius: 8px;
  padding: 8px 66px 8px 12px; /* Platz für Chevron rechts */
  font-size: 1em;
  cursor: pointer;
  transition: border 0.2s;
}
.proben-select:focus {
  border-color: #000;
  outline: none;
}

.proben-select-wrapper {
  position: relative;
  display: inline-block;
  width: 110px; /* Passe ggf. an */
}

.proben-select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 12px;
  height: 12px;
  pointer-events: none;
  border-right: 3px solid #ff0000;
  border-bottom: 3px solid #ff0000;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.2s;
}
.proben-select-wrapper:focus-within::after {
  transform: translateY(-60%) rotate(135deg) scale(1.18);
  border-color: #000;
}

.paket-divider {
  grid-column: 1 / -1;
  position: relative;
  margin: 32px 0 12px 0;
  padding: 18px 0 8px 0;
}

.paket-divider span {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  color: #000000;
  background: transparent;
  padding-left: 12px;
  padding-right: 12px;
  top: -6px;
}

.paket-divider::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: #000;
  z-index: 1;
}

.paket-filter {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  margin: 32px auto 36px auto;
  padding: 24px 0;
  border-radius: 18px;
  max-width: 700px;
  font-size: 1.3em;
}

.paket-filter label {
  font-size: 1.1em;
  font-weight: bold;
  color: #ff0000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.paket-filter select {
  font-size: 1.1em;
  padding: 12px 36px 12px 16px;
  border: 2px solid #ff0000;
  border-radius: 10px;
  color: #222;
  font-weight: 500;
  min-width: 180px;
  transition: border 0.2s, box-shadow 0.2s;
  appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
}

@media (max-width: 700px) {
  .paket-filter {
    flex-direction: column;
    gap: 18px;
    padding: 18px 0;
  }
  .paket-filter select {
    min-width: 120px;
    width: 100%;
  }
}

.paket-bild {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 8px;
  background: #f8f8f8;
}

.allergie-box {
  margin: 16px 0;
  padding: 12px;
  background: #fffbe6;
  border-left: 4px solid #f7b500;
  border-radius: 6px;
  font-size: 1.05em;
}

.checkout-produkt-card {
  background: #fff;
  border-radius: 16px;
  border: 2.5px solid #000000;
  margin: 32px auto;
  padding: 32px 40px;
  width: 90%;
  max-width: 1200px;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s;
}
.checkout-produkt-card:hover {
  box-shadow: 0 8px 32px #ffeded;
  border-color: #c00;
}
.checkout-produkt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 26px;
  margin-bottom: 8px;
}
.checkout-produkt-preis {
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2em;
}

.checkout-produkt-details {
  color: #222;
  font-size: 22px;
  margin-bottom: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.checkout-produkt-desc {
  color: #555555;
  font-size: 24px;
}
@media (max-width: 900px) {
  .checkout-produkt-card {
    width: 98vw;
    padding: 18px 6vw;
    max-width: 98vw;
  }
  .checkout-produkt-details {
    gap: 12px;
    font-size: 15px;
  }
}

.remove-btn {
  position: absolute;
  top: 120px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #888;
  transition: color 0.2s, background 0.2s;
  padding: 8px;
  z-index: 10;
}
.remove-btn:hover {
  color: #ff0000;
  background: #f8d7da;
  border-radius: 60%;
}

#warenkorb-btn {
  position: fixed;
  top: 5px;
  right: 250px;
  z-index: 999;
  background: #fff;
  border-radius: 50px;
  padding: 6px 22px;
  box-shadow: 0 2px 12px #0002;
  font-size: 20px;
  color: #ff0000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: box-shadow 0.2s, background 0.2s;
  transform: scaleX(-1);
}
#warenkorb-btn:hover {
  background: #ffeaea;
  box-shadow: 0 4px 18px #ff000033;
}

#checkout-kundenkommentar-box {
  margin: 32px auto;
  padding: 24px;
  border: 1px solid #000000;
  background: #f3f3f3;
  border-radius: 16px;
  box-shadow: 0 2px 12px #ffffff;
  max-width: 600px;
  display: block;
  text-align: center;
}

.kommentar-label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}

#checkout-kundenkommentar {
  width: 100%;
  max-width: 560px;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1.5px solid #000000;
  margin-bottom: 12px;
  resize: vertical;
  box-sizing: border-box;
}

#checkout-kommentar-speichern {
  padding: 8px 24px;
  border-radius: 8px;
  background: #ff0000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 8px;
}

#checkout-kommentar-feedback {
  margin-top: 8px;
  color: #008800;
  font-weight: bold;
  display: none;
}

.empfehlungen1 {
  margin: 40px auto;
  text-align: center;
}
.empfehlung-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Karten pro Zeile */
  gap: 32px 18px;
  justify-items: center;
  align-items: stretch;
  padding: 32px 12px;
  width: 100%;
}

.empfehlung-card1{
  max-width: 500px;      /* Hochkant, schmaler */
  min-width: 220px;
  background: #fff;
  font-size: 22px;
  border-radius: 16px;
  box-shadow: 0 2px 12px #000000;
  padding: 32px 24px;
  text-align: left;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 420px;
  justify-content: flex-start;
}


.empfehlung-preis-row {
  margin: 18px;
  text-align: center;
}
.empfehlung-preis {
  color: #ff0000;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 4px 12px;
  display: inline-block;
}

@media (max-width: 1100px) {
  .empfehlung-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .empfehlung-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .empfehlung-card1 {
    max-width: 98vw;
    height: auto;
  }
}

.add-warenkorb-btn {
  margin-top: auto;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  cursor: pointer;
  font-size: 24px;
  transition: background 0.2s;
}
.add-warenkorb-btn:hover {
  background: #e90000;
}

.empfehlung-img {
  width: 100%;
  max-width: 120px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: block;
}

.empfehlung-divider {
  flex-basis: 100%;
  width: 100%;
  text-align: center;
  margin: 32px 0 32px 0;
  font-size: 28px;
  font-weight: bold;
  color: #000000;
  letter-spacing: 1px;
  border-bottom: 2px solid #000000;
  line-height: 0.1em;
}
.empfehlung-divider span {
  background: #fff;
  padding: 0 18px;
  position: relative;
}

.anpassen-btn {
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 12px;
  margin-top: 8px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #1f1f1f;
}

.anpassen-btn:hover {
  background: #dd0000;
}

.checkout-section-title {
  font-size: 32px;
  font-weight: bold;
  margin: 24px 0 12px 0;
  color: #000000;
  border-bottom: 2px solid #ff0000; /* Linie zur Abgrenzung */
  padding-bottom: 8px;
}

.checkout-summe {
  font-size: 32px;
  font-weight: bold;
  margin: 32px auto 24px auto;
  color: #ff0000;
  text-align: center;
  border: 2.5px solid #ff0000;
  border-radius: 18px;
  box-shadow: 0 4px 14px #1f1f1f;
  padding: 24px 0;
  max-width: 420px;
  transition: box-shadow 0.2s;
  letter-spacing: 1px;
}

.option-price-row {
  margin-top: 1px;
  margin-bottom: 1px;
}
.option-price {
  color: #ff0000;
  font-size: 12px;
  font-weight: bold;
  opacity: 0.8;
  display: block;
}

.produkt-info-box {
  background: #ffffff;
  color: #222;
  border-left: 5px solid #ff0000;
  border-radius: 12px;
  box-shadow: 0 2px 8px #ff000033;
  padding: 18px 28px;
  margin: 24px auto 32px auto;
  max-width: 520px;
  font-size: 1.25em;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}
.produkt-info-icon {
  font-size: 2em;
  color: #4caf50;
}
.produkt-info-text strong {
  color: #ff0000;
}

.checkout-produkt-ingredients-wrapper {
  margin-top: 8px;
}

/* Inhaltsstoffe-Dropdown im Checkout */
.checkout-produkt-ingredients-wrapper {
  margin-top: 14px;
  margin-bottom: 8px;
  width: 100%;
}

.ingredients-toggle {
  background: #f3f6fa;
  border: none;
  color: #000000;
  cursor: pointer;
  font-size: 15px;
  padding: 7px 18px 7px 10px;
  border-radius: 8px;
  margin-bottom: 2px;
  box-shadow: 0 1px 4px #0001;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}

.ingredients-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  border: solid #000000;
  border-width: 0 2.5px 2.5px 0;
  padding: 4px;
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.ingredients-toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg);
}

.ingredients-toggle:hover,
.ingredients-toggle:focus {
  background: #eaf3fb;
  color: #000000;
  outline: none;
}

.checkout-produkt-ingredients {
  background: #f7f8fa;
  color: #222;
  border-left: 3px solid #0b74de22;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  margin-top: 6px;
  margin-bottom: 2px;
  box-shadow: 0 2px 8px #0b74de11;
  transition: max-height 0.3s cubic-bezier(.4,0,.2,1), opacity 0.18s;
  max-height: 400px;
  opacity: 1;
  overflow: hidden;
  line-height: 1.6;
}

.checkout-produkt-ingredients[hidden] {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-left: none;
  box-shadow: none;
  transition: max-height 0.2s cubic-bezier(.4,0,.2,1), opacity 0.12s;
}

/* Optional: Zutaten als Chips */
.checkout-produkt-ingredients .ingredient-chip {
  display: inline-block;
  background: #eaf3fb;
  color: #000000;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 2px 6px 2px 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 700px) {
  .checkout-produkt-ingredients,
  .ingredients-toggle {
    font-size: 14px;
    padding: 10px 10px;
  }
}

.checkout-section-title {
  font-size: 32px;
  font-weight: bold;
  margin: 32px 0 12px 0;
  color: #000;
}

.checkout-section-description {
  font-size: 24px;
  color: #888;
  margin-bottom: 12px;
}
.checkout-details-modern {
  background: #fff;
  border-radius: 8px;
  padding: 16px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 12px;
}

.checkout-details-row {
  display: block;
  margin-bottom: 14px;
}

.checkout-details-label {
  font-weight: 600;
  font-size: 20px;
  color: #222;
  display: block;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}


.checkout-details-value {
  color: #000000;
  font-size: 20px;
  display: block;
  word-break: break-word;
  margin-left: 0;
}

.checkout-details-divider {
  border-bottom: 1px solid #eee;
  margin: 8px 0;
}
.checkout-details-row-multi {
  display: flex;
  gap: 32px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.checkout-details-cell {
  flex: 1 1 0;
  min-width: 0;
  max-width: 33%;
}

body {
      background: #f7f8fa;
      font-family: 'Segoe UI', Arial, sans-serif;
      color: #222;
      margin: 0;
      padding: 0;
    }
    .early-access-container {
      max-width: 480px;
      margin: 60px auto 0 auto;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      padding: 32px 24px;
      text-align: center;
    }
    .early-access-logo {
      width: 80px;
      margin-bottom: 24px;
    }
    .early-access-title {
      font-size: 2.1rem;
      font-weight: 700;
      margin-bottom: 18px;
      letter-spacing: 0.01em;
    }
    .early-access-teaser {
      font-size: 1.15rem;
      color: #444;
      margin-bottom: 28px;
      line-height: 1.5;
    }
    .early-access-hint {
      font-size: 1rem;
      color: #888;
      margin-bottom: 0;
    }