/* Fix-Layout für Kategorieseiten */
.products {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
}

.products .product {
  flex: 0 0 23% !important;
  margin: 1% !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .products .product {
    flex: 0 0 48% !important;
  }
}

@media (max-width: 480px) {
  .products .product {
    flex: 0 0 98% !important;
  }
}
