    @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      font-family: 'Outfit', sans-serif;
      scroll-behavior: smooth;
    }

.sticky-bar {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;

  /* ⭐ Exakt dieselben Farben wie Footer */
  background: linear-gradient(135deg, #00262B, #264B3F);

  color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;

  box-shadow: 0 18px 55px rgba(0,0,0,0.32);

  z-index: 999;
  display: flex;
  opacity: 0;
  transition: top 0.3s ease, opacity 0.3s ease;
}





    .sticky-bar.visible {
      top: 0;
      opacity: 1; 
    }

    .sticky-bar .logo-text {
      font-weight: 600;
      font-size: 1.2rem;
    }

    .sticky-bar .lang-switch img {
      width: 24px;
      height: auto;
      margin-left: 0.5rem;
      cursor: pointer;
    }

    .sticky-bar .menu-toggle {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #ffffff;
    }

    .hero {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
    }

    video.bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
	  filter: brightness(60%);
    }

    .logo {
      max-height: 300px;
      width: auto;
    }

    header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background: none;
      z-index: 10;
    }

    .header-center-logo {
      position: absolute;
      left: 50%;
      top: -2px;
      transform: translateX(-50%);
      z-index: 11;
    }

    .menu-toggle {
      font-size: 2rem;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1001;
      transition: color 0.3s;
    }

    .menu-toggle.white {
      color: white;
    }

    .menu-toggle.black {
      color: black;
    }

    .lang-switch {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }

    .lang-switch img {
      width: 24px;
      height: auto;
      cursor: pointer;
    }

    .hero-title {
      position: absolute;
      top: 60%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 4rem;
      font-weight: 300;
      text-align: center;
      z-index: 9;
     
	  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    }

    nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 60%;
      height: 100%;
      background: rgba(255, 255, 255, 0.95);
      transition: right 0.3s ease-in-out;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      z-index: 1000;
    }

    nav.open {
      right: 0;
    }

    nav a {
      margin: 1rem 0;
      color: #00262B;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: bold;
    }

    .section {
      background: #fff;
      color: #00262B;
      min-height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      padding: 1rem 1rem;
      flex-direction: column;
	    font-size: 1.5rem; /* oder 1.1rem, je nach Geschmack */  
    }

    .section .content {
      max-width: 1200px;
      width: 100%;
    }

    .section h2 {
      font-size: 2.5rem;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }

    .section p {
      font-size: 1.2rem;
      font-weight: 300;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      margin-top: 4rem;
    }

    .feature {
      flex: 1 1 calc(33.333% - 2rem);
	  
    display: flex;
    flex-direction: column;	  
      background: white;
      color: #00262B;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-align: center;
      max-width: 100%;
    }
	
/* P-Container flexibel machen, damit der Preis nach unten kann */
.feature p {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

/* Preis */
.feature p b {
    margin-top: auto;     /* 🔥 schiebt Preis GANZ nach unten */
    font-size: 1.1rem;
    font-weight: 900;
    color: #0b6b37;
    display: block;
    padding-top: 15px;
}

	

    .feature img {
      width: 100%;
      min-height: auto;
      display: block;
    }
	
	
    .feature h3 {
      font-size: 1.2rem;
      margin: 1rem 0;
    }
	
/* 🔧 Nur die drei Olivenöl-Boxen im oberen Abschnitt verkleinern */ 
#oil .feature {
  flex: 1 1 calc(30% - 1rem);   /* etwas schmaler als bisher */
  max-width: 600px;             /* kleinere Maximalbreite */
  margin: 0 auto;  
}

/* Bildgröße in diesen Boxen reduzieren */
#oil .feature img {
  height: 380px;                   /* kleineres Bild */ 
  object-fit: cover;
  width: 100%;
}

/* Text etwas kompakter */
#oil .feature h3 {
  font-size: 1.1rem;
  margin: 0.8rem 0;
}

#oil .feature p {
  font-size: 1rem;
  line-height: 1.4;
}
	

    @media (max-width: 768px) {
      .hero-title {
        font-size: 2rem;
        padding: 0 1rem;
      }

      .features {
        flex-direction: column;
        gap: 1.5rem;
      }

      .feature {
        flex: 1 1 100%;
      }
	  
    }
	
    /* Nur Desktop zeigt desktopVideo, Mobile zeigt mobileVideo */
    #mobileVideo {
      display: none;
    }

    @media (max-width: 768px) {
      #desktopVideo {
        display: none;
      }

      #mobileVideo {
        display: block;
      }
    }
	
    .hero-btn {
      display: inline-block;
      margin-top: 1.5rem;
      padding: 0.75rem 1.5rem;
      border: 2px solid white;
      color: white;
      text-decoration: none;
      font-size: 1rem;
      border-radius: 50px;
      transition: background 0.3s, color 0.3s;
    }
	/*
    .hero-btn:hover {
      background: white;
      color: #00262B;
    }*/
		
	#oil::before,
	#about::before {
	  content: "";
	  display: block;
	  height: 100px;
	  margin-top: -100px;
	}	
	
	.olive-health-box {
	  background: #f9f9f9;
	  border-left: 1px solid #e0ddd4;
	  border-top: 1px solid #e0ddd4;
	  border-right: 1px solid #e0ddd4;
	  border-bottom: 1px solid #e0ddd4;
	  padding: 1rem;
	  border-radius: 8px;
	  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	  text-align: left;
	}


	.olive-health-box h3 {
	  font-size: 1.8rem;
	  margin-bottom: 1rem;
	  color: #00262B;
	}

	.olive-health-box ul {
	  list-style: none;
	  padding-left: 0;
	}

	.olive-health-box li {
	  font-size: 1.1rem;
	  line-height: 1.6;
	  margin-bottom: 0.5rem;
	  color: #333;
	}
	
.olive-two-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* beide gleich hoch */
  gap: 2rem;
  margin-top: 2rem;
}

.olive-two-columns .olive-health-box {
  flex: 1 1 45%;
  max-width: 592px;
  width: 100%;
  min-width: 300px;
  word-break: break-word;
}


@media (max-width: 768px) {
  .olive-two-columns {
    flex-direction: column;
  }

  .olive-two-columns .olive-health-box {
    flex: 1 1 100%;
  }
}


	
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

