/* Selbst gehostet statt fonts.googleapis.com — Google Fonts extern zu laden
   überträgt Besucher-IP-Adressen an Google, ein bekanntes Abmahn-Risiko in
   Deutschland (u.a. LG München I, 2022). */
@font-face { font-family: "Poppins"; font-weight: 400; src: url("fonts/poppins-400.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "Poppins"; font-weight: 500; src: url("fonts/poppins-500.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "Poppins"; font-weight: 600; src: url("fonts/poppins-600.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "Poppins"; font-weight: 700; src: url("fonts/poppins-700.woff2") format("woff2"); font-display: swap; }

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Poppins", sans-serif;
  background: #F7F5F2;
  color: #2D2D2D;
  min-height: 100vh;
}

.header {
  background: #6E8B5D;
  color: #F7F5F2;
  text-align: center;
  padding: 2rem 1rem 1.5rem;
}
.header h1 { font-weight: 700; font-size: 1.75rem; }
.header .tagline { font-weight: 500; opacity: 0.9; margin-top: 0.25rem; }

main { max-width: 480px; margin: 0 auto; padding: 1.25rem 1rem 2rem; }

.disclosure {
  font-size: 0.8rem;
  color: #2D2D2D;
  opacity: 0.7;
  text-align: center;
  margin-bottom: 1.25rem;
}

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

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45, 45, 45, 0.08);
}
.card img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; background: #D8C3A5; }
.card-body { padding: 1rem; }
.card-title { font-weight: 600; font-size: 1rem; margin-bottom: 0.75rem; }

.product-link {
  display: block;
  text-align: center;
  background: #D6B15A;
  color: #2D2D2D;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-top: 0.5rem;
}
.product-link:first-of-type { margin-top: 0; }

.loading, .empty { text-align: center; opacity: 0.6; padding: 2rem 0; }

.footer { text-align: center; padding: 1.5rem 1rem; opacity: 0.6; font-size: 0.85rem; }
