/* morenutrition.de clone — all color values copied verbatim from RECON computed styles / pixel samples */
:root {
  --c-text: rgb(20, 22, 24);
  --c-text-soft: rgb(105, 108, 120);
  --c-header-text: rgb(18, 18, 18);
  --c-bg: rgb(255, 255, 255);
  --c-surface: rgb(243, 243, 243);
  --c-footer: rgb(246, 246, 246);
  --c-strip: rgb(0, 126, 176);
  --c-hero-red: rgb(255, 49, 57);
  --c-badge-red: rgb(255, 64, 63);
  --c-pink-badge-bg: rgb(254, 227, 240);
  --c-pink: rgb(210, 10, 97);
  --c-blue: rgb(2, 135, 255);
  --c-magenta: rgb(243, 3, 120);
  --c-green: rgb(25, 131, 7);
  --c-navy: rgb(0, 42, 142);
  --c-star: rgb(20, 22, 24);
  --c-star-gold: rgb(255, 184, 0);
  --c-tab-muted: rgb(156, 163, 175);
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-head: "Europa bold", "DM Sans", sans-serif;
  --font-display: "Obviously Super Italic", "Europa bold", sans-serif;
  --page-width: 1232px;
  --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }
.page-width { max-width: var(--page-width); margin-inline: auto; padding-inline: 16px; }

/* ── top trust strip ─────────────────────────── */
.trust-strip {
  background: var(--c-strip);
  color: rgb(255, 255, 255);
  font-size: 14px;
  overflow: hidden;
}
.trust-strip__inner {
  display: flex; justify-content: center; gap: 96px;
  padding: 9px 16px; white-space: nowrap; line-height: 20px;
}
.trust-strip__item { display: inline-flex; align-items: center; gap: 9px; }
.trust-strip__item svg { width: 17px; height: 17px; flex: none; }
.tp-stars { display: inline-flex; gap: 2px; }
.tp-stars span {
  width: 16px; height: 16px; background: rgb(3, 178, 122);
  display: inline-flex; align-items: center; justify-content: center;
}
.tp-stars svg { width: 11px; height: 11px; }