.coldpress-quote {
  background: linear-gradient(135deg, #f4f1ea, #fffdf7, #f7f5ed);
  padding: 3rem 2rem;
  margin: 3rem auto;
  max-width: 100%;
  text-align: center;
  border-radius: 0px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #e0ddd4;
}


.coldpress-quote blockquote {
  font-family: 'Playfair Display', serif;
  color: #00262B;
  position: relative;
}

.coldpress-quote h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
}

.coldpress-quote h1::before,
.coldpress-quote h1::after {
  content: '“';
  font-size: 3rem;
  color: #00262B;
  opacity: 0.3;
  position: absolute;
}

.coldpress-quote h1::before {
  left: -1.5rem;
  top: -1rem;
}

.coldpress-quote h1::after {
  content: '”';
  right: -1.5rem;
  top: -1rem;
}

.coldpress-quote h2 {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
}

.coldpress-quote .inhaltsstoffe {
  font-weight: 500;
  font-style: italic;
}

.site-footer {
  background: linear-gradient(135deg, #00262B, #264B3F);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.95rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.footer-links {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: black;
  cursor: pointer;
  z-index: 10000;
}


#details {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
}

.details-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}


.details-box {
  background-color: #ffffff;
  border-left: 5px solid #6b8e23;
  border-radius: 12px;
  padding: 0.7rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  font-size: 1.3rem;
}

.details-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 1rem 0;
}

.details-box ul li::before {
  content: "✅";
  margin-right: 0.5rem;
  color: #6b8e23;
}

.details-box table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  text-align: left;
  font-size: 0.95rem;
}

.details-box table th,
.details-box table td {
  padding: 0.8rem;
  border-bottom: 1px solid #ddd;
}

.details-box table th {
  background-color: #f9f9f9;
  color: #333;
}

.details-box table td {
  vertical-align: top;
}

.details-box p {
  margin: 0.8rem 0;
}


.subheading {
  color: #466b1f;
  margin-top: 2rem;
  font-weight: 600;

}

.note-box {
  background-color: #f9f9f9;
  border-left: 4px solid #d0e9b8;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
  border-radius: 6px;
}


.hideit{	
	display: none !important;	
}

.close-details {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

.close-details:hover {
  color: #666;
}

#details {
  position: relative;
}

.close-details-inside {
  font-size: 4rem;
  font-weight: bold;
  color: #cc0000;
  cursor: pointer;
  z-index: 10;
  transition: font-size 0.2s ease;
  line-height: 1;
}

.close-details-inside:hover {
  font-size: 3.2rem;
  color: #a00000;
}



.back-arrow {
  position: fixed;
  top: 15px;
  left: 15px;
  font-size: 1.5rem;
  text-decoration: none;
  color: black;
  z-index: 9999;
}


.nutrient-label-box {
  background: #f4f8f1;
  border: 1px solid #c9d8c3;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  max-width: 835px;
  margin: 2rem auto;
  font-size: 0.8rem; /* ≈10px (lesbarer als 0.5rem) */
  color: #2b2b2b;
  line-height: 1.4;
  font-family: Arial, sans-serif;
  letter-spacing: 0.02em;
}
.nutrient-label-box p {
  margin: 0;
}

@media (max-width: 600px) {
  .nutrient-label-box, 
  .coldpress-quote{
    padding: 1.2rem;
    margin: 0rem 0rem;
  }
}




body.dark-mode,
html.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

body.dark-mode .sticky-bar {
  background: #1e1e1e;
  color: #e0e0e0;
  box-shadow: 0 2px 5px rgba(255,255,255,0.05);
}

body.dark-mode .menu-toggle {
  background:#faf9f4;
  color:#2d2d2d;
  border-radius: 12px;       /* 🔥 runde Ecken */
  padding: 6px 12px;         /* schöner Abstand */
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);  /* Premium Schatten */
}


body.dark-mode nav {
  background: rgba(30, 30, 30, 0.95);
}

body.dark-mode nav a {
  color: #f1f1f1;
}

body.dark-mode .section {
  background: #181818;
  color: #e0e0e0;
}

body.dark-mode .feature {
  background: #1f1f1f;
  color: #e0e0e0;
  box-shadow: 0 5px 15px rgba(255,255,255,0.05);
}

body.dark-mode .olive-health-box {
  background: #1e1e1e;
  border-left: 4px solid #66bb6a;
  color: #ddd;
  
   /* Diese 3 Zeilen ergänzen wir */
  border-top: 1px solid #444;
  border-right: 1px solid #444;
  border-bottom: 1px solid #444; 
}

body.dark-mode .olive-health-box h3 {
  color: #90ee90;
}

body.dark-mode .olive-health-box li {
  color: #ccc;
}

body.dark-mode .coldpress-quote {
  background: #2a2a2a;
  border: 1px solid #444;
  color: #f5f5f5;
}

body.dark-mode .coldpress-quote h1,
body.dark-mode .coldpress-quote h2 {
  color: #e0e0e0;
}

body.dark-mode .site-footer {
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  color: #ccc;
}

body.dark-mode .footer-links a {
  color: #ccc;
}

body.dark-mode .details-box {
  background: #222;
  border-left: 5px solid #8bc34a;
  color: #eee;
}

body.dark-mode .details-box table th {
  background: #2c2c2c;
  color: #fff;
}

body.dark-mode .details-box table td { 
  color: #ccc;
}

body.dark-mode .note-box {
  background: #2b2b2b;
  color: #e0e0e0;
  border-left-color: #a5d6a7;
}

body.dark-mode .nutrient-label-box {
  background: #2c2c2c;
  color: #ddd;
  border: 1px solid #444;
}

body.dark-mode .back-arrow {
  color: #fff;
}

body.dark-mode .close-details {
  color: #fff;
}

body.dark-mode .close-details-inside {
  color: #ff6b6b;
}

body.dark-mode .close-details-inside:hover {
  color: #ff3b3b;
}


.dark-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #222;
  transition: transform 0.2s ease, color 0.3s ease;
}

.dark-toggle-btn:hover {
  transform: scale(1.2);
}

/* Im Dark Mode heller */
body.dark-mode .dark-toggle-btn {
  color: #eee;
}


