/* Duft des Lebens – Palette wie Pension-Test (Beige + Charcoal-Buttons) */
:root {
  --oel-ink: #1c1712;
  --oel-muted: #6f6a63;
  --oel-line: #d4cfc4;
  --oel-foam: #fffcf8;
  --oel-bg: #f5f2ec;
  --oel-soft: #f7f2eb;
  --oel-beige: #efe8dc;
  --oel-stone: #9a948c;
  --oel-accent: #c9c3b8;
  --oel-brand: #3a3632;
  --oel-green: #7a9270;
  --oel-green-deep: #5c7356;
  --oel-green-ink: #3d4f3a;
  --oel-btn: #5c5752;
  --oel-btn-hover: #746e66;
  --oel-danger: #8b3a3a;
  --oel-radius: 2px;
  --oel-radius-lg: 4px;
  --oel-max: 1200px;
  --oel-font: "Source Sans 3", "Segoe UI", sans-serif;
  --oel-display: "Cormorant Garamond", Georgia, serif;
  --oel-shadow: 0 2px 16px rgba(28, 23, 18, .06);
  --oel-tip-bg: #3a3632;
  --oel-tip-fg: #fffcf8;
  accent-color: var(--oel-btn);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.oel-site {
  margin: 0;
  font-family: var(--oel-font);
  color: var(--oel-ink);
  background: var(--oel-foam);
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--oel-green-deep); text-underline-offset: 2px; }
img { max-width: 100%; display: block; }

/* Keine Browser-Standard-Blau-Foki / -Hinweise */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--oel-btn);
  outline-offset: 2px;
}
::selection {
  background: color-mix(in srgb, var(--oel-beige) 70%, var(--oel-btn));
  color: var(--oel-ink);
}

.oel-wrap { width: min(100% - 2.5rem, var(--oel-max)); margin-inline: auto; }

/* —— Top bar (BIO PLANÈTE-ähnlich) —— */
.oel-top {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--oel-line);
  overflow: visible;
}
.oel-top__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 0; min-height: 4.25rem;
  overflow: visible;
}
.oel-brand {
  font-family: var(--oel-display);
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--oel-green-ink);
  text-decoration: none;
  white-space: nowrap;
}
.oel-nav {
  display: flex; flex-wrap: wrap; gap: .15rem 1.35rem; align-items: center;
  justify-content: center; flex: 1;
}
.oel-nav a {
  text-decoration: none; color: var(--oel-ink);
  font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  text-transform: uppercase;
}
.oel-nav a:hover { color: var(--oel-green-deep); }

/* Kopfzeile rechts: Suche · Merken · Konto · Warenkorb (Bio-Planète) */
.oel-top__actions {
  display: flex; align-items: center; justify-content: flex-end;
  gap: .15rem; flex-shrink: 0;
}
.oel-top-icon {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-width: 2.55rem; min-height: 2.55rem;
  padding: .35rem .45rem;
  border: 0; background: transparent; color: var(--oel-ink);
  text-decoration: none; cursor: pointer; font: inherit;
  border-radius: 0;
}
.oel-top-icon:hover,
.oel-top-icon[aria-expanded="true"] {
  color: var(--oel-green-deep);
}
.oel-top-icon svg { display: block; }

/* Eigenes Tooltip – unter dem Icon (Sticky-Header: oben würde abgeschnitten) */
.oel-top-icon[data-tip]::after,
[data-tip].oel-tip::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  top: calc(100% + .4rem);
  bottom: auto;
  transform: translateX(-50%) translateY(-.12rem);
  padding: .4rem .65rem;
  background: #3a3632;
  color: #fffcf8;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.2;
  white-space: nowrap;
  border: 1px solid #2a2622;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(28, 23, 18, .18);
  opacity: 0;
  pointer-events: none;
  z-index: 300;
  transition: opacity .15s ease, transform .15s ease;
}
.oel-top-icon[data-tip]::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + .05rem);
  bottom: auto;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #3a3632;
  border-top-color: transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 301;
  transition: opacity .15s ease;
}
/* Letzte Icons rechts: Tooltip nicht über den Viewport-Rand schieben */
.oel-top__actions .oel-top-icon:nth-last-child(-n+2)[data-tip]::after {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(-.12rem);
}
.oel-top__actions .oel-top-icon:nth-last-child(-n+2)[data-tip]::before {
  left: auto;
  right: .85rem;
  transform: none;
}
.oel-top-icon[data-tip]:hover::after,
.oel-top-icon[data-tip]:focus-visible::after,
.oel-top-icon[data-tip]:hover::before,
.oel-top-icon[data-tip]:focus-visible::before {
  opacity: 1;
}
.oel-top-icon[data-tip]:hover::after,
.oel-top-icon[data-tip]:focus-visible::after {
  transform: translateX(-50%) translateY(0);
}
.oel-top__actions .oel-top-icon:nth-last-child(-n+2)[data-tip]:hover::after,
.oel-top__actions .oel-top-icon:nth-last-child(-n+2)[data-tip]:focus-visible::after {
  transform: translateX(0) translateY(0);
}
@media (hover: none) {
  .oel-top-icon[data-tip]::after,
  .oel-top-icon[data-tip]::before { display: none; }
}
.oel-top-icon__badge {
  position: absolute; top: .15rem; right: .05rem;
  min-width: 1.1rem; height: 1.1rem; padding: 0 .28rem;
  border-radius: 999px; background: var(--oel-green-deep); color: #fff;
  font-size: .62rem; font-weight: 700; line-height: 1.1rem; text-align: center;
}
.oel-top-icon__badge--cart {
  right: auto; left: 1.35rem;
}
.oel-top-icon__price {
  display: none;
  font-size: .82rem; font-weight: 700; letter-spacing: .01em;
  white-space: nowrap; color: inherit;
}
.oel-top-icon--cart { padding-right: .55rem; }
.oel-top-icon--menu { display: none; }

