/* Floating customer service button — drag + edge snap */
.customer#customerId,
#customerId.customer,
.customer {
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: grab;
  z-index: 1002 !important;
  will-change: left, top;
  right: 0.4rem !important;
  transition: left 0.28s cubic-bezier(0.22, 1, 0.36, 1), top 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.customer.is-dragging,
.customer.no-anim {
  transition: none !important;
}

.customer.is-dragging {
  cursor: grabbing;
  opacity: 0.92;
  filter: drop-shadow(0 0.08rem 0.2rem rgba(0, 0, 0, 0.35));
}

.customer img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