.order-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.order-form h3 {
  text-align: center;
  margin-bottom: 20px;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.order-grid input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.quantity-selector {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quantity-selector button {
  background-color: #4CAF50;
  color: white;
  border: none;
  font-size: 24px;
  padding: 5px 15px;
  border-radius: 8px;
  cursor: pointer;
}

.quantity-selector span {
  font-size: 20px;
  margin: 0 20px;
}

.price-text {
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
}

.whatsapp-button {
  margin-top: 20px;
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #25D366;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.whatsapp-button:hover {
  background-color: #20b958;
}

.feature {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  text-align: left;
}

/* 🟢 NEU: Innenabstand für Text */
.feature h3,
.feature p {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

/* Etwas Luft über der Überschrift */
.feature h3 {
  padding-top: 1rem;
}

/* --- Extra-Produkte: Desktop nebeneinander, Mobile 100% wie Kaki --- */
.extra-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

/* gleiche Struktur wie Kaki-Produkte */
.extra-products .feature {
  flex: 1 1 calc(25% - 2rem);
  max-width: 260px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extra-products .feature img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* gleiche Typografie wie Kaki */
.extra-products .feature h3,
.extra-products .feature p {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.extra-products .feature h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.extra-products .feature p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  font-weight: 300;
}

/* Hover Effekt */
.extra-products .feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* --- RESPONSIVE --- */

/* Laptop/Tablet: 3 nebeneinander */
@media (max-width: 1024px) {
  .extra-products .feature {
    flex: 1 1 calc(33.333% - 2rem);
  }
}

/* Mobile: 100% Breite (wie Kaki) */
@media (max-width: 768px) {
  .extra-products {
    flex-direction: column;
    gap: 1.5rem;
  }

  .extra-products .feature {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .extra-products .feature img {
    height: 200px;
  }
}

/* Dark Mode */
body.dark-mode .extra-products .feature {
  background: #1f1f1f;
  color: #e0e0e0;
  box-shadow: 0 5px 15px rgba(255,255,255,0.05);
}

body.dark-mode .extra-products .feature h3 {
  color: #a5d6a7; /* heller Grünton, wie bei Kaki */
}

body.dark-mode .extra-products .feature p {
  color: #ddd; /* hellgrau wie bei den Kaki-Beschreibungen */
}

body.dark-mode .extra-products .feature:hover {
  box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

/* ========================= */
/*  DARK MODE PRICE OVERLAY  */
/* ========================= */

body.dark-mode #price_overlay {
    background: rgba(30,30,30,0.75);
    color: #eee;
    border: 12px solid rgba(180,150,40,0.6); /* gold etwas dunkler */
    box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

body.dark-mode #price_overlay h2 {
    color: #fff;
}

body.dark-mode #price_overlay .price-row {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

body.dark-mode #price_overlay strong {
    color: #a5d6a7; /* schönes helles Grün */
}

/* MOBILE PRICE BOX */
body.dark-mode #mobile_prices {
    background: rgba(30,30,30,0.85);
    color: #eee;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

body.dark-mode #mobile_prices h2 {
    color: #fff;
}

body.dark-mode #mobile_prices .price-row {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

body.dark-mode #mobile_prices strong {
    color: #a5d6a7;
}



/* =================== */
/*   DESKTOP VERSION   */
/* =================== */

.olive-desktop-wrapper {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: none;
    margin-bottom: 40px;

    /* ❗ WICHTIG – entfernen! */
    overflow: visible; 
}


#olive_desktop {
    width: 100%;
    max-height: 800px;
    display: block;

    /* ⭐ Starker Schatten (mehr Tiefe, breiter, dunkler) */
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.45),   /* Hauptschatten */
        0 8px 18px rgba(0, 0, 0, 0.25);    /* weicher Glow */

    /* Nur unten abgerundet */
    border-radius: 0 0 12px 12px;

    margin-bottom: 40px;
}


#price_overlay {
    position: absolute;
    top: 50%;
    right: 2vw;             /* statt fixer 40px → flexibel */
    transform: translateY(-50%);

    width: 32vw;            /* responsive Breite (32% vom Bildschirm) */
    max-width: 100%;       /* darf NIE breiter als 500px werden */
    min-width: 260px;       /* wird nie winzig */
    
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    padding: 25px 28px;
    border-radius: 16px;

    border: 8px solid rgba(200,170,60,0.6);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* 🟡 Wenn Bildschirm kleiner wird → Preisbox automatisch größer und mittiger */
@media (max-width: 1400px) {
    #price_overlay {
        width: 38vw;
        right: 2vw;
    }
}

@media (max-width: 1100px) {
    #price_overlay {
        width: 45vw;
        right: 1vw;
        padding: 20px;
    }

    #price_overlay h2 {
        font-size: 1.9rem;
    }

    .price-row {
        font-size: 1rem;
    }
}

/* 🟢 Ab 900px → Box unten mittig (wie viele Shops) */
@media (max-width: 1080px) {
    #price_overlay {
        position: static;
        transform: none;
        width: 90%;
        margin: 20px auto 0 auto;
    }
}


#price_overlay h2 {
    font-size: 2.3rem; 
    margin-bottom: 15px;
    font-weight: 700;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.price-row:last-child {
    border-bottom: none;
}
.price-row strong {
    color: #006b3f;
}

/* =================== */
/*      MOBILE          */
/* =================== */

#olive_mobile {
    width: 100%;
    margin-top: 20px;
}

#mobile_prices {
    width: 90%;
    max-width: 450px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

#mobile_prices h2 {
    text-align: center;
    margin-bottom: 15px;
}

/* Desktop schaltet Mobile ab – Mobile schaltet Desktop ab */
@media (min-width: 768px) {
    #olive_mobile,
    #mobile_prices {
        display: none;
    }
    .olive-desktop-wrapper {
        display: block;
    }
}


.logo-text {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 600;
}

