/* =========================================================
   MOLL MAXIMO – Produktbeschreibungs-Stylesheet
   Scope: nur innerhalb .mm-desc
   ========================================================= */

.mm-desc {
  --mm-ink: #1A1814;
  --mm-ink-soft: #5C5549;
  --mm-gold: #B87A18;
  --mm-gold-light: #F5E8CC;
  --mm-line: rgba(26, 24, 20, 0.10);
  --mm-radius: 16px;

  color: var(--mm-ink);
  line-height: 1.65;
}

.mm-desc *, .mm-desc *::before, .mm-desc *::after { box-sizing: border-box; }
.mm-desc img { max-width: 100%; display: block; }

/* ---- eyebrow ---- */
.mm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mm-gold);
}
.mm-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--mm-gold);
  flex-shrink: 0;
  border-radius: 2px;
}

/* ---- typography ---- */
.mm-h1 {
  font-weight: 800;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.04;
  margin: 16px 0 0;
  letter-spacing: -0.025em;
  color: var(--mm-ink);
}
.mm-h2 {
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: var(--mm-ink);
}
.mm-p {
  margin: 0 0 0;
  font-size: clamp(15.5px, 1.4vw, 17px);
  line-height: 1.8;
  color: var(--mm-ink-soft);
}
.mm-lede {
  margin-top: 22px;
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.8;
  color: var(--mm-ink-soft);
  max-width: 68ch;
}
.mm-lede strong { color: var(--mm-ink); font-weight: 700; }

/* ---- section divider ---- */
.mm-divider-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: clamp(52px, 7vw, 80px) 0 28px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mm-gold);
}
.mm-divider-row .mm-divider {
  flex: 1;
  height: 1px;
  background: var(--mm-line);
}

/* ---- feature rows ----
   DOM order: image first, text second.
   Default (Text | Bild): row-reverse on desktop.
   --alt   (Bild | Text): row on desktop.
   Mobile: column → image always on top.
---- */
.mm-feature {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--mm-line);
}
.mm-feature:first-of-type {
  border-top: none;
  padding-top: clamp(32px, 4vw, 48px);
}
.mm-feature--alt {
  flex-direction: row;
}

.mm-feature-media { flex: 0 0 46%; }
.mm-feature-media img {
  border-radius: var(--mm-radius);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #F0E8D8;
}

.mm-feature-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---- overview grid ---- */
.mm-overview-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.mm-overview-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid var(--mm-line);
}
.mm-overview-item:nth-child(odd) { padding-right: 40px; }
.mm-overview-item:nth-child(even) { padding-left: 40px; border-left: 1px solid var(--mm-line); }

.mm-overview-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.75;
  margin-top: 3px;
}
.mm-overview-item h2 {
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 4px;
  color: var(--mm-ink);
  letter-spacing: -0.01em;
}
.mm-overview-item h3 {
  font-weight: 500;
  font-size: 12.5px;
  color: var(--mm-gold);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.mm-overview-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mm-overview-item ul li {
  font-size: 14.5px;
  color: var(--mm-ink-soft);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}
.mm-overview-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mm-gold);
  opacity: 0.6;
}

/* ---- responsive ---- */
@media (max-width: 800px) {
  .mm-feature,
  .mm-feature--alt {
    flex-direction: column;
    gap: 28px;
    padding: clamp(36px, 8vw, 52px) 0;
  }
  .mm-feature:first-of-type {
    padding-top: clamp(28px, 6vw, 40px);
  }
  .mm-feature-media {
    flex: none;
    width: 100%;
  }
  .mm-feature-media img {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }
  .mm-overview-grid {
    grid-template-columns: 1fr;
  }
  .mm-overview-item {
    padding: 24px 0;
  }
  .mm-overview-item:nth-child(odd)  { padding-right: 0; }
  .mm-overview-item:nth-child(even) { padding-left: 0; border-left: none; }
  .mm-divider-row { margin: clamp(40px, 10vw, 56px) 0 22px; }
}