.oel-search-panel {
  border-top: 1px solid var(--oel-line);
  background: var(--oel-soft);
  padding: .85rem 0 1rem;
}
.oel-search-panel__form {
  display: flex; flex-wrap: wrap; gap: .55rem; align-items: center;
}
.oel-search-panel__form input[type="search"] {
  flex: 1 1 14rem;
  font: inherit; padding: .75rem .9rem;
  border: 1px solid var(--oel-line); background: #fff; color: var(--oel-ink);
}
.oel-search-panel__form input[type="search"]:focus {
  outline: 2px solid var(--oel-green); outline-offset: 1px;
}
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

@media (min-width: 560px) {
  .oel-top-icon__price { display: inline; }
}

.oel-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem; border: 0; cursor: pointer; text-decoration: none;
  background: var(--oel-btn); color: #fff !important;
  padding: .7rem 1.35rem; border-radius: 0; font-weight: 700;
  font-size: .88rem; letter-spacing: .04em; text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.oel-btn:hover { background: var(--oel-btn-hover); color: #fff !important; }
.oel-btn--ghost {
  background: transparent; color: var(--oel-brand) !important;
  border: 1px solid var(--oel-stone);
}
.oel-btn--ghost:hover { background: var(--oel-soft); color: var(--oel-brand) !important; }
.oel-btn--light {
  background: #fff; color: var(--oel-brand) !important;
  border: 1px solid rgba(255,255,255,.55);
}
.oel-btn--green,
.oel-btn--beige {
  background: var(--oel-accent); color: var(--oel-ink) !important;
}
.oel-btn--green:hover,
.oel-btn--beige:hover { background: var(--oel-beige); color: var(--oel-ink) !important; }
.oel-btn--outline-light {
  background: transparent; color: #fff !important;
  border: 1px solid rgba(255,255,255,.7);
}

/* —— Hero slider —— */
.oel-hero-slider {
  position: relative;
  background: var(--oel-beige);
  overflow: hidden;
}
.oel-hero-slide {
  display: none;
  position: relative;
  min-height: min(72vh, 620px);
  align-items: end;
  padding: 5rem 0 3.5rem;
  isolation: isolate;
}
.oel-hero-slide.is-active { display: grid; }
.oel-hero-slide::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(28, 42, 26, .78) 0%, rgba(28, 42, 26, .35) 45%, rgba(28, 42, 26, .12) 100%),
    var(--oel-hero-image) center/cover no-repeat;
}
.oel-hero-slide .oel-wrap { position: relative; z-index: 2; max-width: 40rem; }
.oel-hero__kicker {
  display: inline-block; margin: 0 0 .85rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: color-mix(in srgb, #fff 82%, var(--oel-green));
}
.oel-hero__brand {
  font-family: var(--oel-display);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 1.02; color: #fff; margin: 0 0 .85rem;
  font-weight: 600; max-width: 12ch;
}
.oel-hero__lead {
  color: rgba(255,255,255,.92);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  max-width: 32rem; margin: 0 0 1.6rem;
}
.oel-hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.oel-hero-dots {
  position: absolute; left: 0; right: 0; bottom: 1.1rem; z-index: 3;
  display: flex; justify-content: center; gap: .45rem;
}
.oel-hero-dots button {
  width: .65rem; height: .65rem; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.45); cursor: pointer; padding: 0;
}
.oel-hero-dots button.is-on { background: #fff; }
.oel-hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 2.6rem; height: 2.6rem; border: 0; border-radius: 0;
  background: rgba(255,255,255,.88); color: var(--oel-green-ink);
  font-size: 1.3rem; cursor: pointer; line-height: 1;
}
.oel-hero-nav--prev { left: .75rem; }
.oel-hero-nav--next { right: .75rem; }
.oel-hero-nav:hover { background: #fff; }

/* Legacy single hero (other pages / CMS) */
.oel-hero {
  position: relative; isolation: isolate;
  min-height: min(58vh, 520px);
  display: grid; align-items: end;
  padding: 4.5rem 0 3rem; overflow: hidden; background: var(--oel-beige);
}
.oel-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(28, 42, 26, .78) 0%, rgba(28, 42, 26, .35) 45%, rgba(28, 42, 26, .12) 100%),
    var(--oel-hero-image, url("/assets/img/hero.jpg")) center/cover no-repeat;
}
.oel-hero__video, .oel-hero__embed {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
.oel-hero__embed iframe { width: 100%; height: 100%; border: 0; pointer-events: none; }
.oel-hero.has-video-bg::before {
  background: linear-gradient(105deg, rgba(28, 42, 26, .78) 0%, rgba(28, 42, 26, .35) 45%, rgba(28, 42, 26, .12) 100%);
}
.oel-hero__media { position: absolute; inset: 0; z-index: 1; cursor: pointer; }
.oel-hero .oel-wrap { position: relative; z-index: 2; }

/* —— Sections —— */
.oel-section { padding: 4.25rem 0; }
.oel-section--soft { background: var(--oel-bg); }
.oel-section--mint { background: var(--oel-soft); }
.oel-section--white { background: #fff; }
.oel-section h2,
.oel-section__title {
  font-family: var(--oel-display);
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  margin: 0 0 .5rem; color: var(--oel-ink);
  font-weight: 600; letter-spacing: -.01em;
}
.oel-lead {
  color: var(--oel-muted); max-width: 38rem;
  margin: 0 0 1.75rem; font-size: 1.05rem;
}
.oel-section__head {
  display: flex; flex-wrap: wrap; align-items: end;
  justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem;
}
.oel-section__head .oel-lead { margin-bottom: 0; }

/* Quote */
.oel-quote {
  padding: 3.75rem 0;
  background: var(--oel-green-ink);
  color: #f4faf1;
  text-align: center;
}
.oel-quote blockquote {
  margin: 0 auto; max-width: 46rem;
  font-family: var(--oel-display);
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  line-height: 1.35; font-weight: 500;
}
.oel-quote cite {
  display: block; margin-top: 1.15rem;
  font-style: normal; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: color-mix(in srgb, #fff 72%, var(--oel-green));
}

/* Ölwelten – große Kacheln */
.oel-worlds {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .65rem;
}
.oel-world {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none; color: #fff;
}
.oel-world img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.oel-world::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 36, 18, .82) 100%);
}
.oel-world:hover img { transform: scale(1.06); }
.oel-world__label {
  position: absolute; left: .9rem; right: .9rem; bottom: .95rem; z-index: 1;
  font-family: var(--oel-display); font-size: 1.35rem; font-weight: 600;
  line-height: 1.15;
}
.oel-world__meta {
  display: block; margin-top: .2rem;
  font-family: var(--oel-font); font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; opacity: .88;
}

