/*
Theme Name:  MUVEXA
Theme URI:   https://muvexa.de
Author:      MUVEXA Team
Description: Clean, conversion-focused landing page theme for the MUVEXA supplement brand.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.1
License:     Proprietary
Text Domain: muvexa
*/

/* ═══════════════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  --color-bg:          #FAFAF8;
  --color-bg-alt:      #F3EFE8;
  --color-text:        #1A1A1A;
  --color-text-muted:  #4A4744;
  --color-accent:      #1A1A1A;
  --color-accent-dark: #000000;
  --color-accent-light:#EBEBEB;
  --color-border:      #E8E4DC;
  --color-white:       #FFFFFF;
  --color-gold:        #C8A96E;

  --radius-card:  12px;
  --radius-btn:   4px;

  --shadow-card:  0 2px 16px rgba(0,0,0,.06);
  --shadow-hover: 0 6px 28px rgba(0,0,0,.10);
  --shadow-nav:   0 2px 12px rgba(0,0,0,.08);

  --font-base:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  --max-w: 1140px;
  --max-w-text: 680px;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════════════════════════ */
.muvexa-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.muvexa-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.muvexa-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
}

.muvexa-h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.muvexa-lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: var(--max-w-text);
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════════════ */
.muvexa-container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.muvexa-section {
  padding-block: var(--space-xl);
}

.muvexa-section--alt {
  background: var(--color-bg-alt);
}

.muvexa-text-center { text-align: center; }
.muvexa-text-center .muvexa-lead { margin-inline: auto; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .22s, box-shadow .22s, transform .18s;
  border: 2px solid transparent;
  white-space: nowrap;
  min-height: 52px;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: none;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-text);
  box-shadow: none;
  transform: translateY(-1px);
}
.btn--primary:active {
  transform: translateY(0);
}

/* Gold variant — used on dark backgrounds (signup section) */
.btn--gold {
  background: var(--color-gold);
  color: #1A1A1A;
  border-color: var(--color-gold);
}
.btn--gold:hover,
.btn--gold:focus-visible {
  background: #B8944E;
  border-color: #B8944E;
  color: #1A1A1A;
  transform: translateY(-1px);
}
.btn--gold:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn--outline:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
}

.btn--ghost-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: transparent;
  color: #2D2D2D;
  border: 1.5px solid #2D2D2D;
  border-radius: 4px;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 14px 28px;
  min-height: 48px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease;
}
.btn--ghost-hero:hover,
.btn--ghost-hero:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--lg {
  padding: 1.15rem 2.5rem;
  font-size: 1.08rem;
  min-height: 58px;
}

/* ═══════════════════════════════════════════════════════════════
   USP BAR
═══════════════════════════════════════════════════════════════ */
.muvexa-usp-bar {
  background: #1A1A1A;
  color: #fff;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.muvexa-usp-bar__track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.muvexa-usp-bar__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .5s ease;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.muvexa-usp-bar__slide--active {
  opacity: 1;
}

.muvexa-usp-bar__check {
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
.muvexa-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #F0EDE8;
  transition: box-shadow .25s ease;
}

.muvexa-nav--scrolled {
  box-shadow: var(--shadow-nav);
  border-bottom-color: transparent;
}

.muvexa-nav__container {
  max-width: 100%;
  padding-inline: 5rem;
  margin-inline: auto;
}

.muvexa-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  height: 72px;
}

.muvexa-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.muvexa-nav__logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* Desktop Nav Menu */
.muvexa-nav__menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.muvexa-nav__list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.muvexa-nav__link {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  color: #2D2D2D;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s ease;
}

.muvexa-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width .2s ease;
}

.muvexa-nav__link:hover::after,
.muvexa-nav__link:focus-visible::after {
  width: 100%;
}

.muvexa-nav__link:hover {
  color: #1A1A1A;
}

/* CTA Button in Nav */
.muvexa-nav__cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1A1A1A;
  color: #fff;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  min-height: 40px;
  transition: background .2s ease, color .2s ease;
}

.muvexa-nav__cta-btn:hover,
.muvexa-nav__cta-btn:focus-visible {
  background: var(--color-gold);
  color: #1A1A1A;
}

/* Hamburger */
.muvexa-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.muvexa-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A1A1A;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ── Mobile Menu Overlay ─────────────────────────────────── */
.muvexa-mobile-menu {
  position: fixed;
  inset: 0;
  background: #FAFAF8;
  z-index: 200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.muvexa-mobile-menu--open {
  opacity: 1;
  pointer-events: all;
}

.muvexa-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 3rem;
  height: 100%;
}

.muvexa-mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #1A1A1A;
  line-height: 1;
  padding: .5rem;
  margin-bottom: 2rem;
}

.muvexa-mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.muvexa-mobile-menu__list li {
  border-bottom: 1px solid var(--color-border);
}

.muvexa-mobile-menu__list a {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #1A1A1A;
  text-decoration: none;
  padding: 1.1rem 0;
}

.muvexa-mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A1A1A;
  color: #fff;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 0 2rem;
  border-radius: 4px;
  text-decoration: none;
  height: 52px;
  margin-top: 2rem;
  transition: background .2s ease, color .2s ease;
}

.muvexa-mobile-menu__cta:hover {
  background: var(--color-gold);
  color: #1A1A1A;
}

/* Legacy compat — old .muvexa-nav__cta class */
.muvexa-nav__cta { padding: .6rem 1.25rem; font-size: .95rem; }

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.muvexa-hero {
  padding-block: 1.5rem 2.5rem;
  min-height: auto;
}

.muvexa-hero > .muvexa-container {
  max-width: 100%;
  padding-inline: 0;
}

.muvexa-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  gap: 2rem;
  align-items: start;
}

.muvexa-hero__content { display: flex; flex-direction: column; gap: .75rem; padding: 1.75rem 1rem 1.75rem 1rem; }

.muvexa-hero__headline {
  max-width: 560px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1A1A1A;
}

.muvexa-hero__subtext {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 500px;
  margin-top: 4px;
}

/* Social proof bar under CTA */
.muvexa-hero__social-proof {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 18px;
  font-family: var(--font-base);
  font-size: 13px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.muvexa-hero__social-proof .sp-stars {
  color: var(--color-gold);
  font-size: 15px;
  letter-spacing: .04em;
}

.muvexa-hero__social-proof .sp-avatars {
  display: flex;
  align-items: center;
}

.muvexa-hero__social-proof .sp-avatars span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 2px solid #fff;
  margin-left: -8px;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  overflow: hidden;
}

.muvexa-hero__social-proof .sp-avatars span:first-child {
  margin-left: 0;
}

.muvexa-hero__social-proof .sp-quote {
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 12px;
}
.muvexa-hero__sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: .75rem;
  margin-bottom: .25rem;
}

.muvexa-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-top: .5rem;
}

/* Trust Bar */
.muvexa-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: .5rem;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.muvexa-trust-bar__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-text);
}

.muvexa-trust-bar__item::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* Product Mockup */
.muvexa-hero__visual {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 120px; /* unter Nav (72px) + USP Bar (36px) + 12px Abstand */
  padding-left: 0.5rem;
}

.muvexa-hero__product-name {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: .45rem 1rem;
  border-radius: 30px;
  text-align: center;
  white-space: nowrap;
}

.muvexa-product-mockup {
  width: 340px;
  height: 420px;
  border-radius: 20px;
  background: linear-gradient(145deg, #EBEBEB 0%, #999999 50%, #1A1A1A 100%);
  box-shadow: 0 24px 64px rgba(0,0,0,.20), 0 4px 16px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.muvexa-product-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.25) 0%, transparent 60%);
}

.muvexa-product-mockup__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-white);
  color: var(--color-accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 999px;
}

.muvexa-product-mockup__name {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -.03em;
  text-align: center;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.muvexa-product-mockup__sub {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  text-align: center;
  z-index: 1;
}

.muvexa-product-mockup__pill {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  color: var(--color-white);
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 999px;
  z-index: 1;
}

/* Product Image */
.muvexa-product-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* Bundle Contents */
.muvexa-bundle-contents {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
}

.muvexa-bundle-contents__title {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .75rem;
  color: var(--color-text);
}

.muvexa-bundle-contents ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.muvexa-bundle-contents ul li {
  font-size: .92rem;
  color: var(--color-text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.muvexa-bundle-contents ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — PACKAGE CONTENTS (BioTechUSA product-detail style)
═══════════════════════════════════════════════════════════════ */
.muvexa-pkg-contents {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}

/* Desktop: zeige nur die Desktop-Version */
.muvexa-pkg-contents--mobile { display: none; }

/* Mobile (≤900px): verstecke Desktop-Version, zeige Mobile-Version */
@media (max-width: 900px) {
  .muvexa-pkg-contents--desktop { display: none; }
  .muvexa-pkg-contents--mobile  { display: block; }
}

.muvexa-pkg-contents__title {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.1rem;
}

.muvexa-pkg-contents__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.muvexa-pkg-contents__list li {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-left: 1.4rem;
  position: relative;
  font-size: 1.05rem;
}

.muvexa-pkg-contents__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.muvexa-pkg-contents__list li strong {
  color: var(--color-text);
  font-weight: 700;
}

.muvexa-pkg-contents__list li span {
  font-size: .85rem;
  color: var(--color-text-muted);
}

/* Ingredient description items */
.muvexa-pkg-desc {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}

.muvexa-pkg-desc__item {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: .9rem 0 .9rem 1rem;
  border-left: 3px solid transparent;
  transition: border-color .2s;
}

.muvexa-pkg-desc__item:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.muvexa-pkg-desc__item:hover {
  border-left-color: var(--color-accent);
}

.muvexa-pkg-desc__tag {
  display: inline-block;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(59,109,17,.08);
  border-radius: 4px;
  padding: .2rem .55rem;
  margin-bottom: .1rem;
  align-self: flex-start;
}

.muvexa-pkg-desc__item p {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Trust strip below product image */
.muvexa-hero__trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  margin-top: 1rem;
}

.muvexa-hero__trust-strip span {
  font-size: .74rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: .28rem .7rem;
}

/* Bundle Label */
.muvexa-bundle-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: .5rem;
}

/* Price Options */
.muvexa-price-options {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.25rem;
}

.muvexa-price-option {
  display: block;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: .75rem 1rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  background: var(--color-white);
}

.muvexa-price-option:hover {
  border-color: var(--color-accent);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.muvexa-price-option.selected {
  border-color: var(--color-accent);
  background: #F7F5F2;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}

.muvexa-price-option__inner {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.muvexa-price-option__thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.muvexa-price-option__info {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  flex: 1;
}

.muvexa-price-option__qty {
  font-size: .92rem;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.muvexa-price-option__badge {
  background: var(--color-accent);
  color: var(--color-white);
  font-size: .68rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 999px;
  white-space: nowrap;
}

.muvexa-price-option__badge--best {
  background: var(--color-gold);
  color: #1A1A1A;
}

.muvexa-price-option__price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
}

/* Micro trust bar unter CTA */
.muvexa-hero__trust-micro {
  font-size: .78rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: .75rem;
}

/* ═══════════════════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════════════════ */
.muvexa-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.muvexa-pain-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
}
.muvexa-pain-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.muvexa-pain-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.muvexa-pain-card__title {
  font-size: 1.05rem;
  font-weight: 600;
}

.muvexa-pain-card__text {
  font-size: .95rem;
  color: var(--color-text-muted);
}

.muvexa-problem__bridge {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-accent);
  padding: 1.5rem;
  background: var(--color-accent-light);
  border-radius: var(--radius-card);
}

/* ═══════════════════════════════════════════════════════════════
   PRODUKT SECTION
═══════════════════════════════════════════════════════════════ */
.muvexa-product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.muvexa-product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.muvexa-product-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.muvexa-product-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.muvexa-product-card__price-sub {
  font-size: .85rem;
  color: var(--color-text-muted);
  margin-top: .25rem;
}

.muvexa-product-card__meta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.muvexa-product-card__tag {
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
}

.muvexa-benefits-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}

.muvexa-benefits-list__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .975rem;
}

.muvexa-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  font-size: .75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}