.top-arrow {
    font-size: 1.1rem;
    color: #c8aa3c;         /* GOLD für deinen Brand */
    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Hover Effekt – schöner Premium Move */
.logo-text:hover .top-arrow {
    opacity: 1;
    transform: translateY(-2px);  /* leichte Bewegung nach oben */
}

/* DARK MODE: Gold etwas heller, damit es auf dunkel leuchtet */
body.dark-mode .top-arrow {
    color: #e6c76b;
    opacity: 0.9;
}


.logo-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.home-icon {
  font-size: 1.2rem;
  filter: brightness(200%); /* macht es heller/weißer */
}

.top-arrow {
  margin-left: 4px;
}


.promo-flash {
	margin-top: 8px;
	padding: 10px 12px;
	border-radius: 8px;
	font-weight: 700;
	text-align: center;
	background: #ffe680;
	color: #2f3b16;
	border: 2px solid #d6a800;
	animation: promoFlash 1.2s infinite;
	box-shadow: 0 0 12px rgba(214, 168, 0, 0.6);
}

@keyframes promoFlash {
	0% {
		transform: scale(1);
		background: #ffe680;
		box-shadow: 0 0 8px rgba(214, 168, 0, 0.5);
	}
	50% {
		transform: scale(1.03);
		background: #fff3b0;
		box-shadow: 0 0 18px rgba(214, 168, 0, 0.9);
	}
	100% {
		transform: scale(1);
		background: #ffe680;
		box-shadow: 0 0 8px rgba(214, 168, 0, 0.5);
	}
}
 
 
    .buy-button {
        display: inline-block;
        margin-top: 12px;
        padding: 13px 28px;
        border-radius: 999px;
        background: linear-gradient(135deg, #2f6b2f, #6fa82f);
        color: #ffffff !important;
        font-size: 18px;
        font-weight: 800;
        text-decoration: none;
        letter-spacing: 0.3px;
        box-shadow: 0 6px 16px rgba(47, 107, 47, 0.45);
        transition: all 0.25s ease;
        border: 2px solid rgba(255,255,255,0.7);
    }

    .buy-button:hover {
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 10px 24px rgba(47, 107, 47, 0.65);
        background: linear-gradient(135deg, #3d7d36, #84bd3a);
        color: #ffffff !important;
    }

    .buy-button:active {
        transform: scale(0.98);
    }

    .buy-button small {
        display: block;
        font-size: 12px;
        font-weight: 600;
        opacity: 0.9;
        margin-top: 2px;
    }

    @media (max-width: 768px) {
        .buy-button {
            width: 100%;
            box-sizing: border-box;
            font-size: 17px;
            padding: 14px 18px;
        }
    }

/* ================================ */
/* Weitere Produkte Slider           */
/* ================================ */

.product-slider-wrap {
  position: relative;
  width: 100%;
  margin-top: 3rem;
}

/* Override der normalen Produkt-Gitteransicht nur im Slider */
.product-slider-wrap .extra-products {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  gap: 1.5rem;
  margin-top: 0;
  padding: 12px 54px 28px 54px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x;
}

.product-slider-wrap .extra-products::-webkit-scrollbar {
  display: none;
}

.product-slider-wrap .extra-products .feature {
  flex: 0 0 260px !important;
  width: 260px;
  max-width: 260px !important;
  min-width: 260px;
  scroll-snap-align: start;
}

.product-slider-wrap .extra-products .feature img {
  height: 180px;
  object-fit: cover;
}

.product-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #00262B, #264B3F);
  color: #ffffff;
  font-size: 36px;
  line-height: 40px;
  font-weight: 300;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.product-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: linear-gradient(135deg, #264B3F, #b8860b);
}

.product-arrow-left {
  left: 4px;
}

.product-arrow-right {
  right: 4px;
}

body.dark-mode .product-arrow {
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  color: #f5f5f5;
  box-shadow: 0 8px 22px rgba(255,255,255,0.08);
}

body.dark-mode .product-arrow:hover {
  background: linear-gradient(135deg, #2b2b2b, #6b8e23);
}

/* Mobile: weiterhin horizontal wischbar, nicht untereinander */
@media (max-width: 768px) {
  .product-slider-wrap {
    margin-top: 2rem;
  }

  .product-slider-wrap .extra-products {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 1rem;
    padding: 10px 44px 22px 44px;
  }

  .product-slider-wrap .extra-products .feature {
    flex: 0 0 78vw !important;
    width: 78vw;
    max-width: 78vw !important;
    min-width: 78vw;
  }

  .product-slider-wrap .extra-products .feature img {
    height: 190px;
  }

  .product-arrow {
    width: 38px;
    height: 38px;
    font-size: 30px;
    line-height: 34px;
  }

  .product-arrow-left {
    left: 2px;
  }

  .product-arrow-right {
    right: 2px;
  }
}

@media (max-width: 420px) {
  .product-slider-wrap .extra-products {
    padding-left: 38px;
    padding-right: 38px;
  }

  .product-slider-wrap .extra-products .feature {
    flex-basis: 82vw !important;
    width: 82vw;
    max-width: 82vw !important;
    min-width: 82vw;
  }
}


.olive-history-box {
  margin: 3rem auto;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #f4f1ea, #fffdf7, #eef4e8);
  color: #00262B;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  border-top: 1px solid #e0ddd4;
  border-bottom: 1px solid #e0ddd4;
}

.olive-history-box .content {
  max-width: 1100px;
  margin: 0 auto;
}

.olive-history-box h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 1.8rem;
}

.olive-history-box p {
  font-size: 1.18rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.1rem;
}

body.dark-mode .olive-history-box {
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a, #223026);
  color: #e0e0e0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

.price-secret-box {
  margin: 3rem auto;
  padding: 3.2rem 1.5rem;
  background: linear-gradient(135deg, #fff8e6, #fffdf7, #eef4e8);
  color: #00262B;
  box-shadow: 0 10px 32px rgba(0,0,0,0.10);
  border-top: 1px solid #e0ddd4;
  border-bottom: 1px solid #e0ddd4;
}

.price-secret-box .content {
  max-width: 1100px;
  margin: 0 auto;
}

.price-secret-box h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 1.8rem;
}

.price-secret-box p {
  font-size: 1.17rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.1rem;
}

.price-secret-box .intro-text {
  font-size: 1.25rem;
  font-weight: 400;
}

.price-secret-box .final-text {
  font-weight: 500;
  background: rgba(255,255,255,0.55);
  border-left: 4px solid #b8860b;
  padding: 1rem 1.2rem;
  border-radius: 10px;
}

.olive-check-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.4rem 0;
}

.olive-check-list li {
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 0.35rem;
}

.olive-check-list li::before {
  content: "✅ ";
  margin-right: 0.25rem;
}

body.dark-mode .price-secret-box {
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a, #223026);
  color: #e0e0e0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

body.dark-mode .price-secret-box .final-text {
  background: rgba(255,255,255,0.06);
  border-left-color: #d6a800;
}


/* ============================= */
/* EDREMIT OLIVENSORTE BLOCK */
/* ============================= */

.olive-variety-box {
  background: linear-gradient(135deg, #f4f1ea, #fffdf7, #eef4e8);
  padding: 4rem 1.5rem;
  margin: 3rem auto;
  color: #00262B;
  border-top: 1px solid #e0ddd4;
  border-bottom: 1px solid #e0ddd4;
}

.olive-variety-card {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 2.8rem;
  align-items: center;
  background: rgba(255,255,255,0.78);
  border-radius: 22px;
  padding: 2.4rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  border: 1px solid rgba(224,221,212,0.9);
}

.olive-variety-image img {
  width: 100%;
  max-width: 420px;
  height: 330px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.olive-variety-text h2 {
  font-size: 2.3rem;
  margin-bottom: 1.2rem;
  color: #00262B;
}

.olive-variety-text p {
  font-size: 1.14rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1rem;
}

.olive-variety-text .intro-text {
  font-size: 1.22rem;
  font-weight: 400;
}

.olive-variety-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1.4rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
}

.olive-variety-list li {
  background: rgba(56, 94, 54, 0.08);
  border-left: 4px solid #385e36;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 1.06rem;
  font-weight: 500;
}

.olive-variety-list li::before {
  content: "🫒 ";
}

/* Dark Mode */
body.dark-mode .olive-variety-box {
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a, #223026);
  color: #e0e0e0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

body.dark-mode .olive-variety-card {
  background: rgba(31,31,31,0.9);
  border: 1px solid #444;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

body.dark-mode .olive-variety-text h2 {
  color: #a5d6a7;
}

body.dark-mode .olive-variety-text p {
  color: #e0e0e0;
}

body.dark-mode .olive-variety-list li {
  background: rgba(165,214,167,0.08);
  border-left-color: #a5d6a7;
  color: #e0e0e0;
}

/* Tablet */
@media (max-width: 1024px) {
  .olive-variety-card {
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .olive-variety-image img {
    max-width: 360px;
    height: 300px;
  }

  .olive-variety-text h2 {
    font-size: 2rem;
  }

  .olive-variety-text p {
    font-size: 1.08rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .olive-variety-box {
    padding: 2.5rem 1rem;
    margin: 2rem auto;
  }

  .olive-variety-card {
    grid-template-columns: 1fr;
    padding: 1.2rem;
    gap: 1.5rem;
  }

  .olive-variety-image img {
    max-width: 100%;
    height: 230px;
    margin: 0 auto;
  }

  .olive-variety-text h2 {
    text-align: center;
    font-size: 1.8rem;
  }

  .olive-variety-text p {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .olive-variety-text .intro-text {
    font-size: 1.1rem;
  }

  .olive-variety-list {
    grid-template-columns: 1fr;
  }

  .olive-variety-list li {
    font-size: 1rem;
  } 
}


.nutrition-box {
  background: #faf8f0;
}

.nutrition-box .content {
  max-width: 850px;
  margin: 0 auto;
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.nutrition-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.nutrition-table tr:last-child td {
  border-bottom: none;
}

.nutrition-table td:first-child {
  font-weight: 600;
}

.nutrition-table td:last-child {
  text-align: right;
}

.nutrition-note {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 600px) {
  .nutrition-table td {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}


/* ================================ */
/* Laborbericht-Bereich              */
/* ================================ */

.labor-report-section {
  background: #faf8f0;
}

.labor-report-section .content {
  max-width: 1050px;
  margin: 0 auto;
}

.labor-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 20px auto;
  text-align: center;
}

.labor-highlight-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 25px auto;
}

.labor-highlight-box div {
  background: #fff;
  border-left: 4px solid #385e36;
  padding: 14px 12px;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.labor-note {
  text-align: center;
  color: #555;
  margin-bottom: 18px;
}

.labor-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.labor-gallery img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: zoom-in;
  box-shadow: 0 3px 14px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.labor-gallery img:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.18);
}

@media (max-width: 768px) {
  .labor-highlight-box {
    grid-template-columns: 1fr 1fr;
  }

  .labor-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .labor-highlight-box {
    grid-template-columns: 1fr;
  }
}

body.dark-mode .labor-report-section {
  background: #181818;
}

body.dark-mode .labor-highlight-box div {
  background: #1f1f1f;
  color: #e0e0e0;
  border-left-color: #66bb6a;
}

body.dark-mode .labor-note {
  color: #ccc;
}

/* ================================ */
/* Großes Popup / Lightbox           */
/* ================================ */

.site-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.9);
  padding: 72px 24px 28px 24px;
  overflow: auto;
  box-sizing: border-box;
}

.site-lightbox.is-open {
  display: block;
}

.site-lightbox-inner {
  width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.site-lightbox img {
  display: block;
  width: auto;
  max-width: 92vw;
  max-height: calc(100vh - 110px);
  height: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.55);
}

.site-lightbox.labor-mode img {
  width: min(96vw, 1050px);
  max-width: none;
  max-height: none;
  cursor: grab;
}

.site-lightbox-close {
  position: fixed;
  top: 14px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 34px;
  line-height: 44px;
  cursor: pointer;
  z-index: 100000;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.site-lightbox-close:hover {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .site-lightbox {
    padding: 68px 12px 24px 12px;
  }

  .site-lightbox img {
    max-width: 96vw;
    max-height: calc(100vh - 105px);
  }

  .site-lightbox.labor-mode img {
    width: 900px;
    max-width: none;
    max-height: none;
  }

  .site-lightbox-inner {
    justify-content: flex-start;
  }

  .site-lightbox-close {
    top: 10px;
    right: 12px;
  }
}


/* =========================================================
   100prOlive Modernisierung 2026
   ========================================================= */
:root {
  --brand-dark: #00262B;
  --brand-green: #264B3F;
  --brand-olive: #385e36;
  --brand-gold: #b8860b;
  --surface-warm: #faf8f0;
  --surface-card: #ffffff;
  --text-main: #00262B;
  --text-muted: #5d665f;
  --radius-lg: 22px;
  --shadow-soft: 0 14px 38px rgba(0, 38, 43, 0.10);
}

body {
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.section {
  padding: clamp(2.8rem, 5vw, 4.8rem) clamp(1rem, 3vw, 1.5rem);
}

.section .content,
.olive-history-box .content,
.price-secret-box .content,
.chatgpt-price-section .content,
.quality-transparency-section .content {
  max-width: 1160px;
}

.section h2,
.olive-history-box h2,
.price-secret-box h2,
.olive-guide h2,
#season-products h2,
#about h2 {
  text-align: left;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section p,
.section li,
.olive-history-box p,
.price-secret-box p {
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.section-lead {
  max-width: 850px;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(184, 134, 11, 0.12);
  color: #74530a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.trust-pills span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(56, 94, 54, 0.10);
  color: #244b2b;
  font-size: 0.85rem;
  font-weight: 800;
}

/* Qualität & Transparenz: Nährwerte + Labor nebeneinander */
.quality-transparency-section {
  background:
    radial-gradient(circle at top left, rgba(184, 134, 11, 0.12), transparent 32%),
    linear-gradient(135deg, #faf8f0, #fffdf7 52%, #eef4e8);
  color: var(--text-main);
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
  align-items: stretch;
}

.quality-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(224,221,212,0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.1rem, 2.2vw, 1.65rem);
  backdrop-filter: blur(10px);
}

.quality-card-header {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1rem;
}

.quality-icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(56,94,54,0.12), rgba(184,134,11,0.14));
  font-size: 1.55rem;
}

.quality-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.2;
  color: var(--brand-dark);
}

.quality-card-header p {
  margin: 0.2rem 0 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.quality-transparency-section .nutrition-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.quality-transparency-section .nutrition-table td {
  padding: 0.72rem 0.9rem;
  border-bottom: 1px solid #ece8dc;
  font-size: clamp(0.95rem, 1.25vw, 1.03rem);
}

.quality-transparency-section .nutrition-table tr:last-child td {
  border-bottom: none;
}

.quality-transparency-section .nutrition-table td:first-child {
  font-weight: 800;
  color: #223b2a;
}

.quality-transparency-section .nutrition-table td:last-child {
  text-align: right;
  white-space: nowrap;
  color: #26312a;
}

.quality-transparency-section .nutrition-note,
.quality-transparency-section .labor-note {
  margin-top: 0.95rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.quality-transparency-section .labor-intro {
  margin: 0 0 1rem 0;
  max-width: none;
  text-align: left;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  color: #2d3b32;
}

.quality-transparency-section .labor-highlight-box {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.quality-transparency-section .labor-highlight-box div {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.88);
  border-left: 4px solid var(--brand-olive);
  font-size: 0.96rem;
}

.quality-transparency-section .labor-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.quality-transparency-section .labor-gallery img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* ChatGPT / KI Preischeck */
.chatgpt-price-section {
  background: linear-gradient(135deg, #f4f1ea, #fffdf7 58%, #edf4e8);
  color: var(--text-main);
}

.chatgpt-price-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(224,221,212,0.95);
  border-radius: 26px;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  box-shadow: 0 18px 45px rgba(0, 38, 43, 0.12);
}

.chatgpt-price-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--brand-green), var(--brand-gold));
}

.chatgpt-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.chatgpt-badge {
  flex: 0 0 auto;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #00262B;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0,38,43,0.20);
}

.chatgpt-question {
  margin: 0 0 1rem 0;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(56, 94, 54, 0.08);
  border: 1px solid rgba(56, 94, 54, 0.16);
  font-weight: 700;
}

.chatgpt-summary {
  max-width: 920px;
  color: #243b2b;
}

.chatgpt-summary strong {
  color: #0b6b37;
  font-weight: 900;
}

.chatgpt-table-wrap {
  overflow-x: auto;
  margin-top: 1.2rem;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.chatgpt-price-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}

.chatgpt-price-table th,
.chatgpt-price-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid #ece8dc;
  text-align: left;
}

.chatgpt-price-table th {
  background: linear-gradient(135deg, #00262B, #264B3F);
  color: #fff;
  font-weight: 800;
}

.chatgpt-price-table td:last-child,
.chatgpt-price-table th:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 800;
}

.chatgpt-note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Moderne Olivensorten-Karte */
.olive-variety-card.modern-origin-card {
  grid-template-columns: minmax(280px, 390px) 1fr;
  align-items: stretch;
  background: rgba(255,255,255,0.86);
  border-radius: 28px;
}

.olive-variety-card.modern-origin-card .olive-variety-image {
  position: relative;
}

.olive-variety-card.modern-origin-card .olive-variety-image::after {
  content: "Edremit / Ayvalık";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 38, 43, 0.78);
  backdrop-filter: blur(7px);
  font-weight: 800;
  font-size: 0.92rem;
}

.olive-variety-card.modern-origin-card .olive-variety-image img {
  height: 100%;
  min-height: 360px;
  max-width: none;
}

.olive-variety-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.3rem 0;
}

.olive-variety-facts div {
  padding: 0.95rem;
  border-radius: 16px;
  background: rgba(56, 94, 54, 0.08);
  border: 1px solid rgba(56, 94, 54, 0.13);
}

.olive-variety-facts span,
.aka-label {
  display: block;
  color: #6c755f;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.olive-variety-facts strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.05rem;
  color: #173d25;
}

.olive-variety-facts small {
  display: block;
  margin-top: 0.25rem;
  color: #5e675a;
  line-height: 1.35;
}

.origin-final-text {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(184, 134, 11, 0.10);
  border-left: 4px solid var(--brand-gold);
}

/* Modernes Menü */
body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 22, 0.48);
  backdrop-filter: blur(3px);
  z-index: 999;
}

nav#mobileMenu {
  width: min(390px, 88vw);
  right: -110%;
  padding: 1.2rem;
  gap: 0.6rem;
  background: rgba(255, 253, 247, 0.96);
  border-left: 1px solid rgba(224,221,212,0.9);
  box-shadow: -18px 0 55px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px);
}

