/**
 * Größere Klick-/Touch-Toleranz bei Text-Links und typischen Controls.
 * Unsichtbares ::before vergrößert die Hitbox (ohne z-index:-1).
 * Kein System-Cursor (Hand) — nur der Custom-Pointer.
 */
a,
button,
[role='button'],
summary {
  cursor: none !important;
}
.n-a,
a[data-ct] {
  position: relative;
}

.n-a::before,
a[data-ct]::before {
  content: '';
  position: absolute;
  inset: -12px -14px;
}

button.flt-btn[data-ct],
button.shop-fab {
  position: relative;
}

button.flt-btn[data-ct]::before,
button.shop-fab::before {
  content: '';
  position: absolute;
  inset: -8px;
}

/* Schmale Sprach-Buttons: Padding statt Pseudo (overflow:hidden im Markup) */
button[data-ct]#shopLangBtn,
button[data-ct]#shopLangBtnFeed {
  overflow: visible !important;
  padding: 10px 16px !important;
  min-height: 40px;
  box-sizing: border-box;
}

/* Icon-/Warenkorb-Zeile */
#cartBtn {
  position: relative;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px !important;
  box-sizing: border-box;
}

#shopCustomerLink {
  position: relative;
  padding: 10px 12px !important;
  margin: -6px -8px;
  display: inline-flex;
  align-items: center;
}