.muvexa-product__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.muvexa-product__copy-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   INGREDIENT SECTION
═══════════════════════════════════════════════════════════════ */
.muvexa-ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.muvexa-ingredient-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
}
.muvexa-ingredient-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.muvexa-ingredient-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text);
}
.muvexa-ingredient-card__icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.muvexa-ingredient-card__info {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.muvexa-ingredient-card__name {
  font-size: .95rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: .5rem;
  flex-wrap: wrap;
}

.muvexa-ingredient-card__dose {
  font-size: .8rem;
  font-weight: 500;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: .1rem .45rem;
  border-radius: 20px;
}

.muvexa-ingredient-card__claim {
  font-size: .82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.muvexa-ingredient-card__desc {
  font-size: .875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL PROOF SECTION
═══════════════════════════════════════════════════════════════ */
.muvexa-reviews__aggregate {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.muvexa-reviews__stars {
  font-size: 1.5rem;
  color: #1A1A1A;
  letter-spacing: .05em;
}

.muvexa-reviews__score {
  font-size: 1.1rem;
  font-weight: 700;
}

.muvexa-reviews__count {
  font-size: .9rem;
  color: var(--color-text-muted);
}

.muvexa-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.muvexa-review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-card);
}

.muvexa-review-card__stars { font-size: 1.1rem; color: #1A1A1A; letter-spacing: .05em; }

.muvexa-review-card__text {
  font-size: .975rem;
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
}

.muvexa-review-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
}

.muvexa-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.muvexa-review-card__name {
  font-size: .9rem;
  font-weight: 600;
}

.muvexa-review-card__verified {
  font-size: .75rem;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   HERO REVIEWS
═══════════════════════════════════════════════════════════════ */
.muvexa-hero-reviews {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.muvexa-hero-reviews__stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: .05em;
}

.muvexa-hero-reviews__text {
  font-size: .9rem;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   UGC CAROUSEL
═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   UGC — TIKTOK STYLE
═══════════════════════════════════════════════════════════════ */
.muvexa-ugc {
  background: #0a0a0a;
  padding-block: var(--space-lg);
}

.muvexa-ugc__header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-inline: var(--space-md);
}

/* Horizontal scrollable feed */
.muvexa-ugc__feed {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 var(--space-md) 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.muvexa-ugc__feed::-webkit-scrollbar { display: none; }

/* Single card — 9:16 ratio */
.muvexa-ugc__card {
  flex-shrink: 0;
  width: 220px;
  scroll-snap-align: start;
}

.muvexa-ugc__card-video {
  position: relative;
  width: 220px;
  height: 390px;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  cursor: pointer;
}

.muvexa-ugc__card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay for text readability */
.muvexa-ugc__card-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Side action buttons */
.muvexa-ugc__actions {
  position: absolute;
  right: 10px;
  bottom: 100px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.muvexa-ugc__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
}

.muvexa-ugc__action span {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
}

.muvexa-ugc__action:hover svg {
  transform: scale(1.15);
  transition: transform .15s;
}

/* Bottom caption */
.muvexa-ugc__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 14px 46px 14px 12px;
  color: #fff;
}

.muvexa-ugc__username {
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 4px;
  opacity: .9;
}

.muvexa-ugc__text {
  font-size: .78rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 4px;
}

.muvexa-ugc__tag {
  font-size: .68rem;
  opacity: .65;
  letter-spacing: .01em;
}

@media (max-width: 600px) {
  .muvexa-ugc__card { width: 180px; }
  .muvexa-ugc__card-video { width: 180px; height: 320px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — IMAGE ALIGNED TO TOP (CRO: align-items: start)
═══════════════════════════════════════════════════════════════ */
.muvexa-hero__content {
  padding-top: 0;
}

.muvexa-pkg-contents__list li span,
.muvexa-pkg-desc__item p {
  font-size: .96rem;
}

/* ═══════════════════════════════════════════════════════════════
   VORHER / NACHHER COMPARISON SLIDER
═══════════════════════════════════════════════════════════════ */
.muvexa-comparison {
  position: relative;
  width: 100%;
  max-width: 860px;
  height: 360px;
  margin: var(--space-lg) auto 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  box-shadow: var(--shadow-hover);
}

.muvexa-comparison__after,
.muvexa-comparison__before {
  position: absolute;
  inset: 0;
}

.muvexa-comparison__before {
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.muvexa-comparison__panel {
  width: 860px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  gap: 1.25rem;
}

.muvexa-comparison__panel--before {
  background: #f5f5f5;
}

.muvexa-comparison__panel--after {
  background: #1A1A1A;
  width: 100%;
}

.muvexa-comparison__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: #ddd;
  color: #666;
  padding: .3rem .9rem;
  border-radius: 999px;
}

.muvexa-comparison__tag--after {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.muvexa-comparison__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.muvexa-comparison__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 500;
}

.muvexa-comparison__panel--before .muvexa-comparison__list li {
  color: var(--color-text-muted);
}

.muvexa-comparison__panel--after .muvexa-comparison__list li {
  color: rgba(255,255,255,.9);
}

.muvexa-comparison__cross {
  font-weight: 800;
  color: #bbb;
  flex-shrink: 0;
}

.muvexa-comparison__check {
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.muvexa-comparison__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: col-resize;
}

.muvexa-comparison__handle-line {
  flex: 1;
  width: 2px;
  background: #fff;
}

.muvexa-comparison__handle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #1A1A1A;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  flex-shrink: 0;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   REVIEW FILTER TABS
═══════════════════════════════════════════════════════════════ */
.muvexa-review-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin: 2rem 0 2.5rem;
}

.muvexa-review-tab {
  background: transparent;
  border: 2px solid var(--color-border);
  border-radius: 999px;
  padding: .6rem 1.4rem;
  font-family: var(--font-base);
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all .2s;
}

.muvexa-review-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.muvexa-review-tab.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.muvexa-review-panel {
  display: none;
}

.muvexa-review-panel.active {
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   REVIEW CARD WITH PHOTO
═══════════════════════════════════════════════════════════════ */
.muvexa-review-card__photo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .5rem;
}

.muvexa-review-card__customer-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e0e0, #bbb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #555;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
}

.muvexa-review-card__product-thumb {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   WARUM MUVEXA — Full-width image section
═══════════════════════════════════════════════════════════════ */
.muvexa-warum-img {
  display: block;
  width: 100%;
  background: #000;
  padding-bottom: 0;
  line-height: 0;
}

.muvexa-warum-img__header {
  text-align: center;
  padding: 3.5rem 1rem 2rem;
  line-height: 1.4;
}

.muvexa-warum-img__header .muvexa-label {
  color: var(--color-accent);
}

.muvexa-warum-img__header .muvexa-h2 {
  color: #fff;
  margin-top: .4rem;
}

.muvexa-warum-img__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   WARUM NOVOMINS (legacy grid — kept for reference)
═══════════════════════════════════════════════════════════════ */
.muvexa-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.muvexa-why-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: box-shadow .25s, transform .25s;
}

.muvexa-why-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.muvexa-why-card__icon {
  font-size: 2rem;
}

.muvexa-why-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}

.muvexa-why-card__text {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.muvexa-faq__list {
  max-width: 780px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.muvexa-faq__item {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}
.muvexa-faq__item:last-child { border-bottom: none; }

.muvexa-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-base);
  font-size: .97rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.muvexa-faq__question:hover { background: var(--color-bg-alt); }

/* Number badge */
.muvexa-faq__num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: .02em;
  transition: background .2s, color .2s;
}

.muvexa-faq__q-text { flex: 1; line-height: 1.4; }

.muvexa-faq__icon {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform .25s ease;
  display: flex;
  align-items: center;
}

.muvexa-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.muvexa-faq__answer p {
  font-size: .92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  padding: 0 1.5rem 1.25rem calc(1.5rem + 30px + 1rem);
  margin: 0;
}

/* Open state */
.muvexa-faq__item.open {
  background: var(--color-bg-alt);
}
.muvexa-faq__item.open .muvexa-faq__answer {
  max-height: 400px;
}
.muvexa-faq__item.open .muvexa-faq__question {
  background: var(--color-bg-alt);
}
.muvexa-faq__item.open .muvexa-faq__num {
  background: var(--color-text);
  color: var(--color-white);
  border-color: var(--color-text);
}
.muvexa-faq__item.open .muvexa-faq__icon {
  transform: rotate(180deg);
  color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.muvexa-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-lg);
  align-items: center;
}

.muvexa-contact__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.muvexa-contact__img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-hover);
}