nav#mobileMenu.open {
  right: 0;
}

.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.2rem 1rem 0.2rem;
  border-bottom: 1px solid rgba(0,38,43,0.10);
  color: var(--brand-dark);
}

.menu-head strong {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.close-menu {
  position: static;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: #00262B;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

nav#mobileMenu a {
  display: block;
  margin: 0;
  padding: 0.92rem 1rem;
  border-radius: 15px;
  color: var(--brand-dark);
  background: rgba(56,94,54,0.06);
  border: 1px solid rgba(56,94,54,0.08);
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

nav#mobileMenu a:hover {
  transform: translateX(-3px);
  background: rgba(184,134,11,0.12);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

nav#mobileMenu a.menu-cta-primary {
  background: linear-gradient(135deg, #2f6b2f, #7aa834);
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 107, 47, 0.28);
}

nav#mobileMenu a.menu-cta-whatsapp {
  background: linear-gradient(135deg, #1ea952, #25D366);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
}

nav#mobileMenu a.menu-cta-whatsapp span {
  font-size: 0.92rem;
  opacity: 0.92;
}

/* Dark Mode Ergänzungen */
body.dark-mode .section-eyebrow {
  background: rgba(214, 168, 0, 0.16);
  color: #e6c76b;
}

body.dark-mode .trust-pills span {
  background: rgba(165,214,167,0.12);
  color: #cdeecd;
}