/* Wissen – CTA-Kacheln (Bioplanète-Mix) */
.oel-wissen-cta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.oel-wissen-cta--text .oel-wissen-cta__card {
  min-height: 0;
}
.oel-wissen-cta--text .oel-wissen-cta__body {
  padding: 1.4rem 1.25rem 1.5rem;
}
.oel-grid--home-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem 1.25rem;
}
.oel-pager {
  display: flex; flex-wrap: wrap; gap: .65rem; align-items: center;
  justify-content: center; margin: 1.75rem 0 0;
}
.oel-pager__status {
  font-weight: 700; color: var(--oel-muted); font-size: .92rem;
}
.oel-wissen-cta__card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--oel-line);
  text-decoration: none; color: inherit;
  min-height: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.oel-wissen-cta__card:hover {
  border-color: var(--oel-green);
  box-shadow: var(--oel-shadow);
}
.oel-wissen-cta__media {
  aspect-ratio: 16 / 10; overflow: hidden; background: var(--oel-soft);
}
.oel-wissen-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.oel-wissen-cta__body { padding: 1.25rem 1.2rem 1.4rem; display: grid; gap: .45rem; flex: 1; }
.oel-wissen-cta__topic {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--oel-green-deep);
}
.oel-wissen-cta__body h3 {
  font-family: var(--oel-display); font-size: 1.4rem;
  margin: 0; line-height: 1.2; color: var(--oel-ink);
}
.oel-wissen-cta__body p { margin: 0; color: var(--oel-muted); font-size: .95rem; }
.oel-wissen-cta__more {
  margin-top: .55rem; font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--oel-green-deep);
}

.oel-topic-nav {
  display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 1.5rem;
}
.oel-topic-nav a {
  text-decoration: none; padding: .45rem .9rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--oel-green-ink); background: #fff; border: 1px solid var(--oel-line);
}
.oel-topic-nav a.is-on,
.oel-topic-nav a:hover {
  background: var(--oel-green-deep); color: #fff; border-color: transparent;
}

.oel-wissen-banner {
  position: relative; overflow: hidden;
  min-height: 210px; margin-bottom: 2rem;
  display: grid; align-items: end;
  background: center/cover no-repeat var(--oel-wissen-banner, url("/assets/img/wissen-banner.jpg"));
}
.oel-wissen-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(28, 42, 26, .8), rgba(28, 42, 26, .25));
}
.oel-wissen-banner__inner {
  position: relative; z-index: 1; padding: 2.1rem 1.75rem; color: #fff;
}
.oel-wissen-banner h1 {
  font-family: var(--oel-display); font-size: clamp(2rem, 4vw, 2.9rem);
  margin: 0 0 .4rem; font-weight: 600;
}
.oel-wissen-banner p { margin: 0; max-width: 36rem; color: rgba(255,255,255,.9); }

.oel-wissen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.oel-wissen-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--oel-line);
  text-decoration: none; color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.oel-wissen-card:hover { border-color: var(--oel-green); box-shadow: var(--oel-shadow); }
.oel-wissen-card__media { aspect-ratio: 16 / 10; background: var(--oel-soft); overflow: hidden; }
.oel-wissen-card__media img { width: 100%; height: 100%; object-fit: cover; }
.oel-wissen-card__body { padding: 1.15rem 1.15rem 1.3rem; display: grid; gap: .4rem; flex: 1; }
.oel-wissen-card__topic {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--oel-green-deep);
}
.oel-wissen-card h3 {
  font-family: var(--oel-display); font-size: 1.28rem;
  margin: 0; line-height: 1.25; color: var(--oel-ink);
}
.oel-wissen-card p { margin: 0; color: var(--oel-muted); font-size: .95rem; }
.oel-wissen-card__more {
  margin-top: .45rem; font-weight: 700; font-size: .82rem;
  letter-spacing: .05em; text-transform: uppercase; color: var(--oel-green-deep);
}

