.pg-categories-items-box,
.pg-category-items-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
  justify-items: center;
}

/* Tablet: 2 kolon */
@media (max-width: 1024px) {
  .pg-categories-items-box,
  .pg-category-items-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .pg-categories-items-box,
  .pg-category-items-box {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5em !important;
    justify-items: center !important;
  }

  .pg-item-box,
  .pg-category-box {
    width: 100% !important;
    max-width: 15em !important;
    margin: 0 auto !important;
  }

  .pg-item-box img,
  .pg-category-box img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}