body.dark-mode .quality-transparency-section,
body.dark-mode .chatgpt-price-section {
  background: linear-gradient(135deg, #181818, #202020 55%, #223026);
  color: #e0e0e0;
}

body.dark-mode .quality-card,
body.dark-mode .chatgpt-price-card,
body.dark-mode .quality-transparency-section .labor-highlight-box div {
  background: rgba(31,31,31,0.92);
  border-color: #444;
  color: #e0e0e0;
}

body.dark-mode .quality-card h3,
body.dark-mode .chatgpt-price-card h2 {
  color: #a5d6a7;
}

body.dark-mode .quality-card-header p,
body.dark-mode .section-lead,
body.dark-mode .quality-transparency-section .nutrition-note,
body.dark-mode .quality-transparency-section .labor-note,
body.dark-mode .chatgpt-note,
body.dark-mode .chatgpt-summary,
body.dark-mode .quality-transparency-section .labor-intro {
  color: #d5d5d5;
}

body.dark-mode .quality-transparency-section .nutrition-table,
body.dark-mode .chatgpt-price-table {
  background: #1f1f1f;
  color: #e0e0e0;
  box-shadow: 0 4px 18px rgba(255,255,255,0.05);
}

body.dark-mode .quality-transparency-section .nutrition-table td,
body.dark-mode .chatgpt-price-table td {
  border-bottom-color: #333;
  color: #e0e0e0;
}

body.dark-mode .quality-transparency-section .nutrition-table td:first-child {
  color: #cdeecd;
}

body.dark-mode .chatgpt-question {
  background: rgba(165,214,167,0.08);
  border-color: rgba(165,214,167,0.18);
  color: #f1f1f1;
}

body.dark-mode .chatgpt-summary strong {
  color: #a5d6a7;
}

body.dark-mode .olive-variety-facts div,
body.dark-mode .origin-final-text {
  background: rgba(165,214,167,0.08);
  border-color: rgba(165,214,167,0.18);
}

body.dark-mode .olive-variety-facts span,
body.dark-mode .aka-label,
body.dark-mode .olive-variety-facts small {
  color: #cfcfcf;
}

body.dark-mode .olive-variety-facts strong {
  color: #a5d6a7;
}

body.dark-mode nav#mobileMenu {
  background: rgba(28, 28, 28, 0.96);
  border-left-color: #444;
}

