/* ============================================================
   BeOrganic — vycentrovanie textu v gombíkoch (mobil/tablet)
   Vložiť ku zvyšku globálneho CSS šablóny.
   ============================================================ */

/* Gombík "Filtrovať podľa" — schovať ikonu ☰ a vycentrovať text */
.bo-filters-open-button {
  justify-content: center !important;
}
.bo-filters-open-button::before {
  display: none !important;        /* schová hamburger ikonu pre symetriu s "Názov" */
}
.bo-filters-open-button__label {
  text-align: center !important;
}

/* Gombík sortingu ("Názov / Cena / ...") — vycentrovať text v <select> */
.sorting-navigator {
  text-align: center !important;
}
.sorting-navigator .s-items,
.sorting-navigator select {
  text-align: center !important;
  text-align-last: center !important;
  text-indent: 0 !important;
  /* Vyrovnať asymetrický padding: pôvodne padding-right ~22px, padding-left 0,
     čo text vychýlilo o ~12px doľava. Symetrický padding text vycentruje. */
  padding-left: 22px !important;
  padding-right: 22px !important;
}
