/* NexusM2 — Store status pill states */
.nm2-store-status .nm2-ss-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  background: #888;
  box-shadow: 0 0 0 0 rgba(255,255,255,0);
  transition: background 200ms ease, box-shadow 200ms ease;
}
.nm2-store-status.is-open .nm2-ss-dot {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.18);
}
.nm2-store-status.is-closed .nm2-ss-dot {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.18);
}
.nm2-store-status .nm2-ss-text {
  font-weight: 600;
  letter-spacing: .02em;
}