.muvexa-contact__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.muvexa-contact__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--color-text-muted);
}

.muvexa-contact__placeholder-icon {
  font-size: 4rem;
}

.muvexa-contact__placeholder p {
  font-weight: 600;
  font-size: 1rem;
}

.muvexa-contact__placeholder small {
  font-size: .8rem;
  color: #aaa;
}

.muvexa-contact__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #1A1A1A;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: .5rem 1.2rem;
  border-radius: 999px;
}

.muvexa-contact__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

.muvexa-contact__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.muvexa-contact__text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.muvexa-contact__methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.muvexa-contact__method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.muvexa-contact__method:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
}

.muvexa-contact__method-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.muvexa-contact__method-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text-muted);
}

.muvexa-contact__method-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT — NEUE ELEMENTE
═══════════════════════════════════════════════════════════════ */

/* Antwortzeit-Badge */
.muvexa-contact__response-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-text);
}
.muvexa-contact__response-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* Kontaktformular */
.muvexa-contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.muvexa-contact__form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.muvexa-contact__form-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text);
}
.muvexa-contact__form-input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
  font-size: .95rem;
  color: var(--color-text);
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.muvexa-contact__form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(180,140,100,.15);
}
.muvexa-contact__form-textarea {
  resize: vertical;
  min-height: 100px;
}
.muvexa-contact__form-dsgvo {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.muvexa-contact__form-dsgvo input[type="checkbox"] {
  margin-top: .15rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
}
.muvexa-contact__form-dsgvo a {
  color: var(--color-accent);
  text-decoration: underline;
}
.muvexa-contact__form-submit {
  width: 100%;
  padding: .9rem;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.muvexa-contact__form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: .95rem;
  color: #166534;
  font-weight: 500;
}

/* E-Mail + Instagram direkt */
.muvexa-contact__direct {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding-top: .5rem;
}
.muvexa-contact__direct-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color .2s;
}
.muvexa-contact__direct-link:hover {
  color: var(--color-accent);
}

/* FAQ Accordion in Kontakt-Section */
.muvexa-contact__faq {
  margin-top: 3.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2.5rem;
}
.muvexa-contact__faq-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.muvexa-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.muvexa-faq-item {
  border-bottom: 1px solid var(--color-border);
}
.muvexa-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 1.1rem 0;
  font-size: .97rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 1rem;
  transition: color .2s;
}
.muvexa-faq-question:hover {
  color: var(--color-accent);
}
.muvexa-faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform .2s;
}
.muvexa-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.muvexa-faq-item.open .muvexa-faq-answer {
  max-height: 300px;
  padding-bottom: 1.1rem;
}
.muvexa-faq-answer p {
  font-size: .93rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* Mobile */
@media (max-width: 767px) {
  .muvexa-contact__faq {
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
  .muvexa-contact__form-submit {
    min-height: 48px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GUARANTEE SECTION
═══════════════════════════════════════════════════════════════ */
.muvexa-guarantee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  max-width: 600px;
  margin-inline: auto;
}

.muvexa-guarantee__shield {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}

.muvexa-guarantee__text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   PHONE SIGNUP SECTION
═══════════════════════════════════════════════════════════════ */
.muvexa-signup {
  background: #111;
  padding-block: var(--space-xl);
}

.muvexa-signup__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.muvexa-signup__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.muvexa-signup__input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-btn);
  overflow: hidden;
  transition: border-color .2s;
}

.muvexa-signup__input-wrap:focus-within {
  border-color: rgba(255,255,255,.6);
}

.muvexa-signup__dial-wrap {
  border-right: 1px solid rgba(255,255,255,.15);
  height: 54px;
  display: flex;
  align-items: center;
}

.muvexa-signup__dial-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 600;
  padding: 0 .75rem 0 1rem;
  height: 100%;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.muvexa-signup__dial-select option {
  background: #1a1a1a;
  color: #fff;
}

.muvexa-signup__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 1.25rem;
  height: 54px;
  font-family: var(--font-base);
  font-size: 1rem;
  color: #fff;
}

.muvexa-signup__input::placeholder { color: rgba(255,255,255,.4); }

.muvexa-signup__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: .5rem;
}

.muvexa-signup__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}

.muvexa-signup__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

.muvexa-signup__btn {
  text-align: center;
  justify-content: center;
}

.muvexa-signup__disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

.muvexa-signup__disclaimer a {
  color: rgba(255,255,255,.5);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.muvexa-footer {
  background: #0A0A0A;
  color: rgba(255,255,255,.6);
  padding-block: var(--space-lg) calc(var(--space-lg) * .75);
}

/* ── Main grid: Brand 2fr, 3 × 1fr ── */
.muvexa-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* ── Brand column ── */
.muvexa-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.muvexa-footer__logo-link {
  display: inline-block;
  text-decoration: none;
}

.muvexa-footer__logo-img {
  height: 24px;
  width: auto;
  opacity: .9;
  filter: brightness(0) invert(1);
}

.muvexa-footer__tagline {
  font-size: .875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.4);
  max-width: 270px;
}

.muvexa-footer__socials {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}

.muvexa-footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}

.muvexa-footer__social:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

/* ── Column titles & accordion toggle ── */
.muvexa-footer__col {
  /* desktop: normal block */
}

/* The toggle is hidden on desktop; the <h4> is visible */
.muvexa-footer__col-toggle {
  display: none; /* visible only on mobile */
}

.muvexa-footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
}

/* ── Column lists ── */
.muvexa-footer__col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.muvexa-footer__col-list a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}

.muvexa-footer__col-list a:hover { color: rgba(255,255,255,.95); }

/* ── Legal disclaimer block ── */
.muvexa-footer__disclaimer {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: var(--space-lg);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.muvexa-footer__disclaimer-text {
  font-size: .75rem;
  line-height: 1.7;
  color: rgba(255,255,255,.28);
  max-width: 900px;
}

.muvexa-footer__disclaimer-text strong {
  color: rgba(255,255,255,.5);
  font-weight: 600;
}

/* ── Bottom bar ── */
.muvexa-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.muvexa-footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.2);
  white-space: nowrap;
}

/* ── Payment icons row ── */
.muvexa-footer__payment {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.muvexa-footer__pay-icon {
  display: inline-flex;
  align-items: center;
  opacity: .55;
  transition: opacity .2s;
}

.muvexa-footer__pay-icon:hover { opacity: .85; }

/* ── Legal nav ── */
.muvexa-footer__legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.muvexa-footer__legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}

.muvexa-footer__legal a:hover { color: rgba(255,255,255,.75); }

/* ═══════════════════════════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════════════════════════ */
.muvexa-divider {
  height: 1px;
  background: var(--color-border);
  margin-block: 0;
}

/* ═══════════════════════════════════════════════════════════════
   WOO WRAPPER
═══════════════════════════════════════════════════════════════ */
.muvexa-woo-wrapper {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--space-xl) var(--space-md);
}

/* ═══════════════════════════════════════════════════════════════
   BUNDLE OPTION THUMBNAIL
═══════════════════════════════════════════════════════════════ */
.muvexa-price-option__thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
  transition: border-color .2s;
}

.muvexa-price-option.selected .muvexa-price-option__thumb,
.muvexa-price-option:hover .muvexa-price-option__thumb {
  border-color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════════ */
.muvexa-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}

.muvexa-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav: show hamburger, hide desktop menu + CTA */
  .muvexa-nav__container { padding-inline: 1.5rem; }
  .muvexa-nav__inner { height: 60px; }
  .muvexa-nav__menu { display: none; }
  .muvexa-nav__cta-btn { display: none; }
  .muvexa-nav__hamburger { display: flex; }

  /* USP bar: slightly smaller text */
  .muvexa-usp-bar { height: 32px; }
  .muvexa-usp-bar__slide { font-size: 12px; }

  .muvexa-hero__inner,
  .muvexa-product__inner {
    grid-template-columns: 1fr;
  }

  .muvexa-hero {
    padding-block: 2.5rem 3rem;
  }

  .muvexa-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Mobile: Bewertungen → H1 → Subtext → Bild → Rest */
  .muvexa-hero__inner   { display: flex; flex-direction: column; }
  .muvexa-hero__content { display: contents; } /* Kinder werden direkte Flex-Children */
  .muvexa-hero__intro   { order: 1; padding: 1.5rem 1.5rem 0; }
  .muvexa-hero__visual  { order: 2; position: static; height: auto; padding: 1rem 1.5rem 0; }
  .muvexa-hero__body    { order: 3; padding: 0 1.5rem 2rem; }

  .muvexa-hero__headline { max-width: 100%; font-size: clamp(1.9rem, 8vw, 2.5rem); padding-bottom: 0.75rem; text-align: center; }
  .muvexa-hero__subtext  { font-size: 1rem; }
  .muvexa-hero-reviews   { padding-top: 0.75rem; justify-content: center; }
  .muvexa-hero-reviews__text { text-align: center; }

  .muvexa-reviews__grid { grid-template-columns: 1fr; }
  .muvexa-why__grid { grid-template-columns: repeat(2,1fr); }
  .muvexa-contact__inner { grid-template-columns: 1fr; }
  .muvexa-contact__img-wrap { aspect-ratio: 16/9; max-width: 400px; }
  .muvexa-signup__inner { grid-template-columns: 1fr; }

  /* Footer: 2-column on tablet */
  .muvexa-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .muvexa-footer__brand { grid-column: 1 / -1; }

  /* Show accordion toggle buttons on tablet/mobile */
  .muvexa-footer__col-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: .85rem 0;
    font-family: var(--font-base);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    cursor: pointer;
    margin-bottom: 0;
  }
  .muvexa-footer__col-toggle[aria-expanded="true"] .muvexa-footer__col-chevron {
    transform: rotate(180deg);
  }
  .muvexa-footer__col-chevron {
    color: rgba(255,255,255,.4);
    flex-shrink: 0;
    transition: transform .25s ease;
  }
  /* Hide static <h4> on mobile/tablet */
  .muvexa-footer__col-title { display: none; }

  /* Collapse lists by default on mobile/tablet */
  .muvexa-footer__col-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    margin-top: .2rem;
  }
  /* Remove max-height constraint when open */
  .muvexa-footer__col-list.is-open {
    max-height: 400px;
  }

  /* Disclaimer & bottom */
  .muvexa-footer__bottom { flex-direction: column; align-items: flex-start; }
  .muvexa-footer__payment { order: -1; }
}

