/* --- Allgemeine Basis-Stile (für alles) --- */
html, body { 
  max-width: 100vw;
  overflow-x: hidden;
  overscroll-behavior: none; /* verhindert wackeln */
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  background-color: #fff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
/* --- Landingpage-Stile --- *
/* --- Titel und Untertitel --- */

/* --- Abschnittsblöcke (für Struktur) ---*/
section {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

p {
   line-height: 1.6;
   margin-bottom: 1em;
}

/* --- Überschriften-Styling --- */
h1 {
    text-align: center;
    display: block;
    margin: 10px auto 30px auto;
    padding: 8px 16px;
    color:lightcyan;
    background: linear-gradient(90deg, skyBlue, gold);
    border-radius: 100px;
    padding-right: 200px;
    font-size: 1em;
    font-weight: 500;
    width: fit-content;
}

h2 {
    font-size: clamp(1.4em, 4vw, 2.4em);
    font-weight: bold;
    text-align: center;
    color: #005580; /* Fallback-Farbe für Firefox & Co. */
    background: linear-gradient(to right, #00bcd4, #fff176);
    background-clip: text; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    color: transparent; /* wird nur angewendet, wenn Verlauf unterstützt wird */
    margin: 40px auto 20px auto;
}

h3 {
    color: skyblue;
    background-color: linear-gradient (90deg, lightskyblue, lightyellow);
    padding: 10px 20px;
    border-radius: 6px;
}

h3 {
    color: #00bcd4;
    font-size: 1.4em;
    margin-top: 40px;
    margin-bottom: 15px;
}
 
/* --- Zentrale Struktur --- */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}


/* --- Individuelle Klassen für Überschriften oben --- */
.titel {
  text-align: center;
  font-size: clamp(3.5em, 6.5vw, 5.2em);
  font-weight: bold;
  background: linear-gradient(90deg, skyblue, gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 40px auto 10px auto;  
  line-height: 1.3;
}

.subtitel {
  text-align: center;
  font-size: clamp(1.4em, 3.5vw, 2.2em);
  font-weight: 500;
  background: linear-gradient(90deg, lightseagreen, lightgreen);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0 auto 40px auto;
  line-height: 1.3;
}

/* --- Bildtext und Bildrahmen --- */
.bildtext {
  display: block;
  text-align: center;
  font-style: italic;
  margin-top: 5px;
  color:#444;
  font-size: 0.95em;
}

img { 
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; 
}

img {
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* --- Callout-Zitatblock ---*/

.motivation-text {
  font-style: italic;
  font-size: 1.2em;
  color: #0077a7;
  background-color: #f0f8ff;
  padding: 20px;
  margin: 30px 0;
  border-left: 4px solid #00bcd4;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  line-height: 1.6;
}

/* --- Call-to-Action-Button --- */

.cta-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 10px; /* etwas horizontaler Abstand vom Rand */
}

.cta-button { 
  display: inline-block;
  background-color: #0099cc;
  color: white;
  padding: 12px 24px;
  margin-top: 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 400px; /* oder eine andere feste Breite */

}

.cta-button:hover {
background-color: #0077aa;
}

/* Bereich Ankersektion "So funktioniert es" */
#so-funktioniert-es {
  margin-top: 80px; /* Abstand vom Button oben */
  padding-top: 40px;
  border-top: 2px solid #e0e0e0; /* dezente Trennung */
}

/* H2 in der Ankersektion */
#so-funktioniert-es h2 {
  font-size: 1.4em;
  margin-bottom: 20px;
}

.blogartikel {
  background-color: #fefefe;
  padding: 1.5rem;
  border-radius: 20px;
  color: #222;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.blogartikel {
  text-align: center;
  margin-bottom: 1rem;
}


/* --- Mobile-Optimierung für kleine Bildschirme --- */
@media (max-width: 600px) {
  .titel {
    font-size: 1.7em;
    padding: 0 10px;
  }
  .subtitel {
    font-size: 1.2em;
    padding: 0 10px;
  }

  body {
    padding: 12px;
 }

section {
  padding: 20px 10px;
}

h1, h2 {
  font-size: 1.5em;
  text-align: center;
}

h2 {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

h3 {
  font-size: 1.2em;  
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.button-kaufen {
  font-size: 1em;
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;  
}

.blogartikel {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 100%;  
}

.etikett-slide {
  overflow-x: auto;
  display: block;  
}

.etikett-slide img {
  width: 720px; /* oder etwas mehr, ich find es aber gut so */
  max-width: none;  
}
}

.cta-button {
  font-size: 16px;
  padding: 10px 16px;
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 80px;
}

.button-center {
  display: block;
  margin: 20px auto; /* zentriert den button */
  text-align: center;
  padding: 12px 24px;
  background-color: #0099ff; /* oder eventuell eine andere Farbe */
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1em;
  max-width: 300px;  
}

/* spezielle Bezahl-buttons */

.payment-button {
  display: block;
  width: 80%;
  max-width: 400px;
  margin: 15px auto;
  padding: 12px 20px;
  font-size: 16px;
  text-align: center;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.payment-button:hover {
  background-color: #0056b3;
}

.weiterlesen-hinweis {
  text-align: center;
  margin: 60px auto 40px;
  font-size: 1.1em;
  color:#444;
}

.weiterlesen-hinweis a {
  color:#0077aa;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px dashed #0077aa;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.weiterlesen-hinweis a:hover {
  color: #005577;
  border-bottom: 1px solid #005577;
}

.zahlung { 
  max-width: 700px;
  margin: 60px auto;
  text-align: center;
  padding: 20px;
}

.zahlungsoptionen {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.zahlungsoptionen .cta-button {
  padding: 12px 24px;
  font-size: 1.1em;
}

.back-link {
  display: block;
  text-align: left;
  margin: 20px;
  font-size: 0.95em;
  color: #0077aa;
  text-decoration: none;
}

.back-link:hover { 
  text-decoration: underline;
}

.footer {
  text-align: center;
  font-size: 0.8em;
  padding: 20px;
  padding-top: 30px;
  color: #888;
  background-color: #f9f9f9;
  margin-top: 120px;
  border-top: 1px solid #ddd;
}

.footer a {
  color: #888;
  text-decoration: none;
  margin: 0 8px;
}

.footer a:hover {
  text-decoration: underline;
  color: #555;
}

.hinweisbox {
  background-color: #f3f3f3;
  border-left: 4px solid #ccc;
  padding: 12px 16px;
  margin: 40px 0;
  margin-top: 140px;
  margin-bottom: 70px; /* Abstand nach unten */
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}

.lagerstand {
  background-color: #e6f4ff;
  border-left: 4px solid #3399ff;
  padding: 12px 16px;
  margin: 0 auto 20px auto;  /* nur unten Abstand */
  max-width: 600px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 4px;
}

.lagerstand::before {
  content: "";
  display: block;
  height: 160px; /* unsichtbarer Puffer */
  margin-top: -160px; /* hebt Ziel 100px höher */
  visibility: hidden;
 }

.kaufhinweis {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.cta-begleittext {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333;
  background-color: #f0f9ff;
  padding: 12px 16px;
  border-radius: 6px;
}

.product-hinweis {
  margin: 40px auto 0 auto;   /* Abstand */
  max-width: 320px;           /* Breite begrenzen */
  padding: 6px 8px;          /* Innenabstand */
  font-size: 0.8em;           /* etwas kleiner */
  line-height: 1.4;           /* luftig */
  text-align: center;         
  color: #777;    
  font-style: italic;     
}


.versandinfo {
  font-size: 0.9em;
  color: #666;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 20px;
}


/* --- rechtliche Seiten --- */

.footer-recht {
  font-size: 0.9em;
  text-align: center;
  padding: 2em 0;
  background-color: #f2f2f2;
  color: #999;
}

.footer-recht a {
  color: #999;
  text-decoration: none;
  margin: 0 0.3em;
}

.footer-recht a:hover {
  text-decoration: underline;
}

.recht-container {
  max-width: 540px;
  margin: 0 auto;
  padding: 1.5em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;   /* dezent, aber noch sehr gut lesbar */

  color: #444 !important;
  background: #fff;
}

/* --- Hauptüberschriften --- */

.recht-header {
  font-size: 1.8em;
  text-align: center;
  margin: 2em 0 1em 0;
  background: none;
  padding: 0;
  font-weight: bold;
  color: #444;
}

/* --- Fließtext --- */

  .recht-section p {
    color: #222;
    margin: 0.5em 0;
    font-size: 1em;
    line-height: 1.5;
  }

/* --- Zurück-button --- */

.recht-zurueck {
  display: block;
  text-align: center;
  margin-top: 3em;
  font-size: 0.95em;
  color: #333;
  text-decoration: underline;
}

.recht-zurueck:hover {
  color: #000;
  text-decoration: none;
}

/* --- Überschriften (z.B. für 1. Verantwortlicher ...) --- */

.recht-container h1,
.recht-container h2,
.recht-container h3 {
  color: #666 !important;
  background: none !important;
  font-weight: normal;
  font-size: 1.1em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  text-align: left;      /* Alle Überschriften linksbündig */
  -webkit-text-fill-color: #222 !important;
}

.recht-container h1 {
  font-size: 1.5em;
  font-weight: bold;
}

  footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9em;
    color: #555;  
  }

  footer ul li a {
    text-decoration: none;
    color: #555;
  }

  footer ul li a:hover {
    text-decoration: underline;
  }

  /* Produktbereich / Lagerstand */

  #lagerstand-text {
    font-weight: bold;
    margin-top: 5px;
    color: #333;
  }

.blog-teaser, .blog-zurueck {
  background-color: #f4f4f4;
  padding: 1.5em;
  margin: 2em 0;
  border-radius: 6px;
  text-align: center;
}

.blog-teaser a, .blog-zurueck a {
  color: #0077cc;
  text-decoration: underline;
  font-weight: bold;
}

/* Produktbild */

.image-slider-container {
  width: 100%;
  max-width: 650px; /* verändere ich sonst noch mal */
  max-height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;  
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-slider-track {
  display: flex;
  width: 200%; /* für 2 slides */
  transition: transform 0.3s ease-in-out;
}

.image-slide {
  flex: 0 0 100%; /* slide nimmt ganzen track */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  box-sizing: border-box;
  padding: 10px;
}


/* Standard-Image-Styling */

.image-slide img {
  object-fit: contain;
  display: block;
  margin: auto;
}

/* Speziell für das Produktbild */

.image-slide.product-slide img {
  max-height: 500px; /* für die Flasche */
  max-width: 100%;
}

/* Spreziell für das Etikett */

.image-slide.etikett-slide img {
  max-height: 400px;
  max-width: 100%; /* für breiteres Bild */
  width: auto;
}

/* Text unter den Bildern */

.slider-caption {
  margin-top: 6px;
  font-size: 13px;
  color: #444;
}

/* Hinweistext */

.slider-instruction {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}

.slider-dots {
  text-align: center;
  margin-top: 10px;
  z-index: 10;
  position: relative;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

 .dot.active {
  background-color: #333;
 }

/* Danke Seite */

.danke-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.danke-section h1 {
  color: #444;
  margin-bottom: 20px;
}

.danke-section p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
}

.back-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #005eff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #0040cc;
}

.zahlungsabschnitt {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

h1.zahlungstitel {
  all: unset;
  display: block;
  background: f0f8ff;
  border: 1px solid #cce0f5;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  color: #333;
  text-align: center;
  font-size: 1.3rem;
  max-width: 90%;
  margin-bottom: 5px;
  padding-bottom: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

h2.zahlungstitel {
  all: unset;
  display: block;
  background: f0f8ff;
  border: 1px solid #cce0f5;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  color: #333;
  text-align: center;
  font-size: 1.3rem;
  max-width: 90%;
  margin-top: 1px;
  padding-top: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

.zahlungstext {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.hinweis {
  font-size: 0.95rem;
  color: #888;
  margin-top: 1.5rem;
}

.zahlungsarten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Klarna-Checkout Formular */

.klarna-checkout form {
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 8px;
}
 
.klarna-checkout h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.klarna-checkout input,
.klarna-checkout select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

#CybotCookiebotDialogBodyButtonDetails 
#CookiebotWidget,
div[id^="CookiebotWidget"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
}