/* Kontener na swatche/badge */
.cat-swatches {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

/* Obrazek tekstury */
.cat-swatch-img {
    display: inline-block;
    border-radius: 8px;
    vertical-align: middle;
    object-fit: cover;
    width: 40px;
    /* mobile default */
    height: 40px;
    /* mobile default */
}

/* Desktop: większe */
@media (min-width: 992px) {
    .cat-swatch-img {
        width: 75px;
        height: 75px;
        border-radius: 10px;
    }
}

/* Badge tekstowy (gdy brak tekstury) */
.cat-swatch-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
  background: #f2f3f5;
  font-size: 14px;
  line-height: 1.3;
}

.cat-swatches-label {
  font-size: 16px;
  font-weight: 600;
} 