/* ── header ──────────────────────────────────── */
.site-header { background: rgb(255, 255, 255); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--c-surface); }
.site-header__row {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 26px; padding-block: 12px;
}
.site-header__logo img { height: 44px; width: auto; }
.search-bar {
  display: flex; align-items: center; gap: 10px;
  background: rgb(255, 255, 255); border: 1px solid rgb(225, 229, 231);
  border-radius: 8px; height: 45px;
  padding-inline: 14px; width: 350px; justify-self: end;
  color: var(--c-header-text);
}
.search-bar svg { width: 19px; height: 19px; flex: none; }
.search-bar input {
  border: 0; background: none; outline: none; width: 100%;
  font: inherit; font-size: 15px; color: inherit;
}
.search-bar input::placeholder { color: rgb(136, 136, 136); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-actions .flag { width: 24px; height: 16px; border-radius: 2px; overflow: hidden; flex: none; }
.header-actions__locale { display: flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 700; }
.header-actions__locale u { text-underline-offset: 3px; }
.header-actions .a11y-icon { width: 27px; height: 27px; display: block; }
.header-actions button:hover svg, .header-actions a:hover svg, .header-actions a:hover img { opacity: .65; }
.header-actions svg { width: 25px; height: 25px; }

/* nav */
.main-nav ul { display: flex; gap: 24px; padding-bottom: 12px; flex-wrap: wrap; }
.main-nav a {
  font-size: 14px; color: var(--c-text); font-weight: 400;
  display: inline-flex; align-items: center; gap: 4px; padding-block: 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { border-bottom-color: var(--c-header-text); }
.main-nav .nav-aktion a { color: var(--c-pink); font-weight: 700; }
.main-nav .nav-aktion a:hover { border-bottom-color: var(--c-pink); }
.main-nav svg { width: 10px; height: 10px; opacity: .6; }

/* ── hero ────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero img.hero__bg { width: 100%; height: auto; object-fit: cover; }
.hero__code {
  position: absolute; top: 0; left: 0; z-index: 10;
  background: rgb(255, 255, 255); color: var(--c-text);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 6px 10px; border-bottom-right-radius: 4px; line-height: 1;
}
.hero__overlay {
  position: absolute; inset: 0; display: flex;
}
.hero__panel {
  width: 50%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px; text-align: center;
  padding-inline: 48px;
}
.hero__panel h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 56px; line-height: 1; color: rgb(255, 255, 255);
}
.btn-pill {
  display: inline-block; background: rgb(255, 255, 255); color: rgb(0, 0, 0);
  font-weight: 700; font-size: 16px; text-align: center;
  padding: 12px 24px; border-radius: 160px; min-width: 300px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-pill:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.18); }

/* ── aktionshighlights ───────────────────────── */
.section-title { font-family: var(--font-head); font-weight: 700; font-size: 24px; text-align: center; color: var(--c-header-text); }
.quick-navi { padding: 12px 0 18px; }
.quick-navi__row {
  display: flex; justify-content: center; gap: 20px;
  overflow-x: auto; scrollbar-width: none; padding: 14px 16px 6px;
}
.quick-navi__row::-webkit-scrollbar { display: none; }
.qn-tile { width: 96px; flex: none; text-align: center; }
.qn-tile__img {
  position: relative; width: 96px; height: 96px;
  background: var(--c-surface); border-radius: 4.5px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.qn-tile__img img { width: 74px; height: 74px; object-fit: contain; transition: transform .2s ease; }
.qn-tile:hover .qn-tile__img img { transform: scale(1.06); }
.qn-tile__badge {
  position: absolute; top: 4px; left: 4px;
  background: var(--c-pink-badge-bg); color: var(--c-pink);
  font-size: 11px; font-weight: 700; padding: 2px 5px; border-radius: 4px; line-height: 1.2;
}
.qn-tile__label { font-size: 12px; line-height: 1.25; margin-top: 6px; font-weight: 700; }
.qn-tile__note {
  display: inline-block; margin-top: 3px;
  font-size: 10px; font-weight: 700; color: var(--c-pink);
  background: var(--c-pink-badge-bg); border-radius: 999px; padding: 2px 7px;
}

/* ── product sliders / cards ─────────────────── */
.display-title { font-family: var(--font-display); font-weight: 700; font-size: 32px; color: var(--c-header-text); }
.tps { padding: 34px 0 26px; }
.tps__head { display: flex; flex-direction: column; gap: 14px; }
.tabs { display: flex; gap: 24px; border-bottom: 1px solid var(--c-surface); }
.tabs button {
  font-size: 16px; color: var(--c-tab-muted); font-weight: 400;
  padding: 4px 0 8px; border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs button:hover { color: var(--c-header-text); }
.tabs button[aria-selected="true"] { color: var(--c-header-text); font-weight: 700; border-bottom-color: var(--c-header-text); }

.slider-wrap { position: relative; }
.slider {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 20px 2px 8px;
}
.slider::-webkit-scrollbar { display: none; }
.slider > * { scroll-snap-align: start; }
.slider-nav { display: flex; gap: 8px; justify-content: flex-end; padding-top: 6px; }
.slider-nav button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--c-surface); background: rgb(255, 255, 255);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.slider-nav button:hover { background: var(--c-surface); }
.slider-nav svg { width: 14px; height: 14px; }
.slider-dots { display: flex; gap: 6px; justify-content: center; padding-top: 10px; }
.slider-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--c-surface); }
.slider-dots span.is-active { background: var(--c-header-text); }

.p-card { width: 282px; flex: none; }
.p-card__media {
  position: relative; background: var(--c-surface); border-radius: var(--radius);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.p-card__media img { width: 62%; height: 62%; object-fit: contain; transition: transform .25s ease; }
.p-card:hover .p-card__media img { transform: scale(1.05); }
.p-card__badge {
  position: absolute; top: 0; left: 0;
  background: var(--c-badge-red); color: rgb(255, 255, 255);
  font-size: 12px; font-weight: 700; padding: 5px 9px; border-bottom-right-radius: var(--radius);
}
.p-card__badge--dark { background: var(--c-header-text); }
.p-card__cart {
  position: absolute; right: 10px; bottom: 10px;
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--c-green); color: rgb(255, 255, 255);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px rgba(55, 63, 71, .28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.p-card__cart:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(55, 63, 71, .35); }
.p-card__cart svg { width: 22px; height: 22px; }
.p-card__variant {
  position: absolute; left: 10px; bottom: 10px;
  background: rgb(255, 255, 255); border-radius: 999px;
  font-size: 11px; font-weight: 700; padding: 4px 9px;
  box-shadow: 0 1px 4px rgba(55, 63, 71, .18);
}
.p-card__body { padding-top: 12px; }
.p-card__rating { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; }
.p-card__rating .stars { color: var(--c-star); letter-spacing: 1px; font-size: 12px; }
.p-card__rating .count { color: var(--c-text-soft); font-weight: 400; }
.p-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-top: 5px; color: var(--c-text); }
.p-card:hover h3 { text-decoration: underline; }
.p-card__sub { font-size: 14px; color: var(--c-text-soft); margin-top: 2px; }
.p-card__price { margin-top: 8px; font-size: 18px; font-weight: 700; }
.p-card__unit { font-size: 12px; color: var(--c-text-soft); font-weight: 400; }

/* cards on colored surfaces */
.on-color .p-card h3, .on-color .p-card__price { color: rgb(255, 255, 255); }
.on-color .p-card__sub, .on-color .p-card__unit, .on-color .p-card__rating .count { color: rgba(255, 255, 255, .78); }
.on-color .p-card__rating .stars { color: rgb(255, 255, 255); }
.on-color .slider-nav button { background: transparent; border-color: rgba(255, 255, 255, .5); color: rgb(255, 255, 255); }
.on-color .slider-nav button:hover { background: rgba(255, 255, 255, .15); }
.on-color .slider-dots span { background: rgba(255, 255, 255, .4); }
.on-color .slider-dots span.is-active { background: rgb(255, 255, 255); }

/* ── mood sections (blue / pink) ─────────────── */
.mood { color: rgb(255, 255, 255); overflow: hidden; }
.mood--blue { background: var(--c-blue); }
.mood--pink { background: var(--c-magenta); }
.mood__grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 40px;
  align-items: center; padding-block: 48px;
}
.mood__intro { position: relative; min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end; gap: 22px; padding-bottom: 26px; }
.mood__bg { position: absolute; inset: -48px auto -48px -400px; width: 760px; max-width: none; opacity: .95; pointer-events: none; }
.mood--blue .mood__bg { inset: -60px auto auto -230px; width: 640px; }
.mood--pink .mood__bg { position: static; width: 380px; margin-bottom: 8px; }
.mood__intro h2 { font-family: var(--font-head); font-weight: 700; font-size: 40px; line-height: 1.5; position: relative; }
.mood__intro h2.display { font-family: var(--font-display); font-size: 32px; line-height: 1.2; }
.mood .btn-pill { min-width: 220px; width: fit-content; position: relative; }