body.dark-mode .menu-head {
  color: #e0e0e0;
  border-bottom-color: #444;
}

body.dark-mode nav#mobileMenu a {
  background: rgba(255,255,255,0.05);
  border-color: #3a3a3a;
  color: #e0e0e0;
}

body.dark-mode nav#mobileMenu a:hover {
  background: rgba(214, 168, 0, 0.12);
}

@media (max-width: 980px) {
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .chatgpt-card-top {
    flex-direction: column;
  }

  .olive-variety-card.modern-origin-card {
    grid-template-columns: 1fr;
  }

  .olive-variety-card.modern-origin-card .olive-variety-image img {
    min-height: 260px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 1rem;
  }

  .section h2,
  .olive-history-box h2,
  .price-secret-box h2 {
    font-size: clamp(1.65rem, 7vw, 2.05rem);
  }

  .quality-transparency-section .labor-highlight-box,
  .olive-variety-facts {
    grid-template-columns: 1fr;
  }

  .quality-transparency-section .labor-gallery {
    grid-template-columns: repeat(3, minmax(86px, 1fr));
  }

  .quality-card {
    padding: 1rem;
  }

  .quality-card-header {
    align-items: flex-start;
  }

  .quality-transparency-section .nutrition-table td {
    padding: 0.68rem 0.65rem;
  }

  .quality-transparency-section .nutrition-table td:last-child {
    white-space: normal;
  }

  .chatgpt-price-card {
    padding: 1.15rem;
    border-radius: 22px;
  }

  .chatgpt-badge {
    white-space: normal;
    line-height: 1.35;
  }

  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .logo {
    max-height: 240px;
  }

  #price_overlay h2,
  #mobile_prices h2 {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .quality-transparency-section .labor-gallery {
    gap: 0.5rem;
  }

  .quality-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 14px;
    font-size: 1.35rem;
  }
}

/* Finale Ausrichtung: direkte Abschnittsüberschriften ebenfalls bündig zum Content */
#oil_good > h2 {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.olive-variety-text h2 {
  text-align: left;
}

@media (max-width: 768px) {
  .olive-variety-text h2 {
    text-align: left;
  }
}

/* =========================================================
   Mobile-Fix KI-Preischeck + einheitlichere Lesbarkeit
   Hinweis: .coldpress-quote bleibt bewusst unverändert.
   ========================================================= */
body {
  font-size: clamp(17px, 1.12vw, 19px);
}

.section:not(.coldpress-quote) p,
.section:not(.coldpress-quote) li,
.olive-history-box p,
.price-secret-box p,
.olive-variety-text p,
.quality-card p,
.chatgpt-summary,
.chatgpt-question,
.chatgpt-note,
#mobile_prices,
#price_overlay {
  font-size: clamp(1.05rem, 1.55vw, 1.2rem);
  line-height: 1.72;
  font-weight: 400;
}

.section:not(.coldpress-quote) h2,
.olive-history-box h2,
.price-secret-box h2,
.olive-guide h2,
#season-products h2,
#about h2,
.chatgpt-price-card h2,
.quality-card h3,
.olive-variety-text h2 {
  line-height: 1.16;
  letter-spacing: -0.025em;
}

