/* ===========================================================
   foodie | HAFA Oatery – Barista Line (warm oat-gold design)
   Version: 1.0.1
   =========================================================== */

.product-intro.hafa {
  --hafa-accent: #cfa97b; /* warmes Oat-Gold */
  --text: #222;
  --muted: #666;
  --bg: #fff;
  --shadow: 0 6px 22px rgba(0,0,0,.06);
}

.product-intro.hafa {
  background: var(--bg);
  color: var(--text);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  line-height: 1.6;
  font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Arial, sans-serif;
  text-align: justify;
}

/* Headline */
.product-intro.hafa h2 {
  color: var(--hafa-accent);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 1.6rem;
}

/* Teaser */
.product-intro.hafa .teaser {
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: justify;
}

/* Badges */
.product-intro.hafa .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}
.product-intro.hafa .badges img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: transform 0.2s ease-in-out;
}
.product-intro.hafa .badges img:hover {
  transform: scale(1.05);
}

/* Dein Plus (grüne Markerpunkte) */
.product-intro.hafa .dein-plus ul {
  list-style: disc !important;
  padding-left: 1.2rem;
  margin: 0.6rem 0;
}
.product-intro.hafa .dein-plus ul li {
  margin: 0.3rem 0;
}
.product-intro.hafa .dein-plus ul li::marker {
  color: var(--hafa-accent);
}

/* Responsive */
@media (max-width: 640px) {
  .product-intro.hafa { padding: 1.5rem; border-radius: 12px; }
  .product-intro.hafa h2 { font-size: 1.4rem; }
  .product-intro.hafa .badges img { width: 88px; height: 88px; }
}