/* ── ziele teaser ────────────────────────────── */
.ziele { padding: 44px 0; }
.ziele h2 { font-family: var(--font-head); font-size: 32px; font-weight: 700; text-align: center; color: var(--c-header-text); }
.ziele__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 26px; }
.ziele__card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 700 / 874; display: block; }
.ziele__card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.ziele__card:hover img { transform: scale(1.04); }
.ziele__card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.45) 100%);
}
.ziele__label {
  position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  color: rgb(255, 255, 255); font-size: 18px; font-weight: 700;
}
.ziele__label svg { width: 20px; height: 20px; flex: none; }

/* ── stats teaser ────────────────────────────── */
.stats { padding: 10px 0 46px; }
.stats h2 { font-family: var(--font-head); font-size: 32px; font-weight: 700; text-align: center; color: var(--c-header-text); }
.stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 26px; }
.stats__card { position: relative; border-radius: var(--radius); overflow: hidden; display: block; }
.stats__card img { width: 100%; height: 100%; object-fit: cover; }
.stats__text { position: absolute; top: 34px; left: 34px; color: rgb(255, 255, 255); }
.stats__num { font-family: var(--font-display); font-weight: 700; font-size: 58px; line-height: 1; display: block; }
.stats__label { font-family: var(--font-head); font-weight: 700; font-size: 22px; line-height: 1.25; display: block; margin-top: 8px; }