@media (max-width: 600px) {
  .muvexa-why__grid { grid-template-columns: 1fr; }
  .muvexa-footer__grid { grid-template-columns: 1fr; }
  .muvexa-footer__brand { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 540px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 540px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .muvexa-hero__ctas { flex-direction: column; align-items: flex-start; }

  .muvexa-ingredients__grid { grid-template-columns: 1fr; }
  .muvexa-ingredient-card { flex-direction: row; }

  .muvexa-product-mockup { width: 240px; height: 300px; }

  .muvexa-trust-bar { gap: 1rem; }

  .muvexa-nav__logo img { height: 32px; }

  .muvexa-product-card__header { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════════════ */

/* Page wrapper */
.muvexa-legal-page {
  padding-block: var(--space-lg);
  min-height: 70vh;
  background: var(--color-bg);
}

/* Centered content column */
.muvexa-legal-page__inner {
  max-width: 780px;
  margin-inline: auto;
}

/* ── Page title ── */
.muvexa-legal-page__inner h1 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: .4rem;
  color: var(--color-text);
}

/* Date / meta line */
.muvexa-legal-page__meta {
  font-size: .82rem;
  color: var(--color-text-muted);
  margin-bottom: .75rem;
  letter-spacing: .01em;
}

/* Divider under title block */
.muvexa-legal-page__inner > h1 + .muvexa-legal-page__meta + p,
.muvexa-legal-page__inner > h1 + p {
  margin-top: 1.25rem;
}

/* ── Section headings ── */
.muvexa-legal-page__inner h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  padding: .6rem 1rem;
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-text);
  border-radius: 0 6px 6px 0;
  line-height: 1.35;
}

.muvexa-legal-page__inner h3 {
  font-size: .95rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: .4rem;
  color: var(--color-text);
}

/* ── Body text ── */
.muvexa-legal-page__inner p {
  font-size: .94rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: .85rem;
}

/* ── Lists ── */
.muvexa-legal-page__inner ul,
.muvexa-legal-page__inner ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.muvexa-legal-page__inner ul { list-style: disc; }
.muvexa-legal-page__inner ol { list-style: decimal; }

.muvexa-legal-page__inner li {
  font-size: .94rem;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: .45rem;
  padding-left: .25rem;
}

/* ── Links ── */
.muvexa-legal-page__inner a {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26,26,26,.35);
  transition: text-decoration-color .2s;
}
.muvexa-legal-page__inner a:hover {
  text-decoration-color: var(--color-text);
}

/* ── Inline code (cookie names) ── */
.muvexa-legal-page__inner code {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: .84em;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 1px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ── Blockquote (Widerrufsformular) ── */
.muvexa-legal-page__blockquote {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-text);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  margin: 1.5rem 0;
}
.muvexa-legal-page__blockquote p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: .6rem;
  color: var(--color-text);
}
.muvexa-legal-page__blockquote p:last-child { margin-bottom: 0; }

/* ── Tables ── */
.muvexa-legal-page__table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 2rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  -webkit-overflow-scrolling: touch;
}

.muvexa-legal-page__inner table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  min-width: 420px;
}

.muvexa-legal-page__inner thead {
  position: sticky;
  top: 0;
}

.muvexa-legal-page__inner th {
  background: var(--color-text);
  color: var(--color-white);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .8rem 1.1rem;
  text-align: left;
  white-space: nowrap;
}

.muvexa-legal-page__inner td {
  padding: .75rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.55;
  vertical-align: top;
  color: var(--color-text);
}

/* Zebra stripes */
.muvexa-legal-page__inner tbody tr:nth-child(even) td {
  background: var(--color-bg-alt);
}

.muvexa-legal-page__inner tbody tr:last-child td {
  border-bottom: none;
}

.muvexa-legal-page__inner tbody tr:hover td {
  background: #f0f0f0;
}

/* ── Placeholder helper ── */
.muvexa-legal-page__placeholder {
  background: #fff8e1;
  border: 1px dashed #f0a800;
  padding: 2px 7px;
  border-radius: 4px;
  font-style: italic;
  font-size: .88em;
  color: #7a5c00;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .muvexa-legal-page { padding-block: var(--space-md); }
  .muvexa-legal-page__inner h1 { font-size: 1.5rem; }
  .muvexa-legal-page__inner h2 { font-size: .98rem; }
  .muvexa-legal-page__inner p,
  .muvexa-legal-page__inner li { font-size: .9rem; }
  .muvexa-legal-page__inner table { font-size: .82rem; }
  .muvexa-legal-page__inner th,
  .muvexa-legal-page__inner td { padding: .6rem .8rem; }
}

/*
 * MUVEXA — Responsive Fix
 * ─────────────────────────────────────────────────────────────────
 * Diagnose (live audit vom 14.07.2026):
 *
 * PROBLEME GEFUNDEN:
 * 1. Hero-Grid: feste px-Spalten (632px / 741px) — bricht bei ~1200px
 * 2. Why/Ingredients/Reviews-Grid: 3 feste Spalten à 337px — kein Tablet-Breakpoint
 * 3. Nav-Links: Touch-Target nur 20px hoch (Minimum: 44px)
 * 4. Mehrere Font-Größen unter 14px (Labels, Badges)
 * 5. Breakpoints inkonsistent: 540 / 600 / 767 / 768 / 900 → kein einheitliches System
 * 6. Kein Breakpoint bei 1024px (Tablet Landscape)
 * 7. UGC-Section: horizontales Scrollen bricht Layout auf mittleren Viewports
 *
 * FIX-STRATEGIE: Mobile-First mit 4 Breakpoints:
 *   xs: < 360px  (kleine Smartphones)
 *   sm: < 480px  (Smartphones)
 *   md: < 768px  (Tablets)
 *   lg: < 1024px (Tablet Landscape)
 * ─────────────────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════════════════
   RESET — Verhindert horizontalen Overflow auf allen Geräten
═══════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

img,
video,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════════
   TOKENS — Fluid spacing für alle Viewports
═══════════════════════════════════════════════════════════════ */

:root {
  --muvexa-container-padding: clamp(1rem, 4vw, 2rem);
  --muvexa-section-padding:   clamp(2.5rem, 6vw, 5rem);
  --muvexa-gap:               clamp(1rem, 2.5vw, 2rem);
}

/* ═══════════════════════════════════════════════════════════════
   CONTAINER — Fluid, kein fester px-Wert
═══════════════════════════════════════════════════════════════ */

.muvexa-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--muvexa-container-padding);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION — Touch-Targets + Mobile Menu
═══════════════════════════════════════════════════════════════ */

.muvexa-nav__menu a,
.muvexa-nav__menu li a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-block: 0.5rem;
}

.muvexa-nav__cta-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.muvexa-nav__hamburger {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   USP BAR — Mobile kompakter
═══════════════════════════════════════════════════════════════ */

.muvexa-usp-bar {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  padding-block: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Fluid Grid statt feste px-Spalten
═══════════════════════════════════════════════════════════════ */

.muvexa-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  gap: var(--muvexa-gap);
  align-items: start;
}

.muvexa-hero__content {
  padding: clamp(1rem, 3vw, 1.75rem) clamp(1rem, 2.5vw, 3rem) clamp(1rem, 3vw, 1.75rem) clamp(1rem, 2vw, 2rem);
}

.muvexa-hero__headline {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  line-height: 1.1;
}

.muvexa-hero__subtext {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* ═══════════════════════════════════════════════════════════════
   GRIDS — auto-fit mit minmax() statt feste px-Spalten
═══════════════════════════════════════════════════════════════ */

.muvexa-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--muvexa-gap);
}

.muvexa-ingredients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: var(--muvexa-gap);
}

.muvexa-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--muvexa-gap);
}

/* ═══════════════════════════════════════════════════════════════
   TOUCH TARGETS — Minimum 44px (Apple HIG + Google Material)
═══════════════════════════════════════════════════════════════ */

button,
[role="button"],
input[type="submit"],
input[type="button"],
select {
  min-height: 44px;
}

.muvexa-btn,
.muvexa-cta,
.muvexa-paket-option,
.muvexa-footer__col-toggle {
  min-height: 44px;
}

/* ═══════════════════════════════════════════════════════════════
   FLUID TYPOGRAPHY
═══════════════════════════════════════════════════════════════ */

h1, .muvexa-hero__headline {
  font-size: clamp(1.375rem, 4vw, 3rem);
}

