.categories {
  background-color: #f9f9f9;
  padding: 60px 30px;
  text-align: center;
}

.categories h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.category-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.category-card {
  width: 150px;
  height: 150px;
  background: linear-gradient(145deg, #8a2be2, #6b4ed8);
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  fill: #fff;
}

/* Optional: Text-Feinschliff */
.category-card span {
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .category-card {
    width: 120px;
    height: 120px;
    font-size: 13px;
  }

  .category-card svg {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }
}