/* ── trust marquee ───────────────────────────── */
.marquee { background: rgb(255, 255, 255); padding: 24px 0; overflow: hidden; border-top: 1px solid var(--c-footer); }
.marquee__track {
  display: flex; align-items: center; gap: 56px; white-space: nowrap;
  width: max-content; animation: marquee-scroll 20s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
.marquee__item { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; color: var(--c-text); }
.marquee__item svg { width: 20px; height: 20px; flex: none; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── reviews ─────────────────────────────────── */
.reviews { padding: 40px 0 50px; }
.reviews h2 { font-size: 36px; font-weight: 700; text-align: center; color: var(--c-header-text); }
.review-card {
  width: 282px; flex: none;
  background: rgb(255, 255, 255); border-radius: 6px;
  box-shadow: rgba(55, 63, 71, 0.16) 0px 3px 8px 0px, rgba(55, 63, 71, 0.04) 0px 0px 0px 1px;
  padding: 14px; display: flex; flex-direction: column; gap: 8px;
}
.review-card__media {
  background: var(--c-surface); border-radius: 6px;
  height: 150px; display: flex; align-items: center; justify-content: center;
}
.review-card__media img { height: 120px; width: auto; object-fit: contain; }
.review-card__meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--c-text-soft); }
.review-card .stars { color: var(--c-star-gold); font-size: 14px; letter-spacing: 1px; }
.review-card h3 { font-size: 16px; font-weight: 700; }
.review-card p { font-size: 14px; line-height: 1.45; color: var(--c-text); flex: 1; }
.review-card__author { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.review-card__author .verified { display: inline-flex; align-items: center; gap: 4px; color: rgb(2, 135, 255); font-size: 12px; }
.review-card__author .verified svg { width: 13px; height: 13px; }

/* ── footer ──────────────────────────────────── */
.site-footer { background: var(--c-footer); color: var(--c-header-text); margin-top: 20px; }
.site-footer a:hover { text-decoration: underline; }
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 44px 0 28px;
}
.footer-col h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.footer-col li { margin-bottom: 9px; font-size: 15px; }
.btn-navy {
  display: inline-block; background: var(--c-navy); color: rgb(255, 255, 255);
  font-size: 15px; padding: 8px 20px; border-radius: 4px; margin-top: 4px;
}
.btn-navy:hover { text-decoration: none; opacity: .92; }
.footer-products { border-top: 1px solid rgb(221, 223, 224); padding: 28px 0; }
.footer-products h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.footer-products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-products__grid li { margin-bottom: 9px; font-size: 15px; }
.footer-meta {
  display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start;
  border-top: 1px solid rgb(221, 223, 224); padding: 26px 0;
}
.footer-meta h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.pay-chip {
  background: rgb(255, 255, 255); border: 1px solid rgb(221, 223, 224);
  border-radius: 4px; font-size: 11px; font-weight: 700;
  padding: 5px 8px; min-width: 44px; text-align: center; color: var(--c-header-text);
}
.social-row { display: flex; gap: 12px; }
.social-row a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgb(255, 255, 255); border: 1px solid rgb(221, 223, 224); }
.social-row svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--c-text-soft);
  border-top: 1px solid rgb(221, 223, 224); padding: 18px 0 26px;
}

/* ── cart drawer (demo interaction) ──────────── */
.cart-drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.cart-drawer.is-open { visibility: visible; }
.cart-drawer__scrim { position: absolute; inset: 0; background: rgba(18, 18, 18, .4); opacity: 0; transition: opacity .25s ease; }
.cart-drawer.is-open .cart-drawer__scrim { opacity: 1; }
.cart-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 400px; max-width: 92vw;
  background: rgb(255, 255, 255); box-shadow: -8px 0 30px rgba(0,0,0,.15);
  transform: translateX(100%); transition: transform .28s ease;
  display: flex; flex-direction: column;
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--c-surface); }
.cart-drawer__head h2 { font-family: var(--font-head); font-size: 20px; }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center; }
.cart-item__img { background: var(--c-surface); border-radius: 6px; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
.cart-item__img img { width: 54px; height: 54px; object-fit: contain; }
.cart-item h4 { font-size: 14px; font-weight: 700; }
.cart-item .qty { font-size: 12px; color: var(--c-text-soft); }
.cart-item__price { font-weight: 700; font-size: 14px; }
.cart-drawer__empty { color: var(--c-text-soft); font-size: 14px; text-align: center; margin-top: 40px; }
.cart-drawer__foot { border-top: 1px solid var(--c-surface); padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.cart-drawer__total { display: flex; justify-content: space-between; font-weight: 700; }
.btn-checkout {
  background: var(--c-green); color: rgb(255, 255, 255); font-weight: 700;
  border-radius: 8px; padding: 14px; text-align: center; font-size: 16px;
}
.btn-checkout:hover { opacity: .93; }
.cart-count[hidden] { display: none; }
.cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--c-pink); color: rgb(255, 255, 255);
  font-size: 10px; font-weight: 700; min-width: 16px; height: 16px;
  border-radius: 999px; display: flex; align-items: center; justify-content: center; padding-inline: 4px;
}

/* ── responsive ──────────────────────────────── */
@media (max-width: 980px) {
  .mood__grid { grid-template-columns: 1fr; }
  .mood--pink .mood__bg { width: 300px; }
  .mood__intro { min-height: 0; padding-top: 10px; }
  .mood--blue .mood__bg { position: static; width: 340px; margin-inline: auto; }
  .ziele__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: 1fr; }
  .footer-cols, .footer-products__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__panel h1 { font-size: 34px; }
  .btn-pill { min-width: 200px; }
}
@media (max-width: 640px) {
  .site-header__row { grid-template-columns: auto 1fr auto; gap: 12px; }
  .search-bar { display: none; }
  .hero__overlay { position: static; background: var(--c-hero-red); }
  .hero__panel { width: 100%; padding-block: 26px; }
  .hero__panel h1 { font-size: 30px; }
  .trust-strip__inner { gap: 24px; overflow-x: auto; justify-content: flex-start; }
  .ziele__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-cols, .footer-products__grid { grid-template-columns: 1fr; }
  .p-card { width: 220px; }
  .reviews h2 { font-size: 28px; }
}