/* Blog */
.oel-blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.25rem;
}
.oel-blog-card {
  display: grid; grid-template-rows: auto 1fr;
  background: #fff; border: 1px solid var(--oel-line);
  text-decoration: none; color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.oel-blog-card:hover { border-color: var(--oel-green); box-shadow: var(--oel-shadow); }
.oel-blog-card__media { aspect-ratio: 16 / 9; background: var(--oel-soft); overflow: hidden; }
.oel-blog-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.oel-blog-card__body { display: grid; gap: .4rem; padding: 1.15rem 1.2rem 1.35rem; align-content: start; }
.oel-blog-card__date {
  font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--oel-green-ink);
}
.oel-blog-card strong {
  font-family: var(--oel-display); font-size: 1.45rem; font-weight: 600; color: var(--oel-ink); line-height: 1.25;
}
.oel-blog-card span { color: var(--oel-muted); font-size: .95rem; }
.oel-blog-card em {
  font-style: normal; font-weight: 700; font-size: .82rem;
  letter-spacing: .05em; text-transform: uppercase; color: var(--oel-green-deep); margin-top: .25rem;
}
.oel-blog-back { margin: 0 0 1rem; }
.oel-blog-back a { font-weight: 700; text-decoration: none; color: var(--oel-green-ink); }
.oel-blog-hero img { width: 100%; height: auto; display: block; margin: 1rem 0 1.25rem; }
.oel-blog-article .oel-blog-card__date { margin-bottom: .35rem; }

/* Produktkarten – Vorlage BIO PLANÈTE Shop (Hochformat, Qty + Warenkorb) */
.oel-grid {
  display: grid; gap: 2.5rem 2rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.oel-shop-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2.75rem 2.5rem;
}
.oel-product-rail {
  display: flex; gap: 1.5rem; overflow-x: auto;
  scroll-snap-type: x mandatory; padding-bottom: .75rem;
  -webkit-overflow-scrolling: touch;
}
.oel-product-rail .oel-card {
  flex: 0 0 min(260px, 74vw);
  scroll-snap-align: start;
}
.oel-card {
  background: transparent;
  border: 0;
  padding: 0;
  overflow: visible;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.oel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(28, 23, 18, .12);
}
.oel-card__media-wrap {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.oel-card__media {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #fff;
  border-radius: 0;
  text-decoration: none;
}
.oel-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: #000; opacity: .03; pointer-events: none;
}
.oel-card__img,
.oel-card__media img,
.oel-card > img {
  width: 100%; height: 100%;
  object-fit: scale-down;
  padding: 1.1rem;
  transition: transform .35s ease;
  position: relative; z-index: 1;
}
.oel-card:hover .oel-card__img,
.oel-card:hover .oel-card__media img { transform: scale(1.03); }
.oel-card__badge {
  position: absolute;
  top: 1.15rem; left: 1.15rem;
  z-index: 3;
  margin: 0;
  padding: 0 .6rem;
  height: 1.375rem;
  line-height: 1.375rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  color: #fff;
  background: var(--oel-btn);
  border-radius: 0;
  pointer-events: none;
}
.oel-card__body {
  padding: .95rem 0 0;
  display: flex; flex-direction: column; gap: .35rem;
  flex: 1;
  border-top: 0;
  text-align: left;
}
.oel-card h3,
.oel-card__name {
  font-family: var(--oel-font);
  font-size: 1.25rem;
  margin: 0;
  color: var(--oel-ink);
  line-height: 1.25;
  font-weight: 400;
  min-height: 3.125rem;
  max-height: 3.125rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.oel-card:hover h3,
.oel-card:hover .oel-card__name {
  color: var(--oel-brand);
}
.oel-card__meta,
.oel-card .oel-card__body > p,
.oel-card p:not(.price):not(.oel-price):not(.oel-card__meta) {
  margin: 0;
  color: var(--oel-muted);
  font-size: .875rem;
  line-height: 1.3rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.3rem;
}
.oel-card__price-row { margin-top: auto; padding-top: .55rem; }
.oel-card__price,
.oel-card .price,
.oel-card .oel-price,
.oel-price {
  font-weight: 600;
  color: var(--oel-ink);
  margin: 0;
  font-size: 1.375rem;
  line-height: 1.3;
}
.oel-pill {
  display: inline-block; font-size: .68rem; font-weight: 700;
  padding: .15rem .5rem; width: fit-content;
  background: var(--oel-soft); color: var(--oel-brand);
  letter-spacing: .05em; text-transform: uppercase;
}

/* Bio-Planète: Preis sichtbar; Kaufleiste fährt beim Hover ein */
.oel-card__buy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 5;
  display: flex; gap: .45rem; align-items: stretch;
  margin: 0;
  padding: .65rem .75rem .75rem;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 28%);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s ease, opacity .22s ease;
}
.oel-card--buy:hover .oel-card__buy,
.oel-card--buy:focus-within .oel-card__buy {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.oel-card__qty {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--oel-line); background: #fff; flex: 1;
  min-height: 2.65rem;
}
.oel-card__qty-btn {
  width: 2.35rem; border: 0; background: transparent; cursor: pointer;
  font-size: 1.15rem; font-weight: 600; color: var(--oel-ink); line-height: 1;
}
.oel-card__qty-btn:hover { background: var(--oel-soft); }
.oel-card__qty-input {
  width: 2.6rem; border: 0; border-left: 1px solid var(--oel-line);
  border-right: 1px solid var(--oel-line);
  text-align: center; font: inherit; font-weight: 700;
  -moz-appearance: textfield;
}
.oel-card__qty-input::-webkit-outer-spin-button,
.oel-card__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.oel-card__cart {
  width: 2.85rem; min-width: 2.85rem;
  border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--oel-btn); color: #fff;
}
.oel-card__cart:hover { background: var(--oel-btn-hover); }
.oel-card__cart svg { display: block; }
.oel-card__cta,
.oel-card .oel-btn {
  width: 100%;
  margin-top: 1.1rem;
  align-self: stretch;
  padding: .7rem 1rem;
  font-size: .88rem;
  background: var(--oel-btn);
  color: #fff !important;
}
.oel-card__cta:hover,
.oel-card .oel-btn:hover {
  background: var(--oel-btn-hover);
  color: #fff !important;
}
@media (hover: none) {
  .oel-card__buy {
    position: relative;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: #fff;
    padding: .75rem 0 0;
    margin-top: .15rem;
  }
  .oel-card__media-wrap { overflow: visible; }
}

