/* Everyday Elements – QR Landing CSS
   CI: Frisch-Grün #6AB392 · Deep Teal #3C5C5E · Apricot #F4A261 · Grautöne #C7C7C7 #737473
   Type: Montserrat 400 / 600
   Mobile-first */

:root {
  --c-green: #6AB392;
  --c-green-soft: #DCEFE4;
  --c-teal: #3C5C5E;
  --c-teal-soft: #6E8689;
  --c-apricot: #F4A261;
  --c-gray-light: #C7C7C7;
  --c-gray: #737473;
  --c-bg: #FAFBF8;
  --c-white: #FFFFFF;
  --c-line: #E7E5E0;

  --radius: 14px;
  --radius-lg: 22px;
  --space: 16px;

  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max-w: 720px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  color: var(--c-teal);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

/* ===== Header / Lang Switcher ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.brand-mini {
  display: flex; flex-direction: column; line-height: 1.05;
}
.brand-mini__line { font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--c-teal); }
.brand-mini__sub { font-size: 9px; color: var(--c-gray); font-style: italic; letter-spacing: 1px; }

.lang-switcher { position: relative; }
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit; color: var(--c-teal); font-size: 13px; font-weight: 600;
  cursor: pointer;
}
.lang-toggle:hover { border-color: var(--c-green); }
.lang-toggle .flag { width: 18px; height: 12px; border-radius: 2px; object-fit: cover; }
.lang-toggle .lang-iso { letter-spacing: 1px; }
.lang-toggle .chevron { width: 10px; height: 10px; opacity: 0.55; transition: transform .2s; }
.lang-switcher.open .chevron { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(60, 92, 94, 0.12);
  width: 260px;
  max-height: 70vh;
  overflow-y: auto;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown ul { list-style: none; margin: 0; padding: 6px; }
.lang-dropdown button {
  width: 100%; display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: transparent; border: none;
  font: inherit; color: var(--c-teal); font-size: 13.5px;
  border-radius: 8px; cursor: pointer; text-align: left;
}
.lang-dropdown button:hover { background: var(--c-green-soft); }
.lang-dropdown .flag { width: 22px; height: 15px; border-radius: 2px; object-fit: cover; flex: 0 0 auto; }
.lang-dropdown .lang-name { flex: 1; }
.lang-dropdown .lang-iso { color: var(--c-gray); font-size: 11px; letter-spacing: 1px; font-weight: 600; }

/* ===== Layout ===== */
main { max-width: var(--max-w); margin: 0 auto; padding: 0 16px 64px; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, var(--c-green) 0%, var(--c-green) 60%, var(--c-bg) 100%);
  margin: 0 -16px 0;
  padding: 32px 16px 24px;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.hero__brand {
  font-size: 11px; font-weight: 600; letter-spacing: 3.5px;
  color: var(--c-white); margin-bottom: 4px;
}
.hero__by {
  font-size: 10px; font-style: italic; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85); margin-bottom: 28px;
}
.hero__product {
  font-size: 36px; font-weight: 600; letter-spacing: 2.5px;
  color: var(--c-white); margin: 0; line-height: 1;
}
.hero__tagline {
  margin-top: 10px;
  font-size: 13px; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.92);
}
.hero__lead {
  margin: 22px auto 0;
  max-width: 480px;
  font-size: 15px;
  color: var(--c-white);
  line-height: 1.55;
}
.hero__flag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  color: var(--c-white);
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
}
.flag-de {
  width: 24px; height: 16px; border-radius: 2px;
  background: linear-gradient(to bottom, #000 0% 33.33%, #DD0000 33.33% 66.66%, #FFCE00 66.66% 100%);
}

/* ===== Sections ===== */
.section {
  margin-top: 36px;
}
.section__title {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--c-green);
  text-align: center;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.section__divider {
  width: 36px; height: 2px; background: var(--c-green);
  margin: 6px auto 18px;
}

/* ===== Quality card ===== */
.quality {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-align: center;
}
.quality__title { font-size: 22px; font-weight: 600; margin: 0 0 4px; color: var(--c-teal); }
.quality__subtitle { font-size: 13px; color: var(--c-gray); margin: 0 0 18px; }
.quality__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
  text-align: left;
}
.quality__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
}
.quality__list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 10px;
  border-left: 2.5px solid var(--c-green);
  border-bottom: 2.5px solid var(--c-green);
  transform: rotate(-45deg);
}

/* ===== Ritual ===== */
.ritual {
  display: grid; gap: 14px;
}
.ritual__step {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.ritual__num {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  background: var(--c-green); color: var(--c-white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 600; letter-spacing: 1px;
}
.ritual__body h3 {
  margin: 0 0 4px;
  font-size: 15px; font-weight: 600; color: var(--c-teal);
}
.ritual__body p { margin: 0; font-size: 14px; color: var(--c-gray); line-height: 1.55; }

/* ===== Facts (Pflichtangaben) ===== */
.facts {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.facts__tabs {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg);
}
.facts-tab {
  background: transparent; border: 0;
  font: inherit; font-size: 11px; font-weight: 600; letter-spacing: 1px;
  color: var(--c-gray);
  padding: 14px 4px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.facts-tab.active { color: var(--c-teal); border-bottom-color: var(--c-green); background: var(--c-white); }

.facts-panel { display: none; padding: 20px; }
.facts-panel.active { display: block; }
.facts-panel h3 {
  font-size: 12px; letter-spacing: 1.5px; font-weight: 600;
  color: var(--c-gray); text-transform: uppercase;
  margin: 0 0 6px;
}
.facts-panel p {
  margin: 0 0 14px;
  font-size: 14.5px; line-height: 1.55; color: var(--c-teal);
}
.facts-panel .small { font-size: 12.5px; color: var(--c-gray); }

.nutri-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 8px; }
.nutri-table th, .nutri-table td { padding: 8px 4px; border-bottom: 1px solid var(--c-line); }
.nutri-table th { text-align: left; font-weight: 600; color: var(--c-gray); font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; }
.nutri-table td:first-child { color: var(--c-teal); font-weight: 500; }
.nutri-table td.sub { padding-left: 16px; color: var(--c-gray); font-weight: 400; font-size: 13px; }
.nutri-table .claim { background: var(--c-green-soft); padding: 10px 12px; border-radius: 8px; font-size: 13px; line-height: 1.5; color: var(--c-teal); margin-top: 14px; }

/* ===== Footer ===== */
.site-footer {
  margin-top: 48px;
  padding: 32px 16px;
  background: var(--c-teal);
  color: rgba(255,255,255,0.88);
  text-align: center;
}
.site-footer__inner { max-width: var(--max-w); margin: 0 auto; }
.site-footer p { margin: 4px 0; font-size: 12.5px; }
.site-footer .legal-links { margin-top: 14px; font-size: 12px; }
.site-footer .legal-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  margin: 0 8px;
}
.site-footer .legal-links a:hover { color: var(--c-white); text-decoration: underline; }

/* ===== Helpers ===== */
.contact-line { font-size: 14px; color: var(--c-teal); }
.contact-line strong { color: var(--c-gray); font-weight: 600; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 4px; }

/* ===== Responsive: tablets+ ===== */
@media (min-width: 720px) {
  .hero__product { font-size: 48px; letter-spacing: 4px; }
  .ritual { grid-template-columns: 1fr 1fr 1fr; }
  .facts__tabs { grid-template-columns: repeat(5, 1fr); }
  .facts-tab { font-size: 12px; padding: