/* Wrapper voor het hele blok (horizontale rij) */
.single-product .product .summary .lc-voeding-icons {
  display: flex;
  flex-wrap: wrap;        /* breekt naar volgende regel indien nodig */
  gap: 16px 20px;
  margin: 16px 0;
}

/* Elk item: icoon boven label, gecentreerd */
.single-product .product .summary .lc-voeding-icon {
  display: flex;
  flex-direction: column; /* stapel icoon + label */
  align-items: center;    /* horizontaal centreren */
  justify-content: flex-start;
  text-align: center;
  min-width: 80px;        /* rust in de layout, mag omlaag als je wilt */
}

/* Afbeelding (pas grootte naar wens aan) */
.single-product .product .summary .lc-voeding-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin-bottom: 6px;     /* ruimte tussen icoon en tekst */
}

/* Label onder icoon (optioneel) */
.single-product .product .summary .lc-voeding-icon-label {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  color: #e35029;         /* Lucky Cookie oranje; verander indien gewenst */
}

/* Responsive voorbeeld (kleiner op smalle schermen) */
@media (max-width: 480px) {
  .single-product .product .summary .lc-voeding-icon img {
    width: 36px;
    height: 36px;
  }
  .single-product .product .summary .lc-voeding-icon {
    min-width: 72px;
  }
}