/* Öl des Monats */
.oel-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: center;
}
.oel-featured__media {
  background: var(--oel-soft);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.oel-featured__media img {
  width: 78%; height: 78%; object-fit: contain;
}
.oel-featured__eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--oel-green-deep); margin: 0 0 .55rem;
}
.oel-featured h2 {
  font-family: var(--oel-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0 0 .75rem; color: var(--oel-ink);
}
.oel-featured p { color: var(--oel-muted); margin: 0 0 1rem; max-width: 34rem; }
.oel-featured .oel-price { font-size: 1.35rem; margin: 0 0 1.25rem; display: block; }

/* Inspiration */
.oel-inspire {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.oel-inspire__card {
  background: #fff; border: 1px solid var(--oel-line);
  padding: 1.4rem 1.25rem 1.5rem;
}
.oel-inspire__card h3 {
  font-family: var(--oel-display); font-size: 1.35rem;
  margin: 0 0 .45rem; color: var(--oel-ink);
}
.oel-inspire__card p { margin: 0; color: var(--oel-muted); font-size: .95rem; }

/* Markenpfeiler */
.oel-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: center;
}
.oel-pillars article {
  padding: 1.5rem 1rem;
  border-top: 3px solid var(--oel-green);
}
.oel-pillars h3 {
  font-family: var(--oel-display); font-size: 1.55rem;
  margin: 0 0 .4rem; color: var(--oel-ink);
}
.oel-pillars p { margin: 0; color: var(--oel-muted); font-size: .95rem; }

/* Produkt-Detail (Bio-Planète-Stil) */
.oel-section--product { padding-top: 1.25rem; }
.oel-pdp-crumbs {
  display: flex; flex-wrap: wrap; gap: .35rem .5rem;
  margin: 0 0 1.35rem; font-size: .88rem; color: var(--oel-muted);
}
.oel-pdp-crumbs a { color: var(--oel-green-ink); text-decoration: none; font-weight: 600; }
.oel-pdp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: start;
  margin-bottom: 2.5rem;
}
.oel-pdp__media {
  position: relative;
  background: var(--oel-soft);
  aspect-ratio: 1 / 1;
}
.oel-pdp__img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.oel-pdp__img img {
  width: 78%; height: 78%; object-fit: contain;
}
.oel-pdp-wish {
  position: absolute; top: .85rem; right: .85rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  font: inherit; font-size: .82rem; font-weight: 700;
  padding: .45rem .7rem; cursor: pointer;
  border: 1px solid var(--oel-line); background: #fff; color: var(--oel-ink);
}
.oel-pdp-wish__icon { fill: none; stroke: currentColor; stroke-width: 1.6; }
.oel-pdp-wish.is-on {
  border-color: var(--oel-green); color: var(--oel-green-deep);
}
.oel-pdp-wish.is-on .oel-pdp-wish__icon { fill: currentColor; stroke: currentColor; }
.oel-pdp__eyebrow {
  margin: 0 0 .45rem; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--oel-green-ink);
}
.oel-pdp__title {
  font-family: var(--oel-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.15; margin: 0 0 1rem; color: var(--oel-ink); font-weight: 600;
}
.oel-pdp-features {
  list-style: none; margin: 0 0 1.35rem; padding: 0;
  display: grid; gap: .65rem;
}
.oel-pdp-features li {
  display: grid; grid-template-columns: 1.35rem 1fr; gap: .65rem;
  align-items: start; font-size: .98rem; line-height: 1.45; color: var(--oel-ink);
}
.oel-pdp-features__icon {
  display: inline-flex; margin-top: .1rem; color: var(--oel-green-deep);
}
.oel-pdp-features__icon svg { fill: currentColor; }
.oel-pdp__price {
  margin: 0; font-size: 1.55rem; font-weight: 700; color: var(--oel-ink); line-height: 1.2;
}
.oel-pdp__tax {
  margin: .25rem 0 1.15rem; font-size: .85rem; color: var(--oel-muted);
}
.oel-pdp-buyform { margin: 0 0 1.25rem; }
.oel-pdp-buyform__row {
  display: flex; flex-wrap: wrap; gap: .65rem; align-items: stretch;
}
.oel-qty {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--oel-line); background: #fff; min-height: 2.85rem;
}
.oel-qty__btn {
  width: 2.6rem; border: 0; background: transparent; cursor: pointer;
  font-size: 1.25rem; font-weight: 600; color: var(--oel-ink); line-height: 1;
}
.oel-qty__btn:hover { background: var(--oel-soft); }
.oel-qty__input {
  width: 3.2rem; border: 0; border-left: 1px solid var(--oel-line);
  border-right: 1px solid var(--oel-line);
  text-align: center; font: inherit; font-weight: 700;
  -moz-appearance: textfield;
}
.oel-qty__input::-webkit-outer-spin-button,
.oel-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.oel-pdp-buyform__submit {
  flex: 1 1 12rem; min-height: 2.85rem;
  background: var(--oel-btn); color: #fff !important;
}
.oel-pdp-buyform__submit:hover { background: var(--oel-btn-hover); }
.oel-pdp__lead {
  margin: 0 0 1rem; color: var(--oel-muted); max-width: 36rem; line-height: 1.55;
}
.oel-pdp-detail {
  max-width: 48rem; margin: 0 0 2.75rem;
  padding-top: 1.75rem; border-top: 1px solid var(--oel-line);
}
.oel-pdp-detail h2 {
  font-family: var(--oel-display); font-size: 1.55rem; margin: 0 0 .65rem;
}
.oel-pdp-usage { margin: 0; padding-left: 1.1rem; color: var(--oel-ink); }
.oel-pdp-usage li { margin: 0 0 .45rem; }
.oel-pdp-related { margin: 0 0 1rem; }
.oel-pdp-related h2 {
  font-family: var(--oel-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin: 0 0 1.15rem; color: var(--oel-ink);
}
.oel-grid--products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}

