/**
 * MiniZShop SwipeBar — Edge swipe indicator
 *
 * A small pill that appears at the screen edge during a swipe gesture,
 * giving the user visual feedback that their swipe is being detected.
 */

.mzsb-indicator {
  position: fixed;
  top: 50%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 56px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.8);
  transition: opacity 0.12s ease, transform 0.12s ease;
}

.mzsb-indicator--visible {
  opacity: 0.85;
}
