/* === ORDER STEPPER === */
.order-stepper {
  gap: 0;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 8px 16px;
  transition: all 0.2s;
}

.stepper-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-status-default, #e2e8f0);
  color: var(--color-text-muted, #94a3b8);
  font-size: 1.1rem;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.stepper-label {
  font-size: 0.8rem;
  margin-top: 4px;
  font-weight: 500;
  color: var(--color-text-muted, #94a3b8);
}

.stepper-step.active .stepper-icon {
  background: var(--color-primary, #4f46e5);
  color: white;
  border-color: var(--color-primary, #4f46e5);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.stepper-step.active .stepper-label {
  color: var(--color-primary, #4f46e5);
  font-weight: 600;
}

.stepper-step.done .stepper-icon {
  background: var(--color-success, #10b981);
  color: white;
  border-color: var(--color-success, #10b981);
}

.stepper-step.done .stepper-label {
  color: var(--color-success, #10b981);
}

.stepper-step:hover .stepper-icon {
  transform: scale(1.1);
}

.stepper-line {
  flex: 1;
  height: 3px;
  background: var(--color-status-default, #e2e8f0);
  align-self: center;
  margin-bottom: 20px;
  min-width: 30px;
  max-width: 80px;
  transition: background 0.2s;
  border-radius: 2px;
}

.stepper-line.done {
  background: var(--color-success, #10b981);
}

/* === CANCEL BUTTON === */
.pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-lg, 20px);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.pill:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.2);
  outline-offset: 2px;
}

.pill.active {
  background: var(--color-danger, #ef4444) !important;
  border-color: var(--color-danger, #ef4444) !important;
  color: white !important;
}

/* === COPY/PRINT BUTTONS === */
.copy-btn,
.print-btn {
  margin-top: 8px;
  margin-right: 4px;
}

/* === STOCK BADGE IN SELECT === */
.stock-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 4px;
}
.stock-high { background: #d1fae5; color: #065f46; }
.stock-medium { background: #fef3c7; color: #92400e; }
.stock-low { background: #fee2e2; color: #991b1b; }
.stock-zero { background: #f1f5f9; color: #64748b; }
