.listSorting__controls {
    display: flex;
    flex-wrap: wrap;
}

.listSorting__controls > li:has(.listSorting__control[data-sort="code"]) { order: 1; }
.listSorting__controls > li:has(.listSorting__control[data-sort="bestseller"]) { order: 2; }
.listSorting__controls > li:has(.listSorting__control[data-sort="price"]) { order: 3; }
.listSorting__controls > li:has(.listSorting__control[data-sort="-price"]) { order: 4; }
.listSorting__controls > li:has(.listSorting__control[data-sort="name"]) { order: 5; }

.listSorting__control[data-sort="code"],
.listSorting__control[data-sort="bestseller"],
.listSorting__control[data-sort="price"],
.listSorting__control[data-sort="-price"],
.listSorting__control[data-sort="name"] {
    font-size: 0 !important;
}

.listSorting__control[data-sort="code"]::before { content: "Odporúčame"; font-size: 14px; }
.listSorting__control[data-sort="bestseller"]::before { content: "Najpredávanejšie"; font-size: 14px; }
.listSorting__control[data-sort="price"]::before { content: "Najlacnejšie ↑"; font-size: 14px; }
.listSorting__control[data-sort="-price"]::before { content: "Najdrahšie ↓"; font-size: 14px; }
.listSorting__control[data-sort="name"]::before { content: "Abecedne A–Z"; font-size: 14px; }