/* ── Angebote page-specific styles ── */

/* Breadcrumb */
.a-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.a-breadcrumb a { color: var(--primary-color); text-decoration: none; }
.a-breadcrumb a:hover { text-decoration: underline; }

/* ── Produkte Grid ── */
.produkte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .produkte-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .produkte-grid { grid-template-columns: 1fr; }
}

.produkt-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: rgba(var(--card-bg-rgb), 0.4);
  transition: transform 0.25s, border-color 0.25s;
}
.produkt-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.4);
}

.produkt-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.produkt-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--heading-color);
}

.produkt-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.produkt-preis {
  margin-bottom: 1.25rem;
}
.produkt-preis-zahl {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.produkt-preis-typ {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.produkt-preis-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.card-actions {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.produkt-card .check-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}
.produkt-card .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.5;
}
.produkt-card .check-list li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}

/* GBP Pflege Stufen in Karte */
.produkt-pflege-stufen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.pflege-stufe {
  padding: 0.9rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: rgba(var(--card-bg-rgb), 0.3);
}
.pflege-stufe-pro {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.05);
}
.pflege-stufe-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.pflege-stufe-pro .pflege-stufe-name {
  color: var(--primary-color);
}
.pflege-stufe-preis {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--heading-color);
}
.pflege-stufe-unit {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}
.produkt-pflege-hinweis {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ── Pflege Vergleichstabelle ── */
.pflege-vergleich {
  max-width: 700px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pflege-tabelle {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.pflege-tabelle th,
.pflege-tabelle td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.9rem;
  vertical-align: middle;
}
.pflege-tabelle th {
  font-weight: 700;
  color: var(--heading-color);
  background: rgba(var(--card-bg-rgb), 0.5);
}
.pflege-tabelle th:not(:first-child),
.pflege-tabelle td:not(:first-child) {
  text-align: center;
  width: 130px;
}
.pflege-th-name {
  display: block;
  font-size: 1rem;
}
.pflege-th-preis {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.pflege-th-pro .pflege-th-name { color: var(--primary-color); }

.pflege-check { color: var(--primary-color); font-weight: 700; font-size: 1.1rem; }
.pflege-nein { color: var(--text-muted); font-size: 1rem; }

.pflege-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 480px) {
  .pflege-ctas { flex-direction: column; }
  .pflege-ctas a { text-align: center; }
}

/* ── Website Detail ── */
.website-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto 0;
}
@media (max-width: 700px) {
  .website-detail-grid { grid-template-columns: 1fr; }
}

.website-detail-card {
  padding: 2rem;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: rgba(var(--card-bg-rgb), 0.3);
}
.website-detail-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}
.website-detail-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.website-detail-card .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
}
.website-detail-card .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.5;
}
.website-detail-card .check-list li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}
.website-detail-card .btn-primary {
  display: inline-block;
  margin-top: 1.5rem;
}

/* Final CTA */
.final-cta-wrapper {
  display: block;
  text-align: center;
  padding: 4rem 2rem;
}
.final-cta-wrapper .section-header { margin-bottom: 2rem; }
.final-cta-meta {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.final-cta-meta a { color: var(--primary-color); text-decoration: none; }
.final-cta-meta a:hover { text-decoration: underline; }

/* Utility */
.link-underline { text-decoration: underline; }
