/* US Panini 2026 parallel dots — sit in the existing dup-badge slot */

.border-swatches {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  max-width: 4.5rem;
  min-height: 16px;
  flex-wrap: nowrap;
}

.border-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  cursor: pointer;
  line-height: 0;
  background: #fff;
}

.border-dot[data-color="white"] { background: #fff; border-color: #94a3b8; }
.border-dot[data-color="orange"] { background: #f97316; }
.border-dot[data-color="blue"] { background: #2563eb; }
.border-dot[data-color="red"] { background: #dc2626; }
.border-dot[data-color="purple"] { background: #7c3aed; }
.border-dot[data-color="green"] { background: #16a34a; }
.border-dot[data-color="black"] { background: #0f172a; border-color: #0f172a; }

button.border-dot.is-on,
.border-dot.is-on {
  outline: 2px solid #0f172a;
  outline-offset: 1px;
}

.border-more {
  font-size: 9px;
  font-weight: 700;
  color: #334155;
  line-height: 1;
  white-space: nowrap;
}

.border-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #334155;
  vertical-align: middle;
}

.border-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

#border-popover {
  position: fixed;
  z-index: 80;
  display: none;
  gap: 5px;
  padding: 6px 7px;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
}

#border-popover.is-open {
  display: flex;
}
