/* ── PRODUKTE PAGE ── */

.section-header {
  margin-bottom: var(--space-lg);
}
.section-header h2 {
  margin-top: 0.5rem;
}
.section-header p {
  color: var(--color-text-muted);
  font-weight: 300;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

/* ── Sortiment ── */
.sortiment-section {
  padding: var(--space-xl) 0;
}

.sortiment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.sortiment-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.sortiment-card-icon {
  width: 48px;
  height: 48px;
  color: var(--color-wood-mid);
  margin-bottom: 1.25rem;
}

.sortiment-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-wood-dark);
  margin-bottom: 1rem;
}

.sortiment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sortiment-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-wood-mid);
  background: var(--color-cream-dark);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  line-height: 1.4;
}

/* ── Markenpartner ── */
.marken-section {
  background: var(--color-cream-dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}

.marken-hinweis {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.marken-gruppe {
  margin-top: var(--space-lg);
}

.marken-gruppe-titel {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-wood-light);
  margin-bottom: 1.25rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  min-height: 120px;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(107, 81, 52, 0.08), 0 0 0 1px rgba(107, 81, 52, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(107, 81, 52, 0.16), 0 0 0 1px rgba(107, 81, 52, 0.08);
}

.brand-logo {
  max-width: 160px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .sortiment-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .brand-card {
    padding: 0.75rem;
    min-height: 80px;
  }

  .brand-logo {
    max-width: 100px;
    max-height: 50px;
  }
}