h2, .muvexa-section__headline {
  font-size: clamp(1.25rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

p, li, span {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT: TABLET LANDSCAPE (1024px) — NEU, fehlte komplett
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .muvexa-hero__inner {
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    gap: 1.5rem;
  }

  .muvexa-why__grid,
  .muvexa-ingredients__grid,
  .muvexa-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .muvexa-hero__content {
    padding: 1.25rem 1.5rem 1.25rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT: TABLET PORTRAIT (768px)
═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .muvexa-hero__inner,
  .muvexa-hero__inner.muvexa-product__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .muvexa-hero__visual {
    order: -1;
  }

  .muvexa-hero__content {
    padding: 1rem;
    order: 1;
  }

  .muvexa-why__grid,
  .muvexa-ingredients__grid,
  .muvexa-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .muvexa-nav__menu {
    display: none;
  }

  .muvexa-nav__hamburger {
    display: flex;
  }

  .muvexa-nav__cta-btn {
    display: none;
  }

  .muvexa-footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .muvexa-contact__inner {
    grid-template-columns: 1fr;
  }

  .muvexa-contact__img-wrap {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT: SMARTPHONE (480px)
═══════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .muvexa-why__grid,
  .muvexa-ingredients__grid,
  .muvexa-reviews__grid {
    grid-template-columns: 1fr;
  }

  .muvexa-hero__headline {
    font-size: clamp(1.375rem, 6vw, 1.75rem);
  }

  .muvexa-section,
  section {
    padding-block: 2rem;
  }

  .muvexa-paket-options {
    gap: 0.75rem;
  }

  .muvexa-btn--primary,
  .muvexa-add-to-cart,
  button[type="submit"] {
    width: 100%;
    justify-content: center;
  }

  .muvexa-ugc__card {
    width: min(260px, 85vw);
  }

  .muvexa-reviews__tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .muvexa-reviews__tab {
    font-size: 0.8125rem;
    padding: 0.4rem 0.75rem;
    min-height: 36px;
  }

  .muvexa-paket-option {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT: KLEINES SMARTPHONE (360px)
═══════════════════════════════════════════════════════════════ */

@media (max-width: 360px) {
  .muvexa-hero__headline {
    font-size: 1.25rem;
  }

  .muvexa-container {
    padding-inline: 0.75rem;
  }

  .muvexa-nav__inner {
    padding-inline: 0.75rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════════════════════════ */

:focus-visible {
  outline: 2px solid #1A1A1A;
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .muvexa-nav,
  .muvexa-usp-bar,
  .muvexa-ugc,
  .muvexa-footer {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MUVEXA LOGO — Cross-Browser + Dark Mode
═══════════════════════════════════════════════════════════════ */

.muvexa-logo__picture {
  display: block;
  line-height: 0;
}

.muvexa-logo__img,
.muvexa-nav__logo img {
  display: block;
  width: auto;
  height: 32px;
  max-height: 40px;
  object-fit: contain;
  object-position: left center;
}

@media (prefers-color-scheme: dark) {
  .muvexa-nav__logo img:not(.muvexa-logo__img) {
    filter: invert(1);
  }
}

.muvexa-nav__logo {
  contain: layout style;
}

/* ═══════════════════════════════════════════════════════════════
   MUVEXA — CHAMPAGNE GOLD ACCENT (#C8A96E)
   Buttons, UGC Section, Footer
═══════════════════════════════════════════════════════════════ */

/* ── 1. BUTTONS ─────────────────────────────────────────────── */

.muvexa-nav__cta-btn,
.muvexa-mobile-menu__cta {
  background-color: var(--color-gold);
  color: #1A1A1A;
  border-color: var(--color-gold);
}
.muvexa-nav__cta-btn:hover,
.muvexa-mobile-menu__cta:hover {
  background-color: #A08550;
  border-color: #A08550;
  color: #fff;
}

.btn.btn--primary,
.muvexa-btn--primary {
  background-color: var(--color-gold);
  color: #1A1A1A;
  border-color: var(--color-gold);
  font-weight: 600;
}
.btn.btn--primary:hover,
.muvexa-btn--primary:hover {
  background-color: #A08550;
  border-color: #A08550;
  color: #fff;
}

.btn.btn--secondary,
.muvexa-btn--secondary {
  background-color: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}
.btn.btn--secondary:hover,
.muvexa-btn--secondary:hover {
  background-color: var(--color-gold);
  color: #1A1A1A;
}

/* ── 2. UGC SECTION ─────────────────────────────────────────── */

.muvexa-ugc .muvexa-label {
  color: var(--color-gold);
}
.muvexa-ugc__action:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.muvexa-ugc__username {
  color: var(--color-gold);
}
.muvexa-ugc__card:hover {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* ── 3. FOOTER ──────────────────────────────────────────────── */

.muvexa-footer__col-title,
.muvexa-footer h3,
.muvexa-footer h4 {
  color: var(--color-gold);
  font-weight: 600;
}
.muvexa-footer a:hover,
.muvexa-footer__col-list a:hover {
  color: var(--color-gold);
}
.muvexa-footer__brand::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background-color: var(--color-gold);
  margin-top: 16px;
}
.muvexa-footer__bottom {
  border-top-color: rgba(200,169,110,.25);
}
.muvexa-footer__payment svg,
.muvexa-footer__payment img {
  opacity: .7;
  transition: opacity .2s;
}
.muvexa-footer__payment svg:hover,
.muvexa-footer__payment img:hover {
  opacity: 1;
}

/* Footer Newsletter Button */
.muvexa-signup__btn,
.muvexa-footer [type="submit"] {
  background-color: var(--color-gold);
  color: #1A1A1A;
  border-color: var(--color-gold);
}
.muvexa-signup__btn:hover {
  background-color: #A08550;
  color: #fff;
}

/* ── 4. STERNE — Gold global ────────────────────────────────── */

.muvexa-hero-reviews__stars,
.muvexa-reviews__stars,
.muvexa-review-card__stars,
.muvexa-reviews__aggregate .muvexa-reviews__stars {
  color: var(--color-gold);
}

/* ── 5. TRANSITIONS ─────────────────────────────────────────── */

.muvexa-nav__cta-btn,
.muvexa-mobile-menu__cta,
.btn.btn--primary,
.muvexa-btn--primary,
.muvexa-ugc__action,
.muvexa-footer a {
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

/* ═══════════════════════════════════════════════════════════════
   LAPTOP VIEW FIX — Padding, Hero 50/50, Thumbnails
═══════════════════════════════════════════════════════════════ */

/* ── 1. GLOBALES PADDING (Container + Nav) ──────────────────────
   BEARBEITEN IN:
   style.css → .muvexa-container    (Zeile ~110) → padding-inline
   style.css → .muvexa-nav__container (Zeile ~293) → padding-inline
   Oder hier unten überschreiben:
─────────────────────────────────────────────────────────────── */

.muvexa-container {
  padding-inline: clamp(1.5rem, 5vw, 5rem);
}

.muvexa-nav__container {
  padding-inline: clamp(1.5rem, 5vw, 5rem);
}

/* Hero hat kein eigenes padding — erbt jetzt Container-Padding */
.muvexa-hero > .muvexa-container {
  max-width: var(--max-w);
  padding-inline: clamp(1.5rem, 5vw, 5rem);
}

/* ── 2. HERO — 50/50 Split ──────────────────────────────────── */

.muvexa-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── 3. PRODUCT THUMBNAILS — 2 pro Zeile unter Produktbild ──── */

.muvexa-hero__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: 1rem;
}

.muvexa-hero__thumb {
  background: none;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 4px;
  cursor: pointer;
  transition: border-color .18s;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.muvexa-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.muvexa-hero__thumb.selected,
.muvexa-hero__thumb:hover {
  border-color: var(--color-gold);
}

/* Thumbnail-Klick → Hauptbild wechseln */

@media (max-width: 768px) {
  .muvexa-hero__inner {
    grid-template-columns: 1fr;
  }
  .muvexa-hero__thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Sticky Right Column + Padding Fix
═══════════════════════════════════════════════════════════════ */

/* ── 1. STICKY — Rechte Spalte (Beschreibung) bleibt fix während links scrollt */

.muvexa-hero__inner {
  align-items: start; /* Pflicht für sticky zu funktionieren */
}

.muvexa-hero__visual {
  /* Linke Seite scrollt normal */
}

.muvexa-hero__content {
  position: sticky;
  top: 88px; /* Navbar-Höhe (72px) + 16px Luft */
  align-self: start;
}

/* ── 2. PADDING — Weniger Abstand links & rechts ────────────── */

.muvexa-container {
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
}

.muvexa-nav__container {
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
}

.muvexa-hero > .muvexa-container {
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
}

/* ── Padding kleiner ── */
.muvexa-container,
.muvexa-nav__container,
.muvexa-hero > .muvexa-container {
  padding-inline: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Beschreibung, Nährwert, Bundle-Ecken, Banner, Accordion
═══════════════════════════════════════════════════════════════ */

/* 1. Produkt-Beschreibung */
.muvexa-hero__desc {
  font-size: .95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: .5rem 0 0;
}
.muvexa-hero__desc strong {
  color: var(--color-text);
  font-weight: 700;
}

/* 2. Nährwert-Toggle */
.muvexa-hero__nutrition-toggle {
  background: none;
  border: none;
  padding: 0;
  margin-top: .75rem;
  font-size: .88rem;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .35rem;
  min-height: auto;
}
.muvexa-hero__nutrition-arrow {
  font-size: .8rem;
  transition: transform .2s;
}
.muvexa-hero__nutrition-table {
  margin-top: .75rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}
.muvexa-hero__nutrition-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
}
.muvexa-hero__nutrition-table th,
.muvexa-hero__nutrition-table td {
  padding: .45rem .75rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.muvexa-hero__nutrition-table th {
  background: var(--color-bg-alt);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.muvexa-hero__nutrition-table tbody tr:last-child td { border-bottom: none; }
.muvexa-hero__nutrition-table tbody tr:nth-child(even) td { background: var(--color-bg-alt); }
.muvexa-hero__nutrition-note {
  font-size: .72rem;
  color: var(--color-text-muted);
  padding: .5rem .75rem;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

/* 3. Bundle-Buttons — keine abgerundeten Ecken */
.muvexa-price-option,
.muvexa-price-option__inner {
  border-radius: 0 !important;
}

/* 4. Banner-Platzhalter — 2× Höhe CTA-Button (~100px) */
.muvexa-hero__banner-placeholder {
  width: 100%;
  height: 100px;
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: var(--color-text-muted);
  margin-top: .75rem;
}

/* 5. Accordion — Einnahme / Lieferung */
.muvexa-hero__accordion {
  margin-top: .5rem;
  border-top: 1px solid var(--color-border);
}
.muvexa-hero__acc-item {
  border-bottom: 1px solid var(--color-border);
}
.muvexa-hero__acc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: .85rem 0;
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  min-height: auto;
  text-align: left;
}
.muvexa-hero__acc-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.muvexa-hero__acc-body {
  padding: 0 0 .85rem;
}
.muvexa-hero__acc-body p {
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Max-Width erhöht — weniger Leerraum links/rechts ── */
:root {
  --max-w: 1440px;
}
.muvexa-container,
.muvexa-nav__container {
  max-width: 1440px;
}


/* ── Hero: Large Banner Platzhalter (2× Höhe) ────────────────── */
.muvexa-hero__banner-large {
  width: 100%;
  height: 200px;
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* ── Hero: Extra 2 Thumbnails (gleiche Größe wie 6er-Grid) ───── */
.muvexa-hero__thumbs--extra {
  margin-top: .75rem;
}

/* ── Hero: Benefits Frame ─────────────────────────────────────── */
.muvexa-hero__benefits {
  margin-top: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}
.muvexa-hero__benefits-section {
  padding: 1rem 1.25rem;
}
.muvexa-hero__benefits-section + .muvexa-hero__benefits-section {
  border-top: 1px solid var(--color-border);
}
.muvexa-hero__benefits-title {
  margin: 0 0 .65rem;
  font-size: .9rem;
  color: var(--color-text);
}
.muvexa-hero__benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.muvexa-hero__benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.muvexa-hero__benefits-list li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C8A96E;
  flex-shrink: 0;
  margin-top: .28em;
}
.muvexa-hero__benefits-list sup {
  font-size: .7em;
  vertical-align: super;
}


/* ═══════════════════════════════════════════════════════════════
   WARUM SECTION — Diagramm
═══════════════════════════════════════════════════════════════ */
.muvexa-why-science {
  background: var(--color-bg-alt);
}

/* Zwei-Spalten Diagramm-Layout */
.muvexa-diag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .muvexa-diag {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.muvexa-diag__sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 .35rem;
}

.muvexa-diag__hint {
  font-size: .83rem;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

.muvexa-diag__caption {
  font-size: .82rem;
  color: var(--color-text-muted);
  margin: 1.25rem 0 0;
  line-height: 1.6;
  font-style: italic;
}

.muvexa-diag__source {
  font-size: .72rem;
  color: var(--color-text-muted);
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--color-border);
  padding-top: .75rem;
}

/* Donut SVG */
.muvexa-donut-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .muvexa-donut-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.muvexa-donut {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.muvexa-donut text {
  transform: none;
  font-family: inherit;
}

.muvexa-donut-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.muvexa-donut-legend li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--color-text-muted);
}

.muvexa-donut-legend li strong {
  color: var(--color-text);
  font-weight: 700;
  margin-left: .2rem;
}

.muvexa-donut-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

/* Bar chart rows */
.muvexa-bars {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.muvexa-bar-row {
  display: grid;
  grid-template-columns: 160px 1fr 40px;
  align-items: center;
  gap: .75rem;
}

@media (max-width: 480px) {
  .muvexa-bar-row {
    grid-template-columns: 1fr;
    gap: .35rem;
  }
}

.muvexa-bar-row__label {
  font-size: .82rem;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.4;
}

.muvexa-bar-row__label small {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: .75rem;
}

.muvexa-bar-row__track {
  height: 10px;
  background: var(--color-border);
  border-radius: 99px;
  overflow: hidden;
}

.muvexa-bar-row__fill {
  height: 100%;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, #C8A96E, #E8C98A);
  border-radius: 99px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  width: 0%;
}

.muvexa-bar-row__fill.animated {
  width: var(--pct, 0%);
}

.muvexa-bar-row__pct {
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-gold, #C8A96E);
  text-align: right;
}


/* ── Donut interactive ─────────────────────────────────────────── */
.muvexa-donut circle[data-seg] {
  cursor: pointer;
  transition: stroke-width .2s, opacity .2s;
}
.muvexa-donut circle[data-seg]:hover,
.muvexa-donut circle[data-seg].active {
  stroke-width: 34;
  filter: drop-shadow(0 0 4px rgba(200,169,110,.5));
}
.muvexa-donut-legend li {
  cursor: pointer;
  transition: opacity .2s;
  padding: .1rem .3rem;
  border-radius: 4px;
}
.muvexa-donut-legend li:hover,
.muvexa-donut-legend li.active {
  background: rgba(200,169,110,.12);
}
.muvexa-donut-legend li.dimmed { opacity: .4; }
.muvexa-donut circle[data-seg].dimmed { opacity: .3; }

/* ── Bar rows interactive ──────────────────────────────────────── */
.muvexa-bar-row {
  cursor: default;
  transition: transform .15s;
  border-radius: 6px;
  padding: .25rem .5rem;
}
.muvexa-bar-row:hover {
  background: rgba(200,169,110,.07);
  transform: translateX(4px);
}
.muvexa-bar-row:hover .muvexa-bar-row__fill {
  background: linear-gradient(90deg, #B89040, #C8A96E);
}

/* ══════════════════════════════════════════════════════════════════
   RESULTS SECTION
══════════════════════════════════════════════════════════════════ */
.muvexa-results {
  background: #1A1A1A;
  padding: 5rem 0;
}
.muvexa-results .muvexa-label--light { color: rgba(255,255,255,.5); }
.muvexa-results__headline {
  color: #fff;
  margin-top: .5rem;
  line-height: 1.15;
}

.muvexa-results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .muvexa-results__grid { grid-template-columns: 1fr; }
}

.muvexa-results__col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.muvexa-results__card {
  background: #232323;
  border-radius: 12px;
  overflow: hidden;
}

.muvexa-results__card--offset {
  /* staggered — visually offset on desktop */
}

@media (min-width: 769px) {
  .muvexa-results__col .muvexa-results__card:first-child {
    margin-top: 3rem;
  }
}

.muvexa-results__media {
  width: 100%;
}
.muvexa-results__img-ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #2C2C2C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.muvexa-results__card--tall .muvexa-results__img-ph {
  aspect-ratio: 3 / 4;
}
.muvexa-results__play-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: #C8A96E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.muvexa-results__play-btn:hover {
  transform: scale(1.1);
  background: #E8C98A;
}
.muvexa-results__meet-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #fff;
}
.muvexa-results__meet-word {
  display: block;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  opacity: .85;
}
.muvexa-results__meet-name {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.muvexa-results__copy {
  padding: 1.25rem 1.5rem 1.5rem;
}
.muvexa-results__quote {
  font-size: .92rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin: 0 0 1rem;
  font-style: italic;
}
.muvexa-results__name {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #C8A96E;
  margin: 0 0 .25rem;
}
.muvexa-results__duration {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin: 0 0 .5rem;
}
.muvexa-results__disclaimer {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════
   BIO INHALT / INGREDIENT TIMER
══════════════════════════════════════════════════════════════════ */
.muvexa-ingr {
  background: var(--color-bg);
  padding: 5rem 0;
}

.muvexa-ingr__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.muvexa-ingr__tab {
  padding: .5rem 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: 99px;
  background: none;
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  min-height: auto;
}
.muvexa-ingr__tab:hover {
  border-color: var(--color-gold, #C8A96E);
  color: var(--color-gold, #C8A96E);
}
.muvexa-ingr__tab.active {
  border-color: var(--color-gold, #C8A96E);
  background: var(--color-gold, #C8A96E);
  color: #1A1A1A;
  font-weight: 700;
}

.muvexa-ingr__progress {
  height: 3px;
  background: var(--color-border);
  border-radius: 99px;
  margin: 1rem auto 0;
  max-width: 480px;
  overflow: hidden;
}
.muvexa-ingr__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--color-gold, #C8A96E);
  border-radius: 99px;
  transition: none;
}

.muvexa-ingr__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .muvexa-ingr__panel { grid-template-columns: 1fr; gap: 2rem; }
}

.muvexa-ingr__visual {
  position: relative;
}
.muvexa-ingr__img-ph {
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: background .3s;
}
.muvexa-ingr__img-icon {
  font-size: 4rem;
  line-height: 1;
  transition: transform .3s;
}
.muvexa-ingr__img-ph:hover .muvexa-ingr__img-icon {
  transform: scale(1.1);
}
.muvexa-ingr__img-label {
  font-size: .82rem;
  color: var(--color-text-muted);
  margin: 0;
  text-align: center;
}
.muvexa-ingr__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: #1A1A1A;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .35rem .85rem;
  border-radius: 99px;
  transition: opacity .3s;
}

/* Slide animation */
.muvexa-ingr__slide {
  transition: opacity .2s, transform .2s;
}
.muvexa-ingr__slide--out {
  opacity: 0;
  transform: translateY(8px);
}
.muvexa-ingr__slide--in {
  animation: ingrSlideIn .35s ease forwards;
}
@keyframes ingrSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.muvexa-ingr__number {
  font-size: .78rem;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: .08em;
  margin: 0 0 .5rem;
}
.muvexa-ingr__name {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 .35rem;
  line-height: 1.1;
}
.muvexa-ingr__dose {
  font-size: .88rem;
  color: var(--color-gold, #C8A96E);
  font-weight: 600;
  margin: 0 0 1.25rem;
}
.muvexa-ingr__claim {
  font-size: .95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 0 1.5rem;
}
.muvexa-ingr__details {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.muvexa-ingr__detail-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .6rem 1rem;
  font-size: .82rem;
  border-bottom: 1px solid var(--color-border);
}
.muvexa-ingr__detail-row:last-child { border-bottom: none; }
.muvexa-ingr__detail-label {
  color: var(--color-text-muted);
  font-weight: 500;
  min-width: 120px;
  flex-shrink: 0;
}
.muvexa-ingr__detail-val {
  color: var(--color-text);
  font-weight: 600;
}
.muvexa-ingr__efsa {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  color: var(--color-text-muted);
}
.muvexa-ingr__efsa svg { color: #5CA85C; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════
   VORHER / NACHHER
══════════════════════════════════════════════════════════════════ */
.muvexa-vn {
  background: var(--color-bg);
}

.muvexa-vn__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .muvexa-vn__grid { grid-template-columns: 1fr; }
}

.muvexa-vn__card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.muvexa-vn__slider {
  position: relative;
  user-select: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: ew-resize;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}

.muvexa-vn__before,
.muvexa-vn__after {
  width: 100%;
}
.muvexa-vn__after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  clip-path: inset(0 0 0 50%);
}

.muvexa-vn__img-ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}
.muvexa-vn__img-ph--before {
  background: #E8E3DE;
  color: #888;
}
.muvexa-vn__img-ph--after {
  background: #F5EFE7;
  color: #C8A96E;
}

.muvexa-vn__badge {
  position: absolute;
  top: 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .3rem .75rem;
  border-radius: 99px;
  pointer-events: none;
}
.muvexa-vn__badge--before {
  left: 1rem;
  background: #1A1A1A;
  color: #fff;
}
.muvexa-vn__badge--after {
  right: 1rem;
  background: #C8A96E;
  color: #1A1A1A;
}

.muvexa-vn__handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: ew-resize;
  z-index: 10;
  pointer-events: all;
}
.muvexa-vn__handle-line {
  flex: 1;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,.4);
}
.muvexa-vn__handle-btn {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  color: #1A1A1A;
  flex-shrink: 0;
}

.muvexa-vn__card-info {}
.muvexa-vn__card-name {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--color-text);
  margin: 0 0 .35rem;
}
.muvexa-vn__card-quote {
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

/* TIMELINE */
.muvexa-vn__timeline {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}
.muvexa-vn__timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 2.5rem;
}
.muvexa-vn__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 640px) {
  .muvexa-vn__steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Connecting line */
.muvexa-vn__steps::before {
  content: '';
  position: absolute;
  top: 56px; /* dot center */
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-border), #C8A96E, var(--color-border));
}

.muvexa-vn__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  padding: 0 1rem;
}
.muvexa-vn__step-week {
  font-size: .72rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.muvexa-vn__step-week strong {
  font-size: 1rem;
  display: block;
  color: var(--color-text);
}
.muvexa-vn__step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-border);
  border: 3px solid var(--color-bg);
  position: relative;
  z-index: 1;
  transition: transform .3s;
}
.muvexa-vn__step-dot--gold {
  background: #C8A96E;
  box-shadow: 0 0 0 4px rgba(200,169,110,.2);
}
.muvexa-vn__step--highlight .muvexa-vn__step-dot {
  transform: scale(1.3);
}
.muvexa-vn__step-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 .35rem;
}
.muvexa-vn__step-text {
  font-size: .78rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Produkt-Bild Platzhalter ────────────────────────────────── */
.muvexa-product-img.muvexa-img-ph {
  width: 100%;
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.6;
}
/* Thumbnail Platzhalter */
.muvexa-thumb-ph {
  width: 100%;
  height: 100%;
  min-height: 60px;
  background: var(--color-bg-alt);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--color-text-muted);
}
/* Bundle-Option Platzhalter */
.muvexa-price-option__thumb.muvexa-option-ph {
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-border);
}

/* ── Ingredient Image ────────────────────────────────────────── */
.muvexa-ingr__img-wrap {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-bg-alt);
}
.muvexa-ingr__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .25s, transform .4s;
}
.muvexa-ingr__img:hover {
  transform: scale(1.03);
}


/* ── Results: both image placeholders equal height ──────────── */
.muvexa-results__img-ph {
  aspect-ratio: 3 / 4 !important;
}

/* ══════════════════════════════════════════════════════════════
   MODERN VORWAHL DROPDOWN
══════════════════════════════════════════════════════════════ */
/* Hide old select */
.muvexa-signup__dial-select { display: none; }
.muvexa-signup__dial-wrap   { border-right: 1px solid rgba(255,255,255,.15); height: 54px; display: flex; align-items: center; position: relative; }

/* Custom dial button */
.muvexa-dial {
  position: relative;
  height: 54px;
  display: flex;
  align-items: center;
}
.muvexa-dial__btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: none;
  border: none;
  padding: 0 .75rem 0 1rem;
  height: 100%;
  cursor: pointer;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
  min-height: unset;
  transition: color .15s;
}
.muvexa-dial__btn:hover { color: #fff; }
.muvexa-dial__flag  { font-size: 1.15rem; line-height: 1; }
.muvexa-dial__code  { font-size: .88rem; font-weight: 700; letter-spacing: .01em; }
.muvexa-dial__chevron {
  opacity: .6;
  transition: transform .2s;
  flex-shrink: 0;
}
.muvexa-dial--open .muvexa-dial__chevron { transform: rotate(180deg); }

/* Dropdown panel */
.muvexa-dial__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 280px;
  background: #1E1E1E;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
  z-index: 999;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.muvexa-dial--open .muvexa-dial__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Search */
.muvexa-dial__search-wrap {
  padding: .6rem .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.muvexa-dial__search {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: .4rem .7rem;
  color: #fff;
  font-size: .83rem;
  font-family: inherit;
  outline: none;
}
.muvexa-dial__search::placeholder { color: rgba(255,255,255,.35); }

/* List */
.muvexa-dial__list {
  list-style: none;
  margin: 0;
  padding: .3rem 0;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.15) transparent;
}
.muvexa-dial__item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem 1rem;
  cursor: pointer;
  transition: background .12s;
  font-size: .84rem;
  color: rgba(255,255,255,.8);
}
.muvexa-dial__item:hover,
.muvexa-dial__item.active {
  background: rgba(255,255,255,.07);
  color: #fff;
}
.muvexa-dial__item-flag { font-size: 1.1rem; line-height: 1; flex-shrink: 0; }
.muvexa-dial__item-name { flex: 1; }
.muvexa-dial__item-code { color: rgba(255,255,255,.45); font-size: .78rem; font-weight: 600; }
.muvexa-dial__item.active .muvexa-dial__item-code { color: #C8A96E; }


/* ══════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — Vollständiges Handy-Layout
   Passt alle Sections an die Desktop-Darstellung an
══════════════════════════════════════════════════════════════════ */

/* ── 1. HERO — Mobile: Bild oben, Inhalt unten, kein sticky ─── */
@media (max-width: 900px) {

  /* Sticky deaktivieren auf Mobile */
  .muvexa-hero__content {
    position: static !important;
    top: auto !important;
  }

  /* Spalten → eine Spalte */
  .muvexa-hero__inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  .muvexa-hero__content {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
  }
  .muvexa-hero__visual { order: 1; padding: 1rem 1rem 0; }
  .muvexa-hero__intro  { order: 2; padding: 1rem 1rem 0; }
  .muvexa-hero__body   { order: 3; padding: 0 1rem 2rem; }

  /* Thumbnails: 4 Spalten auf Tablet */
  .muvexa-hero__thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: .4rem;
  }
  .muvexa-hero__thumbs--extra {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Banner Platzhalter — volle Breite */
  .muvexa-hero__banner-large {
    height: 120px;
  }

  /* Headline */
  .muvexa-hero__headline {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
  }
  .muvexa-hero__subtext {
    font-size: .95rem !important;
  }

  /* CTA-Button volle Breite */
  .muvexa-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }
  .muvexa-hero__ctas .muvexa-btn {
    width: 100%;
    justify-content: center;
  }

  /* Benefits */
  .muvexa-hero__benefits {
    margin-top: .75rem;
  }

  /* Accordion min-height fix */
  .muvexa-hero__acc-toggle {
    min-height: 48px;
  }
}

/* ── 2. HERO — Smartphone (≤ 480px) ─────────────────────────── */
@media (max-width: 480px) {
  .muvexa-hero__visual { padding: .75rem .75rem 0; }
  .muvexa-hero__intro  { padding: .75rem .75rem 0; }
  .muvexa-hero__body   { padding: 0 .75rem 1.5rem; }

  /* Thumbnails: horizontaler Slider auf kleinem Mobile */
  .muvexa-hero__thumbs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: .5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding-bottom: .25rem;
    cursor: grab;
  }
  .muvexa-hero__thumbs::-webkit-scrollbar { display: none; }
  .muvexa-hero__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    scroll-snap-align: start;
    touch-action: pan-x;
  }
  .muvexa-hero__banner-large { height: 90px; font-size: .75rem; }

  .muvexa-hero__headline { font-size: clamp(1.5rem, 8vw, 2rem) !important; }

  .muvexa-price-options { gap: .5rem; }
  .muvexa-price-option { padding: .6rem .75rem; }
  .muvexa-price-option__thumb { width: 44px; height: 44px; }
}

/* ── 3. DIAGRAMM-SECTION (Donut + Bars) ─────────────────────── */
@media (max-width: 768px) {
  .muvexa-diag {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
  .muvexa-diag__cycle,
  .muvexa-diag__bars {
    text-align: center;
  }
  .muvexa-diag__sub,
  .muvexa-diag__hint,
  .muvexa-diag__caption,
  .muvexa-diag__source {
    text-align: center;
  }
  .muvexa-donut-wrap {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .muvexa-donut {
    width: 130px;
    height: 130px;
  }
  .muvexa-donut-legend {
    align-items: center;
  }
  .muvexa-bar-row {
    grid-template-columns: 120px 1fr 38px;
    gap: .5rem;
  }
  .muvexa-bar-row__label { font-size: .78rem; }
  .muvexa-bars {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .muvexa-donut-wrap {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .muvexa-bar-row {
    grid-template-columns: 1fr;
    gap: .3rem;
  }
  .muvexa-bar-row__track { order: 3; }
  .muvexa-bar-row__pct   { order: 2; text-align: center; }
}

/* ── 4. RESULTS — 2 Karten → 1 Spalte auf Mobile ────────────── */
@media (max-width: 768px) {
  .muvexa-results {
    padding: 3rem 0;
  }
  .muvexa-results__grid,
  .muvexa-results__grid--two {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
    margin-top: 2rem;
  }
  .muvexa-results__card--offset {
    margin-top: 0 !important;
  }
  .muvexa-results__copy {
    padding: 1rem 1rem 1.25rem;
  }
  .muvexa-results__quote { font-size: .88rem; }
}

/* ── 5. BIO INHALT / ZUTATEN — Tabs + Panel ─────────────────── */
@media (max-width: 768px) {
  .muvexa-ingr {
    padding: 3rem 0;
  }
  .muvexa-ingr__panel {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  /* Bild kommt zuerst */
  .muvexa-ingr__visual { order: 1; }
  .muvexa-ingr__slide  { order: 2; }

  .muvexa-ingr__tabs { gap: .35rem; margin-top: 1.5rem; }
  .muvexa-ingr__tab  { font-size: .78rem; padding: .4rem .9rem; }

  .muvexa-ingr__progress { max-width: 100%; }

  .muvexa-ingr__name  { font-size: 1.7rem; }
  .muvexa-ingr__claim { font-size: .88rem; }
  .muvexa-ingr__detail-label { min-width: 90px; }
}
@media (max-width: 480px) {
  .muvexa-ingr__tabs {
    gap: .3rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .muvexa-ingr__tabs::-webkit-scrollbar { display: none; }
  .muvexa-ingr__tab { flex-shrink: 0; font-size: .76rem; }
  .muvexa-ingr__name { font-size: 1.4rem; }
}

/* ── 6. VORHER / NACHHER ─────────────────────────────────────── */
@media (max-width: 768px) {
  .muvexa-vn__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .muvexa-vn__timeline { margin-top: 2.5rem; padding-top: 2rem; }
}
@media (max-width: 640px) {
  .muvexa-vn__steps {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem;
  }
  /* Connecting line ausblenden auf 2-Spalten */
  .muvexa-vn__steps::before { display: none; }
}

/* ── 7. GUARANTEE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .muvexa-guarantee__inner { padding: 0 1rem; }
}

/* ── 8. PHONE SIGNUP ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .muvexa-signup__inner {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .muvexa-signup__headline {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
}

/* ── 9. FOOTER ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .muvexa-footer__grid {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  .muvexa-footer__brand { grid-column: auto; margin-bottom: 1.5rem; }
  .muvexa-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .muvexa-footer__legal { flex-wrap: wrap; gap: .75rem; }
  /* Vorwahl-Dropdown: auf Mobile oben öffnen */
  .muvexa-dial__dropdown {
    top: auto;
    bottom: calc(100% + 8px);
  }
}

/* ── 10. ALLGEMEINE SECTION-ABSTÄNDE ─────────────────────────── */
@media (max-width: 768px) {
  .muvexa-section,
  section.muvexa-section {
    padding-block: 3rem;
  }
  .muvexa-h2 {
    font-size: clamp(1.3rem, 5.5vw, 2rem);
  }
  .muvexa-lead {
    font-size: .92rem;
  }
  .muvexa-container {
    padding-inline: 1rem;
  }
}
@media (max-width: 480px) {
  .muvexa-section,
  section.muvexa-section {
    padding-block: 2.5rem;
  }
  .muvexa-h2 { font-size: clamp(1.2rem, 6vw, 1.7rem); }
  .muvexa-container { padding-inline: .75rem; }
}

/* ── 11. NAV + USP-BAR ───────────────────────────────────────── */
@media (max-width: 768px) {
  .muvexa-nav__inner { height: 56px; }
  .muvexa-nav__logo img { height: 28px; }
  .muvexa-usp-bar { height: 28px; }
  .muvexa-usp-bar__slide { font-size: 11px; }
}


/* ══════════════════════════════════════════════════════════════════
   HERO MOBILE — Stars + Produktname VOR dem Bild
   intro-top: order 0, visual: order 1, intro-bottom: order 2, body: order 3
══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* display:contents macht Kinder von .muvexa-hero__content
     zu direkten Flex-Children von .muvexa-hero__inner */
  .muvexa-hero__content {
    display: contents !important;
    position: static !important;
  }

  .muvexa-hero__intro-top {
    order: 0;
    padding: 1.25rem 1rem .5rem;
  }
  .muvexa-hero__visual {
    order: 1;
    padding: 0 1rem;
  }
  .muvexa-hero__intro-bottom {
    order: 2;
    padding: .75rem 1rem 0;
  }
  .muvexa-hero__body {
    order: 3;
    padding: 0 1rem 2rem;
  }

  /* Nutrition toggle kleiner auf Mobile */
  .muvexa-hero__nutrition-toggle {
    font-size: .84rem;
  }
  .muvexa-hero__desc {
    margin-top: .5rem;
    font-size: .92rem;
  }
}

@media (max-width: 480px) {
  .muvexa-hero__intro-top  { padding: 1rem .75rem .4rem; }
  .muvexa-hero__visual     { padding: 0 .75rem; }
  .muvexa-hero__intro-bottom { padding: .5rem .75rem 0; }
  .muvexa-hero__body       { padding: 0 .75rem 1.5rem; }

  .muvexa-hero__headline { font-size: clamp(1.45rem, 7.5vw, 1.9rem) !important; }
}

/* ══════════════════════════════════════════════════════════════════
   HERO MOBILE ≤540px — Reihenfolge: Bild → Slider → Bundles → CTA → Banner → Rest
══════════════════════════════════════════════════════════════════ */
@media (max-width: 540px) {
  /* Overflow-Schutz — verhindert horizontales Scrollen */
  .muvexa-hero         { overflow-x: clip; max-width: 100vw; }
  .muvexa-hero__inner  { max-width: 100%; overflow-x: clip; }

  /* Visual UND Body aufbrechen — alle Kinder werden direkte Flex-Children */
  .muvexa-hero__visual { display: contents !important; }
  .muvexa-hero__body   { display: contents !important; }

  /* ── Reihenfolge ── */
  .muvexa-hero__intro-top  { order: 0; padding: 1rem 1rem .4rem; }

  /* Produktbild */
  .muvexa-product-img {
    order: 1;
    width: calc(100% - 2rem) !important;
    margin: 0 auto;
    max-height: 75vw;
    object-fit: contain;
  }

  /* Thumbnail Slider */
  .muvexa-hero__thumbs:not(.muvexa-hero__thumbs--extra) {
    order: 2;
    padding: 0 1rem;
    margin-top: .75rem;
  }

  /* Bundle Selector */
  .muvexa-price-options {
    order: 3;
    padding: 0 1rem;
    margin-top: .75rem;
    gap: .4rem;
    width: 100%;
    box-sizing: border-box;
  }
  .muvexa-price-option {
    padding: .5rem .75rem;
  }
  .muvexa-price-option__thumb {
    width: 40px;
    height: 40px;
  }
  .muvexa-price-option__inner {
    gap: .6rem;
  }
  .muvexa-price-option__qty {
    font-size: .84rem;
    gap: .35rem;
  }
  .muvexa-price-option__price {
    font-size: .9rem;
  }
  .muvexa-price-option__badge {
    font-size: .62rem;
    padding: .1rem .4rem;
  }

  /* CTA Button — width auto + align-self stretch = volle Breite ohne Overflow */
  .muvexa-hero__body > .btn--primary {
    order: 4;
    width: auto !important;
    align-self: stretch;
    margin: .75rem 1rem 0 !important;
    box-sizing: border-box;
  }

  /* Banner nach CTA */
  .muvexa-hero__banner-large {
    order: 5;
    width: calc(100% - 2rem);
    margin: .75rem auto 0;
    box-sizing: border-box;
  }

  /* Beschreibung */
  .muvexa-hero__intro-bottom { order: 6; padding: .75rem 1rem 0; }

  /* Accordion + Benefits */
  .muvexa-hero__accordion { order: 7; }
  .muvexa-hero__benefits  { order: 8; }

  /* Verstecken */
  .muvexa-hero__thumbs--extra      { display: none !important; }
  .muvexa-hero__banner-placeholder { display: none !important; }
}

/* ══════════════════════════════════════════════════════════════════
   FAQ SECTION — clean / Nutrafol-style
══════════════════════════════════════════════════════════════════ */
.muvexa-faq {
  padding: 5rem 0 4rem;
  background: var(--color-bg);
}

.muvexa-faq__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.muvexa-faq__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0 0 3rem;
}

/* List */
.muvexa-faq__list { margin: 0; }

.muvexa-faq__item {
  border-top: 1px solid #d8d3cc;
}
.muvexa-faq__item:last-child {
  border-bottom: 1px solid #d8d3cc;
}

.muvexa-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  background: none !important;
  border: none;
  padding: 1.75rem 1.5rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a1a1a !important;
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
  transition: color .2s;
}
.muvexa-faq__question:hover { color: #555 !important; }
.muvexa-faq__item--open .muvexa-faq__question { color: #1a1a1a !important; }

/* + / − icon */
.muvexa-faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #999;
  background: transparent !important;
  position: relative;
  transition: border-color .2s, background .2s;
}
.muvexa-faq__icon::before,
.muvexa-faq__icon::after {
  content: '';
  position: absolute;
  background: #1a1a1a;
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s, opacity .3s;
}
.muvexa-faq__icon::before { width: 12px; height: 1.5px; }
.muvexa-faq__icon::after  { width: 1.5px; height: 12px; }

.muvexa-faq__item--open .muvexa-faq__icon {
  border-color: #1a1a1a;
  background: #1a1a1a !important;
}
.muvexa-faq__item--open .muvexa-faq__icon::before,
.muvexa-faq__item--open .muvexa-faq__icon::after { background: #fff; }
.muvexa-faq__item--open .muvexa-faq__icon::after  { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

/* Answer */
.muvexa-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: transparent;
}
.muvexa-faq__answer p {
  padding: 0 3rem 1.75rem 1.5rem;
  color: #555 !important;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 540px) {
  .muvexa-faq { padding: 3rem 0; }
  .muvexa-faq__title { margin-bottom: 2rem; }
  .muvexa-faq__question { font-size: .97rem; padding: 1.15rem 0; }
  .muvexa-faq__answer p { font-size: .93rem; padding-right: 1rem; }
}

/* ══════════════════════════════════════════════════════════════════
   KONTAKT SECTION
══════════════════════════════════════════════════════════════════ */
.muvexa-contact {
  background: #faf7f3;
}

.muvexa-contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  gap: 0;
}

/* Support image */
.muvexa-contact__img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: #ede8e0;
  margin: 0 auto 1.5rem;
  flex-shrink: 0;
}
.muvexa-contact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.muvexa-contact__img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: #a89f95;
  font-size: .8rem;
}

/* Email CTA button */
.muvexa-contact__mail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.75rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  background: #1a1714;
  color: #f0ece6;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.muvexa-contact__mail-btn:hover {
  background: #8B4513;
  transform: translateY(-2px);
}

/* Form */
.muvexa-contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.muvexa-contact__field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.muvexa-contact__field label {
  font-size: .85rem;
  font-weight: 600;
  color: #333;
  letter-spacing: .02em;
}
.muvexa-contact__field input,
.muvexa-contact__field textarea {
  border: 1.5px solid #ddd6cc;
  border-radius: 10px;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: .95rem;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.muvexa-contact__field input:focus,
.muvexa-contact__field textarea:focus {
  border-color: #8B4513;
}
.muvexa-contact__field textarea { min-height: 130px; }

@media (max-width: 540px) {
  .muvexa-contact__img-wrap { width: 130px; height: 130px; }
}
