
.category-blocks-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 3px 3px;
  background-color: #253451;
}

.category-block {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  cursor: pointer;
  width: 16vw;
  height: 9vw;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);

}

.category-block:hover {
  transform: scale(1.05);
}

.category-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3vw;
  font-family: impact, sans-serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  text-align: center;
  letter-spacing: 3px;
}

/* Mobile: kolumna */
@media (max-width: 600px) {
  .category-block {
    width: 19%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .category-label{
    font-size: 2.3vw!important;
  }

  .category-blocks-container {
    gap: 5px;
  }

}

