/* Hide Scrollbar */
html,
body {
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Offset for fixed header */
body {
  padding-top: 3rem;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* Cart count badge — span is inline by default so w/h/centering never apply */
[data-cart-count]:not(.hidden) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}