/* Legacy product hero (falls noch genutzt) */
.oel-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem; align-items: start;
}
.oel-product-hero__media {
  overflow: hidden; aspect-ratio: 1 / 1;
  background: var(--oel-soft);
}
.oel-product-hero__media img {
  width: 100%; height: 100%; object-fit: contain; padding: 1.75rem;
}
.oel-product-hero .price {
  font-size: 1.55rem; font-weight: 700;
  color: var(--oel-ink); margin: .5rem 0 1rem;
}

/* Shop */
.oel-shop-filters {
  display: flex; flex-wrap: wrap; gap: .75rem 1rem; align-items: end;
  margin: 1.1rem 0 1rem; padding: 1rem 1.1rem;
  background: var(--oel-bg); border: 1px solid var(--oel-line);
}
.oel-shop-filters label {
  display: grid; gap: .28rem; font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--oel-muted);
}
.oel-shop-filters__search { flex: 1 1 14rem; }
.oel-shop-filters input,
.oel-shop-filters select {
  font: inherit; font-weight: 500; color: var(--oel-ink);
  padding: .55rem .7rem; min-width: 10rem;
  border: 1px solid var(--oel-line); background: #fff; border-radius: 0;
}
.oel-shop-cats { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 1rem; }
.oel-shop-cat {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .4rem .75rem; text-decoration: none;
  font-size: .82rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  color: var(--oel-green-ink); background: #fff; border: 1px solid var(--oel-line);
}
.oel-shop-cat span { font-size: .72rem; opacity: .75; font-weight: 600; }
.oel-shop-cat.is-on,
.oel-shop-cat:hover {
  background: var(--oel-btn); color: #fff; border-color: transparent;
}
.oel-shop-count { margin: 0 0 .85rem; color: var(--oel-muted); font-size: .92rem; }
.oel-shop-group { margin: 0 0 2.4rem; }
.oel-shop-group__title {
  font-family: var(--oel-display); font-size: 1.55rem; margin: 0 0 .95rem;
  color: var(--oel-ink); display: flex; align-items: baseline; gap: .5rem;
}
.oel-shop-group__title span {
  font-family: var(--oel-font); font-size: .82rem; font-weight: 600;
  color: var(--oel-muted); letter-spacing: .04em; text-transform: uppercase;
}

.oel-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.75rem 0 0;
}
.oel-highlight {
  background: #fff; border: 1px solid var(--oel-line); padding: 1.25rem 1.2rem;
}
.oel-highlight h3 {
  font-family: var(--oel-display); font-size: 1.35rem; margin: .35rem 0 .3rem;
}
.oel-highlight p { margin: 0; color: var(--oel-muted); font-size: .95rem; }
.oel-highlight a { font-weight: 700; text-decoration: none; }

.oel-disclaimer {
  margin: 1.25rem 0; padding: .95rem 1.05rem;
  border-left: 3px solid var(--oel-green);
  background: var(--oel-soft); font-size: .92rem; color: var(--oel-ink);
}
.oel-disclaimer--health { border-left-color: var(--oel-green-deep); }

