/** Shopify CDN: Minification failed

Line 452:0 Expected "}" to go with "{"

**/
/* =====================================================================
   lp-shared.css
   Gemeinsame Basis-Styles für alle "lp-*" Landingpage-Sections.
   Wird einmal als Asset ins Theme geladen und von jeder Section über
   {{ 'lp-shared.css' | asset_url | stylesheet_tag }} eingebunden.

   Jede Section setzt ihre eigenen Farben/Abstände als CSS-Variablen
   direkt im <style>-Block der Section (aus den Schema-Settings).
   Diese Datei kennt nur die Variablen-Namen und definiert das Layout.
   ===================================================================== */

/* REVYND Markenschriften — bereits sitecweit eingebunden ("wie gewohnt"),
   hier nur referenziert. Überschriften = Optima, Fließtext/UI = Avenir Next. */
.lp-section {
  --lp-font-heading: 'Optima', 'Optima Nova LT Pro', Georgia, 'Times New Roman', serif;
  --lp-font-body: 'Avenir Next', 'Avenir', 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--lp-bg, #ffffff);
  color: var(--lp-text, #4b4b4b);
  font-family: var(--lp-font-body);
  padding-top: var(--lp-pt, 64px);
  padding-bottom: var(--lp-pb, 64px);
  overflow: hidden;
}

.lp-container {
  width: 100%;
  max-width: var(--lp-max-width, 1200px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.lp-container--narrow { max-width: 780px; }

/* Typografie ---------------------------------------------------------- */
.lp-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-accent, #b8722c);
  margin: 0 0 12px;
}

.lp-heading {
  color: var(--lp-heading, #111111);
  font-family: var(--lp-font-heading);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 16px;
}

.lp-buybox h2,
.lp-benefit-content h3,
.lp-ing-card h3 { font-family: var(--lp-font-heading); font-weight: 500; }

.lp-heading em,
.lp-heading .lp-highlight {
  color: var(--lp-accent, #b8722c);
  font-style: italic;
}

.lp-subheading {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--lp-text, #4b4b4b);
  max-width: 640px;
  margin: 0 auto;
}

.lp-align-center { text-align: center; }
.lp-header-block { margin-bottom: 40px; }

/* Buttons --------------------------------------------------------------*/
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--lp-radius, 8px);
  background: var(--lp-accent, #111111);
  color: var(--lp-accent-text, #ffffff);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.lp-btn:hover { opacity: 0.88; }
.lp-btn:active { transform: scale(0.98); }
.lp-btn--block { width: 100%; }
.lp-btn--outline {
  background: transparent;
  color: var(--lp-accent, #111111);
  border-color: var(--lp-accent, #111111);
}

/* Badges / Trust row -----------------------------------------------------*/
.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 28px 0;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-heading, #111);
}
.lp-trust-item img,
.lp-trust-item svg { width: 28px; height: 28px; flex-shrink: 0; }

/* Grid helpers ---------------------------------------------------------*/
.lp-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(var(--lp-cols, 3), 1fr);
}
@media (max-width: 989px) {
  .lp-grid { grid-template-columns: repeat(var(--lp-cols-tablet, 2), 1fr); }
}
@media (max-width: 749px) {
  .lp-grid { grid-template-columns: repeat(var(--lp-cols-mobile, 1), 1fr); }
}

/* Cards ------------------------------------------------------------------*/
.lp-card {
  background: var(--lp-card-bg, #ffffff);
  border-radius: var(--lp-radius, 12px);
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Sterne ------------------------------------------------------------------*/
.lp-stars { color: var(--lp-accent, #b8722c); font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }

/* Carousel / Slider ------------------------------------------------------*/
.lp-carousel-wrap { position: relative; }
.lp-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.lp-carousel::-webkit-scrollbar { display: none; }
.lp-carousel > * {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: min(320px, 82vw);
}
.lp-carousel-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.lp-carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--lp-accent, #111);
  background: transparent;
  color: var(--lp-accent, #111);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.lp-carousel-nav button:hover { background: var(--lp-accent, #111); color: var(--lp-accent-text, #fff); }

/* Benefits (Bild/Text wechselnd) -----------------------------------------*/
.lp-benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.lp-benefit-row:last-child { margin-bottom: 0; }
.lp-benefit-row--reverse .lp-benefit-media { order: 2; }
.lp-benefit-row--reverse .lp-benefit-content { order: 1; }
.lp-benefit-media img { width: 100%; border-radius: var(--lp-radius, 16px); display: block; }
.lp-benefit-icon { width: 56px; height: 56px; margin-bottom: 16px; }
.lp-benefit-content h3 { font-size: 24px; color: var(--lp-heading, #111); margin: 0 0 12px; }
.lp-benefit-content p { margin: 0; line-height: 1.6; }
@media (max-width: 749px) {
  .lp-benefit-row,
  .lp-benefit-row--reverse { grid-template-columns: 1fr; gap: 20px; }
  .lp-benefit-row--reverse .lp-benefit-media,
  .lp-benefit-row--reverse .lp-benefit-content { order: initial; }
  .lp-benefit-row { margin-bottom: 40px; }
}

/* "Warum" (Why) Section — nutzt .lp-benefit-row für das Bild/Text-Layout,
   eigene Textstile für Headline, mehrzeiligen Fließtext und Schlusszeile. */
.lp-why-content h2 {
  font-family: var(--lp-font-heading); font-weight: 500;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.3;
  color: var(--lp-heading, #111); margin: 0 0 20px;
}
.lp-why-content .lp-why-body { font-size: 16px; line-height: 1.8; color: var(--lp-text, #4b4b4b); margin: 0 0 22px; }
.lp-why-content .lp-why-closing { font-family: var(--lp-font-heading); font-weight: 500; font-size: 19px; color: var(--lp-accent, #111); margin: 0; }

/* Ingredient / Feature card ------------------------------------------------*/
.lp-ing-card { text-align: left; }
.lp-ing-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--lp-radius, 12px); margin-bottom: 14px; }
.lp-ing-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--lp-accent, #b8722c); margin-bottom: 6px; }
.lp-ing-card h3 { font-size: 17px; margin: 0 0 8px; color: var(--lp-heading, #111); }
.lp-ing-card p { font-size: 14px; line-height: 1.55; margin: 0; }

/* Hero (Vollbild-Banner als Hintergrund, je ein eigenes Bild für Desktop
   und Mobile. Text liegt darüber, Position/Höhe/Abdunkelung sind für
   Desktop und Mobile unabhängig einstellbar — gleiche Logik, zweimal.) --*/
.lp-hero { padding: 0; position: relative; overflow: hidden; }

.lp-hero-banner { position: absolute; inset: 0; z-index: 0; }
.lp-hero-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-hero-banner-overlay { position: absolute; inset: 0; z-index: 1; }
.lp-hero-banner-mobile { display: none; }

.lp-hero-content-wrap {
  position: relative; z-index: 2;
  min-height: var(--lp-height-desktop, 620px);
  display: flex; align-items: center; justify-content: var(--lp-justify-desktop, flex-start);
  padding-top: var(--lp-pt, 56px); padding-bottom: var(--lp-pb, 56px);
}
.lp-hero-content-wrap .lp-container { display: flex; justify-content: inherit; }

.lp-hero-content { max-width: 560px; text-align: var(--lp-text-align-desktop, left); color: var(--lp-hero-text); }
.lp-hero-content .lp-heading { text-align: inherit; margin-bottom: 4px; color: var(--lp-hero-text); }

/* 1. Sterne + Kundenanzahl */
.lp-hero-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; justify-content: var(--lp-justify-desktop, flex-start); }
.lp-hero-stars { display: inline-flex; align-items: center; gap: 2px; color: var(--lp-star-color, #f2c94c); }
.lp-hero-star { display: block; flex-shrink: 0; }
.lp-hero-star--empty { opacity: 0.3; }
.lp-hero-rating-text { font-size: 14px; font-weight: 600; color: var(--lp-hero-text); }

/* 2. Headline + Subheadline */
.lp-hero-subline {
  font-family: var(--lp-font-heading); font-size: clamp(18px, 2.2vw, 26px); font-weight: 400;
  color: var(--lp-hero-text); margin: 0 0 18px;
}

/* 3. Subtext */
.lp-hero-intro { margin: 0 0 22px; max-width: 480px; color: var(--lp-hero-text); }

/* 4. Drei Icons: Fokus / Energie / Performance */
.lp-hero-features { display: flex; gap: 34px; flex-wrap: wrap; margin-bottom: 26px; justify-content: var(--lp-justify-desktop, flex-start); }
.lp-hero-feature { max-width: 160px; }
.lp-hero-feature img { width: 34px; height: 34px; margin-bottom: 10px; }
.lp-hero-feature-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--lp-hero-text); margin: 0 0 4px;
}
.lp-hero-feature-text { font-size: 12px; line-height: 1.45; margin: 0; color: var(--lp-hero-text); opacity: 0.85; }

/* 5. Button = .lp-btn (siehe oben) */

/* 6. Produktattribute klein, unter dem Button */
.lp-hero-bottom-badges {
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 20px; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--lp-hero-text); opacity: 0.85;
  justify-content: var(--lp-justify-desktop, flex-start);
}
.lp-hero-bottom-badges span { display: flex; align-items: center; gap: 6px; }
.lp-hero-bottom-badges img { width: 15px; height: 15px; }

/* 7. Statement-Leiste: dünne Linien oben/unten, serifige Marken-Schrift,
   Größe passt sich per clamp() zwischen Mobile und Desktop an. */
.lp-hero-tagline {
  position: relative; z-index: 2;
  padding: 22px 20px;
  text-align: center;
  font-family: var(--lp-font-heading);
  font-size: clamp(12px, 1.5vw, 16px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.lp-hero-tagline p { opacity: 0.85; }

@media (max-width: 749px) {
  .lp-hero-tagline { padding: 16px 20px; font-size: 11px; letter-spacing: 0.06em; }

  .lp-hero-banner-desktop { display: none; }
  .lp-hero-banner-mobile { display: block; }
  .lp-hero-content-wrap {
    min-height: var(--lp-height-mobile, 480px);
    align-items: flex-start;
    justify-content: var(--lp-justify-mobile, center);
    padding-top: min(var(--lp-pt, 56px), 40px);
    /* Reserviert bewusst ca. 30% der Banner-Höhe frei von Text, damit das
       Produkt im unteren Bildbereich sichtbar bleibt statt vom Text verdeckt
       zu werden. */
    padding-bottom: calc(var(--lp-height-mobile, 480px) * 0.3);
  }
  .lp-hero-content { max-width: 100%; text-align: var(--lp-text-align-mobile, center); }
  .lp-hero-rating,
  .lp-hero-features,
  .lp-hero-bottom-badges { justify-content: var(--lp-justify-mobile, center); }
}

/* Buybox ---------------------------------------------------------------------*/
.lp-buybox { scroll-margin-top: 100px; }
.lp-buybox-grid { display: grid; grid-template-columns: 0.9fr 1fr; gap: 48px; align-items: start; }
.lp-buybox-gallery-main img { width: 100%; border-radius: var(--lp-radius, 16px); display: block; }
.lp-buybox-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; }
.lp-buybox-thumbs img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; opacity: 0.7; }
.lp-buybox-thumbs img.is-active { opacity: 1; border-color: var(--lp-accent, #111); }
.lp-guarantee-badge { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.lp-guarantee-badge img { width: 40px; height: 40px; }
.lp-buybox h2 { font-size: 28px; margin: 0 0 6px; color: var(--lp-heading, #111); }
.lp-buybox-subtitle { font-weight: 600; margin: 0 0 14px; }
.lp-buybox-desc { line-height: 1.6; margin: 0 0 22px; }

.lp-purchase-options { display: grid; gap: 12px; margin-bottom: 20px; }
.lp-purchase-option {
  position: relative;
  border: 2px solid var(--lp-border, #e2e2e2);
  border-radius: var(--lp-radius, 12px);
  padding: 16px 18px;
  cursor: pointer;
  display: block;
}
.lp-purchase-option input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.lp-purchase-option-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.lp-purchase-option-label { font-weight: 700; font-size: 15px; }
.lp-purchase-option-save {
  font-size: 12px; font-weight: 700; color: var(--lp-accent-text, #fff);
  background: var(--lp-accent, #111); padding: 2px 8px; border-radius: 20px;
}
.lp-purchase-option-price { font-size: 14px; margin-top: 4px; color: var(--lp-text, #4b4b4b); }
.lp-purchase-option-price .lp-price-old { text-decoration: line-through; opacity: 0.55; margin-right: 6px; }
.lp-purchase-option.is-selected { border-color: var(--lp-accent, #111); background: var(--lp-selected-bg, rgba(0,0,0,0.03)); }

.lp-buybox-perks { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 8px; }
.lp-buybox-perks li { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; }
.lp-buybox-perks li::before { content: "✓"; color: var(--lp-accent, #111); font-weight: 700; flex-shrink: 0; }

@media (max-width: 989px) {
  .lp-buybox-grid { grid-template-columns: 1fr; }
}

/* Vergleichstabelle ---------------------------------------------------------*/
.lp-compare-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--lp-radius, 12px); }
.lp-compare-table th, .lp-compare-table td {
  padding: 16px; text-align: center; border-bottom: 1px solid var(--lp-border, #e8e8e8); font-size: 14px;
}
.lp-compare-table th:first-child, .lp-compare-table td:first-child { text-align: left; font-weight: 600; }
.lp-compare-table thead th { font-size: 15px; font-weight: 700; color: var(--lp-heading, #111); }
.lp-compare-table thead th.is-highlighted, .lp-compare-table td.is-highlighted {
  background: var(--lp-selected-bg, rgba(0,0,0,0.03)); color: var(--lp-accent, #111);
}
.lp-compare-table .lp-check { color: var(--lp-accent, #111); font-weight: 700; }
.lp-compare-table .lp-cross { opacity: 0.4; }
.lp-compare-wrap { overflow-x: auto; }

/* FAQ Accordion ---------------------------------------------------------*/
.lp-accordion { max-width: 780px; margin: 0 auto; }
.lp-accordion-item { border-bottom: 1px solid var(--lp-border, #e2e2e2); }
.lp-accordion-trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 4px; font-size: 16px; font-weight: 600; color: var(--lp-heading, #111);
}
.lp-accordion-trigger .lp-accordion-icon { flex-shrink: 0; transition: transform 0.2s ease; font-size: 20px; }
.lp-accordion-item.is-open .lp-accordion-icon { transform: rotate(45deg); }
.lp-accordion-panel {
  max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
}
.lp-accordion-panel-inner { padding: 0 4px 20px; line-height: 1.6; font-size: 14px; }

/* Newsletter ---------------------------------------------------------*/
.lp-newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 24px auto 0; flex-wrap: wrap; justify-content: center; }
.lp-newsletter-form input[type="email"] {
  flex: 1 1 240px; padding: 14px 16px; border-radius: var(--lp-radius, 8px);
  border: 1px solid var(--lp-border, #ddd); font-size: 15px;
}

/* =====================================================================
   Mobile-Optimierung (<=749px)
   Ziel: kompaktes, gut lesbares Layout mit möglichst wenig Scroll-Strecke.
   Diese Regeln überschreiben bewusst die Desktop-Werte weiter oben (gleiche
   Selektoren, aber später in der Datei = gewinnt in der Kaskade) — inkl.
   einer Obergrenze für die im Theme-Editor einstellbaren Section-Abstände,
   damit ein hoher Desktop-Wert auf Mobile nicht zu viel Leerraum erzeugt.
   ===================================================================== */
@media (max-width: 749px) {
  .lp-container { padding: 0 16px; }

  .lp-section { padding-top: min(var(--lp-pt, 64px), 40px); padding-bottom: min(var(--lp-pb, 64px), 40px); }
  .lp-header-block { margin-bottom: 28px; }
  .lp-card { padding: 20px; }
  .lp-btn { padding: 14px 24px; font-size: 15px; }

  /* Hero: engere Abstände auf Mobile. Ausrichtung selbst kommt aus den
     Layout-Settings (Text-Position Mobile), siehe Hero-Regeln oben. */
  .lp-hero-subline { margin-bottom: 14px; }
  .lp-hero-intro { margin-bottom: 16px; }
  /* Alle drei Icons in einer Reihe: kein Umbruch, gleich breite Spalten,
     Subtext ausgeblendet (nur Icon + Titel bleiben, spart Platz). */
  .lp-hero-features { flex-wrap: nowrap; gap: 10px; margin-bottom: 22px; }
  .lp-hero-feature { flex: 1 1 0; max-width: none; min-width: 0; }
  .lp-hero-feature img { width: 26px; height: 26px; margin-left: auto; margin-right: auto; }
  .lp-hero-feature-title { font-size: 11px; }
  .lp-hero-feature-text { display: none; }
  .lp-hero-bottom-badges { gap: 12px; font-size: 10px; margin-top: 16px; }

  /* Vorteile: feste, kompakte Bildhöhe statt beliebig hoher Bilder */
  .lp-benefit-row { margin-bottom: 32px; gap: 16px; }
  .lp-benefit-media img { aspect-ratio: 4 / 3; object-fit: cover; }
  .lp-benefit-content h3 { font-size: 20px; margin-bottom: 8px; }
  .lp-benefit-icon { width: 44px; height: 44px; margin-bottom: 10px; }

  /* Zutaten-Karten im Karussell etwas kompakter */
  .lp-ing-card h3 { font-size: 16px; }
  .lp-ing-card p { font-size: 13px; }

  /* Kaufbox: Galeriebild in fester Höhe, weniger Innenabstand */
  .lp-buybox-gallery-main img { aspect-ratio: 1 / 1; object-fit: cover; }
  .lp-buybox h2 { font-size: 22px; }
  .lp-buybox-desc { margin-bottom: 16px; }
  .lp-purchase-option { padding: 14px; }

  /* Vergleichstabelle: horizontal scrollen statt Text zu quetschen */
  .lp-compare-table { min-width: 480px; }
  .lp-compare-table th, .lp-compare-table td { padding: 12px 10px; font-size: 13px; }

  /* FAQ: etwas kompakter */
  .lp-accordion-trigger { padding: 16px 4px; font-size: 15px; }
  .lp-accordion-panel-inner { padding: 0 4px 16px; }

  /* Karussell-Pfeile: komfortable Tap-Fläche (Touch-Target ≥44px) */
