/* PLA Affiliate CMS – verbindliches Design System (Spec v3) */
:root {
  --color-primary: #0F766E;
  --color-primary-hover: #115E59;
  --color-accent: #22C55E;
  --color-accent-hover: #16A34A;
  --color-text: #0F172A;
  --color-text-secondary: #475569;
  --color-border: #E2E8F0;
  --color-bg: #F8FAFC;
  --color-card: #FFFFFF;
  --color-badge-bestseller: #F59E0B;
  --color-badge-empfehlung: #10B981;
  --color-footer-dark: #0F172A;
  --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.05);
  --radius-card: 16px;
  --radius-btn: 10px;
  --radius-feature: 12px;
  --max-w: 1200px;
  --font: "Inter", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.site-body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

#main {
  padding-top: 72px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(100% - 40px, var(--max-w));
  margin-inline: auto;
}
.container.narrow { max-width: 760px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ——— Fixed Header ——— */
.site-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-card);
  border-bottom: 1px solid var(--color-border);
}

.header-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: 72px;
  padding-block: 0.5rem;
}

.logo {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  text-decoration: none;
}
.logo:hover { text-decoration: none; color: var(--color-primary); }
.logo img { max-height: 40px; width: auto; }

.nav-toggle {
  display: block;
  grid-column: 2;
  grid-row: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-card);
  font-weight: 600;
  cursor: pointer;
}

.header-nav-center {
  grid-column: 1 / -1;
  grid-row: 2;
  display: none;
  width: 100%;
  justify-content: center;
}
.header-nav-center.is-open { display: flex; }

.nav-list--spec {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
}

.nav-list--spec a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}
.nav-list--spec a:hover { color: var(--color-primary); text-decoration: none; }

.header-btn-cta {
  grid-column: 1 / -1;
  grid-row: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0F766E;
  color: #fff !important;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none !important;
  width: 100%;
  box-sizing: border-box;
}
.header-btn-cta:hover {
  background: #115E59;
  text-decoration: none !important;
}

@media (max-width: 959px) {
  .header-nav-center.is-open {
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
  }
}

@media (min-width: 960px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
  }
  .nav-toggle {
    display: none;
  }
  .header-nav-center {
    grid-column: 2;
    grid-row: 1;
    display: flex !important;
    width: 100%;
    justify-content: center;
  }
  .header-btn-cta {
    grid-column: 3;
    grid-row: 1;
    width: auto;
    white-space: nowrap;
  }
}

/* ——— Shop Startseite ——— */
.shop-h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.shop-h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: var(--color-text);
}

.shop-h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}

.shop-lead {
  margin: 0 0 1.5rem;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 36rem;
}

.shop-section {
  padding: 80px 20px;
}

.shop-hero {
  background: var(--color-bg);
  padding-top: 40px;
}

.shop-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.shop-hero-media {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-card);
  border: 1px solid var(--color-border);
}

.shop-hero-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.shop-hero-benefits {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .shop-hero-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .shop-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .shop-hero-benefits {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }
}

.shop-feature-card--link {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--color-border);
}

.shop-feature-card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.12);
  text-decoration: none !important;
}

.shop-feature-text {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.shop-btn--primary {
  background: #0F766E;
  color: #fff !important;
}
.shop-btn--primary:hover { background: #115E59; }

.shop-btn--secondary {
  background: transparent;
  color: var(--color-text) !important;
  border: 1px solid #CBD5F5;
}
.shop-btn--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary) !important;
}

.shop-feature-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 1.25rem 1.5rem;
}

.shop-feature-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

/* Top Produkte */
.shop-section--products {
  background: var(--color-card);
}

.shop-grid-products {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .shop-grid-products { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .shop-grid-products { grid-template-columns: repeat(4, 1fr); }
}

.shop-product-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.shop-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  color: #fff;
}

.shop-badge--bestseller { background: #F59E0B; }
.shop-badge--empfehlung { background: #10B981; }

.shop-product-img-wrap {
  margin-top: 0.5rem;
  text-align: center;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: 12px;
  overflow: hidden;
}

.shop-product-img-wrap img {
  max-height: 200px;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  object-fit: contain;
}

.shop-product-title {
  margin: 1rem 0 0.75rem;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.shop-product-title a {
  color: var(--color-text);
  text-decoration: none;
}
.shop-product-title a:hover { color: var(--color-primary); }

.shop-product-bullets {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
}

.shop-product-price {
  margin: 0 0 1rem;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.shop-btn-amazon {
  display: block;
  text-align: center;
  background: #22C55E;
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none !important;
}
.shop-btn-amazon:hover {
  background: #16A34A;
  text-decoration: none !important;
}

/* Kategorien 3x2 */
.shop-section--cats {
  background: var(--color-bg);
}

.shop-grid-cats {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .shop-grid-cats { grid-template-columns: repeat(3, 1fr); }
}

.shop-cat-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none !important;
  color: var(--color-text) !important;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-height: 160px;
  justify-content: center;
}

.shop-cat-card:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
}

.shop-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), #22C55E);
  opacity: 0.9;
}