/* Begleitung – Befindlichkeit → unterstützende Empfehlung */
.oel-advice-steps {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem .7rem;
  margin: 0 0 1.5rem; font-size: .88rem; color: var(--oel-muted); font-weight: 600;
}
.oel-advice-steps__item.is-on { color: var(--oel-green-ink); }
.oel-advice-steps__sep { opacity: .45; }
.oel-advice-heading {
  font-family: var(--oel-display); font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin: 1.75rem 0 .5rem; color: var(--oel-ink);
}
.oel-advice-lead { max-width: 40rem; margin: 0 0 1.25rem; }
.oel-advice-feel {
  display: grid; gap: .65rem; max-width: 40rem; margin: 0 0 2rem;
}
.oel-advice-feel label { font-weight: 700; font-size: .95rem; }
.oel-advice-feel textarea {
  font: inherit; padding: .85rem 1rem; border: 1px solid var(--oel-line);
  background: #fff; color: var(--oel-ink); min-height: 7rem; resize: vertical;
}
.oel-advice-feel textarea:focus {
  outline: 2px solid var(--oel-green); outline-offset: 1px;
}
.oel-advice-chips {
  display: flex; flex-wrap: wrap; gap: .45rem;
}
.oel-advice-chip {
  font: inherit; font-size: .85rem; font-weight: 600; cursor: pointer;
  padding: .45rem .75rem; border: 1px solid var(--oel-line);
  background: var(--oel-soft); color: var(--oel-ink);
}
.oel-advice-chip:hover { border-color: var(--oel-green); background: #fff; }
.oel-advice-feel__actions { margin: .35rem 0 0; }
.oel-advice-error {
  max-width: 40rem; padding: .85rem 1rem; margin: 0 0 1rem;
  border-left: 3px solid var(--oel-green-deep); background: #fff; color: var(--oel-ink);
}
.oel-advice-feeling-quote {
  margin: 0 0 1.25rem; padding: 1rem 1.15rem;
  border-left: 3px solid var(--oel-green); background: var(--oel-soft);
  font-style: italic; color: var(--oel-ink);
}
.oel-advice-match {
  margin: 1.25rem 0 0; padding-top: 1rem; border-top: 1px solid var(--oel-line);
}
.oel-advice-match:first-of-type { border-top: 0; padding-top: 0; }
.oel-advice-group {
  margin: 1.6rem 0 .65rem; font-size: .78rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--oel-green-ink); font-weight: 700;
}
.oel-advice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem;
}
.oel-advice-card {
  display: grid; gap: .4rem; padding: 1.1rem 1.15rem;
  background: #fff; border: 1px solid var(--oel-line); text-decoration: none; color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.oel-advice-card:hover { border-color: var(--oel-green); box-shadow: var(--oel-shadow); }
.oel-advice-card strong {
  font-family: var(--oel-display); font-size: 1.25rem; font-weight: 600; color: var(--oel-ink);
}
.oel-advice-card span { color: var(--oel-muted); font-size: .92rem; line-height: 1.4; }
.oel-advice-back { margin: 0 0 1rem; }
.oel-advice-back a { font-weight: 700; text-decoration: none; color: var(--oel-green-ink); }
.oel-advice-result {
  background: #fff; border: 1px solid var(--oel-line);
  padding: 1.6rem 1.5rem 2rem; max-width: 52rem;
}
.oel-advice-result h1 {
  font-family: var(--oel-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: .2rem 0 .6rem; color: var(--oel-ink);
}
.oel-advice-tip { margin: 1rem 0 0; max-width: none; }
.oel-advice-products {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin: .75rem 0 0;
}
.oel-advice-product {
  display: grid; grid-template-rows: auto 1fr;
  border: 0; text-decoration: none; color: inherit; background: transparent;
}
.oel-advice-product:hover { border: 0; }
.oel-advice-product:hover .oel-advice-product__body strong { color: var(--oel-green-deep); }
.oel-advice-product__media {
  aspect-ratio: 1 / 1; background: var(--oel-soft); overflow: hidden;
}
.oel-advice-product__media img {
  width: 100%; height: 100%; object-fit: scale-down; display: block; padding: 1.2rem;
}
.oel-advice-product__body {
  display: grid; gap: .35rem; padding: 1rem 0 0; align-content: start;
}
.oel-advice-product__body strong {
  font-size: 1.125rem; line-height: 1.35rem; font-weight: 700; color: var(--oel-ink);
}
.oel-advice-product__body span { color: var(--oel-muted); font-size: .875rem; }
.oel-advice-product__body em {
  font-style: normal; font-weight: 700; font-size: 1.125rem; color: var(--oel-ink);
}
.oel-advice-cta {
  margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--oel-line);
}
.oel-advice-cta h2 {
  font-family: var(--oel-display); font-size: 1.45rem; margin: 0 0 .4rem;
}
.oel-advice-cta p { margin: 0 0 .85rem; color: var(--oel-muted); }
.oel-muted { color: var(--oel-muted); }

.oel-footer {
  margin-top: 0; padding: 2.8rem 0 2.6rem;
  border-top: 1px solid var(--oel-line);
  color: var(--oel-muted); font-size: .9rem; background: var(--oel-bg);
}
.oel-footer nav { display: flex; flex-wrap: wrap; gap: .75rem 1.2rem; margin-bottom: .85rem; }
.oel-footer a { color: var(--oel-green-ink); text-decoration: none; font-weight: 600; }

.oel-form { display: grid; gap: .85rem; max-width: 34rem; }
.oel-form label { display: grid; gap: .3rem; font-weight: 600; font-size: .92rem; }
.oel-form input, .oel-form select, .oel-form textarea {
  font: inherit; padding: .7rem .8rem; border-radius: 0;
  border: 1px solid var(--oel-line); background: #fff;
}
.oel-table { width: 100%; border-collapse: collapse; background: #fff; }
.oel-table th, .oel-table td { padding: .7rem .8rem; border-bottom: 1px solid var(--oel-line); text-align: left; }
.oel-alert,
.oel-ok,
.oel-note,
.oel-advice-error {
  padding: .85rem 1rem;
  border: 1px solid var(--oel-line);
  border-left-width: 3px;
  background: var(--oel-soft);
  color: var(--oel-ink);
  font-size: .95rem;
  line-height: 1.45;
}
.oel-alert,
.oel-advice-error {
  border-left-color: var(--oel-danger);
  background: color-mix(in srgb, var(--oel-danger) 8%, #fff);
  color: var(--oel-danger);
}
.oel-ok {
  border-left-color: var(--oel-green-deep);
  background: color-mix(in srgb, var(--oel-green) 12%, #fff);
  color: var(--oel-green-ink);
}
.oel-note {
  border-left-color: var(--oel-btn);
  background: var(--oel-beige);
  color: var(--oel-ink);
}
.oel-form input:focus-visible,
.oel-form select:focus-visible,
.oel-form textarea:focus-visible,
.oel-search-panel__form input:focus-visible {
  outline: 2px solid var(--oel-btn);
  outline-offset: 1px;
  border-color: var(--oel-btn);
}

.oel-prose { max-width: 46rem; }
.oel-prose h1, .oel-prose h2, .oel-prose h3 {
  font-family: var(--oel-display); color: var(--oel-ink);
}
.oel-prose img { max-width: 100%; height: auto; }
.oel-article {
  background: #fff; border: 1px solid var(--oel-line);
  padding: 1.75rem 1.6rem 2rem; max-width: 48rem;
}
.oel-video, .oel-embed {
  position: relative; width: 100%; margin: 1rem 0;
  overflow: hidden; background: #1c2a1a;
}
.oel-video video { width: 100%; display: block; max-height: 70vh; }
.oel-embed { aspect-ratio: 16 / 9; }
.oel-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 1100px) {
  .oel-worlds { grid-template-columns: repeat(3, 1fr); }
  .oel-grid--home-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .oel-worlds {
    display: flex; gap: .65rem; overflow-x: auto;
    scroll-snap-type: x mandatory; padding-bottom: .35rem;
    -webkit-overflow-scrolling: touch;
  }
  .oel-world {
    flex: 0 0 min(42vw, 11.5rem);
    scroll-snap-align: start;
    aspect-ratio: 3 / 4;
  }
  .oel-wissen-cta,
  .oel-wissen-grid,
  .oel-inspire,
  .oel-pillars,
  .oel-highlights,
  .oel-advice-grid,
  .oel-advice-products,
  .oel-blog-grid { grid-template-columns: 1fr 1fr; }
  .oel-featured,
  .oel-product-hero,
  .oel-pdp { grid-template-columns: 1fr; }
  .oel-grid--products,
  .oel-grid--home-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .oel-top-icon--menu { display: inline-flex; }
  .oel-nav {
    display: none;
    order: 4;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
    padding: .35rem 0 .75rem;
  }
  .oel-nav.is-open { display: flex; }
  .oel-top__inner { flex-wrap: wrap; }
  .oel-brand { order: 1; }
  .oel-top__actions { order: 2; margin-left: auto; }
  .oel-wissen-cta,
  .oel-wissen-grid,
  .oel-inspire,
  .oel-pillars,
  .oel-highlights,
  .oel-advice-grid,
  .oel-advice-products,
  .oel-blog-grid,
  .oel-grid--products,
  .oel-grid--home-products { grid-template-columns: 1fr; }
  .oel-world { flex-basis: min(58vw, 13rem); }
  .oel-hero-slide { min-height: 58vh; }
  .oel-hero-nav { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .oel-card, .oel-btn, .oel-card__media img, .oel-world img { transition: none; }
}

/* Cookie */
.site-cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 10000;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(28, 42, 26, 0.97); color: #f4faf1;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
}
.site-cookie-banner__inner {
  max-width: 1120px; margin: 0 auto; display: flex; flex-wrap: wrap;
  gap: 0.85rem 1.25rem; align-items: flex-start; justify-content: space-between;
}
.site-cookie-banner__text { flex: 1 1 18rem; min-width: 0; }
.site-cookie-banner__text strong { display: block; font-size: 1.02rem; margin-bottom: 0.25rem; }
.site-cookie-banner__intro { margin: 0; font-size: 0.92rem; line-height: 1.45; color: rgba(244, 250, 241, 0.9); }
.site-cookie-banner__text a { color: #c8e6b8; text-decoration: underline; }
.site-cookie-panel { margin-top: 0.75rem; display: grid; gap: 0.55rem; }
.site-cookie-panel[hidden], .site-cookie-banner__actions[hidden] { display: none !important; }
.site-cookie-cat {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(244, 250, 241, 0.14);
  border-radius: 8px; padding: 0.55rem 0.7rem;
}
.site-cookie-cat__label {
  display: flex; align-items: center; gap: 0.45rem; font-weight: 600; font-size: 0.94rem; cursor: pointer;
}
.site-cookie-cat__label input { width: 1.05rem; height: 1.05rem; accent-color: var(--oel-btn); }
.site-cookie-cat__desc {
  margin: 0.3rem 0 0 1.5rem; font-size: 0.84rem; line-height: 1.4; color: rgba(244, 250, 241, 0.78);
}
.site-cookie-banner__actions {
  display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; justify-content: flex-end; flex: 0 1 auto;
}
.site-cookie-btn {
  border: 0; border-radius: 0; padding: 0.55rem 0.9rem; font: inherit; font-size: 0.92rem; cursor: pointer;
}
.site-cookie-btn--primary { background: var(--oel-btn); color: #fff; font-weight: 600; }
.site-cookie-btn--primary:hover { background: var(--oel-btn-hover); }
.site-cookie-btn--ghost {
  background: transparent; color: #f4faf1; border: 1px solid rgba(244, 250, 241, 0.35);
}
.site-cookie-btn--ghost:hover { border-color: rgba(244, 250, 241, 0.7); }
@media (max-width: 640px) {
  .site-cookie-banner__actions { width: 100%; }
  .site-cookie-btn { flex: 1 1 auto; text-align: center; }
}
