/* Accessibility fixes to ensure hidden compare button text is still announced by screen readers */

/* Visually hide compare button text but keep it in accessibility tree */
.goods .goods-block-compare .br_compare_button_text {
  display: inline-block !important; /* override theme rule */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap; /* prevent line breaks */
}