.shop-cat-title {
  font-size: 20px;
  font-weight: 600;
}

.shop-grid-cats--rich {
  align-items: stretch;
}

.shop-cat-card--rich {
  align-items: stretch;
  text-align: left;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.shop-cat-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--color-bg);
}

.shop-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-cat-card--rich .shop-cat-title,
.shop-cat-card--rich .shop-cat-teaser {
  padding: 0 1.25rem;
}

.shop-cat-card--rich .shop-cat-title {
  margin-top: 1.1rem;
}

.shop-cat-teaser {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin: 0.5rem 0 1.35rem;
}

/* Vergleiche */
.shop-section--compare {
  background: var(--color-card);
}

.shop-grid-compare {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.shop-compare-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  text-decoration: none !important;
  color: inherit !important;
  border: 1px solid var(--color-border);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.shop-compare-card:hover {
  border-color: var(--color-primary);
  text-decoration: none !important;
}

.shop-compare-card--rich {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  min-height: 200px;
  padding: 1.5rem 1.5rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shop-compare-card--rich:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.shop-card-teaser {
  margin: 0.65rem 0 1rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
  flex: 1;
}

.shop-card-cta {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.shop-compare-card--rich .shop-h3 {
  color: var(--color-text);
}

/* Ratgeber */
.shop-section--guides {
  background: #f1f5f9;
}

.shop-grid-guides {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .shop-grid-guides { grid-template-columns: repeat(3, 1fr); }
}

.shop-guide-card {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  padding: 1.25rem 1.5rem;
  text-decoration: none !important;
  color: var(--color-text-secondary) !important;
  box-shadow: none;
}

.shop-guide-card:hover {
  border-color: #cbd5e1;
  text-decoration: none !important;
}

.shop-guide-card .shop-h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.shop-guide-card--rich {
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  color: var(--color-text) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-guide-card--rich:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.shop-guide-thumb {
  display: block;
  aspect-ratio: 16/9;
  background: var(--color-bg);
}

.shop-guide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-guide-card--rich .shop-h3 {
  color: var(--color-text);
  font-size: 1.05rem;
  margin: 1rem 1.25rem 0;
}

.shop-guide-card--rich .shop-card-teaser {
  margin: 0.5rem 1.25rem 0.75rem;
  padding: 0 0 0;
}

.shop-guide-card--rich .shop-card-cta {
  display: inline-block;
  margin: 0 1.25rem 1.25rem;
}

/* Marken */
.shop-section--brands {
  background: var(--color-card);
}

.shop-grid-brands {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.shop-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 1rem;
  background: var(--color-bg);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text) !important;
  text-decoration: none !important;
}

.shop-brand-item:hover {
  border-color: var(--color-border);
  background: #f1f5f9;
  text-decoration: none !important;
}

.shop-grid-brands--rich {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

.shop-brand-tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--color-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  text-decoration: none !important;
  color: var(--color-text) !important;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-brand-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  text-decoration: none !important;
}

.shop-brand-tile-img {
  display: block;
  aspect-ratio: 16/10;
  background: var(--color-bg);
}

.shop-brand-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-brand-tile-name {
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

/* FAQ */
.shop-faq {
  background: var(--color-bg);
}

.shop-faq-inner { max-width: 720px; margin-inline: auto; }

.shop-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shop-faq-item {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0 1.25rem;
}

.shop-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  padding: 1.1rem 0;
  list-style: none;
  color: var(--color-text);
}

.shop-faq-item summary::-webkit-details-marker { display: none; }

.shop-faq-answer {
  padding-bottom: 1.1rem;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* CTA unten */
.shop-cta-final {
  background: #0F766E;
  text-align: center;
}

.shop-cta-title {
  margin: 0 0 1.25rem;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.shop-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #22C55E !important;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none !important;
}

.shop-cta-btn:hover {
  background: #f8fafc;
  text-decoration: none !important;
}

/* Footer Spec */
.site-footer--spec {
  background: #0F172A;
  color: #94a3b8;
  padding: 3rem 0 0;
  margin-top: 0;
}

.site-footer--spec .footer-brand {
  color: #fff;
  font-size: 1.15rem;
}

.site-footer--spec .footer-lead {
  color: #94a3b8;
}

.site-footer--spec .footer-heading {
  color: #e2e8f0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer--spec .footer-links a {
  color: #94a3b8;
}

.site-footer--spec .footer-links a:hover {
  color: #cbd5e1;
}

.site-footer--spec .footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

.site-footer--spec .footer-copy {
  color: #64748b;
  font-size: 0.85rem;
}

.footer-contact {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.footer-grid--spec {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 720px) {
  .footer-grid--spec {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

/* Install banner */
.install-banner {
  background: #ecfdf5;
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
  font-size: 0.9rem;
}
.install-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ——— Legacy: Unterseiten (Produkt, Kategorie, …) ——— */
.section { padding: 3rem 0; }
.section-tight { padding-top: 1.25rem; }
.section-alt { background: var(--color-bg); }
.lead { color: var(--color-text-secondary); }
.muted { color: var(--color-text-secondary); }
.text-center { text-align: center; }
.mb-lg { margin-bottom: 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-hover); color: #fff; }
.btn-secondary {
  background: var(--color-card);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-ghost { background: transparent; border: 1px solid transparent; }
.btn-sm { padding: 0.35rem 0.65rem; font-size: 0.85rem; }
.btn-lg { padding: 0.75rem 1.35rem; }
.btn-block { width: 100%; }

.breadcrumb { font-size: 0.85rem; color: var(--color-text-secondary); margin-bottom: 0.5rem; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 0.35rem; opacity: 0.5; }

.product-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card-image { position: relative; aspect-ratio: 4/3; background: var(--color-bg); overflow: hidden; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--color-badge-bestseller);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.product-card-body { padding: 1.1rem; display: flex; flex-direction: column; flex: 1; gap: 0.5rem; }
.product-card-title { margin: 0; font-size: 1.05rem; }
.product-card-title a { color: var(--color-text); text-decoration: none; }
.product-card-brand { margin: 0; font-size: 0.85rem; color: var(--color-text-secondary); }
.product-card-desc { margin: 0; font-size: 0.9rem; color: var(--color-text-secondary); flex: 1; }
.product-card-actions { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.45rem; }
.partner-hint { font-size: 0.72rem; color: var(--color-text-secondary); }

.grid {
  display: grid;
  gap: 1.25rem;
}
.grid-products {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.product-hero-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.product-main-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  box-shadow: var(--shadow-card);
}
.product-buy-col h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 0.75rem; }
.product-brand-line { color: var(--color-text-secondary); }

.compare-table-wrap {
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th, .compare-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border);
}
.compare-table thead th { background: #f1f5f9; font-weight: 700; }

.prose { line-height: 1.65; }

.prose-list {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.6;
}
.prose-list li { margin: 0.25rem 0; }

.product-short-lead {
  font-size: 1.05rem;
  color: var(--color-text-secondary, #475569);
  margin: 0 0 0.75rem;
  line-height: 1.55;
}
.product-price-box {
  margin: 0.75rem 0 1rem;
  padding: 0.65rem 0.85rem;
  background: var(--color-background, #f8fafc);
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: 10px;
  font-size: 0.95rem;
}
.product-price-meta { color: var(--color-text-secondary, #475569); font-weight: 400; }
.product-variants-block { margin: 1rem 0; }
.product-variant-chips {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.product-variant-chips li {
  padding: 0.25rem 0.6rem;
  background: #fff;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: 999px;
  font-size: 0.85rem;
}
.cat-card, .guide-card, .comparison-card {
  display: block;
  padding: 1.5rem;
  background: var(--color-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
}
.home-empty-card {
  padding: 1.25rem;
  background: var(--color-bg);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-card);
  color: var(--color-text-secondary);
}

/* ——— Frontend: Fallback- & Archivseiten ——— */
.fe-fallback-hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-card) 100%);
}

.fe-fallback-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .fe-fallback-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.fe-fallback-hero-visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: var(--color-card);
}

.fe-fallback-hero-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.fe-fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.fe-fallback-breadcrumb {
  margin-bottom: 0.75rem;
}

.fe-fallback-lead {
  max-width: none;
}

.fe-fallback-body {
  background: var(--color-card);
}

.fe-prose a {
  color: var(--color-primary);
  font-weight: 600;
}

.fe-prose ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
  color: var(--color-text-secondary);
}

.fe-cat-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .fe-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fe-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fe-cat-grid--archive {
  margin-top: 0.5rem;
}

.fe-cat-tile {
  display: flex;
  flex-direction: column;
  background: var(--color-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  text-decoration: none !important;
  color: inherit !important;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fe-cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
  border-color: rgba(15, 118, 110, 0.35);
  text-decoration: none !important;
}

.fe-cat-tile-img {
  display: block;
  aspect-ratio: 16/9;
  background: var(--color-bg);
}

.fe-cat-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fe-cat-tile-title {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1rem 1.25rem 0.25rem;
  color: var(--color-text);
}

.fe-cat-tile-desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
  padding: 0 1.25rem 1.25rem;
  flex: 1;
}

.fe-section-intro {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.fe-two-col {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .fe-two-col {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.fe-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.fe-aside-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fe-aside-card {
  display: block;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
  text-decoration: none !important;
  color: inherit !important;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.fe-aside-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  text-decoration: none !important;
}

.fe-aside-card strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.fe-aside-card span {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.fe-archive-hero {
  padding-top: 2.5rem;
}

.fe-archive-foot {
  margin-top: 2.5rem;
}

.grid-comparisons,
.grid-guides {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.site-footer--spec .footer-heading--spaced {
  margin-top: 1.35rem;
}