@media (max-width: 768px) {
  body {
    font-size: 17px;
  }

  .section:not(.coldpress-quote) p,
  .section:not(.coldpress-quote) li,
  .olive-history-box p,
  .price-secret-box p,
  .olive-variety-text p,
  .quality-card p,
  .chatgpt-summary,
  .chatgpt-question,
  .chatgpt-note,
  #mobile_prices,
  #price_overlay {
    font-size: 1.07rem;
    line-height: 1.72;
  }

  .section:not(.coldpress-quote) h2,
  .olive-history-box h2,
  .price-secret-box h2,
  .olive-guide h2,
  #season-products h2,
  #about h2,
  .chatgpt-price-card h2,
  .olive-variety-text h2 {
    font-size: clamp(1.85rem, 7.2vw, 2.25rem);
  }

  /* KI-Preischeck-Tabelle mobil nicht horizontal scrollen lassen,
     sondern als einzelne Preis-Karten anzeigen. */
  .chatgpt-table-wrap {
    overflow: visible;
    box-shadow: none;
    border-radius: 0;
  }

  .chatgpt-price-table {
    display: block;
    width: 100%;
    min-width: 0;
    background: transparent;
    border-collapse: separate;
  }

  .chatgpt-price-table tbody {
    display: block;
    width: 100%;
  }

  .chatgpt-price-table tr:first-child {
    display: none;
  }

  .chatgpt-price-table tr:not(:first-child) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    width: 100%;
    margin: 0 0 0.85rem 0;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #ece8dc;
    border-radius: 16px;
    box-shadow: 0 5px 16px rgba(0, 38, 43, 0.07);
  }

  .chatgpt-price-table td {
    display: block;
    width: 100%;
    padding: 0;
    border-bottom: 0;
    text-align: left;
  }

  .chatgpt-price-table td:first-child {
    font-size: 1.08rem;
    line-height: 1.38;
    font-weight: 800;
    color: var(--brand-dark);
  }

  .chatgpt-price-table td:last-child {
    justify-self: start;
    width: auto;
    text-align: left;
    white-space: nowrap;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(56, 94, 54, 0.10);
    color: #0b6b37;
    font-size: 1.08rem;
    font-weight: 900;
  }
}

@media (max-width: 420px) {
  .chatgpt-price-card {
    padding: 1.05rem;
  }

  .chatgpt-price-table tr:not(:first-child) {
    padding: 0.9rem;
  }
}

body.dark-mode .chatgpt-price-table tr:not(:first-child) {
  background: #1f1f1f;
  border-color: #3a3a3a;
  box-shadow: 0 5px 16px rgba(255,255,255,0.04);
}

body.dark-mode .chatgpt-price-table td:first-child {
  color: #e0e0e0;
}

body.dark-mode .chatgpt-price-table td:last-child {
  background: rgba(165,214,167,0.12);
  color: #a5d6a7;
}


/* =========================================================
   Menü Scroll-Fix
   Viele Menüpunkte sollen im geöffneten Off-Canvas-Menü
   sauber scrollbar bleiben, ohne die Seite im Hintergrund
   mitzuscrollen.
   ========================================================= */
nav#mobileMenu {
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-gutter: stable;
  padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
}

nav#mobileMenu .menu-head {
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(16px);
}

nav#mobileMenu::-webkit-scrollbar {
  width: 8px;
}

nav#mobileMenu::-webkit-scrollbar-track {
  background: rgba(0, 38, 43, 0.06);
}

nav#mobileMenu::-webkit-scrollbar-thumb {
  background: rgba(0, 38, 43, 0.28);
  border-radius: 999px;
}

nav#mobileMenu::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 38, 43, 0.42);
}

body.dark-mode nav#mobileMenu .menu-head {
  background: rgba(28, 28, 28, 0.96);
}

body.dark-mode nav#mobileMenu::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
}

body.dark-mode nav#mobileMenu::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.28);
}

@media (max-width: 768px) {
  nav#mobileMenu {
    width: min(420px, 92vw);
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }
}



/* =========================================================
   Produkt-Slider Touch-Fix
   Auf Mobile soll man die Produktkarten selbst greifen und
   horizontal wischen können. Die Bilder bleiben trotzdem per
   Tap für die Lightbox nutzbar.
   ========================================================= */
.product-slider-wrap,
.product-slider-wrap * {
  -webkit-tap-highlight-color: transparent;
}

.product-slider-wrap .extra-products {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.product-slider-wrap .extra-products.is-dragging,
.product-slider-wrap .extra-products.is-dragging * {
  cursor: grabbing;
}

.product-slider-wrap .extra-products .feature,
.product-slider-wrap .extra-products .feature * {
  touch-action: pan-y;
}

.product-slider-wrap .extra-products img {
  -webkit-user-drag: none;
  user-select: none;
}

.product-slider-wrap .extra-products.is-dragging img,
.product-slider-wrap .extra-products.is-dragging a {
  pointer-events: none;
}

/* =========================================================
   Produkt-Slider Pfeil-Position Fix
   Die Slider-Pfeile sitzen jetzt auf Höhe des Produktbildes,
   damit sie den Text in den Produktkarten nicht mehr verdecken.
   ========================================================= */
.product-slider-wrap .product-arrow {
  top: 102px;
}

@media (max-width: 768px) {
  .product-slider-wrap .product-arrow {
    top: 105px;
  }
}


/* ================================ */
/* Feste Themen-Navigation ↑ ↓       */
/* ================================ */
.topic-scroll-nav {
  position: fixed;
  right: 20px;
  bottom: 92px; /* lässt Platz für den Dark-Mode-Button */
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.topic-scroll-nav.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.topic-scroll-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  background: linear-gradient(135deg, #00262B, #264B3F);
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.topic-scroll-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #264B3F, #b8860b);
  box-shadow: 0 12px 30px rgba(0,0,0,0.38);
}

.topic-scroll-btn:active {
  transform: scale(0.96);
}

body.dark-mode .topic-scroll-btn {
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  color: #f5f5f5;
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 10px 26px rgba(255,255,255,0.08);
}

body.dark-mode .topic-scroll-btn:hover {
  background: linear-gradient(135deg, #2b2b2b, #6b8e23);
}

@media (max-width: 768px) {
  .topic-scroll-nav {
    right: 14px;
    bottom: 84px;
    gap: 8px;
  }

  .topic-scroll-btn {
    width: 46px;
    height: 46px;
    font-size: 1.65rem;
  }
}


/* =========================================================
   Fix: Themen-Navigation + Dark-Mode Preisbox
   ========================================================= */
.topic-scroll-btn.topic-scroll-hidden {
  display: none;
}

.topic-scroll-home {
  font-size: 1.55rem;
  padding-bottom: 2px;
}

/* Dark Mode darf die Preisbox nicht verbreitern/vergrößern */
body.dark-mode #price_overlay {
  border-width: 8px;
  box-sizing: border-box;
}

#price_overlay h2,
#mobile_prices h2 {
  line-height: 1.18;
}

@media (max-width: 1100px) {
  #price_overlay h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  #price_overlay h2,
  #mobile_prices h2 {
    font-size: 1.65rem;
  }

  .topic-scroll-home {
    font-size: 1.38rem;
  }
}
